Handle LDKStr in other structs and fix string conversion overread
[ldk-java] / genbindings.py
1 #!/usr/bin/env python3
2 import sys, re
3
4 if len(sys.argv) < 7:
5     print("USAGE: /path/to/lightning.h /path/to/bindings/output /path/to/bindings/ /path/to/bindings/output.c debug lang")
6     sys.exit(1)
7
8 if sys.argv[5] == "false":
9     DEBUG = False
10 elif sys.argv[5] == "true":
11     DEBUG = True
12 else:
13     print("debug should be true or false and indicates whether to track allocations and ensure we don't leak")
14     sys.exit(1)
15
16 target = None
17 if sys.argv[6] == "java" or sys.argv[6] == "android":
18     import java_strings
19     from java_strings import Consts
20     target = java_strings.Target.JAVA
21     if sys.argv[6] == "android":
22         target = java_strings.Target.ANDROID
23 elif sys.argv[6] == "typescript":
24     import typescript_strings
25     from typescript_strings import Consts
26     target = typescript_strings.Target.NODEJS
27     if len(sys.argv) == 8 and sys.argv[7] == 'browser':
28         target = typescript_strings.Target.BROWSER
29 else:
30     print("Only java or typescript can be set for lang")
31     sys.exit(1)
32
33
34 consts = Consts(DEBUG, target=target)
35
36 from bindingstypes import *
37
38 c_file = ""
39 def write_c(s):
40     global c_file
41     c_file += s
42
43 def camel_to_snake(s):
44     # Convert camel case to snake case, in a way that appears to match cbindgen
45     con = "_"
46     ret = ""
47     lastchar = ""
48     lastund = False
49     for char in s:
50         if lastchar.isupper():
51             if not char.isupper() and not lastund:
52                 ret = ret + "_"
53                 lastund = True
54             else:
55                 lastund = False
56             ret = ret + lastchar.lower()
57         else:
58             ret = ret + lastchar
59             if char.isupper() and not lastund:
60                 ret = ret + "_"
61                 lastund = True
62             else:
63                 lastund = False
64         lastchar = char
65         if char.isnumeric():
66             lastund = True
67     return (ret + lastchar.lower()).strip("_")
68
69 unitary_enums = set()
70 complex_enums = set()
71 opaque_structs = set()
72 trait_structs = {}
73 result_types = set()
74 tuple_types = {}
75
76 var_is_arr_regex = re.compile("\(\*([A-za-z0-9_]*)\)\[([a-z0-9]*)\]")
77 var_ty_regex = re.compile("([A-za-z_0-9]*)(.*)")
78 java_c_types_none_allowed = True # Unset when we do the real pass that populates the above sets
79 def java_c_types(fn_arg, ret_arr_len):
80     fn_arg = fn_arg.strip()
81     if fn_arg.startswith("MUST_USE_RES "):
82         fn_arg = fn_arg[13:]
83     is_const = False
84     if fn_arg.startswith("const "):
85         fn_arg = fn_arg[6:]
86         is_const = True
87     if fn_arg.startswith("struct "):
88         fn_arg = fn_arg[7:]
89     if fn_arg.startswith("enum "):
90         fn_arg = fn_arg[5:]
91     nonnull_ptr = "NONNULL_PTR" in fn_arg
92     fn_arg = fn_arg.replace("NONNULL_PTR", "")
93
94     is_ptr = False
95     take_by_ptr = False
96     rust_obj = None
97     arr_access = None
98     java_hu_ty = None
99     if fn_arg.startswith("LDKThirtyTwoBytes"):
100         fn_arg = "uint8_t (*" + fn_arg[18:] + ")[32]"
101         assert var_is_arr_regex.match(fn_arg[8:])
102         rust_obj = "LDKThirtyTwoBytes"
103         arr_access = "data"
104     elif fn_arg.startswith("LDKTxid"):
105         fn_arg = "uint8_t (*" + fn_arg[8:] + ")[32]"
106         assert var_is_arr_regex.match(fn_arg[8:])
107         rust_obj = "LDKThirtyTwoBytes"
108         arr_access = "data"
109     elif fn_arg.startswith("LDKPublicKey"):
110         fn_arg = "uint8_t (*" + fn_arg[13:] + ")[33]"
111         assert var_is_arr_regex.match(fn_arg[8:])
112         rust_obj = "LDKPublicKey"
113         arr_access = "compressed_form"
114     elif fn_arg.startswith("LDKSecretKey"):
115         fn_arg = "uint8_t (*" + fn_arg[13:] + ")[32]"
116         assert var_is_arr_regex.match(fn_arg[8:])
117         rust_obj = "LDKSecretKey"
118         arr_access = "bytes"
119     elif fn_arg.startswith("LDKSignature"):
120         fn_arg = "uint8_t (*" + fn_arg[13:] + ")[64]"
121         assert var_is_arr_regex.match(fn_arg[8:])
122         rust_obj = "LDKSignature"
123         arr_access = "compact_form"
124     elif fn_arg.startswith("LDKRecoverableSignature"):
125         fn_arg = "uint8_t (*" + fn_arg[25:] + ")[68]"
126         assert var_is_arr_regex.match(fn_arg[8:])
127         rust_obj = "LDKRecoverableSignature"
128         arr_access = "serialized_form"
129     elif fn_arg.startswith("LDKThreeBytes"):
130         fn_arg = "uint8_t (*" + fn_arg[14:] + ")[3]"
131         assert var_is_arr_regex.match(fn_arg[8:])
132         rust_obj = "LDKThreeBytes"
133         arr_access = "data"
134     elif fn_arg.startswith("LDKFourBytes"):
135         fn_arg = "uint8_t (*" + fn_arg[13:] + ")[4]"
136         assert var_is_arr_regex.match(fn_arg[8:])
137         rust_obj = "LDKFourBytes"
138         arr_access = "data"
139     elif fn_arg.startswith("LDKSixteenBytes"):
140         fn_arg = "uint8_t (*" + fn_arg[16:] + ")[16]"
141         assert var_is_arr_regex.match(fn_arg[8:])
142         rust_obj = "LDKSixteenBytes"
143         arr_access = "data"
144     elif fn_arg.startswith("LDKTwentyBytes"):
145         fn_arg = "uint8_t (*" + fn_arg[15:] + ")[20]"
146         assert var_is_arr_regex.match(fn_arg[8:])
147         rust_obj = "LDKTwentyBytes"
148         arr_access = "data"
149     elif fn_arg.startswith("LDKTenBytes"):
150         fn_arg = "uint8_t (*" + fn_arg[12:] + ")[10]"
151         assert var_is_arr_regex.match(fn_arg[8:])
152         rust_obj = "LDKTenBytes"
153         arr_access = "data"
154     elif fn_arg.startswith("LDKu8slice"):
155         fn_arg = "uint8_t (*" + fn_arg[11:] + ")[datalen]"
156         assert var_is_arr_regex.match(fn_arg[8:])
157         rust_obj = "LDKu8slice"
158         arr_access = "data"
159     elif fn_arg.startswith("LDKCVec_u8Z"):
160         fn_arg = "uint8_t (*" + fn_arg[12:] + ")[datalen]"
161         rust_obj = "LDKCVec_u8Z"
162         assert var_is_arr_regex.match(fn_arg[8:])
163         arr_access = "data"
164     elif fn_arg.startswith("LDKTransaction ") or fn_arg == "LDKTransaction":
165         fn_arg = "uint8_t (*" + fn_arg[15:] + ")[datalen]"
166         rust_obj = "LDKTransaction"
167         assert var_is_arr_regex.match(fn_arg[8:])
168         arr_access = "data"
169     elif fn_arg.startswith("LDKCVec_"):
170         is_ptr = False
171         if "*" in fn_arg:
172             fn_arg = fn_arg.replace("*", "")
173             is_ptr = True
174
175         tyn = fn_arg[8:].split(" ")
176         assert tyn[0].endswith("Z")
177         if tyn[0] == "u64Z":
178             new_arg = "uint64_t"
179         else:
180             new_arg = "LDK" + tyn[0][:-1]
181         for a in tyn[1:]:
182             new_arg = new_arg + " " + a
183         res = java_c_types(new_arg, ret_arr_len)
184         if res is None:
185             assert java_c_types_none_allowed
186             return None
187         if is_ptr:
188             res.pass_by_ref = True
189         if res.is_native_primitive or res.passed_as_ptr:
190             return TypeInfo(rust_obj=fn_arg.split(" ")[0], java_ty=res.java_ty + "[]", java_hu_ty=res.java_hu_ty + "[]",
191                 java_fn_ty_arg="[" + res.java_fn_ty_arg, c_ty=res.c_ty + "Array", passed_as_ptr=False, is_ptr=is_ptr,
192                 nonnull_ptr=nonnull_ptr, is_const=is_const,
193                 var_name=res.var_name, arr_len="datalen", arr_access="data", subty=res, is_native_primitive=False)
194         else:
195             return TypeInfo(rust_obj=fn_arg.split(" ")[0], java_ty=res.java_ty + "[]", java_hu_ty=res.java_hu_ty + "[]",
196                 java_fn_ty_arg="[" + res.java_fn_ty_arg, c_ty=consts.ptr_arr, passed_as_ptr=False, is_ptr=is_ptr,
197                 nonnull_ptr=nonnull_ptr, is_const=is_const,
198                 var_name=res.var_name, arr_len="datalen", arr_access="data", subty=res, is_native_primitive=False)
199
200     is_primitive = False
201     arr_len = None
202     mapped_type = []
203     java_type_plural = None
204     if fn_arg.startswith("void"):
205         java_ty = "void"
206         c_ty = "void"
207         fn_ty_arg = "V"
208         fn_arg = fn_arg[4:].strip()
209         is_primitive = True
210     elif fn_arg.startswith("bool"):
211         java_ty = "boolean"
212         c_ty = "jboolean"
213         fn_ty_arg = "Z"
214         fn_arg = fn_arg[4:].strip()
215         is_primitive = True
216     elif fn_arg.startswith("uint8_t"):
217         mapped_type = consts.c_type_map['uint8_t']
218         java_ty = mapped_type[0]
219         c_ty = "int8_t"
220         fn_ty_arg = "B"
221         fn_arg = fn_arg[7:].strip()
222         is_primitive = True
223     elif fn_arg.startswith("LDKu5"):
224         java_ty = consts.c_type_map['uint8_t'][0]
225         java_hu_ty = "UInt5"
226         rust_obj = "LDKu5"
227         c_ty = "int8_t"
228         fn_ty_arg = "B"
229         fn_arg = fn_arg[6:].strip()
230     elif fn_arg.startswith("uint16_t"):
231         mapped_type = consts.c_type_map['uint16_t']
232         java_ty = mapped_type[0]
233         c_ty = "int16_t"
234         fn_ty_arg = "S"
235         fn_arg = fn_arg[8:].strip()
236         is_primitive = True
237     elif fn_arg.startswith("uint32_t"):
238         mapped_type = consts.c_type_map['uint32_t']
239         java_ty = mapped_type[0]
240         c_ty = "int32_t"
241         fn_ty_arg = "I"
242         fn_arg = fn_arg[8:].strip()
243         is_primitive = True
244     elif fn_arg.startswith("uint64_t") or fn_arg.startswith("uintptr_t"):
245         # TODO: uintptr_t is arch-dependent :(
246         mapped_type = consts.c_type_map['uint64_t']
247         java_ty = mapped_type[0]
248         fn_ty_arg = "J"
249         if fn_arg.startswith("uint64_t"):
250             c_ty = "int64_t"
251             fn_arg = fn_arg[8:].strip()
252         else:
253             c_ty = "int64_t"
254             rust_obj = "uintptr_t"
255             fn_arg = fn_arg[9:].strip()
256         is_primitive = True
257     elif is_const and fn_arg.startswith("char *"):
258         java_ty = "String"
259         c_ty = "const char*"
260         fn_ty_arg = "Ljava/lang/String;"
261         fn_arg = fn_arg[6:].strip()
262     elif fn_arg.startswith("LDKStr"):
263         rust_obj = "LDKStr"
264         java_ty = "String"
265         c_ty = "jstring"
266         fn_ty_arg = "Ljava/lang/String;"
267         fn_arg = fn_arg[6:].strip()
268         arr_access = "chars"
269         arr_len = "len"
270     else:
271         ma = var_ty_regex.match(fn_arg)
272         if ma.group(1).strip() in unitary_enums:
273             java_ty = ma.group(1).strip()
274             c_ty = consts.result_c_ty
275             fn_ty_arg = "Lorg/ldk/enums/" + ma.group(1).strip() + ";"
276             fn_arg = ma.group(2).strip()
277             rust_obj = ma.group(1).strip()
278         elif ma.group(1).strip().startswith("LDKC2Tuple"):
279             c_ty = consts.ptr_c_ty
280             java_ty = consts.ptr_native_ty
281             java_hu_ty = "TwoTuple<"
282             if not ma.group(1).strip() in tuple_types:
283                 assert java_c_types_none_allowed
284                 return None
285             for idx, ty_info in enumerate(tuple_types[ma.group(1).strip()][0]):
286                 if idx != 0:
287                     java_hu_ty = java_hu_ty + ", "
288                 if ty_info.is_native_primitive:
289                     if ty_info.java_hu_ty == "int":
290                         java_hu_ty = java_hu_ty + "Integer" # Java concrete integer type is Integer, not Int
291                     else:
292                         java_hu_ty = java_hu_ty + ty_info.java_hu_ty.title() # If we're a primitive, capitalize the first letter
293                 else:
294                     java_hu_ty = java_hu_ty + ty_info.java_hu_ty
295             java_hu_ty = java_hu_ty + ">"
296             fn_ty_arg = "J"
297             fn_arg = ma.group(2).strip()
298             rust_obj = ma.group(1).strip()
299             take_by_ptr = True
300         elif ma.group(1).strip().startswith("LDKC3Tuple"):
301             c_ty = consts.ptr_c_ty
302             java_ty = consts.ptr_native_ty
303             java_hu_ty = "ThreeTuple<"
304             if not ma.group(1).strip() in tuple_types:
305                 assert java_c_types_none_allowed
306                 return None
307             for idx, ty_info in enumerate(tuple_types[ma.group(1).strip()][0]):
308                 if idx != 0:
309                     java_hu_ty = java_hu_ty + ", "
310                 if ty_info.is_native_primitive:
311                     if ty_info.java_hu_ty == "int":
312                         java_hu_ty = java_hu_ty + "Integer" # Java concrete integer type is Integer, not Int
313                     else:
314                         java_hu_ty = java_hu_ty + ty_info.java_hu_ty.title() # If we're a primitive, capitalize the first letter
315                 else:
316                     java_hu_ty = java_hu_ty + ty_info.java_hu_ty
317             java_hu_ty = java_hu_ty + ">"
318             fn_ty_arg = "J"
319             fn_arg = ma.group(2).strip()
320             rust_obj = ma.group(1).strip()
321             take_by_ptr = True
322         else:
323             c_ty = consts.ptr_c_ty
324             java_ty = consts.ptr_native_ty
325             java_hu_ty = ma.group(1).strip().replace("LDKCOption", "Option").replace("LDKCResult", "Result").replace("LDK", "")
326             fn_ty_arg = "J"
327             fn_arg = ma.group(2).strip()
328             rust_obj = ma.group(1).strip()
329             take_by_ptr = True
330
331     if fn_arg.startswith(" *") or fn_arg.startswith("*"):
332         fn_arg = fn_arg.replace("*", "").strip()
333         is_ptr = True
334         c_ty = consts.ptr_c_ty
335         java_ty = consts.ptr_native_ty
336         fn_ty_arg = "J"
337
338     var_is_arr = var_is_arr_regex.match(fn_arg)
339     if var_is_arr is not None or ret_arr_len is not None:
340         assert(not take_by_ptr)
341         assert(not is_ptr)
342         # is there a special case for plurals?
343         if len(mapped_type) == 2:
344             java_ty = mapped_type[1]
345         else:
346             java_ty = java_ty + "[]"
347         c_ty = c_ty + "Array"
348         if var_is_arr is not None:
349             if var_is_arr.group(1) == "":
350                 return TypeInfo(rust_obj=rust_obj, java_ty=java_ty, java_hu_ty=java_ty, java_fn_ty_arg="[" + fn_ty_arg, c_ty=c_ty, is_const=is_const,
351                     passed_as_ptr=False, is_ptr=False, nonnull_ptr=nonnull_ptr, var_name="arg",
352                     arr_len=var_is_arr.group(2), arr_access=arr_access, is_native_primitive=False)
353             return TypeInfo(rust_obj=rust_obj, java_ty=java_ty, java_hu_ty=java_ty, java_fn_ty_arg="[" + fn_ty_arg, c_ty=c_ty, is_const=is_const,
354                 passed_as_ptr=False, is_ptr=False, nonnull_ptr=nonnull_ptr, var_name=var_is_arr.group(1),
355                 arr_len=var_is_arr.group(2), arr_access=arr_access, is_native_primitive=False)
356
357     if java_hu_ty is None:
358         java_hu_ty = java_ty
359     return TypeInfo(rust_obj=rust_obj, java_ty=java_ty, java_hu_ty=java_hu_ty, java_fn_ty_arg=fn_ty_arg, c_ty=c_ty, passed_as_ptr=is_ptr or take_by_ptr,
360         is_const=is_const, is_ptr=is_ptr, nonnull_ptr=nonnull_ptr, var_name=fn_arg, arr_len=arr_len, arr_access=arr_access, is_native_primitive=is_primitive)
361
362 fn_ptr_regex = re.compile("^extern const ([A-Za-z_0-9\* ]*) \(\*(.*)\)\((.*)\);$")
363 fn_ret_arr_regex = re.compile("(.*) \(\*(.*)\((.*)\)\)\[([0-9]*)\];$")
364 reg_fn_regex = re.compile("([A-Za-z_0-9\* ]* \*?)([a-zA-Z_0-9]*)\((.*)\);$")
365 clone_fns = set()
366 constructor_fns = {}
367
368 from gen_type_mapping import TypeMappingGenerator
369 type_mapping_generator = TypeMappingGenerator(java_c_types, consts, opaque_structs, clone_fns, unitary_enums, trait_structs, complex_enums, result_types, tuple_types)
370
371 with open(sys.argv[1]) as in_h:
372     for line in in_h:
373         reg_fn = reg_fn_regex.match(line)
374         if reg_fn is not None:
375             if reg_fn.group(2).endswith("_clone"):
376                 clone_fns.add(reg_fn.group(2))
377             else:
378                 rty = java_c_types(reg_fn.group(1), None)
379                 if rty is not None and not rty.is_native_primitive and reg_fn.group(2) == rty.java_hu_ty + "_new":
380                     constructor_fns[rty.rust_obj] = reg_fn.group(3)
381             continue
382         arr_fn = fn_ret_arr_regex.match(line)
383         if arr_fn is not None:
384             if arr_fn.group(2).endswith("_clone"):
385                 clone_fns.add(arr_fn.group(2))
386             # No object constructors return arrays, as then they wouldn't be an object constructor
387             continue
388
389 # Define some manual clones...
390 clone_fns.add("ThirtyTwoBytes_clone")
391 write_c("static inline struct LDKThirtyTwoBytes ThirtyTwoBytes_clone(const struct LDKThirtyTwoBytes *orig) { struct LDKThirtyTwoBytes ret; memcpy(ret.data, orig->data, 32); return ret; }\n")
392
393 java_c_types_none_allowed = False # C structs created by cbindgen are declared in dependency order
394
395 with open(f"{sys.argv[3]}/structs/UtilMethods{consts.file_ext}", "a") as util:
396     util.write(consts.util_fn_pfx)
397
398 with open(sys.argv[1]) as in_h, open(sys.argv[2], "w") as out_java:
399     # Map a top-level function
400     def map_fn(line, re_match, ret_arr_len, c_call_string, doc_comment):
401         method_return_type = re_match.group(1)
402         method_name = re_match.group(2)
403         method_comma_separated_arguments = re_match.group(3)
404         method_arguments = method_comma_separated_arguments.split(',')
405
406         is_free = method_name.endswith("_free")
407         if method_name.startswith("COption") or method_name.startswith("CResult"):
408             struct_meth = method_name.rsplit("Z", 1)[0][1:] + "Z"
409         else:
410             struct_meth = method_name.split("_")[0]
411
412         return_type_info = type_mapping_generator.map_type(method_return_type.strip() + " ret", True, ret_arr_len, False, False)
413
414         argument_types = []
415         default_constructor_args = {}
416         takes_self = False
417         args_known = True
418
419         for argument_index, argument in enumerate(method_arguments):
420             argument_conversion_info = type_mapping_generator.map_type(argument, False, None, is_free, True)
421             if argument_index == 0 and argument_conversion_info.java_hu_ty == struct_meth:
422                 takes_self = True
423             if argument_conversion_info.arg_conv is not None and "Warning" in argument_conversion_info.arg_conv:
424                 if argument_conversion_info.rust_obj in constructor_fns:
425                     assert not is_free
426                     for explode_arg in constructor_fns[argument_conversion_info.rust_obj].split(','):
427                         explode_arg_conv = type_mapping_generator.map_type(explode_arg, False, None, False, True)
428                         if explode_arg_conv.c_ty == "void":
429                             # We actually want to handle this case, but for now its only used in NetGraphMsgHandler::new()
430                             # which ends up resulting in a redundant constructor - both without arguments for the NetworkGraph.
431                             args_known = False
432                             pass
433                         if not argument_conversion_info.arg_name in default_constructor_args:
434                             default_constructor_args[argument_conversion_info.arg_name] = []
435                         default_constructor_args[argument_conversion_info.arg_name].append(explode_arg_conv)
436             argument_types.append(argument_conversion_info)
437
438         out_java.write("\t// " + line)
439         (out_java_delta, out_c_delta, out_java_struct_delta) = \
440             consts.map_function(argument_types, c_call_string, method_name, return_type_info, struct_meth, default_constructor_args, takes_self, args_known, type_mapping_generator, doc_comment)
441         out_java.write(out_java_delta)
442
443         if is_free:
444             assert len(argument_types) == 1
445             assert return_type_info.c_ty == "void"
446             write_c(consts.c_fn_ty_pfx + "void " + consts.c_fn_name_define_pfx(method_name, True) + argument_types[0].c_ty + " " + argument_types[0].ty_info.var_name + ") {\n")
447             if argument_types[0].ty_info.passed_as_ptr and not argument_types[0].ty_info.rust_obj in opaque_structs:
448                 write_c("\tif ((" + argument_types[0].ty_info.var_name + " & 1) != 0) return;\n")
449
450             for info in argument_types:
451                 if info.arg_conv is not None:
452                     write_c("\t" + info.arg_conv.replace('\n', "\n\t") + "\n")
453             assert c_call_string is None
454             write_c("\t" + method_name + "(")
455             if argument_types[0].arg_conv_name is not None:
456                 write_c(argument_types[0].arg_conv_name)
457             write_c(");")
458             for info in argument_types:
459                 if info.arg_conv_cleanup is not None:
460                     write_c("\n\t" + info.arg_conv_cleanup.replace("\n", "\n\t"))
461             write_c("\n}\n\n")
462         else:
463             write_c(out_c_delta)
464
465         out_java_struct = None
466         expected_struct = "LDK" + struct_meth
467         expected_cstruct = "LDKC" + struct_meth
468         if (expected_struct in opaque_structs or expected_struct in trait_structs
469                 or expected_struct in complex_enums or expected_cstruct in complex_enums
470                 or expected_cstruct in result_types) and not is_free:
471             out_java_struct = open(f"{sys.argv[3]}/structs/{struct_meth}{consts.file_ext}", "a")
472         elif (method_name.startswith("C2Tuple_") and method_name.endswith("_read")) or \
473                 (return_type_info.rust_obj is not None and "Result" in return_type_info.rust_obj and "from" in method_name):
474             out_java_struct = open(f"{sys.argv[3]}/structs/UtilMethods{consts.file_ext}", "a")
475         if out_java_struct is not None:
476             out_java_struct.write(out_java_struct_delta)
477
478     def map_unitary_enum(struct_name, field_lines, enum_doc_comment):
479         with open(f"{sys.argv[3]}/enums/{struct_name}{consts.file_ext}", "w") as out_java_enum:
480             unitary_enums.add(struct_name)
481             for idx, struct_line in enumerate(field_lines):
482                 if idx == 0:
483                     assert(struct_line == "typedef enum %s {" % struct_name)
484                 elif idx == len(field_lines) - 3:
485                     assert(struct_line.endswith("_Sentinel,"))
486                 elif idx == len(field_lines) - 2:
487                     assert(struct_line == "} %s;" % struct_name)
488                 elif idx == len(field_lines) - 1:
489                     assert(struct_line == "")
490             (c_out, native_file_out, native_out) = consts.native_c_unitary_enum_map(struct_name, [x.strip().strip(",") for x in field_lines[1:-3]], enum_doc_comment)
491             write_c(c_out)
492             out_java_enum.write(native_file_out)
493             out_java.write(native_out)
494
495     def map_complex_enum(struct_name, union_enum_items, inline_enum_variants, enum_doc_comment):
496         java_hu_type = struct_name.replace("LDK", "").replace("COption", "Option")
497         complex_enums.add(struct_name)
498
499         enum_variants = []
500         tag_field_lines = union_enum_items["field_lines"]
501         for idx, struct_line in enumerate(tag_field_lines):
502             if idx == 0:
503                 assert(struct_line == "typedef enum %s_Tag {" % struct_name)
504             elif idx == len(tag_field_lines) - 3:
505                 assert(struct_line.endswith("_Sentinel,"))
506             elif idx == len(tag_field_lines) - 2:
507                 assert(struct_line == "} %s_Tag;" % struct_name)
508             elif idx == len(tag_field_lines) - 1:
509                 assert(struct_line == "")
510             else:
511                 variant_name = struct_line.strip(' ,')[len(struct_name) + 1:]
512                 fields = []
513                 if "LDK" + variant_name in union_enum_items:
514                     enum_var_lines = union_enum_items["LDK" + variant_name]
515                     for idx, field in enumerate(enum_var_lines):
516                         if idx != 0 and idx < len(enum_var_lines) - 2 and field.strip() != "":
517                             fields.append(type_mapping_generator.map_type(field.strip(' ;'), False, None, False, True))
518                     enum_variants.append(ComplexEnumVariantInfo(variant_name, fields, False))
519                 elif camel_to_snake(variant_name) in inline_enum_variants:
520                     fields.append(type_mapping_generator.map_type(inline_enum_variants[camel_to_snake(variant_name)] + " " + camel_to_snake(variant_name), False, None, False, True))
521                     enum_variants.append(ComplexEnumVariantInfo(variant_name, fields, True))
522                 else:
523                     enum_variants.append(ComplexEnumVariantInfo(variant_name, fields, True))
524
525         with open(f"{sys.argv[3]}/structs/{java_hu_type}{consts.file_ext}", "w") as out_java_enum:
526             (out_java_addendum, out_java_enum_addendum, out_c_addendum) = consts.map_complex_enum(struct_name, enum_variants, camel_to_snake, enum_doc_comment)
527
528             out_java_enum.write(out_java_enum_addendum)
529             out_java.write(out_java_addendum)
530             write_c(out_c_addendum)
531
532     def map_trait(struct_name, field_var_lines, trait_fn_lines, trait_doc_comment):
533         with open(f"{sys.argv[3]}/structs/{struct_name.replace('LDK', '')}{consts.file_ext}", "w") as out_java_trait:
534             field_var_convs = []
535             flattened_field_var_convs = []
536             for var_line in field_var_lines:
537                 if var_line.group(1) in trait_structs:
538                     field_var_convs.append((var_line.group(1), var_line.group(2), trait_structs[var_line.group(1)]))
539                     flattened_field_var_convs.append((var_line.group(1), var_line.group(2), ))
540                     flattened_field_var_convs.extend(trait_structs[var_line.group(1)])
541                 else:
542                     mapped = type_mapping_generator.map_type(var_line.group(1) + " " + var_line.group(2), False, None, False, False)
543                     field_var_convs.append(mapped)
544                     flattened_field_var_convs.append(mapped)
545             trait_structs[struct_name] = field_var_convs
546
547             field_fns = []
548             for fn_docs, fn_line in trait_fn_lines:
549                 ret_ty_info = type_mapping_generator.map_type(fn_line.group(2).strip() + " ret", True, None, False, False)
550                 is_const = fn_line.group(4) is not None
551
552                 arg_tys = []
553                 for idx, arg in enumerate(fn_line.group(5).split(',')):
554                     if arg == "":
555                         continue
556                     arg_conv_info = type_mapping_generator.map_type(arg, True, None, False, False)
557                     arg_tys.append(arg_conv_info)
558                 field_fns.append(TraitMethInfo(fn_line.group(3), is_const, ret_ty_info, arg_tys, fn_docs))
559
560             (out_java_addendum, out_java_trait_addendum, out_c_addendum) = consts.native_c_map_trait(struct_name, field_var_convs, flattened_field_var_convs, field_fns, trait_doc_comment)
561             write_c(out_c_addendum)
562             out_java_trait.write(out_java_trait_addendum)
563             out_java.write(out_java_addendum)
564
565         for fn_docs, fn_line in trait_fn_lines:
566             # For now, just disable enabling the _call_log - we don't know how to inverse-map String
567             is_log = fn_line.group(3) == "log" and struct_name == "LDKLogger"
568             if fn_line.group(3) != "free" and fn_line.group(3) != "clone" and fn_line.group(3) != "eq" and not is_log:
569                 dummy_line = fn_line.group(2) + struct_name.replace("LDK", "") + "_" + fn_line.group(3) + " " + struct_name + " *NONNULL_PTR this_arg" + fn_line.group(5) + "\n"
570                 map_fn(dummy_line, re.compile("([A-Za-z_0-9]*) *([A-Za-z_0-9]*) *(.*)").match(dummy_line), None, "(this_arg_conv->" + fn_line.group(3) + ")(this_arg_conv->this_arg", fn_docs)
571         for idx, var_line in enumerate(field_var_lines):
572             if var_line.group(1) not in trait_structs:
573                 write_c(var_line.group(1) + " " + struct_name + "_set_get_" + var_line.group(2) + "(" + struct_name + "* this_arg) {\n")
574                 write_c("\tif (this_arg->set_" + var_line.group(2) + " != NULL)\n")
575                 write_c("\t\tthis_arg->set_" + var_line.group(2) + "(this_arg);\n")
576                 write_c("\treturn this_arg->" + var_line.group(2) + ";\n")
577                 write_c("}\n")
578                 dummy_line = var_line.group(1) + " " + struct_name.replace("LDK", "") + "_get_" + var_line.group(2) + " " + struct_name + " *NONNULL_PTR this_arg" + fn_line.group(5) + "\n"
579                 map_fn(dummy_line, re.compile("([A-Za-z_0-9]*) *([A-Za-z_0-9]*) *(.*)").match(dummy_line), None, struct_name + "_set_get_" + var_line.group(2) + "(this_arg_conv", fn_docs)
580
581     def map_result(struct_name, res_ty, err_ty):
582         result_types.add(struct_name)
583         human_ty = struct_name.replace("LDKCResult", "Result")
584         with open(f"{sys.argv[3]}/structs/{human_ty}{consts.file_ext}", "w") as out_java_struct:
585             out_java_struct.write(consts.hu_struct_file_prefix)
586             out_java_struct.write("public class " + human_ty + " extends CommonBase {\n")
587             out_java_struct.write("\tprivate " + human_ty + "(Object _dummy, long ptr) { super(ptr); }\n")
588             out_java_struct.write("\tprotected void finalize() throws Throwable {\n")
589             out_java_struct.write("\t\tif (ptr != 0) { bindings." + struct_name.replace("LDK","") + "_free(ptr); } super.finalize();\n")
590             out_java_struct.write("\t}\n\n")
591             out_java_struct.write("\tstatic " + human_ty + " constr_from_ptr(long ptr) {\n")
592             out_java_struct.write("\t\tif (bindings." + struct_name + "_result_ok(ptr)) {\n")
593             out_java_struct.write("\t\t\treturn new " + human_ty + "_OK(null, ptr);\n")
594             out_java_struct.write("\t\t} else {\n")
595             out_java_struct.write("\t\t\treturn new " + human_ty + "_Err(null, ptr);\n")
596             out_java_struct.write("\t\t}\n")
597             out_java_struct.write("\t}\n")
598
599             res_map = type_mapping_generator.map_type(res_ty + " res", True, None, False, True)
600             err_map = type_mapping_generator.map_type(err_ty + " err", True, None, False, True)
601             can_clone = True
602             if not res_map.is_native_primitive and (res_map.rust_obj.replace("LDK", "") + "_clone" not in clone_fns):
603                 can_clone = False
604             if not err_map.is_native_primitive and (err_map.rust_obj.replace("LDK", "") + "_clone" not in clone_fns):
605                 can_clone = False
606
607             out_java.write("\tpublic static native boolean " + struct_name + "_result_ok(long arg);\n")
608             write_c(consts.c_fn_ty_pfx + "jboolean " + consts.c_fn_name_define_pfx(struct_name + "_result_ok", True) + consts.ptr_c_ty + " arg) {\n")
609             write_c("\treturn ((" + struct_name + "*)arg)->result_ok;\n")
610             write_c("}\n")
611
612             out_java.write("\tpublic static native " + res_map.java_ty + " " + struct_name + "_get_ok(long arg);\n")
613             write_c(consts.c_fn_ty_pfx + res_map.c_ty + " " + consts.c_fn_name_define_pfx(struct_name + "_get_ok", True) + consts.ptr_c_ty + " arg) {\n")
614             write_c("\t" + struct_name + " *val = (" + struct_name + "*)(arg & ~1);\n")
615             write_c("\tCHECK(val->result_ok);\n\t")
616             out_java_struct.write("\tpublic static final class " + human_ty + "_OK extends " + human_ty + " {\n")
617             if res_map.ret_conv is not None:
618                 write_c(res_map.ret_conv[0].replace("\n", "\n\t") + "(*val->contents.result)")
619                 write_c(res_map.ret_conv[1].replace("\n", "\n\t") + "\n\treturn " + res_map.ret_conv_name)
620             else:
621                 write_c("return *val->contents.result")
622             write_c(";\n}\n")
623
624             if res_map.java_hu_ty != "void":
625                 out_java_struct.write("\t\tpublic final " + res_map.java_hu_ty + " res;\n")
626             out_java_struct.write("\t\tprivate " + human_ty + "_OK(Object _dummy, long ptr) {\n")
627             out_java_struct.write("\t\t\tsuper(_dummy, ptr);\n")
628             if res_map.java_hu_ty == "void":
629                 pass
630             elif res_map.to_hu_conv is not None:
631                 out_java_struct.write("\t\t\t" + res_map.java_ty + " res = bindings." + struct_name + "_get_ok(ptr);\n")
632                 out_java_struct.write("\t\t\t" + res_map.to_hu_conv.replace("\n", "\n\t\t\t"))
633                 out_java_struct.write("\n\t\t\tthis.res = " + res_map.to_hu_conv_name + ";\n")
634             else:
635                 out_java_struct.write("\t\t\tthis.res = bindings." + struct_name + "_get_ok(ptr);\n")
636             out_java_struct.write("\t\t}\n")
637             out_java_struct.write("\t}\n\n")
638
639             out_java.write("\tpublic static native " + err_map.java_ty + " " + struct_name + "_get_err(long arg);\n")
640             write_c(consts.c_fn_ty_pfx + err_map.c_ty + " " + consts.c_fn_name_define_pfx(struct_name + "_get_err", True) + consts.ptr_c_ty + " arg) {\n")
641             write_c("\t" + struct_name + " *val = (" + struct_name + "*)(arg & ~1);\n")
642             write_c("\tCHECK(!val->result_ok);\n\t")
643             out_java_struct.write("\tpublic static final class " + human_ty + "_Err extends " + human_ty + " {\n")
644             if err_map.ret_conv is not None:
645                 write_c(err_map.ret_conv[0].replace("\n", "\n\t") + "(*val->contents.err)")
646                 write_c(err_map.ret_conv[1].replace("\n", "\n\t") + "\n\treturn " + err_map.ret_conv_name)
647             else:
648                 write_c("return *val->contents.err")
649             write_c(";\n}\n")
650
651             if err_map.java_hu_ty != "void":
652                 out_java_struct.write("\t\tpublic final " + err_map.java_hu_ty + " err;\n")
653             out_java_struct.write("\t\tprivate " + human_ty + "_Err(Object _dummy, long ptr) {\n")
654             out_java_struct.write("\t\t\tsuper(_dummy, ptr);\n")
655             if err_map.java_hu_ty == "void":
656                 pass
657             elif err_map.to_hu_conv is not None:
658                 out_java_struct.write("\t\t\t" + err_map.java_ty + " err = bindings." + struct_name + "_get_err(ptr);\n")
659                 out_java_struct.write("\t\t\t" + err_map.to_hu_conv.replace("\n", "\n\t\t\t"))
660                 out_java_struct.write("\n\t\t\tthis.err = " + err_map.to_hu_conv_name + ";\n")
661             else:
662                 out_java_struct.write("\t\t\tthis.err = bindings." + struct_name + "_get_err(ptr);\n")
663             out_java_struct.write("\t\t}\n")
664
665             out_java_struct.write("\t}\n\n")
666
667     def map_tuple(struct_name, field_lines):
668         out_java.write("\tpublic static native long " + struct_name + "_new(")
669         write_c(consts.c_fn_ty_pfx + consts.ptr_c_ty + " " + consts.c_fn_name_define_pfx(struct_name + "_new", len(field_lines) > 3))
670         ty_list = []
671         for idx, line in enumerate(field_lines):
672             if idx != 0 and idx < len(field_lines) - 2:
673                 ty_info = java_c_types(line.strip(';'), None)
674                 if idx != 1:
675                     out_java.write(", ")
676                     write_c(", ")
677                 e = chr(ord('a') + idx - 1)
678                 out_java.write(ty_info.java_ty + " " + e)
679                 write_c(ty_info.c_ty + " " + e)
680                 ty_list.append(ty_info)
681         tuple_types[struct_name] = (ty_list, struct_name)
682         out_java.write(");\n")
683         write_c(") {\n")
684         write_c("\t" + struct_name + "* ret = MALLOC(sizeof(" + struct_name + "), \"" + struct_name + "\");\n")
685         for idx, line in enumerate(field_lines):
686             if idx != 0 and idx < len(field_lines) - 2:
687                 ty_info = type_mapping_generator.map_type(line.strip(';'), False, None, False, False)
688                 e = chr(ord('a') + idx - 1)
689                 if ty_info.arg_conv is not None:
690                     write_c("\t" + ty_info.arg_conv.replace("\n", "\n\t"))
691                     write_c("\n\tret->" + e + " = " + ty_info.arg_conv_name + ";\n")
692                 else:
693                     write_c("\tret->" + e + " = " + e + ";\n")
694                 if ty_info.arg_conv_cleanup is not None:
695                     write_c("\t//TODO: Really need to call " + ty_info.arg_conv_cleanup + " here\n")
696         write_c("\treturn (long)ret;\n")
697         write_c("}\n")
698
699         for idx, ty_info in enumerate(ty_list):
700             e = chr(ord('a') + idx)
701             out_java.write("\tpublic static native " + ty_info.java_ty + " " + struct_name + "_get_" + e + "(long ptr);\n")
702             write_c(consts.c_fn_ty_pfx + ty_info.c_ty + " " + consts.c_fn_name_define_pfx(struct_name + "_get_" + e, True) + consts.ptr_c_ty + " ptr) {\n")
703             write_c("\t" + struct_name + " *tuple = (" + struct_name + "*)(ptr & ~1);\n")
704             conv_info = type_mapping_generator.map_type_with_info(ty_info, False, None, False, True)
705             if conv_info.ret_conv is not None:
706                 write_c("\t" + conv_info.ret_conv[0].replace("\n", "\n\t") + "tuple->" + e + conv_info.ret_conv[1].replace("\n", "\n\t") + "\n")
707                 write_c("\treturn " + conv_info.ret_conv_name + ";\n")
708             else:
709                 write_c("\treturn tuple->" + e + ";\n")
710             write_c("}\n")
711
712     out_java.write(consts.bindings_header)
713
714     with open(f"{sys.argv[3]}/structs/CommonBase{consts.file_ext}", "w") as out_java_struct:
715         out_java_struct.write(consts.common_base)
716
717     block_comment = None
718     last_block_comment = None
719     cur_block_obj = None
720
721     const_val_regex = re.compile("^extern const ([A-Za-z_0-9]*) ([A-Za-z_0-9]*);$")
722
723     line_indicates_result_regex = re.compile("^   union (LDKCResult_[A-Za-z_0-9]*Ptr) contents;$")
724     line_indicates_vec_regex = re.compile("^   (struct |enum |union )?([A-Za-z_0-9]*) \*data;$")
725     line_indicates_opaque_regex = re.compile("^   bool is_owned;$")
726     line_indicates_trait_regex = re.compile("^   (struct |enum |union )?([A-Za-z_0-9]* \*?)\(\*([A-Za-z_0-9]*)\)\((const )?void \*this_arg(.*)\);$")
727     assert(line_indicates_trait_regex.match("   uintptr_t (*send_data)(void *this_arg, LDKu8slice data, bool resume_read);"))
728     assert(line_indicates_trait_regex.match("   struct LDKCVec_MessageSendEventZ (*get_and_clear_pending_msg_events)(const void *this_arg);"))
729     assert(line_indicates_trait_regex.match("   void *(*clone)(const void *this_arg);"))
730     assert(line_indicates_trait_regex.match("   struct LDKCVec_u8Z (*write)(const void *this_arg);"))
731     line_field_var_regex = re.compile("^   struct ([A-Za-z_0-9]*) ([A-Za-z_0-9]*);$")
732     assert(line_field_var_regex.match("   struct LDKMessageSendEventsProvider MessageSendEventsProvider;"))
733     assert(line_field_var_regex.match("   struct LDKChannelPublicKeys pubkeys;"))
734     struct_name_regex = re.compile("^typedef (struct|enum|union) (MUST_USE_STRUCT )?(LDK[A-Za-z_0-9]*) {$")
735     assert(struct_name_regex.match("typedef struct LDKCVec_u8Z {"))
736     assert(struct_name_regex.match("typedef enum LDKNetwork {"))
737
738     union_enum_items = {}
739     result_ptr_struct_items = {}
740     for line in in_h:
741         if block_comment is not None:
742             if line.endswith("*/\n"):
743                 last_block_comment = block_comment.strip("\n")
744                 block_comment = None
745             else:
746                 block_comment = block_comment + line.strip(" /*")
747         elif cur_block_obj is not None:
748             cur_block_obj  = cur_block_obj + line
749             if line.startswith("} "):
750                 field_lines = []
751                 struct_name = None
752                 vec_ty = None
753                 obj_lines = cur_block_obj.split("\n")
754                 is_opaque = False
755                 result_contents = None
756                 is_unitary_enum = False
757                 is_union_enum = False
758                 is_union = False
759                 is_tuple = False
760                 trait_fn_lines = []
761                 field_var_lines = []
762
763                 for idx, struct_line in enumerate(obj_lines):
764                     if struct_line.strip().startswith("/*"):
765                         block_comment = struct_line.strip(" /*")
766                     if block_comment is not None:
767                         if struct_line.endswith("*/"):
768                             last_struct_block_comment = block_comment.strip("\n")
769                             block_comment = None
770                         else:
771                             block_comment = block_comment + "\n" + struct_line.strip(" /*")
772                     else:
773                         struct_name_match = struct_name_regex.match(struct_line)
774                         if struct_name_match is not None:
775                             struct_name = struct_name_match.group(3)
776                             if struct_name_match.group(1) == "enum":
777                                 if not struct_name.endswith("_Tag"):
778                                     is_unitary_enum = True
779                                 else:
780                                     is_union_enum = True
781                             elif struct_name_match.group(1) == "union":
782                                 is_union = True
783                         if line_indicates_opaque_regex.match(struct_line):
784                             is_opaque = True
785                         result_match = line_indicates_result_regex.match(struct_line)
786                         if result_match is not None:
787                             result_contents = result_match.group(1)
788                         vec_ty_match = line_indicates_vec_regex.match(struct_line)
789                         if vec_ty_match is not None and struct_name.startswith("LDKCVec_"):
790                             vec_ty = vec_ty_match.group(2)
791                         elif struct_name.startswith("LDKC2Tuple_") or struct_name.startswith("LDKC3Tuple_"):
792                             is_tuple = True
793                         trait_fn_match = line_indicates_trait_regex.match(struct_line)
794                         if trait_fn_match is not None:
795                             trait_fn_lines.append((last_struct_block_comment, trait_fn_match))
796                         field_var_match = line_field_var_regex.match(struct_line)
797                         if field_var_match is not None:
798                             field_var_lines.append(field_var_match)
799                         field_lines.append(struct_line)
800
801                 assert(struct_name is not None)
802                 assert(len(trait_fn_lines) == 0 or not (is_opaque or is_unitary_enum or is_union_enum or is_union or result_contents is not None or vec_ty is not None))
803                 assert(not is_opaque or not (len(trait_fn_lines) != 0 or is_unitary_enum or is_union_enum or is_union or result_contents is not None or vec_ty is not None))
804                 assert(not is_unitary_enum or not (len(trait_fn_lines) != 0 or is_opaque or is_union_enum or is_union or result_contents is not None or vec_ty is not None))
805                 assert(not is_union_enum or not (len(trait_fn_lines) != 0 or is_unitary_enum or is_opaque or is_union or result_contents is not None or vec_ty is not None))
806                 assert(not is_union or not (len(trait_fn_lines) != 0 or is_unitary_enum or is_union_enum or is_opaque or result_contents is not None or vec_ty is not None))
807                 assert(result_contents is None or not (len(trait_fn_lines) != 0 or is_unitary_enum or is_union_enum or is_opaque or is_union or vec_ty is not None))
808                 assert(vec_ty is None or not (len(trait_fn_lines) != 0 or is_unitary_enum or is_union_enum or is_opaque or is_union or result_contents is not None))
809
810                 if is_opaque:
811                     opaque_structs.add(struct_name)
812                     with open(f"{sys.argv[3]}/structs/{struct_name.replace('LDK', '')}{consts.file_ext}", "w") as out_java_struct:
813                         out_opaque_struct_human = consts.map_opaque_struct(struct_name, last_block_comment)
814                         last_block_comment = None
815                         out_java_struct.write(out_opaque_struct_human)
816                 elif result_contents is not None:
817                     assert result_contents in result_ptr_struct_items
818                     res_ty, err_ty = result_ptr_struct_items[result_contents]
819                     map_result(struct_name, res_ty, err_ty)
820                 elif struct_name.startswith("LDKCResult_") and struct_name.endswith("ZPtr"):
821                     for line in field_lines:
822                         if line.endswith("*result;"):
823                             res_ty = line[:-8].strip()
824                         elif line.endswith("*err;"):
825                             err_ty = line[:-5].strip()
826                     result_ptr_struct_items[struct_name] = (res_ty, err_ty)
827                     result_types.add(struct_name[:-3])
828                 elif is_tuple:
829                     map_tuple(struct_name, field_lines)
830                 elif vec_ty is not None:
831                     ty_info = type_mapping_generator.map_type(vec_ty + " arr_elem", False, None, False, False)
832                     if len(ty_info.java_fn_ty_arg) == 1: # ie we're a primitive of some form
833                         out_java.write("\tpublic static native long " + struct_name + "_new(" + ty_info.java_ty + "[] elems);\n")
834                         write_c(consts.c_fn_ty_pfx + consts.ptr_c_ty + " " + consts.c_fn_name_define_pfx(struct_name + "_new", True) + ty_info.c_ty + "Array elems) {\n")
835                         write_c("\t" + struct_name + " *ret = MALLOC(sizeof(" + struct_name + "), \"" + struct_name + "\");\n")
836                         write_c("\tret->datalen = " + consts.get_native_arr_len_call[0] + "elems" + consts.get_native_arr_len_call[1] + ";\n")
837                         write_c("\tif (ret->datalen == 0) {\n")
838                         write_c("\t\tret->data = NULL;\n")
839                         write_c("\t} else {\n")
840                         write_c("\t\tret->data = MALLOC(sizeof(" + vec_ty + ") * ret->datalen, \"" + struct_name + " Data\");\n")
841                         native_arr_ptr_call = consts.get_native_arr_ptr_call(ty_info.ty_info)
842                         write_c("\t\t" + ty_info.c_ty + " *java_elems = " + native_arr_ptr_call[0] + "elems" + native_arr_ptr_call[1] + ";\n")
843                         write_c("\t\tfor (size_t i = 0; i < ret->datalen; i++) {\n")
844                         if ty_info.arg_conv is not None:
845                             write_c("\t\t\t" + ty_info.c_ty + " arr_elem = java_elems[i];\n")
846                             write_c("\t\t\t" + ty_info.arg_conv.replace("\n", "\n\t\t\t") + "\n")
847                             write_c("\t\t\tret->data[i] = " + ty_info.arg_conv_name + ";\n")
848                             assert ty_info.arg_conv_cleanup is None
849                         else:
850                             write_c("\t\t\tret->data[i] = java_elems[i];\n")
851                         write_c("\t\t}\n")
852                         cleanup = consts.release_native_arr_ptr_call(ty_info.ty_info, "elems", "java_elems")
853                         if cleanup is not None:
854                             write_c("\t\t" + cleanup + ";\n")
855                         write_c("\t}\n")
856                         write_c("\treturn (long)ret;\n")
857                         write_c("}\n")
858
859                     if ty_info.is_native_primitive:
860                         clone_fns.add(struct_name.replace("LDK", "") + "_clone")
861                         write_c("static inline " + struct_name + " " + struct_name.replace("LDK", "") + "_clone(const " + struct_name + " *orig) {\n")
862                         write_c("\t" + struct_name + " ret = { .data = MALLOC(sizeof(" + ty_info.c_ty + ") * orig->datalen, \"" + struct_name + " clone bytes\"), .datalen = orig->datalen };\n")
863                         write_c("\tmemcpy(ret.data, orig->data, sizeof(" + ty_info.c_ty + ") * ret.datalen);\n")
864                         write_c("\treturn ret;\n}\n")
865                     elif (ty_info.rust_obj.replace("LDK", "") + "_clone") in clone_fns:
866                         ty_name = "CVec_" + ty_info.rust_obj.replace("LDK", "") + "Z";
867                         clone_fns.add(ty_name + "_clone")
868                         write_c("static inline " + struct_name + " " + ty_name + "_clone(const " + struct_name + " *orig) {\n")
869                         write_c("\t" + struct_name + " ret = { .data = MALLOC(sizeof(" + ty_info.rust_obj + ") * orig->datalen, \"" + struct_name + " clone bytes\"), .datalen = orig->datalen };\n")
870                         write_c("\tfor (size_t i = 0; i < ret.datalen; i++) {\n")
871                         write_c("\t\tret.data[i] = " + ty_info.rust_obj.replace("LDK", "") + "_clone(&orig->data[i]);\n")
872                         write_c("\t}\n\treturn ret;\n}\n")
873                 elif is_union_enum:
874                     assert(struct_name.endswith("_Tag"))
875                     struct_name = struct_name[:-4]
876                     union_enum_items[struct_name] = {"field_lines": field_lines}
877                 elif struct_name.endswith("_Body") and struct_name.split("_")[0] in union_enum_items:
878                     enum_var_name = struct_name.split("_")
879                     union_enum_items[enum_var_name[0]][enum_var_name[1]] = field_lines
880                 elif struct_name in union_enum_items:
881                     tuple_variants = {}
882                     elem_items = -1
883                     for line in field_lines:
884                         if line == "      struct {":
885                             elem_items = 0
886                         elif line == "      };":
887                             elem_items = -1
888                         elif elem_items > -1:
889                             line = line.strip()
890                             if line.startswith("struct "):
891                                 line = line[7:]
892                             elif line.startswith("enum "):
893                                 line = line[5:]
894                             split = line.split(" ")
895                             assert len(split) == 2
896                             tuple_variants[split[1].strip(";")] = split[0]
897                             elem_items += 1
898                             if elem_items > 1:
899                                 # We don't currently support tuple variant with more than one element
900                                 assert False
901                     map_complex_enum(struct_name, union_enum_items[struct_name], tuple_variants, last_block_comment)
902                     last_block_comment = None
903                 elif is_unitary_enum:
904                     map_unitary_enum(struct_name, field_lines, last_block_comment)
905                     last_block_comment = None
906                 elif len(trait_fn_lines) > 0:
907                     map_trait(struct_name, field_var_lines, trait_fn_lines, last_block_comment)
908                 elif struct_name == "LDKTxOut":
909                     with open(f"{sys.argv[3]}/structs/TxOut{consts.file_ext}", "w") as out_java_struct:
910                         out_java_struct.write(consts.hu_struct_file_prefix)
911                         out_java_struct.write("public class TxOut extends CommonBase{\n")
912                         out_java_struct.write("\tTxOut(java.lang.Object _dummy, long ptr) { super(ptr); }\n")
913                         out_java_struct.write("\tlong to_c_ptr() { return 0; }\n")
914                         out_java_struct.write("\t@Override @SuppressWarnings(\"deprecation\")\n")
915                         out_java_struct.write("\tprotected void finalize() throws Throwable {\n")
916                         out_java_struct.write("\t\tsuper.finalize();\n")
917                         out_java_struct.write("\t\tif (ptr != 0) { bindings.TxOut_free(ptr); }\n")
918                         out_java_struct.write("\t}\n")
919                         # TODO: TxOut body
920                         out_java_struct.write("}")
921                 else:
922                     pass # Everything remaining is a byte[] or some form
923                 cur_block_obj = None
924         else:
925             fn_ptr = fn_ptr_regex.match(line)
926             fn_ret_arr = fn_ret_arr_regex.match(line)
927             reg_fn = reg_fn_regex.match(line)
928             const_val = const_val_regex.match(line)
929
930             if line.startswith("#include <"):
931                 pass
932             elif line.startswith("/*"):
933                 if not line.endswith("*/\n"):
934                     block_comment = line.strip(" /*")
935             elif line.startswith("typedef enum "):
936                 cur_block_obj = line
937             elif line.startswith("typedef struct "):
938                 cur_block_obj = line
939             elif line.startswith("typedef union "):
940                 cur_block_obj = line
941             elif fn_ptr is not None:
942                 map_fn(line, fn_ptr, None, None, last_block_comment)
943                 last_block_comment = None
944             elif fn_ret_arr is not None:
945                 map_fn(line, fn_ret_arr, fn_ret_arr.group(4), None, last_block_comment)
946                 last_block_comment = None
947             elif reg_fn is not None:
948                 map_fn(line, reg_fn, None, None, last_block_comment)
949                 last_block_comment = None
950             elif const_val_regex is not None:
951                 # TODO Map const variables
952                 pass
953             else:
954                 assert(line == "\n")
955
956     out_java.write(consts.bindings_footer)
957     for struct_name in opaque_structs:
958         with open(f"{sys.argv[3]}/structs/{struct_name.replace('LDK', '')}{consts.file_ext}", "a") as out_java_struct:
959             out_java_struct.write("}\n")
960     for struct_name in trait_structs:
961         with open(f"{sys.argv[3]}/structs/{struct_name.replace('LDK', '')}{consts.file_ext}", "a") as out_java_struct:
962             out_java_struct.write("}\n")
963     for struct_name in complex_enums:
964         with open(f"{sys.argv[3]}/structs/{struct_name.replace('LDK', '').replace('COption', 'Option')}{consts.file_ext}", "a") as out_java_struct:
965             out_java_struct.write("}\n")
966     for struct_name in result_types:
967         with open(f"{sys.argv[3]}/structs/{struct_name.replace('LDKCResult', 'Result')}{consts.file_ext}", "a") as out_java_struct:
968             out_java_struct.write("}\n")
969
970 with open(sys.argv[4], "w") as out_c:
971     out_c.write(consts.c_file_pfx)
972     out_c.write(consts.init_str())
973     out_c.write(c_file)
974 with open(f"{sys.argv[3]}/structs/UtilMethods{consts.file_ext}", "a") as util:
975     util.write(consts.util_fn_sfx)