a portable and fast pairing-based cryptography library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mcl/ffi/js/export-functions.py

49 lines
1.3 KiB

7 years ago
import sys, re
#RE_PROTOTYPE = re.compile(r'MCLBN_DLL_API\s\w\s\w\([^)]*\);')
RE_PROTOTYPE = re.compile(r'MCLBN_DLL_API\s(\w*)\s(\w*)\(([^)]*)\);')
RE_SPECIAL_FUNCTION_NAME = re.compile(r'(setStr|getStr|serialize|setLittleEndian|setHashOf|hashAndMapTo)')
def export_functions(fileName, modName):
with open(fileName, 'rb') as f:
if modName:
print 'function define_exported_' + modName + '(mod) {'
comma = ''
for line in f.readlines():
p = RE_PROTOTYPE.search(line)
if p:
ret = p.group(1)
name = p.group(2)
arg = p.group(3)
if modName:
retType = 'null' if ret == 'void' else 'number'
if arg == '' or arg == 'void':
paramType = '[]'
else:
paramType = '[' + ("'number', " * len(arg.split(','))) + ']'
if RE_SPECIAL_FUNCTION_NAME.search(name):
exportName = '_' + name # to wrap function
else:
exportName = name
print "{0} = mod.cwrap('{1}', '{2}', {3})".format(exportName, name, retType, paramType)
else:
print comma + "'_" + name + "'",
if comma == '':
comma = ','
if modName:
print '}'
def main():
args = len(sys.argv)
modName = ''
if args <= 1:
print 'export_functions header [-js <modName>]'
sys.exit(1)
if args == 4 and sys.argv[2] == '-js':
modName = sys.argv[3]
export_functions(sys.argv[1], modName)
if __name__ == '__main__':
main()