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