1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
#!/usr/bin/env python
'''Generate the gp-wapi.c source from the gp-papi.h header.'''
import sys
def get_signatures(header):
# first, gather all function signatures from gp-papi.h aka argv[1]
accumulating = False
signatures = []
current_signature = ''
EXTERN = 'extern'
SEMICOLON = ';'
for line in open(header):
line = line.strip() # remove whitespace before and after line
if not line:
continue # skip blank lines
if EXTERN in line and SEMICOLON in line:
signatures.append(line)
elif EXTERN in line:
current_signature = line
accumulating = True
elif SEMICOLON in line and accumulating:
current_signature += line
signatures.append(current_signature)
accumulating = False
elif accumulating:
current_signature += line
return signatures
class FunctionArgument(object):
def __init__(self, signature):
self.pointer = signature.count('*')
self.array = '[' in signature
signature = signature.replace('*','').strip()
signature = signature.replace('[','').strip()
signature = signature.replace(']','').strip()
self.type,self.name = signature.split()
def __str__(self):
ret = self.type[:]
ret += ' '
for p in range(self.pointer):
ret += '*'
ret += self.name
if self.array:
ret += '[]'
return ret
class Function(object):
def __init__(self, signature):
signature = signature.replace('extern','').strip()
self.return_type,signature = signature.split(None,1)
self.return_type = self.return_type.strip()
signature = signature.strip()
self.name,signature = signature.split('(',1)
self.name = self.name.strip()
signature = signature.replace(')','').strip()
signature = signature.replace(';','').strip()
self.args = []
if signature:
for arg in signature.split(','):
self.args.append(FunctionArgument(arg.strip()))
def get_call(self, name=None):
sig = ''
if not name:
sig += self.name
else:
sig += name
sig += '('
if self.args:
for arg in self.args:
sig += arg.name
sig += ', '
sig = sig[:-2] # remove last ', '
sig += ')'
return sig
def get_signature(self, name=None):
sig = self.return_type[:]
sig += ' '
if not name:
sig += self.name
else:
sig += name
sig += '('
if self.args:
for arg in self.args:
sig += str(arg)
sig += ', '
sig = sig[:-2] # remove last ', '
sig += ')'
return sig
def __str__(self):
return self.get_signature()
if __name__ == '__main__':
if len(sys.argv) != 2:
print 'incorrect number of arguments'
print 'usage: gpwapigen.py <gp-papi.h> > <gp-wapi.c>'
sys.exit(len(sys.argv))
# print headers
print '''
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "gp-papi.h"
#include "typesf2c.h"
'''
functions = {}
# parse signatures into the Function class
for sig in get_signatures(sys.argv[1]):
function = Function(sig)
functions[function.name] = function
# now process the functions
for name in sorted(functions):
func = functions[name]
maybe_return = ''
if 'void' not in func.return_type:
maybe_return = 'return '
func = functions[name]
wnga_name = name.replace('pgp_','wgp_')
print '''
%s
{
%s%s;
}
''' % (func.get_signature(wnga_name), maybe_return, func.get_call())
|