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