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