379eaa6bd3f48c58421153c9e1c86307a2fd43c4
[ldk-java] / typescript_strings.py
1 from bindingstypes import ConvInfo
2 from enum import Enum
3
4 def first_to_lower(string: str) -> str:
5     first = string[0]
6     return first.lower() + string[1:]
7
8
9 class Target(Enum):
10     NODEJS = 1,
11     BROWSER = 2
12
13 class Consts:
14     def __init__(self, DEBUG: bool, target: Target, outdir: str, **kwargs):
15         self.outdir = outdir
16         self.struct_file_suffixes = {}
17         self.c_type_map = dict(
18             uint8_t = ['number', 'Uint8Array'],
19             uint16_t = ['number', 'Uint16Array'],
20             uint32_t = ['number', 'Uint32Array'],
21             uint64_t = ['number'],
22         )
23
24         self.wasm_decoding_map = dict(
25             int8_tArray = 'decodeUint8Array'
26         )
27
28         self.wasm_encoding_map = dict(
29             int8_tArray = 'encodeUint8Array',
30         )
31
32         self.to_hu_conv_templates = dict(
33             ptr = 'const {var_name}_hu_conv: {human_type} = new {human_type}(null, {var_name});',
34             default = 'const {var_name}_hu_conv: {human_type} = new {human_type}(null, {var_name});',
35         )
36
37         self.bindings_header = self.wasm_import_header(target) + """
38 export class VecOrSliceDef {
39     public dataptr: number;
40     public datalen: number;
41     public stride: number;
42     public constructor(dataptr: number, datalen: number, stride: number) {
43         this.dataptr = dataptr;
44         this.datalen = datalen;
45         this.stride = stride;
46     }
47 }
48
49 /*
50 TODO: load WASM file
51 static {
52     System.loadLibrary(\"lightningjni\");
53     init(java.lang.Enum.class, VecOrSliceDef.class);
54     init_class_cache();
55 }
56
57 static native void init(java.lang.Class c, java.lang.Class slicedef);
58 static native void init_class_cache();
59
60 public static native boolean deref_bool(long ptr);
61 public static native long deref_long(long ptr);
62 public static native void free_heap_ptr(long ptr);
63 public static native byte[] read_bytes(long ptr, long len);
64 public static native byte[] get_u8_slice_bytes(long slice_ptr);
65 public static native long bytes_to_u8_vec(byte[] bytes);
66 public static native long new_txpointer_copy_data(byte[] txdata);
67 public static native void txpointer_free(long ptr);
68 public static native byte[] txpointer_get_buffer(long ptr);
69 public static native long vec_slice_len(long vec);
70 public static native long new_empty_slice_vec();
71 */
72
73 """
74
75         self.bindings_version_file = ""
76
77         self.bindings_footer = ""
78
79         self.util_fn_pfx = ""
80         self.util_fn_sfx = ""
81
82         self.common_base = """
83 function freer(f: () => void) { f() }
84 const finalizer = new FinalizationRegistry(freer);
85 function get_freeer(ptr: number, free_fn: (number) => void) {
86         return () => {
87                 free_fn(ptr);
88         }
89 }
90
91 export default class CommonBase {
92         protected ptr: number;
93         protected ptrs_to: object[] = [];
94         protected constructor(ptr: number, free_fn: (ptr: number) => void) {
95                 this.ptr = ptr;
96                 if (Number.isFinite(ptr) && ptr != 0){
97                         finalizer.register(this, get_freeer(ptr, free_fn));
98                 }
99         }
100         protected static add_ref_from(holder: CommonBase, referent: object) {
101                 holder.ptrs_to.push(referent);
102         }
103         public _test_only_get_ptr(): number { return this.ptr; }
104 }
105 """
106
107         self.c_file_pfx = """#include "js-wasm.h"
108 #include <stdatomic.h>
109 #include <lightning.h>
110
111 // These should be provided...somehow...
112 void *memset(void *s, int c, size_t n);
113 void *memcpy(void *dest, const void *src, size_t n);
114 int memcmp(const void *s1, const void *s2, size_t n);
115
116 void __attribute__((noreturn)) abort(void);
117 static inline void assert(bool expression) {
118         if (!expression) { abort(); }
119 }
120 """
121
122         if not DEBUG:
123             self.c_file_pfx = self.c_file_pfx + """
124 void *malloc(size_t size);
125 void free(void *ptr);
126
127 #define MALLOC(a, _) malloc(a)
128 #define FREE(p) if ((unsigned long)(p) > 4096) { free(p); }
129 #define DO_ASSERT(a) (void)(a)
130 #define CHECK(a)
131 #define CHECK_ACCESS(p)
132 #define CHECK_INNER_FIELD_ACCESS_OR_NULL(v)
133 """
134         else:
135             self.c_file_pfx = self.c_file_pfx + """
136 // Always run a, then assert it is true:
137 #define DO_ASSERT(a) do { bool _assert_val = (a); assert(_assert_val); } while(0)
138 // Assert a is true or do nothing
139 #define CHECK(a) DO_ASSERT(a)
140
141 // Running a leak check across all the allocations and frees of the JDK is a mess,
142 // so instead we implement our own naive leak checker here, relying on the -wrap
143 // linker option to wrap malloc/calloc/realloc/free, tracking everyhing allocated
144 // and free'd in Rust or C across the generated bindings shared library.
145
146 #define BT_MAX 128
147 typedef struct allocation {
148         struct allocation* next;
149         void* ptr;
150         const char* struct_name;
151 } allocation;
152 static allocation* allocation_ll = NULL;
153
154 void* __real_malloc(size_t len);
155 void* __real_calloc(size_t nmemb, size_t len);
156 static void new_allocation(void* res, const char* struct_name) {
157         allocation* new_alloc = __real_malloc(sizeof(allocation));
158         new_alloc->ptr = res;
159         new_alloc->struct_name = struct_name;
160         new_alloc->next = allocation_ll;
161         allocation_ll = new_alloc;
162 }
163 static void* MALLOC(size_t len, const char* struct_name) {
164         void* res = __real_malloc(len);
165         new_allocation(res, struct_name);
166         return res;
167 }
168 void __real_free(void* ptr);
169 static void alloc_freed(void* ptr) {
170         allocation* p = NULL;
171         allocation* it = allocation_ll;
172         while (it->ptr != ptr) {
173                 p = it; it = it->next;
174                 if (it == NULL) {
175                         //XXX: fprintf(stderr, "Tried to free unknown pointer %p\\n", ptr);
176                         return; // addrsan should catch malloc-unknown and print more info than we have
177                 }
178         }
179         if (p) { p->next = it->next; } else { allocation_ll = it->next; }
180         DO_ASSERT(it->ptr == ptr);
181         __real_free(it);
182 }
183 static void FREE(void* ptr) {
184         if ((unsigned long)ptr <= 4096) return; // Rust loves to create pointers to the NULL page for dummys
185         alloc_freed(ptr);
186         __real_free(ptr);
187 }
188
189 static void CHECK_ACCESS(const void* ptr) {
190         allocation* it = allocation_ll;
191         while (it->ptr != ptr) {
192                 it = it->next;
193                 if (it == NULL) {
194                         return; // addrsan should catch malloc-unknown and print more info than we have
195                 }
196         }
197 }
198 #define CHECK_INNER_FIELD_ACCESS_OR_NULL(v) \\
199         if (v.is_owned && v.inner != NULL) { \\
200                 const void *p = __unmangle_inner_ptr(v.inner); \\
201                 if (p != NULL) { \\
202                         CHECK_ACCESS(p); \\
203                 } \\
204         }
205
206 void* __wrap_malloc(size_t len) {
207         void* res = __real_malloc(len);
208         new_allocation(res, "malloc call");
209         return res;
210 }
211 void* __wrap_calloc(size_t nmemb, size_t len) {
212         void* res = __real_calloc(nmemb, len);
213         new_allocation(res, "calloc call");
214         return res;
215 }
216 void __wrap_free(void* ptr) {
217         if (ptr == NULL) return;
218         alloc_freed(ptr);
219         __real_free(ptr);
220 }
221
222 void* __real_realloc(void* ptr, size_t newlen);
223 void* __wrap_realloc(void* ptr, size_t len) {
224         if (ptr != NULL) alloc_freed(ptr);
225         void* res = __real_realloc(ptr, len);
226         new_allocation(res, "realloc call");
227         return res;
228 }
229 void __wrap_reallocarray(void* ptr, size_t new_sz) {
230         // Rust doesn't seem to use reallocarray currently
231         DO_ASSERT(false);
232 }
233
234 void __attribute__((destructor)) check_leaks() {
235         for (allocation* a = allocation_ll; a != NULL; a = a->next) {
236                 //XXX: fprintf(stderr, "%s %p remains\\n", a->struct_name, a->ptr);
237         }
238         DO_ASSERT(allocation_ll == NULL);
239 }
240 """
241         self.c_file_pfx = self.c_file_pfx + """
242 // We assume that CVec_u8Z and u8slice are the same size and layout (and thus pointers to the two can be mixed)
243 _Static_assert(sizeof(LDKCVec_u8Z) == sizeof(LDKu8slice), "Vec<u8> and [u8] need to have been mapped identically");
244 _Static_assert(offsetof(LDKCVec_u8Z, data) == offsetof(LDKu8slice, data), "Vec<u8> and [u8] need to have been mapped identically");
245 _Static_assert(offsetof(LDKCVec_u8Z, datalen) == offsetof(LDKu8slice, datalen), "Vec<u8> and [u8] need to have been mapped identically");
246
247 _Static_assert(sizeof(void*) == 4, "Pointers mut be 32 bits");
248
249 #define DECL_ARR_TYPE(ty, name) \\
250         struct name##array { \\
251                 uint32_t arr_len; \\
252                 ty elems[]; \\
253         }; \\
254         typedef struct name##array * name##Array; \\
255         static inline name##Array init_##name##Array(size_t arr_len) { \\
256                 name##Array arr = (name##Array)MALLOC(arr_len * sizeof(ty) + sizeof(uint32_t), "##name array init"); \\
257                 arr->arr_len = arr_len; \\
258                 return arr; \\
259         }
260
261 DECL_ARR_TYPE(int64_t, int64_t);
262 DECL_ARR_TYPE(int8_t, int8_t);
263 DECL_ARR_TYPE(uint32_t, uint32_t);
264 DECL_ARR_TYPE(void*, ptr);
265 DECL_ARR_TYPE(char, char);
266 typedef charArray jstring;
267
268 static inline jstring str_ref_to_ts(const char* chars, size_t len) {
269         charArray arr = init_charArray(len);
270         memcpy(arr->elems, chars, len);
271         return arr;
272 }
273 static inline LDKStr str_ref_to_owned_c(const jstring str) {
274         char* newchars = MALLOC(str->arr_len + 1, "String chars");
275         memcpy(newchars, str->elems, str->arr_len);
276         newchars[str->arr_len] = 0;
277         LDKStr res = {
278                 .chars = newchars,
279                 .len = str->arr_len,
280                 .chars_is_owned = true
281         };
282         return res;
283 }
284
285 typedef bool jboolean;
286
287 uint32_t __attribute__((visibility("default"))) TS_malloc(uint32_t size) {
288         return (uint32_t)MALLOC(size, "JS-Called malloc");
289 }
290 void __attribute__((visibility("default"))) TS_free(uint32_t ptr) {
291         FREE((void*)ptr);
292 }
293 """
294
295         self.c_version_file = ""
296
297         self.hu_struct_file_prefix = """
298 import CommonBase from './CommonBase.mjs';
299 import * as bindings from '../bindings.mjs'
300
301 """
302         self.c_fn_ty_pfx = ""
303         self.file_ext = ".mts"
304         self.ptr_c_ty = "uint32_t"
305         self.ptr_native_ty = "number"
306         self.result_c_ty = "uint32_t"
307         self.ptr_arr = "ptrArray"
308         self.is_arr_some_check = ("", " != 0")
309         self.get_native_arr_len_call = ("", "->arr_len")
310
311     def release_native_arr_ptr_call(self, ty_info, arr_var, arr_ptr_var):
312         return None
313     def create_native_arr_call(self, arr_len, ty_info):
314         if ty_info.c_ty == "ptrArray":
315             assert ty_info.subty is not None and ty_info.subty.c_ty.endswith("Array")
316         return "init_" + ty_info.c_ty + "(" + arr_len + ")"
317     def set_native_arr_contents(self, arr_name, arr_len, ty_info):
318         if ty_info.c_ty == "int8_tArray":
319             return ("memcpy(" + arr_name + "->elems, ", ", " + arr_len + ")")
320         else:
321             assert False
322     def get_native_arr_contents(self, arr_name, dest_name, arr_len, ty_info, copy):
323         if ty_info.c_ty == "int8_tArray":
324             if copy:
325                 return "memcpy(" + dest_name + ", " + arr_name + "->elems, " + arr_len + ")"
326         if ty_info.c_ty == "ptrArray":
327             return "(void*) " + arr_name + "->elems"
328         else:
329             assert not copy
330             return arr_name + "->elems"
331     def get_native_arr_elem(self, arr_name, idxc, ty_info):
332         assert False # Only called if above is None
333     def get_native_arr_ptr_call(self, ty_info):
334         if ty_info.subty is not None:
335             return "(" + ty_info.subty.c_ty + "*)(", " + 4)"
336         return "(" + ty_info.c_ty + "*)(", " + 4)"
337     def get_native_arr_entry_call(self, ty_info, arr_name, idxc, entry_access):
338         return None
339     def cleanup_native_arr_ref_contents(self, arr_name, dest_name, arr_len, ty_info):
340         if ty_info.c_ty == "int8_tArray":
341             return None
342         else:
343             return None
344
345     def str_ref_to_native_call(self, var_name, str_len):
346         return "str_ref_to_ts(" + var_name + ", " + str_len + ")"
347     def str_ref_to_c_call(self, var_name):
348         return "str_ref_to_owned_c(" + var_name + ")"
349
350     def c_fn_name_define_pfx(self, fn_name, have_args):
351         return " __attribute__((visibility(\"default\"))) TS_" + fn_name + "("
352
353     def wasm_import_header(self, target):
354         res = """
355 const memory = new WebAssembly.Memory({initial: 256});
356
357 const imports: any = {};
358 imports.env = {};
359
360 imports.env.memoryBase = 0;
361 imports.env.memory = memory;
362 imports.env.tableBase = 0;
363 imports.env.table = new WebAssembly.Table({initial: 4, element: 'anyfunc'});
364
365 imports.env["abort"] = function () {
366         console.error("ABORT");
367 };
368 imports.env["js_invoke_function"] = function(fn: number, arg1: number, arg2: number, arg3: number, arg4: number, arg5: number, arg6: number, arg7: number, arg8: number, arg9: number, arg10: number) {
369         console.log('function called from wasm:', fn, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10);
370 };
371 imports.env["js_free_function_ptr"] = function(fn: number) {
372         console.log("function ptr free'd from wasm:", fn);
373 };
374
375 imports.wasi_snapshot_preview1 = {
376         "fd_write" : () => {
377                 console.log("ABORT");
378         },
379         "random_get" : () => {
380                 console.log("RAND GET");
381         },
382         "environ_sizes_get" : () => {
383                 console.log("wasi_snapshot_preview1:environ_sizes_get");
384         },
385         "proc_exit" : () => {
386                 console.log("wasi_snapshot_preview1:proc_exit");
387         },
388         "environ_get" : () => {
389                 console.log("wasi_snapshot_preview1:environ_get");
390         },
391 };
392
393 var wasm = null;
394 let isWasmInitialized: boolean = false;
395 """
396
397         if target == Target.NODEJS:
398             res += """import * as fs from 'fs';
399 export async function initializeWasm(path) {
400         const source = fs.readFileSync(path);
401         const { instance: wasmInstance } = await WebAssembly.instantiate(source, imports);
402         wasm = wasmInstance.exports;
403         isWasmInitialized = true;
404 };
405 """
406         else:
407             res += """
408 export async function initializeWasm(uri) {
409         const stream = fetch(uri);
410         const { instance: wasmInstance } = await WebAssembly.instantiateStreaming(stream, imports);
411         wasm = wasmInstance.exports;
412         isWasmInitialized = true;
413 };
414
415 """
416
417         return res + """
418
419
420 // WASM CODEC
421
422 const nextMultipleOfFour = (value: number) => {
423         return Math.ceil(value / 4) * 4;
424 }
425
426 const encodeUint8Array = (inputArray) => {
427         const cArrayPointer = wasm.TS_malloc(inputArray.length + 4);
428         const arrayLengthView = new Uint32Array(memory.buffer, cArrayPointer, 1);
429         arrayLengthView[0] = inputArray.length;
430         const arrayMemoryView = new Uint8Array(memory.buffer, cArrayPointer + 4, inputArray.length);
431         arrayMemoryView.set(inputArray);
432         return cArrayPointer;
433 }
434
435 const encodeUint32Array = (inputArray) => {
436         const cArrayPointer = wasm.TS_malloc((inputArray.length + 1) * 4);
437         const arrayMemoryView = new Uint32Array(memory.buffer, cArrayPointer, inputArray.length);
438         arrayMemoryView.set(inputArray, 1);
439         arrayMemoryView[0] = inputArray.length;
440         return cArrayPointer;
441 }
442
443 const getArrayLength = (arrayPointer) => {
444         const arraySizeViewer = new Uint32Array(
445                 memory.buffer, // value
446                 arrayPointer, // offset
447                 1 // one int
448         );
449         return arraySizeViewer[0];
450 }
451 const decodeUint8Array = (arrayPointer, free = true) => {
452         const arraySize = getArrayLength(arrayPointer);
453         const actualArrayViewer = new Uint8Array(
454                 memory.buffer, // value
455                 arrayPointer + 4, // offset (ignoring length bytes)
456                 arraySize // uint8 count
457         );
458         // Clone the contents, TODO: In the future we should wrap the Viewer in a class that
459         // will free the underlying memory when it becomes unreachable instead of copying here.
460         const actualArray = actualArrayViewer.slice(0, arraySize);
461         if (free) {
462                 wasm.TS_free(arrayPointer);
463         }
464         return actualArray;
465 }
466 const decodeUint32Array = (arrayPointer, free = true) => {
467         const arraySize = getArrayLength(arrayPointer);
468         const actualArrayViewer = new Uint32Array(
469                 memory.buffer, // value
470                 arrayPointer + 4, // offset (ignoring length bytes)
471                 arraySize // uint32 count
472         );
473         // Clone the contents, TODO: In the future we should wrap the Viewer in a class that
474         // will free the underlying memory when it becomes unreachable instead of copying here.
475         const actualArray = actualArrayViewer.slice(0, arraySize);
476         if (free) {
477                 wasm.TS_free(arrayPointer);
478         }
479         return actualArray;
480 }
481
482 const encodeString = (string) => {
483         // make malloc count divisible by 4
484         const memoryNeed = nextMultipleOfFour(string.length + 1);
485         const stringPointer = wasm.TS_malloc(memoryNeed);
486         const stringMemoryView = new Uint8Array(
487                 memory.buffer, // value
488                 stringPointer, // offset
489                 string.length + 1 // length
490         );
491         for (let i = 0; i < string.length; i++) {
492                 stringMemoryView[i] = string.charCodeAt(i);
493         }
494         stringMemoryView[string.length] = 0;
495         return stringPointer;
496 }
497
498 const decodeString = (stringPointer, free = true) => {
499         const memoryView = new Uint8Array(memory.buffer, stringPointer);
500         let cursor = 0;
501         let result = '';
502
503         while (memoryView[cursor] !== 0) {
504                 result += String.fromCharCode(memoryView[cursor]);
505                 cursor++;
506         }
507
508         if (free) {
509                 wasm.wasm_free(stringPointer);
510         }
511
512         return result;
513 };
514 """
515
516     def init_str(self):
517         return ""
518
519     def var_decl_statement(self, ty_string, var_name, statement):
520         return "const " + var_name + ": " + ty_string + " = " + statement
521
522     def add_ref(self, holder, referent):
523         return "CommonBase.add_ref_from(" + holder + ", " + referent + ")"
524
525     def obj_defined(self, struct_names, folder):
526         with open(self.outdir + "/index.mts", 'a') as index:
527             index.write(f"export * from './{folder}/{struct_names[0]}.mjs';\n")
528         with open(self.outdir + "/imports.mts.part", 'a') as imports:
529             imports.write(f"import {{ {', '.join(struct_names)} }} from '../{folder}/{struct_names[0]}.mjs';\n")
530
531     def native_c_unitary_enum_map(self, struct_name, variants, enum_doc_comment):
532         out_c = "static inline LDK" + struct_name + " LDK" + struct_name + "_from_js(int32_t ord) {\n"
533         out_c = out_c + "\tswitch (ord) {\n"
534         ord_v = 0
535
536         out_typescript_enum_fields = ""
537
538         for var, var_docs in variants:
539             out_c = out_c + "\t\tcase %d: return %s;\n" % (ord_v, var)
540             ord_v = ord_v + 1
541             if var_docs is not None:
542                 out_typescript_enum_fields += f"/**\n * {var_docs}\n */\n"
543             out_typescript_enum_fields += f"{var},\n\t\t\t\t"
544         out_c = out_c + "\t}\n"
545         out_c = out_c + "\tabort();\n"
546         out_c = out_c + "}\n"
547
548         out_c = out_c + "static inline int32_t LDK" + struct_name + "_to_js(LDK" + struct_name + " val) {\n"
549         out_c = out_c + "\tswitch (val) {\n"
550         ord_v = 0
551         for var, _ in variants:
552             out_c = out_c + "\t\tcase " + var + ": return %d;\n" % ord_v
553             ord_v = ord_v + 1
554         out_c = out_c + "\t\tdefault: abort();\n"
555         out_c = out_c + "\t}\n"
556         out_c = out_c + "}\n"
557
558         out_typescript = f"""
559             export enum {struct_name} {{
560                 {out_typescript_enum_fields}
561             }}
562 """
563         out_typescript_enum = f"export {{ {struct_name} }} from \"../bindings.mjs\";"
564         self.obj_defined([struct_name], "enums")
565         return (out_c, out_typescript_enum, out_typescript)
566
567     def c_unitary_enum_to_native_call(self, ty_info):
568         return (ty_info.rust_obj + "_to_js(", ")")
569     def native_unitary_enum_to_c_call(self, ty_info):
570         return (ty_info.rust_obj + "_from_js(", ")")
571
572     def c_complex_enum_pass_ty(self, struct_name):
573         return "uint32_t"
574
575     def c_constr_native_complex_enum(self, struct_name, variant, c_params):
576         ret = "0 /* " + struct_name + " - " + variant + " */"
577         for param in c_params:
578             ret = ret + "; (void) " + param
579         return ret
580
581     def native_c_map_trait(self, struct_name, field_var_conversions, flattened_field_var_conversions, field_function_lines, trait_doc_comment):
582         out_typescript_bindings = "\n\n\n// OUT_TYPESCRIPT_BINDINGS :: MAP_TRAIT :: START\n\n"
583
584         constructor_arguments = ""
585         super_instantiator = ""
586         pointer_to_adder = ""
587         impl_constructor_arguments = ""
588         for var in flattened_field_var_conversions:
589             if isinstance(var, ConvInfo):
590                 constructor_arguments += f", {first_to_lower(var.arg_name)}?: {var.java_hu_ty}"
591                 impl_constructor_arguments += f", {var.arg_name}: {var.java_hu_ty}"
592                 if var.from_hu_conv is not None:
593                     super_instantiator += ", " + var.from_hu_conv[0]
594                     if var.from_hu_conv[1] != "":
595                         pointer_to_adder += var.from_hu_conv[1] + ";\n"
596                 else:
597                     super_instantiator += ", " + first_to_lower(var.arg_name)
598             else:
599                 constructor_arguments += f", {first_to_lower(var[1])}?: bindings.{var[0]}"
600                 super_instantiator += ", " + first_to_lower(var[1])
601                 pointer_to_adder += "this.ptrs_to.push(" + first_to_lower(var[1]) + ");\n"
602                 impl_constructor_arguments += f", {first_to_lower(var[1])}_impl: {var[0].replace('LDK', '')}.{var[0].replace('LDK', '')}Interface"
603
604         # BUILD INTERFACE METHODS
605         out_java_interface = ""
606         out_interface_implementation_overrides = ""
607         java_methods = []
608         for fn_line in field_function_lines:
609             java_method_descriptor = ""
610             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
611                 out_java_interface += fn_line.fn_name + "("
612                 out_interface_implementation_overrides += f"{fn_line.fn_name} ("
613
614                 for idx, arg_conv_info in enumerate(fn_line.args_ty):
615                     if idx >= 1:
616                         out_java_interface += ", "
617                         out_interface_implementation_overrides += ", "
618                     out_java_interface += f"{arg_conv_info.arg_name}: {arg_conv_info.java_hu_ty}"
619                     out_interface_implementation_overrides += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
620                     java_method_descriptor += arg_conv_info.java_fn_ty_arg
621                 out_java_interface += f"): {fn_line.ret_ty_info.java_hu_ty};\n\t\t\t\t"
622                 java_method_descriptor += ")" + fn_line.ret_ty_info.java_fn_ty_arg
623                 java_methods.append((fn_line.fn_name, java_method_descriptor))
624
625                 out_interface_implementation_overrides += f"): {fn_line.ret_ty_info.java_ty} {{\n"
626
627                 interface_method_override_inset = "\t\t\t\t\t\t"
628                 interface_implementation_inset = "\t\t\t\t\t\t\t"
629                 for arg_info in fn_line.args_ty:
630                     if arg_info.to_hu_conv is not None:
631                         out_interface_implementation_overrides += interface_implementation_inset + arg_info.to_hu_conv.replace("\n", "\n\t\t\t\t") + "\n"
632
633                 if fn_line.ret_ty_info.java_ty != "void":
634                     out_interface_implementation_overrides += interface_implementation_inset + fn_line.ret_ty_info.java_hu_ty + " ret = arg." + fn_line.fn_name + "("
635                 else:
636                     out_interface_implementation_overrides += f"{interface_implementation_inset}arg." + fn_line.fn_name + "("
637
638                 for idx, arg_info in enumerate(fn_line.args_ty):
639                     if idx != 0:
640                         out_interface_implementation_overrides += ", "
641                     if arg_info.to_hu_conv_name is not None:
642                         out_interface_implementation_overrides += arg_info.to_hu_conv_name
643                     else:
644                         out_interface_implementation_overrides += arg_info.arg_name
645
646                 out_interface_implementation_overrides += ");\n"
647                 if fn_line.ret_ty_info.java_ty != "void":
648                     if fn_line.ret_ty_info.from_hu_conv is not None:
649                         out_interface_implementation_overrides = out_interface_implementation_overrides + "\t\t\t\t" + f"result: {fn_line.ret_ty_info.java_ty} = " + fn_line.ret_ty_info.from_hu_conv[0] + ";\n"
650                         if fn_line.ret_ty_info.from_hu_conv[1] != "":
651                             out_interface_implementation_overrides = out_interface_implementation_overrides + "\t\t\t\t" + fn_line.ret_ty_info.from_hu_conv[1].replace("this", "impl_holder.held") + ";\n"
652                         #if fn_line.ret_ty_info.rust_obj in result_types:
653                         # XXX: We need to handle this in conversion logic so that its cross-language!
654                         # Avoid double-free by breaking the result - we should learn to clone these and then we can be safe instead
655                         #    out_interface_implementation_overrides = out_interface_implementation_overrides + "\t\t\t\tret.ptr = 0;\n"
656                         out_interface_implementation_overrides = out_interface_implementation_overrides + "\t\t\t\treturn result;\n"
657                     else:
658                         out_interface_implementation_overrides = out_interface_implementation_overrides + "\t\t\t\treturn ret;\n"
659                 out_interface_implementation_overrides += f"{interface_method_override_inset}}},\n\n{interface_method_override_inset}"
660
661         trait_constructor_arguments = ""
662         for var in field_var_conversions:
663             if isinstance(var, ConvInfo):
664                 trait_constructor_arguments += ", " + var.arg_name
665             else:
666                 trait_constructor_arguments += ", " + var[1] + ".new_impl(" + var[1] + "_impl"
667                 for suparg in var[2]:
668                     if isinstance(suparg, ConvInfo):
669                         trait_constructor_arguments += ", " + suparg.arg_name
670                     else:
671                         trait_constructor_arguments += ", " + suparg[1]
672                 trait_constructor_arguments += ").bindings_instance"
673                 for suparg in var[2]:
674                     if isinstance(suparg, ConvInfo):
675                         trait_constructor_arguments += ", " + suparg.arg_name
676                     else:
677                         trait_constructor_arguments += ", " + suparg[1]
678
679         out_typescript_human = f"""
680 {self.hu_struct_file_prefix}
681
682 {struct_name.replace("LDK","")} extends CommonBase {{
683
684         bindings_instance?: bindings.{struct_name};
685
686         constructor(ptr?: number, arg?: bindings.{struct_name}{constructor_arguments}) {{
687                 if (Number.isFinite(ptr)) {{
688                         super(ptr, bindings.{struct_name.replace("LDK","")}_free);
689                         this.bindings_instance = null;
690                 }} else {{
691                         // TODO: private constructor instantiation
692                         super(bindings.{struct_name}_new(arg{super_instantiator}));
693                         this.ptrs_to.push(arg);
694                         {pointer_to_adder}
695                 }}
696         }}
697
698         static new_impl(arg: {struct_name.replace("LDK", "")}Interface{impl_constructor_arguments}): {struct_name.replace("LDK", "")} {{
699                 const impl_holder: {struct_name}Holder = new {struct_name}Holder();
700                 let structImplementation = <bindings.{struct_name}>{{
701                         // todo: in-line interface filling
702                         {out_interface_implementation_overrides}
703                 }};
704                 impl_holder.held = new {struct_name.replace("LDK", "")} (null, structImplementation{trait_constructor_arguments});
705         }}
706
707         export interface {struct_name.replace("LDK", "")}Interface {{
708                 {out_java_interface}
709         }}
710
711         class {struct_name}Holder {{
712                 held: {struct_name.replace("LDK", "")};
713         }}
714 """
715
716         out_typescript_bindings += "\t\texport interface " + struct_name + " {\n"
717         java_meths = []
718         for fn_line in field_function_lines:
719             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
720                 out_typescript_bindings += f"\t\t\t{fn_line.fn_name} ("
721
722                 for idx, arg_conv_info in enumerate(fn_line.args_ty):
723                     if idx >= 1:
724                         out_typescript_bindings = out_typescript_bindings + ", "
725                     out_typescript_bindings += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
726
727                 out_typescript_bindings += f"): {fn_line.ret_ty_info.java_ty};\n"
728
729         out_typescript_bindings = out_typescript_bindings + "\t\t}\n\n"
730
731         out_typescript_bindings += f"\t\texport function {struct_name}_new(impl: {struct_name}"
732         for var in flattened_field_var_conversions:
733             if isinstance(var, ConvInfo):
734                 out_typescript_bindings += f", {var.arg_name}: {var.java_ty}"
735             else:
736                 out_typescript_bindings += f", {var[1]}: {var[0]}"
737
738         out_typescript_bindings += f"""): number {{
739             throw new Error('unimplemented'); // TODO: bind to WASM
740         }}
741 """
742
743         out_typescript_bindings += '\n// OUT_TYPESCRIPT_BINDINGS :: MAP_TRAIT :: END\n\n\n'
744
745         # Now that we've written out our java code (and created java_meths), generate C
746         out_c = "typedef struct " + struct_name + "_JCalls {\n"
747         out_c = out_c + "\tatomic_size_t refcnt;\n"
748         for var in flattened_field_var_conversions:
749             if isinstance(var, ConvInfo):
750                 # We're a regular ol' field
751                 pass
752             else:
753                 # We're a supertrait
754                 out_c = out_c + "\t" + var[0] + "_JCalls* " + var[1] + ";\n"
755         for fn in field_function_lines:
756             if fn.fn_name != "free" and fn.fn_name != "cloned":
757                 out_c = out_c + "\tuint32_t " + fn.fn_name + "_meth;\n"
758         out_c = out_c + "} " + struct_name + "_JCalls;\n"
759
760         for fn_line in field_function_lines:
761             if fn_line.fn_name == "free":
762                 out_c = out_c + "static void " + struct_name + "_JCalls_free(void* this_arg) {\n"
763                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
764                 out_c = out_c + "\tif (atomic_fetch_sub_explicit(&j_calls->refcnt, 1, memory_order_acquire) == 1) {\n"
765                 for fn in field_function_lines:
766                     if fn.fn_name != "free" and fn.fn_name != "cloned":
767                         out_c = out_c + "\t\tjs_free_function_ptr(j_calls->" + fn.fn_name + "_meth);\n"
768                 out_c = out_c + "\t\tFREE(j_calls);\n"
769                 out_c = out_c + "\t}\n}\n"
770
771         for idx, fn_line in enumerate(field_function_lines):
772             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
773                 assert fn_line.ret_ty_info.ty_info.get_full_rust_ty()[1] == ""
774                 out_c = out_c + fn_line.ret_ty_info.ty_info.get_full_rust_ty()[0] + " " + fn_line.fn_name + "_" + struct_name + "_jcall("
775                 if fn_line.self_is_const:
776                     out_c = out_c + "const void* this_arg"
777                 else:
778                     out_c = out_c + "void* this_arg"
779
780                 for idx, arg in enumerate(fn_line.args_ty):
781                     out_c = out_c + ", " + arg.ty_info.get_full_rust_ty()[0] + " " + arg.arg_name + arg.ty_info.get_full_rust_ty()[1]
782
783                 out_c = out_c + ") {\n"
784                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
785
786                 for arg_info in fn_line.args_ty:
787                     if arg_info.ret_conv is not None:
788                         out_c = out_c + "\t" + arg_info.ret_conv[0].replace('\n', '\n\t')
789                         out_c = out_c + arg_info.arg_name
790                         out_c = out_c + arg_info.ret_conv[1].replace('\n', '\n\t') + "\n"
791
792                 if fn_line.ret_ty_info.c_ty.endswith("Array"):
793                     out_c += "\t" + fn_line.ret_ty_info.c_ty + " ret = (" + fn_line.ret_ty_info.c_ty + ")"
794                     out_c += "js_invoke_function_" + str(len(fn_line.args_ty)) + "(j_calls->" + fn_line.fn_name + "_meth"
795                 elif fn_line.ret_ty_info.java_ty == "void":
796                     out_c = out_c + "\tjs_invoke_function_" + str(len(fn_line.args_ty)) + "(j_calls->" + fn_line.fn_name + "_meth"
797                 elif fn_line.ret_ty_info.java_ty == "String":
798                     out_c = out_c + "\tjstring ret = (jstring)js_invoke_function_" + str(len(fn_line.args_ty)) + "(j_calls->" + fn_line.fn_name + "_meth"
799                 elif not fn_line.ret_ty_info.passed_as_ptr:
800                     out_c = out_c + "\treturn js_invoke_function_" + str(len(fn_line.args_ty)) + "(j_calls->" + fn_line.fn_name + "_meth"
801                 else:
802                     out_c = out_c + "\tuint32_t ret = js_invoke_function_" + str(len(fn_line.args_ty)) + "(j_calls->" + fn_line.fn_name + "_meth"
803
804                 for idx, arg_info in enumerate(fn_line.args_ty):
805                     if arg_info.ret_conv is not None:
806                         out_c = out_c + ", (uint32_t)" + arg_info.ret_conv_name
807                     else:
808                         out_c = out_c + ", (uint32_t)" + arg_info.arg_name
809                 out_c = out_c + ");\n"
810                 if fn_line.ret_ty_info.arg_conv is not None:
811                     out_c = out_c + "\t" + fn_line.ret_ty_info.arg_conv.replace("\n", "\n\t") + "\n\treturn " + fn_line.ret_ty_info.arg_conv_name + ";\n"
812
813                 out_c = out_c + "}\n"
814
815         # Write out a clone function whether we need one or not, as we use them in moving to rust
816         out_c = out_c + "static void " + struct_name + "_JCalls_cloned(" + struct_name + "* new_obj) {\n"
817         out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) new_obj->this_arg;\n"
818         out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->refcnt, 1, memory_order_release);\n"
819         for var in field_var_conversions:
820             if not isinstance(var, ConvInfo):
821                 out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->" + var[1] + "->refcnt, 1, memory_order_release);\n"
822         out_c = out_c + "}\n"
823
824         out_c = out_c + "static inline " + struct_name + " " + struct_name + "_init (/*TODO: JS Object Reference */void* o"
825         for var in flattened_field_var_conversions:
826             if isinstance(var, ConvInfo):
827                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
828             else:
829                 out_c = out_c + ", /*TODO: JS Object Reference */void* " + var[1]
830         out_c = out_c + ") {\n"
831
832         out_c = out_c + "\t" + struct_name + "_JCalls *calls = MALLOC(sizeof(" + struct_name + "_JCalls), \"" + struct_name + "_JCalls\");\n"
833         out_c = out_c + "\tatomic_init(&calls->refcnt, 1);\n"
834         out_c = out_c + "\t//TODO: Assign calls->o from o\n"
835
836         for (fn_name, java_meth_descr) in java_meths:
837             if fn_name != "free" and fn_name != "cloned":
838                 out_c = out_c + "\tcalls->" + fn_name + "_meth = (*env)->GetMethodID(env, c, \"" + fn_name + "\", \"" + java_meth_descr + "\");\n"
839                 out_c = out_c + "\tCHECK(calls->" + fn_name + "_meth != NULL);\n"
840
841         for var in flattened_field_var_conversions:
842             if isinstance(var, ConvInfo) and var.arg_conv is not None:
843                 out_c = out_c + "\n\t" + var.arg_conv.replace("\n", "\n\t") +"\n"
844         out_c = out_c + "\n\t" + struct_name + " ret = {\n"
845         out_c = out_c + "\t\t.this_arg = (void*) calls,\n"
846         for fn_line in field_function_lines:
847             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
848                 out_c = out_c + "\t\t." + fn_line.fn_name + " = " + fn_line.fn_name + "_" + struct_name + "_jcall,\n"
849             elif fn_line.fn_name == "free":
850                 out_c = out_c + "\t\t.free = " + struct_name + "_JCalls_free,\n"
851             else:
852                 out_c = out_c + "\t\t.cloned = " + struct_name + "_JCalls_cloned,\n"
853         for var in field_var_conversions:
854             if isinstance(var, ConvInfo):
855                 if var.arg_conv_name is not None:
856                     out_c = out_c + "\t\t." + var.arg_name + " = " + var.arg_conv_name + ",\n"
857                     out_c = out_c + "\t\t.set_" + var.arg_name + " = NULL,\n"
858                 else:
859                     out_c = out_c + "\t\t." + var.var_name + " = " + var.var_name + ",\n"
860                     out_c = out_c + "\t\t.set_" + var.var_name + " = NULL,\n"
861             else:
862                 out_c += "\t\t." + var[1] + " = " + var[0] + "_init(" + var[1]
863                 for suparg in var[2]:
864                     if isinstance(suparg, ConvInfo):
865                         out_c += ", " + suparg.arg_name
866                     else:
867                         out_c += ", " + suparg[1]
868                 out_c += "),\n"
869         out_c = out_c + "\t};\n"
870         for var in flattened_field_var_conversions:
871             if not isinstance(var, ConvInfo):
872                 out_c = out_c + "\tcalls->" + var[1] + " = ret." + var[1] + ".this_arg;\n"
873         out_c = out_c + "\treturn ret;\n"
874         out_c = out_c + "}\n"
875
876         out_c = out_c + self.c_fn_ty_pfx + "long " + self.c_fn_name_define_pfx(struct_name + "_new", True) + "/*TODO: JS Object Reference */void* o"
877         for var in flattened_field_var_conversions:
878             if isinstance(var, ConvInfo):
879                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
880             else:
881                 out_c = out_c + ", /*TODO: JS Object Reference */ void* " + var[1]
882         out_c = out_c + ") {\n"
883         out_c = out_c + "\t" + struct_name + " *res_ptr = MALLOC(sizeof(" + struct_name + "), \"" + struct_name + "\");\n"
884         out_c = out_c + "\t*res_ptr = " + struct_name + "_init(o"
885         for var in flattened_field_var_conversions:
886             if isinstance(var, ConvInfo):
887                 out_c = out_c + ", " + var.arg_name
888             else:
889                 out_c = out_c + ", " + var[1]
890         out_c = out_c + ");\n"
891         out_c = out_c + "\treturn (long)res_ptr;\n"
892         out_c = out_c + "}\n"
893
894         return (out_typescript_bindings, out_typescript_human, out_c)
895
896     def trait_struct_inc_refcnt(self, ty_info):
897         return ""
898
899     def map_complex_enum(self, struct_name, variant_list, camel_to_snake, enum_doc_comment):
900         bindings_type = struct_name.replace("LDK", "")
901         java_hu_type = struct_name.replace("LDK", "").replace("COption", "Option")
902
903         out_java_enum = ""
904         out_java = ""
905         out_c = ""
906
907         out_java_enum += (self.hu_struct_file_prefix)
908
909         java_hu_class = ""
910         java_hu_class += "export class " + java_hu_type + " extends CommonBase {\n"
911         java_hu_class += "\tprotected constructor(_dummy: object, ptr: number) { super(ptr, bindings." + bindings_type + "_free); }\n"
912         java_hu_class += "\t/* @internal */\n"
913         java_hu_class += f"\tpublic static constr_from_ptr(ptr: number): {java_hu_type} {{\n"
914         java_hu_class += f"\t\tconst raw_val: bindings.{struct_name} = bindings." + struct_name + "_ref_from_ptr(ptr);\n"
915         java_hu_subclasses = ""
916
917         out_java += "\texport class " + struct_name + " {\n"
918         out_java += "\t\tprotected constructor() {}\n"
919         java_subclasses = ""
920         for var in variant_list:
921             java_subclasses += "\texport class " + struct_name + "_" + var.var_name + " extends " + struct_name + " {\n"
922             java_hu_subclasses = java_hu_subclasses + "export class " + java_hu_type + "_" + var.var_name + " extends " + java_hu_type + " {\n"
923             java_hu_class += "\t\tif (raw_val instanceof bindings." + struct_name + "_" + var.var_name + ") {\n"
924             java_hu_class += "\t\t\treturn new " + java_hu_type + "_" + var.var_name + "(ptr, raw_val);\n"
925             init_meth_params = ""
926             hu_conv_body = ""
927             for idx, (field_ty, field_docs) in enumerate(var.fields):
928                 java_hu_subclasses = java_hu_subclasses + "\tpublic " + field_ty.arg_name + f": {field_ty.java_hu_ty};\n"
929                 if field_ty.to_hu_conv is not None:
930                     hu_conv_body = hu_conv_body + "\t\tconst " + field_ty.arg_name + f": {field_ty.java_ty} = obj." + field_ty.arg_name + ";\n"
931                     hu_conv_body = hu_conv_body + "\t\t" + field_ty.to_hu_conv.replace("\n", "\n\t\t\t") + "\n"
932                     hu_conv_body = hu_conv_body + "\t\tthis." + field_ty.arg_name + " = " + field_ty.to_hu_conv_name + ";\n"
933                 else:
934                     hu_conv_body = hu_conv_body + "\t\tthis." + field_ty.arg_name + " = obj." + field_ty.arg_name + ";\n"
935                 if idx > 0:
936                     init_meth_params += ", "
937                 init_meth_params += "public " + field_ty.arg_name + ": " + field_ty.java_ty
938             java_subclasses += "\t\tconstructor(" + init_meth_params + ") { super(); }\n"
939             java_subclasses += "\t}\n"
940             java_hu_class += "\t\t}\n"
941             java_hu_subclasses += "\t/* @internal */\n"
942             java_hu_subclasses += "\tpublic constructor(ptr: number, obj: bindings." + struct_name + "_" + var.var_name + ") {\n\t\tsuper(null, ptr);\n"
943             java_hu_subclasses = java_hu_subclasses + hu_conv_body
944             java_hu_subclasses = java_hu_subclasses + "\t}\n}\n"
945         out_java += ("\t}\n")
946         out_java += java_subclasses
947         java_hu_class += "\t\tthrow new Error('oops, this should be unreachable'); // Unreachable without extending the (internal) bindings interface\n\t}\n\n"
948         out_java += self.fn_call_body(struct_name + "_ref_from_ptr", "uint32_t", "number", "ptr: number", "ptr")
949
950         out_c += (self.c_fn_ty_pfx + self.c_complex_enum_pass_ty(struct_name) + self.c_fn_name_define_pfx(struct_name + "_ref_from_ptr", True) + self.ptr_c_ty + " ptr) {\n")
951         out_c += ("\t" + struct_name + " *obj = (" + struct_name + "*)(ptr & ~1);\n")
952         out_c += ("\tswitch(obj->tag) {\n")
953         for var in variant_list:
954             out_c += ("\t\tcase " + struct_name + "_" + var.var_name + ": {\n")
955             c_params = []
956             for idx, (field_map, _) in enumerate(var.fields):
957                 if field_map.ret_conv is not None:
958                     out_c += ("\t\t\t" + field_map.ret_conv[0].replace("\n", "\n\t\t\t"))
959                     if var.tuple_variant:
960                         out_c += "obj->" + camel_to_snake(var.var_name)
961                     else:
962                         out_c += "obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name
963                     out_c += (field_map.ret_conv[1].replace("\n", "\n\t\t\t") + "\n")
964                     c_params.append(field_map.ret_conv_name)
965                 else:
966                     if var.tuple_variant:
967                         c_params.append("obj->" + camel_to_snake(var.var_name))
968                     else:
969                         c_params.append("obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name)
970             out_c += ("\t\t\treturn " + self.c_constr_native_complex_enum(struct_name, var.var_name, c_params) + ";\n")
971             out_c += ("\t\t}\n")
972         out_c += ("\t\tdefault: abort();\n")
973         out_c += ("\t}\n}\n")
974         out_java_enum += java_hu_class
975         self.struct_file_suffixes[java_hu_type] = java_hu_subclasses
976         self.obj_defined([java_hu_type], "structs")
977         return (out_java, out_java_enum, out_c)
978
979     def map_opaque_struct(self, struct_name, struct_doc_comment):
980         implementations = ""
981         method_header = ""
982         if struct_name.startswith("LDKLocked"):
983             return "NOT IMPLEMENTED"
984
985         hu_name = struct_name.replace("LDKC2Tuple", "TwoTuple").replace("LDKC3Tuple", "ThreeTuple").replace("LDK", "")
986         out_opaque_struct_human = f"""{self.hu_struct_file_prefix}
987
988 export class {hu_name} extends CommonBase {implementations}{{
989         /* @internal */
990         public constructor(_dummy: object, ptr: number) {{
991                 super(ptr, bindings.{struct_name.replace("LDK","")}_free);
992         }}
993
994 """
995         self.obj_defined([hu_name], "structs")
996         return out_opaque_struct_human
997
998     def map_tuple(self, struct_name):
999         return self.map_opaque_struct(struct_name, "A Tuple")
1000
1001     def fn_call_body(self, method_name, return_c_ty, return_java_ty, method_argument_string, native_call_argument_string):
1002         has_return_value = return_c_ty != 'void'
1003         needs_decoding = return_c_ty in self.wasm_decoding_map
1004         return_statement = 'return nativeResponseValue;'
1005         if not has_return_value:
1006             return_statement = '// debug statements here'
1007         elif needs_decoding:
1008             converter = self.wasm_decoding_map[return_c_ty]
1009             return_statement = f"return {converter}(nativeResponseValue);"
1010
1011         return f"""\texport function {method_name}({method_argument_string}): {return_java_ty} {{
1012                 if(!isWasmInitialized) {{
1013                         throw new Error("initializeWasm() must be awaited first!");
1014                 }}
1015                 const nativeResponseValue = wasm.TS_{method_name}({native_call_argument_string});
1016                 {return_statement}
1017         }}
1018 """
1019     def map_function(self, argument_types, c_call_string, method_name, meth_n, return_type_info, struct_meth, default_constructor_args, takes_self, takes_self_as_ref, args_known, type_mapping_generator, doc_comment):
1020         out_java = ""
1021         out_c = ""
1022         out_java_struct = None
1023
1024         out_java += ("\t")
1025         out_c += (self.c_fn_ty_pfx)
1026         out_c += (return_type_info.c_ty)
1027         out_java += (return_type_info.java_ty)
1028         if return_type_info.ret_conv is not None:
1029             ret_conv_pfx, ret_conv_sfx = return_type_info.ret_conv
1030         out_java += (" " + method_name + "(")
1031         out_c += (" "  + self.c_fn_name_define_pfx(method_name, True))
1032
1033         method_argument_string = ""
1034         native_call_argument_string = ""
1035         for idx, arg_conv_info in enumerate(argument_types):
1036             if idx != 0:
1037                 method_argument_string += (", ")
1038                 native_call_argument_string += ', '
1039                 out_c += (", ")
1040             if arg_conv_info.c_ty != "void":
1041                 out_c += (arg_conv_info.c_ty + " " + arg_conv_info.arg_name)
1042                 needs_encoding = arg_conv_info.c_ty in self.wasm_encoding_map
1043                 native_argument = arg_conv_info.arg_name
1044                 if needs_encoding:
1045                     converter = self.wasm_encoding_map[arg_conv_info.c_ty]
1046                     native_argument = f"{converter}({arg_conv_info.arg_name})"
1047                 method_argument_string += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
1048                 native_call_argument_string += native_argument
1049         out_java = self.fn_call_body(method_name, return_type_info.c_ty, return_type_info.java_ty, method_argument_string, native_call_argument_string)
1050
1051         out_java_struct = ""
1052         if not args_known:
1053             out_java_struct += ("\t// Skipped " + method_name + "\n")
1054         else:
1055             if not takes_self:
1056                 out_java_struct += (
1057                         "\tpublic static constructor_" + meth_n + "(")
1058             else:
1059                 out_java_struct += ("\tpublic " + meth_n + "(")
1060             for idx, arg in enumerate(argument_types):
1061                 if idx != 0:
1062                     if not takes_self or idx > 1:
1063                         out_java_struct += (", ")
1064                 elif takes_self:
1065                     continue
1066                 if arg.java_ty != "void":
1067                     if arg.arg_name in default_constructor_args:
1068                         for explode_idx, explode_arg in enumerate(default_constructor_args[arg.arg_name]):
1069                             if explode_idx != 0:
1070                                 out_java_struct += (", ")
1071                             out_java_struct += arg.arg_name + "_" + explode_arg.arg_name + ": " + explode_arg.java_hu_ty
1072                     else:
1073                         out_java_struct += arg.arg_name + ": " + arg.java_hu_ty
1074
1075         out_c += (") {\n")
1076         if out_java_struct is not None:
1077             out_java_struct += "): " + return_type_info.java_hu_ty + " {\n"
1078         for info in argument_types:
1079             if info.arg_conv is not None:
1080                 out_c += ("\t" + info.arg_conv.replace('\n', "\n\t") + "\n")
1081         if return_type_info.ret_conv is not None:
1082             out_c += ("\t" + ret_conv_pfx.replace('\n', '\n\t'))
1083         elif return_type_info.c_ty != "void":
1084             out_c += ("\t" + return_type_info.c_ty + " ret_val = ")
1085         else:
1086             out_c += ("\t")
1087         if c_call_string is None:
1088             out_c += (method_name + "(")
1089         else:
1090             out_c += (c_call_string)
1091         for idx, info in enumerate(argument_types):
1092             if info.arg_conv_name is not None:
1093                 if idx != 0:
1094                     out_c += (", ")
1095                 elif c_call_string is not None:
1096                     continue
1097                 out_c += (info.arg_conv_name)
1098         out_c += (")")
1099         if return_type_info.ret_conv is not None:
1100             out_c += (ret_conv_sfx.replace('\n', '\n\t'))
1101         else:
1102             out_c += (";")
1103         for info in argument_types:
1104             if info.arg_conv_cleanup is not None:
1105                 out_c += ("\n\t" + info.arg_conv_cleanup.replace("\n", "\n\t"))
1106         if return_type_info.ret_conv is not None:
1107             out_c += ("\n\treturn " + return_type_info.ret_conv_name + ";")
1108         elif return_type_info.c_ty != "void":
1109             out_c += ("\n\treturn ret_val;")
1110         out_c += ("\n}\n\n")
1111
1112         if args_known:
1113             out_java_struct += ("\t\t")
1114             if return_type_info.java_ty != "void":
1115                 out_java_struct += "const ret: " + return_type_info.java_ty + " = "
1116             out_java_struct += ("bindings." + method_name + "(")
1117             for idx, info in enumerate(argument_types):
1118                 if idx != 0:
1119                     out_java_struct += (", ")
1120                 if idx == 0 and takes_self:
1121                     out_java_struct += ("this.ptr")
1122                 elif info.arg_name in default_constructor_args:
1123                     out_java_struct += ("bindings." + info.java_hu_ty + "_new(")
1124                     for explode_idx, explode_arg in enumerate(default_constructor_args[info.arg_name]):
1125                         if explode_idx != 0:
1126                             out_java_struct += (", ")
1127                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1128                         if explode_arg.from_hu_conv is not None:
1129                             out_java_struct += (
1130                                 explode_arg.from_hu_conv[0].replace(explode_arg.arg_name, expl_arg_name))
1131                         else:
1132                             out_java_struct += (expl_arg_name)
1133                     out_java_struct += (")")
1134                 elif info.from_hu_conv is not None:
1135                     out_java_struct += (info.from_hu_conv[0])
1136                 else:
1137                     out_java_struct += (info.arg_name)
1138             out_java_struct += (");\n")
1139             if return_type_info.to_hu_conv is not None:
1140                 if not takes_self:
1141                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t").replace("this",
1142                                                                                                              return_type_info.to_hu_conv_name) + "\n")
1143                 else:
1144                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t") + "\n")
1145
1146             for idx, info in enumerate(argument_types):
1147                 if idx == 0 and takes_self:
1148                     pass
1149                 elif info.arg_name in default_constructor_args:
1150                     for explode_arg in default_constructor_args[info.arg_name]:
1151                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1152                         if explode_arg.from_hu_conv is not None and return_type_info.to_hu_conv_name:
1153                             out_java_struct += ("\t\t" + explode_arg.from_hu_conv[1].replace(explode_arg.arg_name,
1154                                                                                              expl_arg_name).replace(
1155                                 "this", return_type_info.to_hu_conv_name) + ";\n")
1156                 elif info.from_hu_conv is not None and info.from_hu_conv[1] != "":
1157                     if not takes_self and return_type_info.to_hu_conv_name is not None:
1158                         out_java_struct += (
1159                                 "\t\t" + info.from_hu_conv[1].replace("this", return_type_info.to_hu_conv_name).replace("\n", "\n\t\t") + ";\n")
1160                     else:
1161                         out_java_struct += ("\t\t" + info.from_hu_conv[1].replace("\n", "\n\t\t") + ";\n")
1162
1163             if return_type_info.to_hu_conv_name is not None:
1164                 out_java_struct += ("\t\treturn " + return_type_info.to_hu_conv_name + ";\n")
1165             elif return_type_info.java_ty != "void" and return_type_info.rust_obj != "LDK" + struct_meth:
1166                 out_java_struct += ("\t\treturn ret;\n")
1167             out_java_struct += ("\t}\n\n")
1168
1169         return (out_java, out_c, out_java_struct)
1170
1171     def cleanup(self):
1172         for struct in self.struct_file_suffixes:
1173             with open(self.outdir + "/structs/" + struct + self.file_ext, "a") as src:
1174                 src.write(self.struct_file_suffixes[struct])