-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathbuild_wrappers.py
executable file
·601 lines (515 loc) · 26.3 KB
/
build_wrappers.py
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
#!/usr/bin/env python3
import os
import subprocess
# Structs with no definition in the public header files
OPAQUE_STRUCTS = [u'words', u'wally_descriptor']
EXCLUDED_FUNCS = {
# Callers should use the fixed length bip39_mnemonic_to_seed512
'bip39_mnemonic_to_seed',
# Callers should use the non-in-place, value returning scalar operations
'wally_ec_scalar_add_to', 'wally_ec_scalar_multiply_by',
'wally_ec_scalar_subtract_from',
# Map getters returning internal pointers are only for C/C++ use
'wally_map_get', 'wally_map_get_integer',
}
# BIP38's Scrypt can't work due to WASM's memory restrictions
WASM_EXCLUDED_FUNCS = EXCLUDED_FUNCS | {
'bip38_from_private_key', 'bip38_raw_from_private_key',
'bip38_raw_to_private_key', 'bip38_to_private_key',
}
# Output buffer length functions that aren't yet part of the API
# The boolean is whether the length function is a maximum length,
# True = Yes, False = Exact length
MISSING_LEN_FUNCS = {
'wally_base58_to_bytes': True,
'wally_base58_n_to_bytes': True,
'wally_elements_pegin_contract_script_from_bytes': True,
'wally_elements_pegout_script_from_bytes': True,
'wally_format_bitcoin_message': True,
'wally_hex_n_to_bytes': False,
'wally_hex_to_bytes': False,
'wally_script_push_from_bytes': True,
'wally_scriptpubkey_csv_2of2_then_1_from_bytes': True,
'wally_scriptpubkey_csv_2of2_then_1_from_bytes_opt': True,
'wally_scriptpubkey_multisig_from_bytes': True,
'wally_scriptsig_multisig_from_bytes': True,
'wally_wif_to_public_key': False,
}
def replace_text(filename, text, delims):
lines = [line.rstrip() for line in open(filename)]
start, end = lines.index(delims[0]), lines.index(delims[1])
replaced = lines[:start + 1] + text + lines[end:]
replaced = [l + u'\n' for l in replaced]
open(filename, u'w').writelines([l for l in replaced])
def get_non_elements_functions():
# SWIG_PYTHON_BUILD=1 used to include internal functions too
cmd = "-E -DWALLY_ABI_NO_ELEMENTS=1 -DSWIG_PYTHON_BUILD=1 include/*.h src/bip32_int.h |" \
"sort | uniq | sed 's/^ *WALLY_CORE_API//' | grep '^ *int ' | grep '(' | sed -e 's/^ *int //g' -e 's/(.*//g' | egrep '^wally_|^bip'"
try:
funcs = subprocess.check_output(u'gcc ' + cmd, shell=True)
except subprocess.CalledProcessError:
funcs = subprocess.check_output(u'clang ' + cmd, shell=True)
return funcs.decode('utf-8').split(u'\n')
def strip_wally_prefix(func_name):
return func_name[len('wally_'):] if func_name.startswith('wally_') else func_name
def get_export_name(func_name, all_names):
# Strip the '_alloc' suffix (this is typically what the user wants)
if func_name.endswith("_alloc"):
func_name = func_name[0:-6]
# Add '_noalloc' suffix to the non-alloc variation (should be used rarely)
elif f"{func_name}_alloc" in all_names:
func_name = f"{func_name}_noalloc"
# Strip 'wally_' prefix to keep things DRY
return strip_wally_prefix(func_name)
def map_ignored(func, all_funcs):
# wrappers expose foo_alloc() as foo(); hide any non-alloc version
return f'%ignore {func.name};' if func.name + '_alloc' in all_funcs else ''
class Arg(object):
def __init__(self, definition):
if u'*' in definition:
self.is_pointer = True
self.is_pointer_pointer = u'**' in definition
if self.is_pointer_pointer:
self.type = definition.split(' **')[0] + '**'
else:
self.type = definition.split(' *')[0] + '*'
self.name = definition[len(self.type) + 1:]
self.is_struct = u'struct' in self.type
if self.is_struct:
self.struct_name = self.type.split(u' ')[-1].split(u'*')[0]
self.is_opaque = self.struct_name in OPAQUE_STRUCTS
else:
self.is_pointer = False
self.is_pointer_pointer = False
self.is_struct = False
self.type, self.name = definition.split(' ')
self.docs = ''
self.is_const = self.type.startswith(u'const ')
self.fixed_size = None
self.max_size = None
def add_metadata(self, m):
if 'FIXED_SIZED_OUTPUT(' in m:
parts = [p.strip() for p in m[len('FIXED_SIZED_OUTPUT('):-1].split(',')]
self.fixed_size = parts[2]
elif 'MAX_SIZED_OUTPUT(' in m:
parts = [p.strip() for p in m[len('MAX_SIZED_OUTPUT('):-1].split(',')]
self.max_size = parts[2]
else:
assert m.startswith(':param '), 'Unknown metadata format {}'.format(m)
assert not self.docs, self.name + ': unexpected extra docs: ' + m
self.docs = m.split(':')[-1].strip()
class Func(object):
def __init__(self, definition, non_elements):
# Strip return type and closing ')', extract name
try:
self.name, definition = definition[4:-1].split(u'(')
except ValueError:
raise Exception('failed to parse definition ' + definition)
# Parse arguments
self.args = [Arg(d) for d in definition.split(u', ')]
self.is_elements = self.name not in non_elements
self.docs = []
self.buffer_len_fn = None
self.buffer_len_is_upper_bound = None
def __lt__(self, other):
return self.name < other.name
def add_metadata(self, m):
if m.startswith(u'FIXED_SIZED_OUTPUT(') or m.startswith(u'MAX_SIZED_OUTPUT('):
arg_name = m.split('(')[1].split(',')[0].strip() # Argument metadata
elif m.startswith(':param '):
arg_name = m[len(':param '):].split(':')[0] # Argument docs
else:
self.docs.append(m) # Function docs
return
args = [arg for arg in self.args if arg.name == arg_name]
assert len(args) == 1, self.name + ':' + arg_name + \
': invalid metadata reference {}'.format(m) + ' refs: ' + str(len(args))
args[0].add_metadata(m)
def is_array(func, arg, n, num_args, types):
return arg.type in types and n != num_args -1 and \
func.args[n + 1].type == u'size_t' and \
(func.args[n + 1].name.endswith(u'len') or
func.args[n + 1].name.startswith(u'num_'))
def is_buffer(func, arg, n, num_args):
return is_array(func, arg, n, num_args, [u'const unsigned char*', u'unsigned char*', u'void*'])
def is_int_buffer(func, arg, n, num_args):
return is_array(func, arg, n, num_args, [u'const uint32_t*', u'const uint64_t*'])
def gen_python_cffi(funcs, all_funcs, internal_only):
typemap = {
u'int' : u'c_int',
u'size_t*' : u'c_size_t_p',
u'size_t' : u'c_size_t',
u'uint32_t*' : u'c_uint32_p',
u'uint32_t' : u'c_uint32',
u'uint64_t*' : u'c_uint64_p',
u'uint64_t' : u'c_uint64',
u'void**' : u'POINTER(c_void_p)',
u'void*' : u'c_void_p',
u'unsigned char*': u'c_void_p',
u'char**' : u'c_char_p_p',
u'char*' : u'c_char_p',
u'wally_map_verify_fn_t' : u'c_void_p',
}
def map_arg(arg, n, num_args):
argtype = arg.type[6:] if arg.is_const else arg.type # Strip const
if argtype == u'uint32_t*' and n != num_args - 1:
return u'POINTER(c_uint32)'
if argtype == u'uint64_t*' and n != num_args - 1:
return u'POINTER(c_uint64)'
if argtype == u'char**' and n != num_args - 1:
return u'POINTER(c_char_p)'
if argtype in typemap:
return typemap[argtype]
if arg.is_struct:
if arg.is_opaque:
return typemap[u'void**' if arg.is_pointer_pointer else u'void*']
text = f'POINTER({arg.struct_name})'
if arg.is_pointer_pointer:
text = f'POINTER({text})'
return text
assert False, f'ERROR: Unknown argument type "{argtype}"'
cffi = []
for func in funcs:
num_args = len(func.args)
mapped = u', '.join([map_arg(arg, i, num_args) for i, arg in enumerate(func.args)])
cffi.append(f" ('{func.name}', c_int, [{mapped}]),")
cffi.sort()
if internal_only:
markers = [u' # BEGIN INTERNAL AUTOGENERATED', u' # END INTERNAL AUTOGENERATED']
else:
markers = [u' # BEGIN AUTOGENERATED', u' # END AUTOGENERATED']
replace_text(u'src/test/util.py', cffi, markers)
def gen_python_swig(funcs, all_funcs):
output_arrays = {
'unsigned char*' : '_wrap_bin',
'uint32_t*' : '_wrap_int_array',
}
def map_arg(func, arg, n, num_args):
if is_buffer(func, arg, n, num_args):
macro = u'output' if arg.type == u'unsigned char*' else u'nullable'
return f'%pybuffer_{macro}_binary({arg.type} {arg.name}, size_t {func.args[n + 1].name});'
return u''
def wrap_output_buffers(func, num_args):
if func.name in EXCLUDED_FUNCS or func.name == 'wally_s2c_sig_from_bytes':
return ''
func_name = get_export_name(func.name, all_funcs)
if func.name.endswith('_alloc'):
return f'{func_name} = {func_name}_alloc'
if num_args > 2:
last_arg, buf_index = func.args[num_args-1], num_args-2
is_variable = last_arg.type == u'size_t*' and last_arg.name == u'written'
if is_variable:
last_arg = func.args[num_args-2]
buf_index = num_args - 3
if buf_index < 0:
return ''
buf_arg = func.args[buf_index]
if not is_array(func, buf_arg, buf_index, num_args, output_arrays.keys()):
return ''
wrap_fn = output_arrays[buf_arg.type]
if func.name in MISSING_LEN_FUNCS:
len_fn = strip_wally_prefix(func.name) + '_len'
resize = ', resize=True' if MISSING_LEN_FUNCS[func.name] else ''
return f'{func_name} = {wrap_fn}({func_name}, {len_fn}{resize})'
elif last_arg.fixed_size:
return f'{func_name} = {wrap_fn}({func_name}, {last_arg.fixed_size})'
elif last_arg.max_size:
return f'{func_name} = {wrap_fn}({func_name}, {last_arg.max_size}, resize=True)'
elif func.buffer_len_fn:
len_fn = get_export_name(func.buffer_len_fn, all_funcs)
resize = ', resize=True' if func.buffer_len_is_upper_bound else ''
return f'{func_name} = {wrap_fn}({func_name}, {len_fn}{resize})'
return ''
buffer_args, ignored_calls, wrapped_calls, wrapped_liquid_calls = [], [], [], []
for func in funcs:
num_args = len(func.args)
mapped = [map_arg(func, arg, i, num_args) for i, arg in enumerate(func.args)]
buffer_args.extend([m for m in mapped if m])
ignored_calls.extend([m for m in [map_ignored(func, all_funcs)] if m])
wrapped = wrap_output_buffers(func, num_args)
if wrapped:
[wrapped_calls, wrapped_liquid_calls][func.is_elements].append(wrapped)
swig_i_decls = sorted(set(buffer_args)) + sorted(set(ignored_calls))
replace_text(u'src/swig_python/swig.i', swig_i_decls,
[u'/* BEGIN AUTOGENERATED */', u'/* END AUTOGENERATED */'])
wrapped_calls.sort()
wrapped_liquid_calls.sort()
wrapped_liquid_calls = ['if is_elements_build():'] + \
[' ' + call for call in wrapped_liquid_calls]
calls = wrapped_calls + wrapped_liquid_calls
replace_text(u'src/swig_python/python_extra.py_in', calls,
[u'# BEGIN AUTOGENERATED', u'# END AUTOGENERATED'])
def gen_java_swig(funcs, all_funcs):
def map_arg(func, arg, n, num_args):
if is_buffer(func, arg, n, num_args):
return f'%apply(char *STRING, size_t LENGTH) {{ ({arg.type} {arg.name}, size_t {func.args[n + 1].name}) }};'
return u''
ignored_calls.extend([m for m in [map_ignored(func, all_funcs)] if m])
buffer_args, ignored_calls = [], []
for func in funcs:
num_args = len(func.args)
mapped = [map_arg(func, arg, i, num_args) for i, arg in enumerate(func.args)]
buffer_args.extend([m for m in mapped if m])
ignored_calls.extend([m for m in [map_ignored(func, all_funcs)] if m])
swig_i_decls = sorted(set(buffer_args)) + sorted(set(ignored_calls))
replace_text(u'src/swig_java/swig.i', swig_i_decls,
[u'/* BEGIN AUTOGENERATED */', u'/* END AUTOGENERATED */'])
def gen_wally_hpp(funcs, all_funcs):
cpp, cpp_elements = {}, {}
for func in funcs:
num_args = len(func.args)
vardecl = ''
t_types, cpp_args, call_args = [], [], []
skip = False
for n, arg in enumerate(func.args):
if skip:
skip = False
continue
is_verify_function = func.name.endswith('_verify')
if is_buffer(func, arg, n, num_args) or is_int_buffer(func, arg, n, num_args):
t_types.append(f'class {arg.name.upper()}')
const = u'const ' if arg.is_const else ''
cpp_args.append(f'{const}{arg.name.upper()}& {arg.name}')
call_args.extend([f'{arg.name}.data()', f'{arg.name}.size()'])
skip = True
elif arg.type in [u'int', u'size_t', u'uint32_t', u'uint64_t',
u'int*', u'size_t*', u'uint32_t*', u'uint64_t*',
u'wally_map_verify_fn_t']:
cpp_args.append(f'{arg.type} {arg.name}')
call_args.append(f'{arg.name}')
elif arg.is_pointer:
if arg.is_pointer_pointer or n == num_args - 1:
cpp_args.append(f'{arg.type} {arg.name}')
call_args.append(f'{arg.name}')
else:
t_types.append(f'class {arg.name.upper()}')
cpp_args.append(f'const {arg.name.upper()}& {arg.name}')
call_args.append(f'detail::get_p({arg.name})')
else:
assert False, f'Unmapped argument {func.name}:{arg.name}'
impl = []
if len(t_types):
impl.append(f'template <{", ".join(t_types)}>')
func_name = strip_wally_prefix(func.name)
return_type = 'bool' if is_verify_function else 'int'
impl.append(f'inline {return_type} {func_name}({", ".join(cpp_args)}) {{')
if vardecl:
impl.append(vardecl)
impl.append(f' int ret = ::{func.name}({", ".join(call_args)});')
if vardecl:
prev = func.args[-3]
impl.append(f' if (ret == WALLY_OK && n != static_cast<size_t>({prev.name}.size())) ret = WALLY_EINVAL;')
if is_verify_function:
impl.append(' return ret == WALLY_OK;')
else:
impl.append(' return detail::check_ret(__FUNCTION__, ret);')
impl.extend([u'}', u''])
(cpp_elements if func.is_elements else cpp)[func.name] = impl
text = []
for f in sorted(cpp.keys()):
text.extend(cpp[f])
text.append(u'#ifndef WALLY_ABI_NO_ELEMENTS')
for f in sorted(cpp_elements.keys()):
text.extend(cpp_elements[f])
text[-1] = u'#endif // WALLY_ABI_NO_ELEMENTS'
replace_text(u'include/wally.hpp', text,
[u'/* BEGIN AUTOGENERATED */', u'/* END AUTOGENERATED */'])
def gen_wasm_exports(funcs, all_funcs):
funcs = sorted(filter(lambda f: f.name not in WASM_EXCLUDED_FUNCS, funcs))
exports = ','.join([f"'_{func.name}' \\\n" for func in funcs if not func.is_elements])
elements_exports = ','.join([f"'_{func.name}' \\\n" for func in funcs if func.is_elements])
text = [
f"EXPORTED_FUNCTIONS=\"['_malloc','_free',{exports}\"",
'if [ -z "$DISABLE_ELEMENTS" ]; then',
f' EXPORTED_FUNCTIONS="$EXPORTED_FUNCTIONS"",{elements_exports}"',
'fi',
'EXPORTED_FUNCTIONS="$EXPORTED_FUNCTIONS""]"'
]
replace_text(u'tools/wasm_exports.sh', text,
[u'# BEGIN AUTOGENERATED', u'# END AUTOGENERATED'])
def gen_wasm_package(funcs, all_funcs):
# Simple single-argument types that can be identified without inspecting the next arguments
# map of C type -> (JS type, TypeScript argument type, TypeScript return type)
typemap_simple = {
# Simple input primitive types
'int' : ('T.Int32', 'number', None),
'size_t' : ('T.Int32', 'number', None),
'uint32_t' : ('T.Int32', 'number', None),
'uint64_t' : ('T.Int64', 'bigint', None),
'const char*' : ('T.String', 'string', None),
# Single-argument output pointers
'size_t*' : ('T.DestPtr(T.Int32)', None, 'number'),
'uint32_t*' : ('T.DestPtr(T.Int32)', None, 'number'),
'uint64_t*' : ('T.DestPtr(T.Int64)', None, 'bigint'),
'char**' : ('T.DestPtrPtr(T.String)', None, 'string'),
# These are only used once
'char*' : ('T.OpaqueRef', 'Ref', None), # as the argument to `wally_free_string`
'void*' : ('T.OpaqueRef', 'Ref', None), # as the argument to `wally_bzero`
'wally_map_verify_fn_t' : ('T.OpaqueRef', 'Ref', None), # as the argument to `wally_map_init`
}
# Input arrays (represented as two arguments - the first identified by this map, followed by a FOO_len argument)
# map of C type -> (JS type, TypeScript argument type)
typemap_arrays = {
'const unsigned char*' : ('T.Bytes', 'Buffer|Uint8Array'),
'const uint32_t*' : ('T.Uint32Array', 'Uint32Array|number[]'),
'const uint64_t*' : ('T.Uint64Array', 'BigUint64Array|Array<bigint>'),
}
# Output arrays
# map of C type -> (JS type, TypeScript return type)
typemap_output_arrays = {
'char**': ('T.String', 'string'),
'unsigned char*': ('T.Bytes', 'Buffer'),
'uint32_t*': ('T.Uint32Array', 'Uint32Array'),
}
def map_args(func):
num_args = len(func.args)
next_index = 0
js_args = []
ts_args = []
ts_returns = []
while next_index < num_args:
arg = func.args[next_index]
curr_index = next_index
next_index = next_index + 1
# Input array types
if is_array(func, arg, curr_index, num_args, typemap_arrays.keys()):
(js_arg_type, ts_arg_type) = typemap_arrays[arg.type]
js_args.append(js_arg_type)
ts_args.append(f'{arg.name}: {ts_arg_type}')
next_index = next_index + 1 # skip next 'FOO_len' argument
continue
# Input opaque reference
if arg.is_struct and arg.is_pointer and not arg.is_pointer_pointer:
# Sanity check to make sure we don't misidentify unrelated arguments
assert arg.struct_name.startswith("wally_") or arg.struct_name == "ext_key" or arg.struct_name == "words"
js_args.append('T.OpaqueRef')
ts_args.append(f'{arg.name}: Ref_{arg.struct_name}')
continue
# Output pointer to an array
if is_array(func, arg, curr_index, num_args, typemap_output_arrays.keys()):
# Sanity check to make sure we don't misidentify unrelated arguments
assert arg.name.endswith("_out") or arg.name in ('scalar', 'output')
(array_type, ts_return_type) = typemap_output_arrays[arg.type]
# Detect output buffer size (fixed or via a length utility function)
len_arg = func.args[curr_index + 1]
if func.name in MISSING_LEN_FUNCS:
len_fn = strip_wally_prefix(func.name) + '_len'
output_buffer_size = f'{len_fn}, {str(MISSING_LEN_FUNCS[func.name]).lower()}'
elif len_arg.fixed_size:
output_buffer_size = f"C.{len_arg.fixed_size}"
elif len_arg.max_size:
output_buffer_size = f"C.{len_arg.max_size}, true"
elif func.buffer_len_fn:
len_fn = get_export_name(func.buffer_len_fn, all_funcs)
output_buffer_size = f"{len_fn}, {'true' if func.buffer_len_is_upper_bound else 'false'}"
elif func.name in ('wally_scrypt', 'wally_descriptor_to_addresses'):
# User provides the intended output length as an argument to the JS API.
output_buffer_size = 'T.USER_PROVIDED_LEN'
else:
assert False, f'ERROR: Unknown output array size for {func.name}:{arg.type}'
# Variable-length buffers have an additional pointer for the number of bytes written/expected
# See https://wally.readthedocs.io/en/latest/conventions/#variable-length-output-buffers
if curr_index < num_args - 2 and func.args[curr_index + 2].type == 'size_t*' and func.args[curr_index + 2].name == 'written':
js_args.append(f'T.DestPtrVarLen({array_type}, {output_buffer_size})')
next_index = next_index + 2 # skip next two arguments: 'FOO_len' and 'written'
# Fixed-sized output buffers
else:
js_args.append(f'T.DestPtrSized({array_type}, {output_buffer_size})')
next_index = next_index + 1 # skip next 'FOO_len' argument
if output_buffer_size == 'T.USER_PROVIDED_LEN':
ts_args.append('out_len: number')
ts_returns.append(f'{arg.name}: {ts_return_type}')
continue
# Simple single-argument input/output types
#
# This must be checked after checking array output pointers (above), because a `uint32_t*` argument may
# be either a uint32 or an array of uint32, depending on whether the following argument is a `_len` argument.
if arg.type in typemap_simple:
(js_arg_type, ts_arg_type, ts_return_type) = typemap_simple[arg.type]
js_args.append(js_arg_type)
if ts_arg_type:
ts_args.append(f'{arg.name}: {ts_arg_type}')
if ts_return_type:
ts_returns.append(f'{arg.name}: {ts_return_type}')
continue
# Output pointer to an opaque reference
if arg.is_struct and arg.is_pointer and arg.is_pointer_pointer:
# Sanity check to make sure we don't misidentify unrelated arguments
assert arg.struct_name.startswith("wally_") or arg.struct_name == "ext_key" or arg.struct_name == "words"
js_args.append('T.DestPtrPtr(T.OpaqueRef)')
ts_returns.append(f'{arg.name}: Ref_{arg.struct_name}')
continue
assert False, f'ERROR: {func.name}: Unknown argument type "{arg.type}" {arg.name}'
return (js_args, ts_args, ts_returns)
# Drop excluded functions
fn_included = filter(lambda f: f.name not in WASM_EXCLUDED_FUNCS, funcs)
# Place functions that depend on the buffer length utility functions last, so that the utility
# functions are available to them. Then sort by name.
key_fn = lambda f: (f.buffer_len_fn is not None, get_export_name(f.name, all_funcs))
fn_def_order = sorted(fn_included, key = key_fn)
jscode = []
tscode = []
for func in fn_def_order:
(js_args, ts_args, ts_returns) = map_args(func)
fn_name = get_export_name(func.name, all_funcs)
jscode.append(f"export const {fn_name} = wrap('{func.name}', [{', '.join(js_args)}]);")
ts_return_code = 'void' if len(ts_returns) == 0 else f'{ts_returns[0].split(": ", 1)[1]}' if len(ts_returns) == 1 else f"[{', '.join(ts_returns)}]"
tscode.append(f"export function {fn_name}({', '.join(ts_args)}): {ts_return_code};")
# Inject generated functions into functions.js
replace_text(u'src/wasm_package/src/functions.js', jscode,
[u'// BEGIN AUTOGENERATED', u'// END AUTOGENERATED'])
# Inject generated TypeScript definitions into index.d.ts
replace_text(u'src/wasm_package/src/index.d.ts', tscode,
[u'// BEGIN AUTOGENERATED', u'// END AUTOGENERATED'])
def get_function_defs(non_elements, internal_only):
# Call sphinx to dump our definitions
envs = {k:v for k,v in os.environ.items()}
envs[u'WALLY_DOC_DUMP_FUNCS'] = u'1'
if internal_only:
envs[u'WALLY_DOC_DUMP_INTERNAL'] = u'1'
cmd = ['sphinx-build', '-b', 'html', '-a', '-c', 'docs/source', 'docs/source', 'docs/build/html']
process = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, env=envs)
# Process the lines into func objects for each function
func_lines = process.stdout.decode('utf-8').split(u'\n')
funcs = []
for f in func_lines:
if f.startswith(u'int '):
funcs.append(Func(f, non_elements))
add_meta = True
elif f.startswith(u'* ') and add_meta:
funcs[-1].add_metadata(f[2:])
else:
add_meta = False
# Auto-detect output buffer length function based on the following naming conventions:
# - funcname -> funcname_len / funcname_length / funcname_get_maximum_length
# - funcname_to_bytes -> funcname_get_length
# - funcname_to_bytes -> funcname_get_maximum_length
# - _get_maximum_length implies is_upper_bound=true
def is_len_fn(f):
return f.endswith('_len') or f.endswith('_length')
buffer_len_fns = set([f.name for f in funcs if is_len_fn(f.name)])
for f in funcs:
if f.name.endswith('_to_bytes'):
possible_names = [ f.name[0:-9]+'_get_length', f.name[0:-9]+'_get_maximum_length' ]
else:
possible_names = [ f.name + '_len', f.name + '_length', f.name + '_get_maximum_length' ]
for name in possible_names:
if name in buffer_len_fns:
f.buffer_len_fn = name
f.buffer_len_is_upper_bound = name.endswith('_maximum_length')
break
return funcs
if __name__ == "__main__":
non_elements = get_non_elements_functions()
external_funcs = get_function_defs(non_elements, False)
internal_funcs = get_function_defs(non_elements, True)
all_funcs = external_funcs + internal_funcs
all_names = set([f.name for f in all_funcs])
# Generate the wrapper code
gen_python_cffi(external_funcs, all_names, False)
gen_python_cffi(internal_funcs, all_names, True)
gen_python_swig(all_funcs, all_names)
gen_java_swig(external_funcs, all_names)
gen_wally_hpp(external_funcs, all_names)
gen_wasm_exports(all_funcs, all_names)
gen_wasm_package(all_funcs, all_names)