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