Merge pull request #139 from TheBlueMatt/main
[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.function_ptr_counter = 0
18         self.function_ptrs = {}
19         self.c_type_map = dict(
20             bool = ['boolean', 'boolean', 'XXX'],
21             uint8_t = ['number', 'number', 'Uint8Array'],
22             uint16_t = ['number', 'number', 'Uint16Array'],
23             uint32_t = ['number', 'number', 'Uint32Array'],
24             int64_t = ['bigint', 'bigint', 'BigInt64Array'],
25             uint64_t = ['bigint', 'bigint', 'BigUint64Array'],
26             double = ['number', 'number', 'Float64Array'],
27         )
28         self.java_type_map = dict(
29             String = "number"
30         )
31         self.java_hu_type_map = dict(
32             String = "string"
33         )
34
35         self.to_hu_conv_templates = dict(
36             ptr = 'const {var_name}_hu_conv: {human_type} = new {human_type}(null, {var_name});',
37             default = 'const {var_name}_hu_conv: {human_type} = new {human_type}(null, {var_name});',
38         )
39
40         self.bindings_header = """
41 import * as version from './version.mjs';
42 import { UInt5, WitnessVersion } from './structs/CommonBase.mjs';
43
44 const imports: any = {};
45 imports.env = {};
46
47 var js_objs: Array<WeakRef<object>> = [];
48 var js_invoke: Function;
49 var getRandomValues: Function;
50
51 imports.wasi_snapshot_preview1 = {
52         "fd_write": (fd: number, iovec_array_ptr: number, iovec_array_len: number, bytes_written_ptr: number) => {
53                 // This should generally only be used to print panic messages
54                 const ptr_len_view = new Uint32Array(wasm.memory.buffer, iovec_array_ptr, iovec_array_len * 2);
55                 var bytes_written = 0;
56                 for (var i = 0; i < iovec_array_len; i++) {
57                         const bytes_view = new Uint8Array(wasm.memory.buffer, ptr_len_view[i*2], ptr_len_view[i*2+1]);
58                         console.log("[fd " + fd + "]: " + String.fromCharCode(...bytes_view));
59                         bytes_written += ptr_len_view[i*2+1]!;
60                 }
61                 const written_view = new Uint32Array(wasm.memory.buffer, bytes_written_ptr, 1);
62                 written_view[0] = bytes_written;
63                 return 0;
64         },
65         "fd_close": (_fd: number) => {
66                 // This is not generally called, but may be referenced in debug builds
67                 console.log("wasi_snapshot_preview1:fd_close");
68                 return 58; // Not Supported
69         },
70         "fd_seek": (_fd: number, _offset: bigint, _whence: number, _new_offset: number) => {
71                 // This is not generally called, but may be referenced in debug builds
72                 console.log("wasi_snapshot_preview1:fd_seek");
73                 return 58; // Not Supported
74         },
75         "random_get": (buf_ptr: number, buf_len: number) => {
76                 const buf = new Uint8Array(wasm.memory.buffer, buf_ptr, buf_len);
77                 getRandomValues(buf);
78                 return 0;
79         },
80         "environ_sizes_get": (environ_var_count_ptr: number, environ_len_ptr: number) => {
81                 // This is called before fd_write to format + print panic messages
82                 const out_count_view = new Uint32Array(wasm.memory.buffer, environ_var_count_ptr, 1);
83                 out_count_view[0] = 0;
84                 const out_len_view = new Uint32Array(wasm.memory.buffer, environ_len_ptr, 1);
85                 out_len_view[0] = 0;
86                 return 0;
87         },
88         "environ_get": (_environ_ptr: number, _environ_buf_ptr: number) => {
89                 // This is called before fd_write to format + print panic messages,
90                 // but only if we have variables in environ_sizes_get, so shouldn't ever actually happen!
91                 console.log("wasi_snapshot_preview1:environ_get");
92                 return 58; // Note supported - we said there were 0 environment entries!
93         },
94         "proc_exit" : () => {
95                 console.log("wasi_snapshot_preview1:proc_exit");
96         },
97 };
98
99 var wasm: any = null;
100 let isWasmInitialized: boolean = false;
101
102 async function finishInitializeWasm(wasmInstance: WebAssembly.Instance) {
103         if (typeof crypto === "undefined") {
104                 var crypto_import = (await import('crypto')).webcrypto;
105                 getRandomValues = crypto_import.getRandomValues.bind(crypto_import);
106         } else {
107                 getRandomValues = crypto.getRandomValues.bind(crypto);
108         }
109
110         wasm = wasmInstance.exports;
111         if (!wasm.test_bigint_pass_deadbeef0badf00d(BigInt("0xdeadbeef0badf00d"))) {
112                 throw new Error(\"Currently need BigInt-as-u64 support, try ----experimental-wasm-bigint");
113         }
114
115         if (decodeString(wasm.TS_get_lib_version_string()) !== version.get_ldk_java_bindings_version())
116                 throw new Error(\"Compiled LDK library and LDK class files do not match\");
117         // Fetching the LDK versions from C also checks that the header and binaries match
118         const c_bindings_ver: number = wasm.TS_get_ldk_c_bindings_version();
119         const ldk_ver: number = wasm.TS_get_ldk_version();
120         if (c_bindings_ver == 0)
121                 throw new Error(\"LDK version did not match the header we built against\");
122         if (ldk_ver == 0)
123                 throw new Error(\"LDK C bindings version did not match the header we built against\");
124         const c_bindings_version: string = decodeString(c_bindings_ver)
125         const ldk_version: string = decodeString(ldk_ver);
126         console.log(\"Loaded LDK-Java Bindings with LDK \" + ldk_version + \" and LDK-C-Bindings \" + c_bindings_version);
127
128         isWasmInitialized = true;
129 }
130
131 const fn_list = ["uuuuuu", "buuuuu", "bbuuuu", "bbbuuu", "bbbbuu", "bbbbbu",
132         "bbbbbb", "ubuubu", "ubuuuu", "ubbuuu", "uubuuu", "uububu", "ububuu"];
133
134 /* @internal */
135 export async function initializeWasmFromUint8Array(wasmBinary: Uint8Array) {
136         for (const fn of fn_list) { imports.env["js_invoke_function_" + fn] = js_invoke; }
137         const { instance: wasmInstance } = await WebAssembly.instantiate(wasmBinary, imports);
138         await finishInitializeWasm(wasmInstance);
139 }
140
141 /* @internal */
142 export async function initializeWasmFetch(uri: string) {
143         for (const fn of fn_list) { imports.env["js_invoke_function_" + fn] = js_invoke; }
144         const stream = fetch(uri);
145         const { instance: wasmInstance } = await WebAssembly.instantiateStreaming(stream, imports);
146         await finishInitializeWasm(wasmInstance);
147 }"""
148
149         self.bindings_header += """
150 // WASM CODEC
151
152 /* @internal */
153 export function uint5ArrToBytes(inputArray: Array<UInt5>): Uint8Array {
154         const arr = new Uint8Array(inputArray.length);
155         for (var i = 0; i < inputArray.length; i++) {
156                 arr[i] = inputArray[i]!.getVal();
157         }
158         return arr;
159 }
160
161 /* @internal */
162 export function WitnessVersionArrToBytes(inputArray: Array<WitnessVersion>): Uint8Array {
163         const arr = new Uint8Array(inputArray.length);
164         for (var i = 0; i < inputArray.length; i++) {
165                 arr[i] = inputArray[i]!.getVal();
166         }
167         return arr;
168 }
169
170
171
172 /* @internal */
173 export function encodeUint128 (inputVal: bigint): number {
174         if (inputVal >= 0x10000000000000000000000000000000n) throw "U128s cannot exceed 128 bits";
175         const cArrayPointer = wasm.TS_malloc(16 + 8);
176         const arrayLengthView = new BigUint64Array(wasm.memory.buffer, cArrayPointer, 1);
177         arrayLengthView[0] = BigInt(16);
178         const arrayMemoryView = new Uint8Array(wasm.memory.buffer, cArrayPointer + 8, 16);
179         for (var i = 0; i < 16; i++) arrayMemoryView[i] = Number((inputVal >> BigInt(i)*8n) & 0xffn);
180         return cArrayPointer;
181 }
182 /* @internal */
183 export function encodeUint8Array (inputArray: Uint8Array|null): number {
184         if (inputArray == null) return 0;
185         const cArrayPointer = wasm.TS_malloc(inputArray.length + 8);
186         const arrayLengthView = new BigUint64Array(wasm.memory.buffer, cArrayPointer, 1);
187         arrayLengthView[0] = BigInt(inputArray.length);
188         const arrayMemoryView = new Uint8Array(wasm.memory.buffer, cArrayPointer + 8, inputArray.length);
189         arrayMemoryView.set(inputArray);
190         return cArrayPointer;
191 }
192 /* @internal */
193 export function encodeUint16Array (inputArray: Uint16Array|Array<number>|null): number {
194         if (inputArray == null) return 0;
195         const cArrayPointer = wasm.TS_malloc((inputArray.length + 4) * 2);
196         const arrayLengthView = new BigUint64Array(wasm.memory.buffer, cArrayPointer, 1);
197         arrayLengthView[0] = BigInt(inputArray.length);
198         const arrayMemoryView = new Uint16Array(wasm.memory.buffer, cArrayPointer + 8, inputArray.length);
199         arrayMemoryView.set(inputArray);
200         return cArrayPointer;
201 }
202 /* @internal */
203 export function encodeUint32Array (inputArray: Uint32Array|Array<number>|null): number {
204         if (inputArray == null) return 0;
205         const cArrayPointer = wasm.TS_malloc((inputArray.length + 2) * 4);
206         const arrayLengthView = new BigUint64Array(wasm.memory.buffer, cArrayPointer, 1);
207         arrayLengthView[0] = BigInt(inputArray.length);
208         const arrayMemoryView = new Uint32Array(wasm.memory.buffer, cArrayPointer + 8, inputArray.length);
209         arrayMemoryView.set(inputArray);
210         return cArrayPointer;
211 }
212 /* @internal */
213 export function encodeUint64Array (inputArray: BigUint64Array|Array<bigint>|null): number {
214         if (inputArray == null) return 0;
215         const cArrayPointer = wasm.TS_malloc((inputArray.length + 1) * 8);
216         const arrayMemoryView = new BigUint64Array(wasm.memory.buffer, cArrayPointer, inputArray.length + 1);
217         arrayMemoryView[0] = BigInt(inputArray.length);
218         arrayMemoryView.set(inputArray, 1);
219         return cArrayPointer;
220 }
221
222 /* @internal */
223 export function check_arr_len(arr: Uint8Array|null, len: number): Uint8Array|null {
224         if (arr !== null && arr.length != len) { throw new Error("Expected array of length " + len + " got " + arr.length); }
225         return arr;
226 }
227
228 /* @internal */
229 export function check_16_arr_len(arr: Uint16Array|null, len: number): Uint16Array|null {
230         if (arr !== null && arr.length != len) { throw new Error("Expected array of length " + len + " got " + arr.length); }
231         return arr;
232 }
233
234 /* @internal */
235 export function getArrayLength(arrayPointer: number): number {
236         const arraySizeViewer = new BigUint64Array(wasm.memory.buffer, arrayPointer, 1);
237         const len = arraySizeViewer[0]!;
238         if (len >= (2n ** 32n)) throw new Error("Bogus Array Size");
239         return Number(len % (2n ** 32n));
240 }
241 /* @internal */
242 export function decodeUint128 (arrayPointer: number, free = true): bigint {
243         const arraySize = getArrayLength(arrayPointer);
244         if (arraySize != 16) throw "Need 16 bytes for a uint128";
245         const actualArrayViewer = new Uint8Array(wasm.memory.buffer, arrayPointer + 8, arraySize);
246         var val = 0n;
247         for (var i = 0; i < 16; i++) {
248                 val <<= 8n;
249                 val |= BigInt(actualArrayViewer[i]!);
250         }
251         if (free) {
252                 wasm.TS_free(arrayPointer);
253         }
254         return val;
255 }
256 /* @internal */
257 export function decodeUint8Array (arrayPointer: number, free = true): Uint8Array {
258         const arraySize = getArrayLength(arrayPointer);
259         const actualArrayViewer = new Uint8Array(wasm.memory.buffer, arrayPointer + 8, arraySize);
260         // Clone the contents, TODO: In the future we should wrap the Viewer in a class that
261         // will free the underlying memory when it becomes unreachable instead of copying here.
262         // Note that doing so may have edge-case interactions with memory resizing (invalidating the buffer).
263         const actualArray = actualArrayViewer.slice(0, arraySize);
264         if (free) {
265                 wasm.TS_free(arrayPointer);
266         }
267         return actualArray;
268 }
269 /* @internal */
270 export function decodeUint16Array (arrayPointer: number, free = true): Uint16Array {
271         const arraySize = getArrayLength(arrayPointer);
272         const actualArrayViewer = new Uint16Array(wasm.memory.buffer, arrayPointer + 8, arraySize);
273         // Clone the contents, TODO: In the future we should wrap the Viewer in a class that
274         // will free the underlying memory when it becomes unreachable instead of copying here.
275         // Note that doing so may have edge-case interactions with memory resizing (invalidating the buffer).
276         const actualArray = actualArrayViewer.slice(0, arraySize);
277         if (free) {
278                 wasm.TS_free(arrayPointer);
279         }
280         return actualArray;
281 }
282 /* @internal */
283 export function decodeUint64Array (arrayPointer: number, free = true): bigint[] {
284         const arraySize = getArrayLength(arrayPointer);
285         const actualArrayViewer = new BigUint64Array(
286                 wasm.memory.buffer, // value
287                 arrayPointer + 8, // offset (ignoring length bytes)
288                 arraySize // uint32 count
289         );
290         // Clone the contents, TODO: In the future we should wrap the Viewer in a class that
291         // will free the underlying memory when it becomes unreachable instead of copying here.
292         const actualArray = new Array(arraySize);
293         for (var i = 0; i < arraySize; i++) actualArray[i] = actualArrayViewer[i];
294         if (free) {
295                 wasm.TS_free(arrayPointer);
296         }
297         return actualArray;
298 }
299
300 export function freeWasmMemory(pointer: number) { wasm.TS_free(pointer); }
301
302 /* @internal */
303 export function getU64ArrayElem(arrayPointer: number, idx: number): bigint {
304         const actualArrayViewer = new BigUint64Array(wasm.memory.buffer, arrayPointer + 8, idx + 1);
305         return actualArrayViewer[idx]!;
306 }
307
308 /* @internal */
309 export function getU32ArrayElem(arrayPointer: number, idx: number): number {
310         const actualArrayViewer = new Uint32Array(wasm.memory.buffer, arrayPointer + 8, idx + 1);
311         return actualArrayViewer[idx]!;
312 }
313
314 /* @internal */
315 export function getU8ArrayElem(arrayPointer: number, idx: number): number {
316         const actualArrayViewer = new Uint8Array(wasm.memory.buffer, arrayPointer + 8, idx + 1);
317         return actualArrayViewer[idx]!;
318 }
319
320
321 /* @internal */
322 export function encodeString(str: string): number {
323         const charArray = new TextEncoder().encode(str);
324         return encodeUint8Array(charArray);
325 }
326
327 /* @internal */
328 export function decodeString(stringPointer: number, free = true): string {
329         const arraySize = getArrayLength(stringPointer);
330         const memoryView = new Uint8Array(wasm.memory.buffer, stringPointer + 8, arraySize);
331         const result = new TextDecoder("utf-8").decode(memoryView);
332
333         if (free) {
334                 wasm.TS_free(stringPointer);
335         }
336
337         return result;
338 }
339 """
340         if DEBUG:
341             self.bindings_header += """
342 /* @internal */
343 export function getRemainingAllocationCount(): number {
344         return wasm.TS_allocs_remaining();
345 }
346 /* @internal */
347 export function debugPrintRemainingAllocs() {
348         wasm.TS_print_leaks();
349 }
350 """
351         else:
352             self.bindings_header += "\n/* @internal */ export function getRemainingAllocationCount(): number { return 0; }\n"
353             self.bindings_header += "/* @internal */ export function debugPrintRemainingAllocs() { }\n"
354
355         with open(outdir + "/index.mts", 'a') as index:
356             index.write("""import { initializeWasmFetch, initializeWasmFromUint8Array } from './bindings.mjs';
357 /** Initializes the WASM backend by calling `fetch()` on the given URI - Browser only */
358 export async function initializeWasmWebFetch(uri: string) {
359         await initializeWasmFetch(uri);
360 }
361 /** Initializes the WASM backend given a Uint8Array of the .wasm binary file - Browser or Node.JS */
362 export async function initializeWasmFromBinary(bin: Uint8Array) {
363         await initializeWasmFromUint8Array(bin);
364 }
365
366 export * from './structs/UtilMethods.mjs';
367 """)
368
369         self.bindings_version_file = """export function get_ldk_java_bindings_version(): String {
370         return "<git_version_ldk_garbagecollected>";
371 }"""
372
373         self.common_base = """
374 function freer(f: () => void) { f() }
375 const finalizer = new FinalizationRegistry(freer);
376 function get_freeer(ptr: bigint, free_fn: (ptr: bigint) => void) {
377         return () => {
378                 free_fn(ptr);
379         }
380 }
381
382 export class CommonBase {
383         protected ptr: bigint;
384         protected ptrs_to: object[] = [];
385         protected constructor(ptr: bigint, free_fn: (ptr: bigint) => void) {
386                 this.ptr = ptr;
387                 if (ptr != 0n){
388                         finalizer.register(this, get_freeer(ptr, free_fn), this);
389                 }
390         }
391         // In Java, protected means "any subclass can access fields on any other subclass'"
392         // In TypeScript, protected means "any subclass can access parent fields on instances of itself"
393         // To work around this, we add accessors for other instances' protected fields here.
394         protected static add_ref_from(holder: CommonBase|null, referent: object|null) {
395                 if (holder !== null && referent !== null) { holder.ptrs_to.push(referent); }
396         }
397         protected static get_ptr_of(o: CommonBase) {
398                 return o.ptr;
399         }
400         protected static set_null_skip_free(o: CommonBase) {
401                 o.ptr = 0n;
402                 // @ts-ignore TypeScript is wrong about the returnvalue of unregister here!
403                 const did_unregister: boolean = finalizer.unregister(o);
404                 if (!did_unregister)
405                         throw new Error("FinalizationRegistry unregister should always unregister unless you double-free'd");
406         }
407 }
408
409 export class UInt5 {
410         public constructor(private val: number) {
411                 if (val > 32 || val < 0) throw new Error("UInt5 value is out of range");
412         }
413         public getVal(): number {
414                 return this.val;
415         }
416 }
417
418 export class WitnessVersion {
419         public constructor(private val: number) {
420                 if (val > 16 || val < 0) throw new Error("WitnessVersion value is out of range");
421         }
422         public getVal(): number {
423                 return this.val;
424         }
425 }
426
427 export class UnqualifiedError {
428         public constructor(_val: number) {}
429 }
430 """
431
432         self.txout_defn = """export class TxOut extends CommonBase {
433         /** The script_pubkey in this output */
434         public script_pubkey: Uint8Array;
435         /** The value, in satoshis, of this output */
436         public value: bigint;
437
438         /* @internal */
439         public constructor(_dummy: null, ptr: bigint) {
440                 super(ptr, bindings.TxOut_free);
441                 this.script_pubkey = bindings.decodeUint8Array(bindings.TxOut_get_script_pubkey(ptr));
442                 this.value = bindings.TxOut_get_value(ptr);
443         }
444         public static constructor_new(value: bigint, script_pubkey: Uint8Array): TxOut {
445                 return new TxOut(null, bindings.TxOut_new(bindings.encodeUint8Array(script_pubkey), value));
446         }
447 }"""
448         self.obj_defined(["TxOut"], "structs")
449
450         self.txin_defn = """export class TxIn extends CommonBase {
451         /** The witness in this input, in serialized form */
452         public witness: Uint8Array;
453         /** The script_sig in this input */
454         public script_sig: Uint8Array;
455         /** The transaction output's sequence number */
456         public sequence: number;
457         /** The txid this input is spending */
458         public previous_txid: Uint8Array;
459         /** The output index within the spent transaction of the output this input is spending */
460         public previous_vout: number;
461
462         /* @internal */
463         public constructor(_dummy: null, ptr: bigint) {
464                 super(ptr, bindings.TxIn_free);
465                 this.witness = bindings.decodeUint8Array(bindings.TxIn_get_witness(ptr));
466                 this.script_sig = bindings.decodeUint8Array(bindings.TxIn_get_script_sig(ptr));
467                 this.sequence = bindings.TxIn_get_sequence(ptr);
468                 this.previous_txid = bindings.decodeUint8Array(bindings.TxIn_get_previous_txid(ptr));
469                 this.previous_vout = bindings.TxIn_get_previous_vout(ptr);
470         }
471     public static constructor_new(witness: Uint8Array, script_sig: Uint8Array, sequence: number, previous_txid: Uint8Array, previous_vout: number): TxIn {
472                 return new TxIn(null, bindings.TxIn_new(bindings.encodeUint8Array(witness), bindings.encodeUint8Array(script_sig), sequence, bindings.encodeUint8Array(previous_txid), previous_vout));
473         }
474 }"""
475         self.obj_defined(["TxIn"], "structs")
476
477         self.scalar_defn = """export class BigEndianScalar extends CommonBase {
478         /** The bytes of the scalar value, in big endian */
479         public scalar_bytes: Uint8Array;
480
481         /* @internal */
482         public constructor(_dummy: null, ptr: bigint) {
483                 super(ptr, bindings.BigEndianScalar_free);
484                 this.scalar_bytes = bindings.decodeUint8Array(bindings.BigEndianScalar_get_bytes(ptr));
485         }
486         public static constructor_new(scalar_bytes: Uint8Array): BigEndianScalar {
487                 return new BigEndianScalar(null, bindings.BigEndianScalar_new(bindings.encodeUint8Array(scalar_bytes)));
488         }
489 }"""
490         self.obj_defined(["BigEndianScalar"], "structs")
491
492         self.c_file_pfx = """#include "js-wasm.h"
493 #include <stdatomic.h>
494 #include <lightning.h>
495
496 // These should be provided...somehow...
497 void *memset(void *s, int c, size_t n);
498 void *memcpy(void *dest, const void *src, size_t n);
499 int memcmp(const void *s1, const void *s2, size_t n);
500
501 extern void __attribute__((noreturn)) abort(void);
502 static inline void assert(bool expression) {
503         if (!expression) { abort(); }
504 }
505
506 uint32_t __attribute__((export_name("test_bigint_pass_deadbeef0badf00d"))) test_bigint_pass_deadbeef0badf00d(uint64_t val) {
507         return val == 0xdeadbeef0badf00dULL;
508 }
509
510 """
511
512         if not DEBUG:
513             self.c_file_pfx += """
514 void *malloc(size_t size);
515 void free(void *ptr);
516
517 #define MALLOC(a, _) malloc(a)
518 #define do_MALLOC(a, _b, _c) malloc(a)
519 #define FREE(p) if ((unsigned long)(p) > 4096) { free(p); }
520 #define DO_ASSERT(a) (void)(a)
521 #define CHECK(a)
522 #define CHECK_ACCESS(p)
523 #define CHECK_INNER_FIELD_ACCESS_OR_NULL(v)
524 """
525         else:
526             self.c_file_pfx += """
527 extern int snprintf(char *str, size_t size, const char *format, ...);
528 typedef int32_t ssize_t;
529 ssize_t write(int fd, const void *buf, size_t count);
530 #define DEBUG_PRINT(...) do { \\
531         char debug_str[1024]; \\
532         int s_len = snprintf(debug_str, 1023, __VA_ARGS__); \\
533         write(2, debug_str, s_len); \\
534 } while (0);
535
536 // Always run a, then assert it is true:
537 #define DO_ASSERT(a) do { bool _assert_val = (a); assert(_assert_val); } while(0)
538 // Assert a is true or do nothing
539 #define CHECK(a) DO_ASSERT(a)
540
541 // Running a leak check across all the allocations and frees of the JDK is a mess,
542 // so instead we implement our own naive leak checker here, relying on the -wrap
543 // linker option to wrap malloc/calloc/realloc/free, tracking everyhing allocated
544 // and free'd in Rust or C across the generated bindings shared library.
545
546 #define BT_MAX 128
547 typedef struct allocation {
548         struct allocation* next;
549         void* ptr;
550         const char* struct_name;
551         int lineno;
552 } allocation;
553 static allocation* allocation_ll = NULL;
554 static allocation* freed_ll = NULL;
555
556 extern void* __real_malloc(size_t len);
557 extern void* __real_calloc(size_t nmemb, size_t len);
558 extern void* __real_aligned_alloc(size_t alignment, size_t size);
559 static void new_allocation(void* res, const char* struct_name, int lineno) {
560         allocation* new_alloc = __real_malloc(sizeof(allocation));
561         new_alloc->ptr = res;
562         new_alloc->struct_name = struct_name;
563         new_alloc->next = allocation_ll;
564         new_alloc->lineno = lineno;
565         allocation_ll = new_alloc;
566 }
567 static void* do_MALLOC(size_t len, const char* struct_name, int lineno) {
568         void* res = __real_malloc(len);
569         new_allocation(res, struct_name, lineno);
570         return res;
571 }
572 #define MALLOC(len, struct_name) do_MALLOC(len, struct_name, __LINE__)
573
574 void __real_free(void* ptr);
575 static void alloc_freed(void* ptr, int lineno) {
576         allocation* p = NULL;
577         allocation* it = allocation_ll;
578         while (it->ptr != ptr) {
579                 p = it; it = it->next;
580                 if (it == NULL) {
581                         p = NULL;
582                         it = freed_ll;
583                         while (it && it->ptr != ptr) { p = it; it = it->next; }
584                         if (it == NULL) {
585                                 DEBUG_PRINT("Tried to free unknown pointer %p at line %d.\\n", ptr, lineno);
586                         } else {
587                                 DEBUG_PRINT("Tried to free unknown pointer %p at line %d.\\n Possibly double-free from %s, allocated on line %d.", ptr, lineno, it->struct_name, it->lineno);
588                         }
589                         abort();
590                 }
591         }
592         if (p) { p->next = it->next; } else { allocation_ll = it->next; }
593         DO_ASSERT(it->ptr == ptr);
594         it->next = freed_ll;
595         freed_ll = it;
596 }
597 static void do_FREE(void* ptr, int lineno) {
598         if ((unsigned long)ptr <= 4096) return; // Rust loves to create pointers to the NULL page for dummys
599         alloc_freed(ptr, lineno);
600         __real_free(ptr);
601 }
602 #define FREE(ptr) do_FREE(ptr, __LINE__)
603
604 static void CHECK_ACCESS(const void* ptr) {
605         allocation* it = allocation_ll;
606         while (it->ptr != ptr) {
607                 it = it->next;
608                 if (it == NULL) {
609                         return; // addrsan should catch malloc-unknown and print more info than we have
610                 }
611         }
612 }
613 #define CHECK_INNER_FIELD_ACCESS_OR_NULL(v) \\
614         if (v.is_owned && v.inner != NULL) { \\
615                 const void *p = __unmangle_inner_ptr(v.inner); \\
616                 if (p != NULL) { \\
617                         CHECK_ACCESS(p); \\
618                 } \\
619         }
620
621 void* __wrap_malloc(size_t len) {
622         void* res = __real_malloc(len);
623         new_allocation(res, "malloc call", 0);
624         return res;
625 }
626 void* __wrap_calloc(size_t nmemb, size_t len) {
627         void* res = __real_calloc(nmemb, len);
628         new_allocation(res, "calloc call", 0);
629         return res;
630 }
631 void* __wrap_aligned_alloc(size_t alignment, size_t size) {
632         void* res = __real_aligned_alloc(alignment, size);
633         new_allocation(res, "aligned_alloc call", 0);
634         return res;
635 }
636 void __wrap_free(void* ptr) {
637         if (ptr == NULL) return;
638         alloc_freed(ptr, 0);
639         __real_free(ptr);
640 }
641
642 void* __real_realloc(void* ptr, size_t newlen);
643 void* __wrap_realloc(void* ptr, size_t len) {
644         if (ptr != NULL) alloc_freed(ptr, 0);
645         void* res = __real_realloc(ptr, len);
646         new_allocation(res, "realloc call", 0);
647         return res;
648 }
649 void __wrap_reallocarray(void* ptr, size_t new_sz) {
650         // Rust doesn't seem to use reallocarray currently
651         DO_ASSERT(false);
652 }
653
654 uint32_t __attribute__((export_name("TS_allocs_remaining"))) allocs_remaining() {
655         uint32_t count = 0;
656         for (allocation* a = allocation_ll; a != NULL; a = a->next) {
657                 count++;
658         }
659         return count;
660 }
661 void __attribute__((export_name("TS_print_leaks"))) print_leaks() {
662         for (allocation* a = allocation_ll; a != NULL; a = a->next) {
663                 DEBUG_PRINT("%s %p remains. Allocated on line %d\\n", a->struct_name, a->ptr, a->lineno);
664         }
665 }
666 """
667         self.c_file_pfx = self.c_file_pfx + """
668 // We assume that CVec_u8Z and u8slice are the same size and layout (and thus pointers to the two can be mixed)
669 _Static_assert(sizeof(LDKCVec_u8Z) == sizeof(LDKu8slice), "Vec<u8> and [u8] need to have been mapped identically");
670 _Static_assert(offsetof(LDKCVec_u8Z, data) == offsetof(LDKu8slice, data), "Vec<u8> and [u8] need to have been mapped identically");
671 _Static_assert(offsetof(LDKCVec_u8Z, datalen) == offsetof(LDKu8slice, datalen), "Vec<u8> and [u8] need to have been mapped identically");
672
673 _Static_assert(sizeof(void*) == 4, "Pointers mut be 32 bits");
674
675 #define DECL_ARR_TYPE(ty, name) \\
676         struct name##array { \\
677                 uint64_t arr_len; /* uint32_t would suffice but we want to align uint64_ts as well */ \\
678                 ty elems[]; \\
679         }; \\
680         typedef struct name##array * name##Array; \\
681         static inline name##Array init_##name##Array(size_t arr_len, int lineno) { \\
682                 name##Array arr = (name##Array)do_MALLOC(arr_len * sizeof(ty) + sizeof(uint64_t), #name" array init", lineno); \\
683                 arr->arr_len = arr_len; \\
684                 return arr; \\
685         }
686
687 DECL_ARR_TYPE(int64_t, int64_t);
688 DECL_ARR_TYPE(uint64_t, uint64_t);
689 DECL_ARR_TYPE(int8_t, int8_t);
690 DECL_ARR_TYPE(int16_t, int16_t);
691 DECL_ARR_TYPE(uint32_t, uint32_t);
692 DECL_ARR_TYPE(void*, ptr);
693 DECL_ARR_TYPE(char, char);
694 typedef charArray jstring;
695
696 static inline jstring str_ref_to_ts(const char* chars, size_t len) {
697         charArray arr = init_charArray(len, __LINE__);
698         memcpy(arr->elems, chars, len);
699         return arr;
700 }
701 static inline LDKStr str_ref_to_owned_c(const jstring str) {
702         char* newchars = MALLOC(str->arr_len + 1, "String chars");
703         memcpy(newchars, str->elems, str->arr_len);
704         newchars[str->arr_len] = 0;
705         LDKStr res = {
706                 .chars = newchars,
707                 .len = str->arr_len,
708                 .chars_is_owned = true
709         };
710         return res;
711 }
712
713 typedef bool jboolean;
714
715 uint32_t __attribute__((export_name("TS_malloc"))) TS_malloc(uint32_t size) {
716         return (uint32_t)MALLOC(size, "JS-Called malloc");
717 }
718 void __attribute__((export_name("TS_free"))) TS_free(uint32_t ptr) {
719         FREE((void*)ptr);
720 }
721
722 jstring __attribute__((export_name("TS_get_ldk_c_bindings_version"))) TS_get_ldk_c_bindings_version() {
723         const char *res = check_get_ldk_bindings_version();
724         if (res == NULL) return NULL;
725         return str_ref_to_ts(res, strlen(res));
726 }
727 jstring __attribute__((export_name("TS_get_ldk_version"))) get_ldk_version() {
728         const char *res = check_get_ldk_version();
729         if (res == NULL) return NULL;
730         return str_ref_to_ts(res, strlen(res));
731 }
732 #include "version.c"
733 """
734
735         self.c_version_file = """jstring __attribute__((export_name("TS_get_lib_version_string"))) TS_get_lib_version_string() {
736         return str_ref_to_ts("<git_version_ldk_garbagecollected>", strlen("<git_version_ldk_garbagecollected>"));
737 }"""
738
739         self.hu_struct_file_prefix = """
740 import { CommonBase, UInt5, WitnessVersion, UnqualifiedError } from './CommonBase.mjs';
741 import * as bindings from '../bindings.mjs'
742
743 """
744         self.hu_struct_file_suffix = ""
745         self.util_fn_pfx = self.hu_struct_file_prefix + "\nexport class UtilMethods extends CommonBase {\n"
746         self.util_fn_sfx = "}"
747         self.c_fn_ty_pfx = ""
748         self.file_ext = ".mts"
749         self.ptr_c_ty = "uint64_t"
750         self.ptr_native_ty = "bigint"
751         self.u128_native_ty = "bigint"
752         self.usize_c_ty = "uint32_t"
753         self.usize_native_ty = "number"
754         self.native_zero_ptr = "0n"
755         self.result_c_ty = "uint32_t"
756         self.ptr_arr = "ptrArray"
757         self.is_arr_some_check = ("", " != 0")
758         self.get_native_arr_len_call = ("", "->arr_len")
759
760     def bindings_footer(self):
761         return ""
762
763     def release_native_arr_ptr_call(self, ty_info, arr_var, arr_ptr_var):
764         return None
765     def create_native_arr_call(self, arr_len, ty_info):
766         if ty_info.c_ty == "ptrArray":
767             assert ty_info.rust_obj == "LDKCVec_U5Z" or (ty_info.subty is not None and (ty_info.subty.c_ty.endswith("Array") or ty_info.subty.rust_obj == "LDKStr"))
768         return "init_" + ty_info.c_ty + "(" + arr_len + ", __LINE__)"
769     def set_native_arr_contents(self, arr_name, arr_len, ty_info):
770         if ty_info.c_ty == "int8_tArray":
771             return ("memcpy(" + arr_name + "->elems, ", ", " + arr_len + ")")
772         elif ty_info.c_ty == "int16_tArray":
773             return ("memcpy(" + arr_name + "->elems, ", ", " + arr_len + " * 2)")
774         else:
775             assert False
776     def get_native_arr_contents(self, arr_name, dest_name, arr_len, ty_info, copy):
777         if ty_info.c_ty == "int8_tArray" or ty_info.c_ty == "int16_tArray":
778             if copy:
779                 byte_len = arr_len
780                 if ty_info.c_ty == "int16_tArray":
781                     byte_len = arr_len + " * 2"
782                 return "memcpy(" + dest_name + ", " + arr_name + "->elems, " + byte_len + "); FREE(" + arr_name + ")"
783         assert not copy
784         if ty_info.c_ty == "ptrArray":
785             return "(void*) " + arr_name + "->elems"
786         else:
787             return arr_name + "->elems"
788     def get_native_arr_elem(self, arr_name, idxc, ty_info):
789         assert False # Only called if above is None
790     def get_native_arr_ptr_call(self, ty_info):
791         if ty_info.subty is not None:
792             return "(" + ty_info.subty.c_ty + "*)(((uint8_t*)", ") + 8)"
793         return "(" + ty_info.c_ty + "*)(((uint8_t*)", ") + 8)"
794     def get_native_arr_entry_call(self, ty_info, arr_name, idxc, entry_access):
795         return None
796     def cleanup_native_arr_ref_contents(self, arr_name, dest_name, arr_len, ty_info):
797         if ty_info.c_ty == "int8_tArray":
798             return "FREE(" + arr_name + ");"
799         else:
800             return "FREE(" + arr_name + ")"
801
802     def map_hu_array_elems(self, arr_name, conv_name, arr_ty, elem_ty, is_nullable):
803         if elem_ty.rust_obj == "LDKU5":
804             return arr_name + " != null ? bindings.uint5ArrToBytes(" + arr_name + ") : null"
805         assert elem_ty.c_ty == "uint64_t" or elem_ty.c_ty.endswith("Array") or elem_ty.rust_obj == "LDKStr"
806         if is_nullable:
807             return arr_name + " != null ? " + arr_name + ".map(" + conv_name + " => " + elem_ty.from_hu_conv[0] + ") : null"
808         else:
809             return arr_name + ".map(" + conv_name + " => " + elem_ty.from_hu_conv[0] + ")"
810
811     def str_ref_to_native_call(self, var_name, str_len):
812         return "str_ref_to_ts(" + var_name + ", " + str_len + ")"
813     def str_ref_to_c_call(self, var_name):
814         return "str_ref_to_owned_c(" + var_name + ")"
815     def str_to_hu_conv(self, var_name):
816         return "const " + var_name + "_conv: string = bindings.decodeString(" + var_name + ");"
817     def str_from_hu_conv(self, var_name):
818         return ("bindings.encodeString(" + var_name + ")", "")
819
820     def c_fn_name_define_pfx(self, fn_name, have_args):
821         return " __attribute__((export_name(\"TS_" + fn_name + "\"))) TS_" + fn_name + "("
822
823     def init_str(self):
824         return ""
825
826     def get_java_arr_len(self, arr_name):
827         return "bindings.getArrayLength(" + arr_name + ")"
828     def get_java_arr_elem(self, elem_ty, arr_name, idx):
829         if elem_ty.c_ty.endswith("Array") or elem_ty.c_ty == "uintptr_t":
830             return "bindings.getU32ArrayElem(" + arr_name + ", " + idx + ")"
831         elif elem_ty.c_ty == "uint64_t":
832             return "bindings.getU64ArrayElem(" + arr_name + ", " + idx + ")"
833         elif elem_ty.rust_obj == "LDKU5":
834             return "bindings.getU8ArrayElem(" + arr_name + ", " + idx + ")"
835         elif elem_ty.rust_obj == "LDKStr":
836             return "bindings.getU32ArrayElem(" + arr_name + ", " + idx + ")"
837         else:
838             assert False
839     def constr_hu_array(self, ty_info, arr_len):
840         return "new Array(" + arr_len + ").fill(null)"
841     def cleanup_converted_native_array(self, ty_info, arr_name):
842         return "bindings.freeWasmMemory(" + arr_name + ")"
843
844     def primitive_arr_from_hu(self, arr_ty, fixed_len, arr_name):
845         mapped_ty = arr_ty.subty
846         inner = arr_name
847         if arr_ty.rust_obj == "LDKU128":
848             return ("bindings.encodeUint128(" + inner + ")", "")
849         if fixed_len is not None:
850             if mapped_ty.c_ty == "int8_t":
851                 inner = "bindings.check_arr_len(" + arr_name + ", " + fixed_len + ")"
852             elif mapped_ty.c_ty == "int16_t":
853                 inner = "bindings.check_16_arr_len(" + arr_name + ", " + fixed_len + ")"
854         if mapped_ty.c_ty.endswith("Array"):
855             return ("bindings.encodeUint32Array(" + inner + ")", "")
856         elif mapped_ty.c_ty == "uint8_t" or mapped_ty.c_ty == "int8_t":
857             return ("bindings.encodeUint8Array(" + inner + ")", "")
858         elif mapped_ty.c_ty == "uint16_t" or mapped_ty.c_ty == "int16_t":
859             return ("bindings.encodeUint16Array(" + inner + ")", "")
860         elif mapped_ty.c_ty == "uint32_t" or mapped_ty.rust_obj == "LDKStr":
861             return ("bindings.encodeUint32Array(" + inner + ")", "")
862         elif mapped_ty.c_ty == "int64_t" or mapped_ty.c_ty == "uint64_t":
863             return ("bindings.encodeUint64Array(" + inner + ")", "")
864         else:
865             print(mapped_ty.c_ty)
866             assert False
867
868     def primitive_arr_to_hu(self, arr_ty, fixed_len, arr_name, conv_name):
869         mapped_ty = arr_ty.subty
870         if arr_ty.rust_obj == "LDKU128":
871             return "const " + conv_name + ": bigint = bindings.decodeUint128(" + arr_name + ");"
872         elif mapped_ty.c_ty == "uint8_t" or mapped_ty.c_ty == "int8_t":
873             return "const " + conv_name + ": Uint8Array = bindings.decodeUint8Array(" + arr_name + ");"
874         elif mapped_ty.c_ty == "uint16_t" or mapped_ty.c_ty == "int16_t":
875             return "const " + conv_name + ": Uint16Array = bindings.decodeUint16Array(" + arr_name + ");"
876         elif mapped_ty.c_ty == "uint64_t" or mapped_ty.c_ty == "int64_t":
877             return "const " + conv_name + ": bigint[] = bindings.decodeUint64Array(" + arr_name + ");"
878         else:
879             assert False
880
881     def var_decl_statement(self, ty_string, var_name, statement):
882         return "const " + var_name + ": " + ty_string + " = " + statement
883
884     def java_arr_ty_str(self, elem_ty_str):
885         return "number"
886
887     def for_n_in_range(self, n, minimum, maximum):
888         return "for (var " + n + " = " + minimum + "; " + n + " < " + maximum + "; " + n + "++) {"
889     def for_n_in_arr(self, n, arr_name, arr_elem_ty):
890         return (arr_name + ".forEach((" + n + ": " + arr_elem_ty.java_hu_ty + ") => { ", " })")
891
892     def get_ptr(self, var):
893         return "CommonBase.get_ptr_of(" + var + ")"
894     def set_null_skip_free(self, var):
895         return "CommonBase.set_null_skip_free(" + var + ");"
896
897     def add_ref(self, holder, referent):
898         return "CommonBase.add_ref_from(" + holder + ", " + referent + ")"
899
900     def obj_defined(self, struct_names, folder):
901         with open(self.outdir + "/index.mts", 'a') as index:
902             index.write(f"export * from './{folder}/{struct_names[0]}.mjs';\n")
903         with open(self.outdir + "/imports.mts.part", 'a') as imports:
904             imports.write(f"import {{ {', '.join(struct_names)} }} from '../{folder}/{struct_names[0]}.mjs';\n")
905
906     def fully_qualified_hu_ty_path(self, ty):
907         return ty.java_hu_ty
908
909     def native_c_unitary_enum_map(self, struct_name, variants, enum_doc_comment):
910         out_c = "static inline LDK" + struct_name + " LDK" + struct_name + "_from_js(int32_t ord) {\n"
911         out_c = out_c + "\tswitch (ord) {\n"
912         ord_v = 0
913
914         out_typescript_enum_fields = ""
915
916         for var, var_docs in variants:
917             out_c = out_c + "\t\tcase %d: return %s;\n" % (ord_v, var)
918             ord_v = ord_v + 1
919             if var_docs is not None:
920                 var_docs_repld = var_docs.replace("\n", "\n\t")
921                 out_typescript_enum_fields += f"/**\n\t * {var_docs_repld}\n\t */\n"
922             out_typescript_enum_fields += f"\t{var},\n\t"
923         out_c = out_c + "\t}\n"
924         out_c = out_c + "\tabort();\n"
925         out_c = out_c + "}\n"
926
927         out_c = out_c + "static inline int32_t LDK" + struct_name + "_to_js(LDK" + struct_name + " val) {\n"
928         out_c = out_c + "\tswitch (val) {\n"
929         ord_v = 0
930         for var, _ in variants:
931             out_c = out_c + "\t\tcase " + var + ": return %d;\n" % ord_v
932             ord_v = ord_v + 1
933         out_c = out_c + "\t\tdefault: abort();\n"
934         out_c = out_c + "\t}\n"
935         out_c = out_c + "}\n"
936
937         # Note that this is *not* marked /* @internal */ as we re-expose it directly in enums/
938         enum_comment_formatted = enum_doc_comment.replace("\n", "\n * ")
939         out_typescript = f"""
940 /**
941  * {enum_comment_formatted}
942  */
943 export enum {struct_name} {{
944         {out_typescript_enum_fields}
945 }}
946 """
947         out_typescript_enum = f"export {{ {struct_name} }} from \"../bindings.mjs\";"
948         self.obj_defined([struct_name], "enums")
949         return (out_c, out_typescript_enum, out_typescript)
950
951     def c_unitary_enum_to_native_call(self, ty_info):
952         return (ty_info.rust_obj + "_to_js(", ")")
953     def native_unitary_enum_to_c_call(self, ty_info):
954         return (ty_info.rust_obj + "_from_js(", ")")
955
956     def native_c_map_trait(self, struct_name, field_var_conversions, flattened_field_var_conversions, field_function_lines, trait_doc_comment):
957         out_typescript_bindings = ""
958         super_instantiator = ""
959         bindings_instantiator = ""
960         pointer_to_adder = ""
961         impl_constructor_arguments = ""
962         for var in flattened_field_var_conversions:
963             if isinstance(var, ConvInfo):
964                 impl_constructor_arguments += f", {var.arg_name}: {var.java_hu_ty}"
965                 if var.from_hu_conv is not None:
966                     bindings_instantiator += ", " + var.from_hu_conv[0]
967                     if var.from_hu_conv[1] != "":
968                         pointer_to_adder += "\t\t\t" + var.from_hu_conv[1] + ";\n"
969                 else:
970                     bindings_instantiator += ", " + first_to_lower(var.arg_name)
971             else:
972                 bindings_instantiator += ", " + first_to_lower(var[1]) + ".instance_idx!"
973                 pointer_to_adder += "\t\timpl_holder.held.ptrs_to.push(" + first_to_lower(var[1]) + ");\n"
974                 impl_constructor_arguments += f", {first_to_lower(var[1])}_impl: {var[0].replace('LDK', '')}Interface"
975
976         super_constructor_statements = ""
977         trait_constructor_arguments = ""
978         for var in field_var_conversions:
979             if isinstance(var, ConvInfo):
980                 trait_constructor_arguments += ", " + var.arg_name
981             else:
982                 super_constructor_statements += "\t\tconst " + first_to_lower(var[1]) + " = " + var[1] + ".new_impl(" + first_to_lower(var[1]) + "_impl"
983                 super_instantiator = ""
984                 for suparg in var[2]:
985                     if isinstance(suparg, ConvInfo):
986                         super_instantiator += ", " + suparg.arg_name
987                     else:
988                         super_instantiator += ", " + first_to_lower(suparg[1]) + "_impl"
989                 super_constructor_statements += super_instantiator + ");\n"
990                 trait_constructor_arguments += ", " + first_to_lower(var[1]) + ".instance_idx!"
991                 for suparg in var[2]:
992                     if isinstance(suparg, ConvInfo):
993                         trait_constructor_arguments += ", " + suparg.arg_name
994                     else:
995                         # Blindly assume that we can just strip the first arg to build the args for the supertrait
996                         super_constructor_statements += "\t\tconst " + first_to_lower(suparg[1]) + " = " + suparg[1] + ".new_impl(" + super_instantiator.split(", ", 1)[1] + ");\n"
997                         trait_constructor_arguments += ", " + suparg[1]
998
999         # BUILD INTERFACE METHODS
1000         out_java_interface = ""
1001         out_interface_implementation_overrides = ""
1002         java_methods = []
1003         for fn_line in field_function_lines:
1004             java_method_descriptor = ""
1005             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1006                 out_java_interface += "\t/**" + fn_line.docs.replace("\n", "\n\t * ") + "\n\t */\n"
1007                 out_java_interface += "\t" + fn_line.fn_name + "("
1008                 out_interface_implementation_overrides += f"\t\t\t{fn_line.fn_name} ("
1009
1010                 for idx, arg_conv_info in enumerate(fn_line.args_ty):
1011                     if idx >= 1:
1012                         out_java_interface += ", "
1013                         out_interface_implementation_overrides += ", "
1014                     out_java_interface += f"{arg_conv_info.arg_name}: {arg_conv_info.java_hu_ty}"
1015                     out_interface_implementation_overrides += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
1016                     java_method_descriptor += arg_conv_info.java_fn_ty_arg
1017                 out_java_interface += f"): {fn_line.ret_ty_info.java_hu_ty};\n"
1018                 java_method_descriptor += ")" + fn_line.ret_ty_info.java_fn_ty_arg
1019                 java_methods.append((fn_line.fn_name, java_method_descriptor))
1020
1021                 out_interface_implementation_overrides += f"): {fn_line.ret_ty_info.java_ty} {{\n"
1022
1023                 for arg_info in fn_line.args_ty:
1024                     if arg_info.to_hu_conv is not None:
1025                         out_interface_implementation_overrides += "\t\t\t\t" + arg_info.to_hu_conv.replace("\n", "\n\t\t\t\t") + "\n"
1026
1027                 if fn_line.ret_ty_info.java_ty != "void":
1028                     out_interface_implementation_overrides += "\t\t\t\tconst ret: " + fn_line.ret_ty_info.java_hu_ty + " = arg." + fn_line.fn_name + "("
1029                 else:
1030                     out_interface_implementation_overrides += f"\t\t\t\targ." + fn_line.fn_name + "("
1031
1032                 for idx, arg_info in enumerate(fn_line.args_ty):
1033                     if idx != 0:
1034                         out_interface_implementation_overrides += ", "
1035                     if arg_info.to_hu_conv_name is not None:
1036                         out_interface_implementation_overrides += arg_info.to_hu_conv_name
1037                     else:
1038                         out_interface_implementation_overrides += arg_info.arg_name
1039
1040                 out_interface_implementation_overrides += ");\n"
1041                 if fn_line.ret_ty_info.java_ty != "void":
1042                     if fn_line.ret_ty_info.from_hu_conv is not None:
1043                         out_interface_implementation_overrides += "\t\t\t\t" + f"const result: {fn_line.ret_ty_info.java_ty} = " + fn_line.ret_ty_info.from_hu_conv[0].replace("\n", "\n\t\t\t\t") + ";\n"
1044                         if fn_line.ret_ty_info.from_hu_conv[1] != "":
1045                             out_interface_implementation_overrides += "\t\t\t\t" + fn_line.ret_ty_info.from_hu_conv[1].replace("this", "impl_holder.held").replace("\n", "\n\t\t\t\t") + ";\n"
1046                         #if fn_line.ret_ty_info.rust_obj in result_types:
1047                         # XXX: We need to handle this in conversion logic so that its cross-language!
1048                         # Avoid double-free by breaking the result - we should learn to clone these and then we can be safe instead
1049                         #    out_interface_implementation_overrides = out_interface_implementation_overrides + "\t\t\t\tret.ptr = 0;\n"
1050                         out_interface_implementation_overrides += "\t\t\t\treturn result;\n"
1051                     else:
1052                         out_interface_implementation_overrides += "\t\t\t\treturn ret;\n"
1053                 out_interface_implementation_overrides += f"\t\t\t}},\n"
1054
1055         formatted_trait_docs = trait_doc_comment.replace("\n", "\n * ")
1056         out_typescript_human = f"""
1057 {self.hu_struct_file_prefix}
1058
1059 /** An implementation of {struct_name.replace("LDK","")} */
1060 export interface {struct_name.replace("LDK", "")}Interface {{
1061 {out_java_interface}}}
1062
1063 class {struct_name}Holder {{
1064         held: {struct_name.replace("LDK", "")}|null = null;
1065 }}
1066
1067 /**
1068  * {formatted_trait_docs}
1069  */
1070 export class {struct_name.replace("LDK","")} extends CommonBase {{
1071         /* @internal */
1072         public bindings_instance: bindings.{struct_name}|null;
1073
1074         /* @internal */
1075         public instance_idx?: number;
1076
1077         /* @internal */
1078         constructor(_dummy: null, ptr: bigint) {{
1079                 super(ptr, bindings.{struct_name.replace("LDK","")}_free);
1080                 this.bindings_instance = null;
1081         }}
1082
1083         /** Creates a new instance of {struct_name.replace("LDK","")} from a given implementation */
1084         public static new_impl(arg: {struct_name.replace("LDK", "")}Interface{impl_constructor_arguments}): {struct_name.replace("LDK", "")} {{
1085                 const impl_holder: {struct_name}Holder = new {struct_name}Holder();
1086                 let structImplementation = {{
1087 {out_interface_implementation_overrides}                }} as bindings.{struct_name};
1088 {super_constructor_statements}          const ptr_idx: [bigint, number] = bindings.{struct_name}_new(structImplementation{bindings_instantiator});
1089
1090                 impl_holder.held = new {struct_name.replace("LDK", "")}(null, ptr_idx[0]);
1091                 impl_holder.held.instance_idx = ptr_idx[1];
1092                 impl_holder.held.bindings_instance = structImplementation;
1093 {pointer_to_adder}              return impl_holder.held!;
1094         }}
1095
1096 """
1097         self.obj_defined([struct_name.replace("LDK", ""), struct_name.replace("LDK", "") + "Interface"], "structs")
1098
1099         out_typescript_bindings += "/* @internal */\nexport interface " + struct_name + " {\n"
1100         java_meths = []
1101         for fn_line in field_function_lines:
1102             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1103                 out_typescript_bindings += f"\t{fn_line.fn_name} ("
1104
1105                 for idx, arg_conv_info in enumerate(fn_line.args_ty):
1106                     if idx >= 1:
1107                         out_typescript_bindings = out_typescript_bindings + ", "
1108                     out_typescript_bindings += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
1109
1110                 out_typescript_bindings += f"): {fn_line.ret_ty_info.java_ty};\n"
1111
1112         out_typescript_bindings += "}\n\n"
1113
1114         c_call_extra_args = ""
1115         out_typescript_bindings += f"/* @internal */\nexport function {struct_name}_new(impl: {struct_name}"
1116         for var in flattened_field_var_conversions:
1117             if isinstance(var, ConvInfo):
1118                 out_typescript_bindings += f", {var.arg_name}: {var.java_ty}"
1119                 c_call_extra_args += f", {var.arg_name}"
1120             else:
1121                 out_typescript_bindings += f", {var[1]}: number"
1122                 c_call_extra_args += f", {var[1]}"
1123
1124
1125         out_typescript_bindings += f"""): [bigint, number] {{
1126         if(!isWasmInitialized) {{
1127                 throw new Error("initializeWasm() must be awaited first!");
1128         }}
1129         var new_obj_idx = js_objs.length;
1130         for (var i = 0; i < js_objs.length; i++) {{
1131                 if (js_objs[i] == null || js_objs[i] == undefined) {{ new_obj_idx = i; break; }}
1132         }}
1133         js_objs[i] = new WeakRef(impl);
1134         return [wasm.TS_{struct_name}_new(i{c_call_extra_args}), i];
1135 }}
1136 """
1137
1138         # Now that we've written out our java code (and created java_meths), generate C
1139         out_c = "typedef struct " + struct_name + "_JCalls {\n"
1140         out_c += "\tatomic_size_t refcnt;\n"
1141         out_c += "\tuint32_t instance_ptr;\n"
1142         for var in flattened_field_var_conversions:
1143             if isinstance(var, ConvInfo):
1144                 # We're a regular ol' field
1145                 pass
1146             else:
1147                 # We're a supertrait
1148                 out_c = out_c + "\t" + var[0] + "_JCalls* " + var[1] + ";\n"
1149         out_c = out_c + "} " + struct_name + "_JCalls;\n"
1150
1151         for fn_line in field_function_lines:
1152             if fn_line.fn_name == "free":
1153                 out_c = out_c + "static void " + struct_name + "_JCalls_free(void* this_arg) {\n"
1154                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
1155                 out_c = out_c + "\tif (atomic_fetch_sub_explicit(&j_calls->refcnt, 1, memory_order_acquire) == 1) {\n"
1156                 out_c = out_c + "\t\tFREE(j_calls);\n"
1157                 out_c = out_c + "\t}\n}\n"
1158
1159         for idx, fn_line in enumerate(field_function_lines):
1160             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1161                 assert fn_line.ret_ty_info.ty_info.get_full_rust_ty()[1] == ""
1162                 out_c = out_c + fn_line.ret_ty_info.ty_info.get_full_rust_ty()[0] + " " + fn_line.fn_name + "_" + struct_name + "_jcall("
1163                 if fn_line.self_is_const:
1164                     out_c = out_c + "const void* this_arg"
1165                 else:
1166                     out_c = out_c + "void* this_arg"
1167
1168                 for idx, arg in enumerate(fn_line.args_ty):
1169                     out_c = out_c + ", " + arg.ty_info.get_full_rust_ty()[0] + " " + arg.arg_name + arg.ty_info.get_full_rust_ty()[1]
1170
1171                 out_c = out_c + ") {\n"
1172                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
1173
1174                 for arg_info in fn_line.args_ty:
1175                     if arg_info.ret_conv is not None:
1176                         out_c = out_c + "\t" + arg_info.ret_conv[0].replace('\n', '\n\t')
1177                         out_c = out_c + arg_info.arg_name
1178                         out_c = out_c + arg_info.ret_conv[1].replace('\n', '\n\t') + "\n"
1179
1180                 fn_suffix = ""
1181                 assert len(fn_line.args_ty) < 7
1182                 for arg_info in fn_line.args_ty:
1183                     if arg_info.c_ty == "uint64_t" or arg_info.c_ty == "int64_t":
1184                         fn_suffix += "b"
1185                     else:
1186                         fn_suffix += "u"
1187                 for i in range(0, 6 - len(fn_line.args_ty)):
1188                     fn_suffix += "u"
1189                 if fn_line.ret_ty_info.c_ty.endswith("Array"):
1190                     out_c += "\t" + fn_line.ret_ty_info.c_ty + " ret = (" + fn_line.ret_ty_info.c_ty + ")"
1191                     out_c += "js_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1192                 elif fn_line.ret_ty_info.java_ty == "void":
1193                     out_c = out_c + "\tjs_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1194                 elif fn_line.ret_ty_info.java_hu_ty == "string":
1195                     out_c += "\tjstring ret = (jstring)js_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1196                 elif fn_line.ret_ty_info.arg_conv is None:
1197                     out_c += "\treturn js_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1198                 else:
1199                     out_c += "\tuint64_t ret = js_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1200
1201                 self.function_ptrs[self.function_ptr_counter] = (struct_name, fn_line.fn_name)
1202                 self.function_ptr_counter += 1
1203
1204                 for idx, arg_info in enumerate(fn_line.args_ty):
1205                     if arg_info.ret_conv is not None:
1206                         if arg_info.c_ty.endswith("Array"):
1207                             out_c += ", (uint32_t)" + arg_info.ret_conv_name
1208                         else:
1209                             out_c += ", " + arg_info.ret_conv_name
1210                     else:
1211                         assert False # TODO: Would we need some conversion here?
1212                         out_c += ", (uint32_t)" + arg_info.arg_name
1213                 for i in range(0, 6 - len(fn_line.args_ty)):
1214                     out_c += ", 0"
1215                 out_c = out_c + ");\n"
1216                 if fn_line.ret_ty_info.arg_conv is not None:
1217                     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"
1218
1219                 out_c = out_c + "}\n"
1220
1221         # Write out a clone function whether we need one or not, as we use them in moving to rust
1222         out_c = out_c + "static void " + struct_name + "_JCalls_cloned(" + struct_name + "* new_obj) {\n"
1223         out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) new_obj->this_arg;\n"
1224         out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->refcnt, 1, memory_order_release);\n"
1225         for var in flattened_field_var_conversions:
1226             if not isinstance(var, ConvInfo):
1227                 out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->" + var[2].replace(".", "->") + "->refcnt, 1, memory_order_release);\n"
1228         out_c = out_c + "}\n"
1229
1230         out_c = out_c + "static inline " + struct_name + " " + struct_name + "_init (JSValue o"
1231         for var in flattened_field_var_conversions:
1232             if isinstance(var, ConvInfo):
1233                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
1234             else:
1235                 out_c = out_c + ", JSValue " + var[1]
1236         out_c = out_c + ") {\n"
1237
1238         out_c = out_c + "\t" + struct_name + "_JCalls *calls = MALLOC(sizeof(" + struct_name + "_JCalls), \"" + struct_name + "_JCalls\");\n"
1239         out_c = out_c + "\tatomic_init(&calls->refcnt, 1);\n"
1240         out_c = out_c + "\tcalls->instance_ptr = o;\n"
1241
1242         for (fn_name, java_meth_descr) in java_meths:
1243             if fn_name != "free" and fn_name != "cloned":
1244                 out_c = out_c + "\tcalls->" + fn_name + "_meth = (*env)->GetMethodID(env, c, \"" + fn_name + "\", \"" + java_meth_descr + "\");\n"
1245                 out_c = out_c + "\tCHECK(calls->" + fn_name + "_meth != NULL);\n"
1246
1247         for var in flattened_field_var_conversions:
1248             if isinstance(var, ConvInfo) and var.arg_conv is not None:
1249                 out_c = out_c + "\n\t" + var.arg_conv.replace("\n", "\n\t") +"\n"
1250         out_c = out_c + "\n\t" + struct_name + " ret = {\n"
1251         out_c = out_c + "\t\t.this_arg = (void*) calls,\n"
1252         for fn_line in field_function_lines:
1253             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1254                 out_c = out_c + "\t\t." + fn_line.fn_name + " = " + fn_line.fn_name + "_" + struct_name + "_jcall,\n"
1255             elif fn_line.fn_name == "free":
1256                 out_c = out_c + "\t\t.free = " + struct_name + "_JCalls_free,\n"
1257             else:
1258                 out_c = out_c + "\t\t.cloned = " + struct_name + "_JCalls_cloned,\n"
1259         for var in field_var_conversions:
1260             if isinstance(var, ConvInfo):
1261                 if var.arg_conv_name is not None:
1262                     out_c = out_c + "\t\t." + var.arg_name + " = " + var.arg_conv_name + ",\n"
1263                     out_c = out_c + "\t\t.set_" + var.arg_name + " = NULL,\n"
1264                 else:
1265                     out_c = out_c + "\t\t." + var.var_name + " = " + var.var_name + ",\n"
1266                     out_c = out_c + "\t\t.set_" + var.var_name + " = NULL,\n"
1267             else:
1268                 out_c += "\t\t." + var[1] + " = " + var[0] + "_init(" + var[1]
1269                 for suparg in var[2]:
1270                     if isinstance(suparg, ConvInfo):
1271                         out_c += ", " + suparg.arg_name
1272                     else:
1273                         out_c += ", " + suparg[1]
1274                 out_c += "),\n"
1275         out_c = out_c + "\t};\n"
1276         for var in flattened_field_var_conversions:
1277             if not isinstance(var, ConvInfo):
1278                 out_c = out_c + "\tcalls->" + var[1] + " = ret." + var[2] + ".this_arg;\n"
1279         out_c = out_c + "\treturn ret;\n"
1280         out_c = out_c + "}\n"
1281
1282         out_c = out_c + self.c_fn_ty_pfx + "uint64_t " + self.c_fn_name_define_pfx(struct_name + "_new", True) + "JSValue o"
1283         for var in flattened_field_var_conversions:
1284             if isinstance(var, ConvInfo):
1285                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
1286             else:
1287                 out_c = out_c + ", JSValue " + var[1]
1288         out_c = out_c + ") {\n"
1289         out_c = out_c + "\t" + struct_name + " *res_ptr = MALLOC(sizeof(" + struct_name + "), \"" + struct_name + "\");\n"
1290         out_c = out_c + "\t*res_ptr = " + struct_name + "_init(o"
1291         for var in flattened_field_var_conversions:
1292             if isinstance(var, ConvInfo):
1293                 out_c = out_c + ", " + var.arg_name
1294             else:
1295                 out_c = out_c + ", " + var[1]
1296         out_c = out_c + ");\n"
1297         out_c = out_c + "\treturn tag_ptr(res_ptr, true);\n"
1298         out_c = out_c + "}\n"
1299
1300         return (out_typescript_bindings, out_typescript_human, out_c)
1301
1302     def trait_struct_inc_refcnt(self, ty_info):
1303         base_conv = "\nif (" + ty_info.var_name + "_conv.free == " + ty_info.rust_obj + "_JCalls_free) {\n"
1304         base_conv = base_conv + "\t// If this_arg is a JCalls struct, then we need to increment the refcnt in it.\n"
1305         base_conv = base_conv + "\t" + ty_info.rust_obj + "_JCalls_cloned(&" + ty_info.var_name + "_conv);\n}"
1306         return base_conv
1307
1308     def map_complex_enum(self, struct_name, variant_list, camel_to_snake, enum_doc_comment):
1309         bindings_type = struct_name.replace("LDK", "")
1310         java_hu_type = struct_name.replace("LDK", "").replace("COption", "Option")
1311
1312         out_java_enum = ""
1313         out_java = ""
1314         out_c = ""
1315
1316         out_java_enum += (self.hu_struct_file_prefix)
1317
1318         java_hu_class = "/**\n * " + enum_doc_comment.replace("\n", "\n * ") + "\n */\n"
1319         java_hu_class += "export class " + java_hu_type + " extends CommonBase {\n"
1320         java_hu_class += "\tprotected constructor(_dummy: null, ptr: bigint) { super(ptr, bindings." + bindings_type + "_free); }\n"
1321         java_hu_class += "\t/* @internal */\n"
1322         java_hu_class += f"\tpublic static constr_from_ptr(ptr: bigint): {java_hu_type} {{\n"
1323         java_hu_class += f"\t\tconst raw_ty: number = bindings." + struct_name + "_ty_from_ptr(ptr);\n"
1324         out_c += self.c_fn_ty_pfx + "uint32_t" + self.c_fn_name_define_pfx(struct_name + "_ty_from_ptr", True) + self.ptr_c_ty + " ptr) {\n"
1325         out_c += "\t" + struct_name + " *obj = (" + struct_name + "*)untag_ptr(ptr);\n"
1326         out_c += "\tswitch(obj->tag) {\n"
1327         java_hu_class += "\t\tswitch (raw_ty) {\n"
1328         java_hu_subclasses = ""
1329
1330         out_java += "/* @internal */\nexport class " + struct_name + " {\n"
1331         out_java += "\tprotected constructor() {}\n"
1332         var_idx = 0
1333         for var in variant_list:
1334             java_hu_subclasses += "/** A " + java_hu_type + " of type " + var.var_name + " */\n"
1335             java_hu_subclasses += "export class " + java_hu_type + "_" + var.var_name + " extends " + java_hu_type + " {\n"
1336             java_hu_class += f"\t\t\tcase {var_idx}: "
1337             java_hu_class += "return new " + java_hu_type + "_" + var.var_name + "(ptr);\n"
1338             out_c += f"\t\tcase {struct_name}_{var.var_name}: return {var_idx};\n"
1339             hu_conv_body = ""
1340             for idx, (field_ty, field_docs) in enumerate(var.fields):
1341                 if field_docs is not None:
1342                     java_hu_subclasses += "\t/**\n\t * " + field_docs.replace("\n", "\n\t * ") + "\n\t */\n"
1343                 java_hu_subclasses += "\tpublic " + field_ty.arg_name + f": {field_ty.java_hu_ty};\n"
1344                 if field_ty.to_hu_conv is not None:
1345                     hu_conv_body += f"\t\tconst {field_ty.arg_name}: {field_ty.java_ty} = bindings.{struct_name}_{var.var_name}_get_{field_ty.arg_name}(ptr);\n"
1346                     hu_conv_body += f"\t\t" + field_ty.to_hu_conv.replace("\n", "\n\t\t\t") + "\n"
1347                     hu_conv_body += f"\t\tthis." + field_ty.arg_name + " = " + field_ty.to_hu_conv_name + ";\n"
1348                 else:
1349                     hu_conv_body += f"\t\tthis.{field_ty.arg_name} = bindings.{struct_name}_{var.var_name}_get_{field_ty.arg_name}(ptr);\n"
1350             java_hu_subclasses += "\t/* @internal */\n"
1351             java_hu_subclasses += "\tpublic constructor(ptr: bigint) {\n\t\tsuper(null, ptr);\n"
1352             java_hu_subclasses = java_hu_subclasses + hu_conv_body
1353             java_hu_subclasses = java_hu_subclasses + "\t}\n}\n"
1354             var_idx += 1
1355         out_java += "}\n"
1356         java_hu_class += "\t\t\tdefault:\n\t\t\t\tthrow new Error('oops, this should be unreachable'); // Unreachable without extending the (internal) bindings interface\n\t\t}\n\t}\n\n"
1357         out_java += self.fn_call_body(struct_name + "_ty_from_ptr", "uint32_t", "number", "ptr: bigint", "ptr")
1358         out_c += ("\t\tdefault: abort();\n")
1359         out_c += ("\t}\n}\n")
1360
1361         for var in variant_list:
1362             for idx, (field_map, _) in enumerate(var.fields):
1363                 fn_name = f"{struct_name}_{var.var_name}_get_{field_map.arg_name}"
1364                 out_c += self.c_fn_ty_pfx + field_map.c_ty + self.c_fn_name_define_pfx(fn_name, True) + self.ptr_c_ty + " ptr) {\n"
1365                 out_c += "\t" + struct_name + " *obj = (" + struct_name + "*)untag_ptr(ptr);\n"
1366                 out_c += f"\tassert(obj->tag == {struct_name}_{var.var_name});\n"
1367                 if field_map.ret_conv is not None:
1368                     out_c += ("\t\t\t" + field_map.ret_conv[0].replace("\n", "\n\t\t\t"))
1369                     if var.tuple_variant:
1370                         out_c += "obj->" + camel_to_snake(var.var_name)
1371                     else:
1372                         out_c += "obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name
1373                     out_c += (field_map.ret_conv[1].replace("\n", "\n\t\t\t") + "\n")
1374                     out_c += "\treturn " + field_map.ret_conv_name + ";\n"
1375                 else:
1376                     if var.tuple_variant:
1377                         out_c += "\treturn " + "obj->" + camel_to_snake(var.var_name) + ";\n"
1378                     else:
1379                         out_c += "\treturn " + "obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name + ";\n"
1380                 out_c += "}\n"
1381                 out_java += self.fn_call_body(fn_name, field_map.c_ty, field_map.java_ty, "ptr: bigint", "ptr")
1382         out_java_enum += java_hu_class
1383         self.struct_file_suffixes[java_hu_type] = java_hu_subclasses
1384         self.obj_defined([java_hu_type], "structs")
1385         return (out_java, out_java_enum, out_c)
1386
1387     def map_opaque_struct(self, struct_name, struct_doc_comment):
1388         method_header = ""
1389
1390         hu_name = struct_name.replace("LDKC2Tuple", "TwoTuple").replace("LDKC3Tuple", "ThreeTuple").replace("LDK", "")
1391         out_opaque_struct_human = f"{self.hu_struct_file_prefix}"
1392         constructor_body = "super(ptr, bindings." + struct_name.replace("LDK","") + "_free);"
1393         extra_docs = ""
1394         extra_body = ""
1395         if struct_name.startswith("LDKLocked") or struct_name.startswith("LDKReadOnly"):
1396             extra_docs = "\n * This type represents a lock and MUST BE MANUALLY FREE'd!"
1397             constructor_body = 'super(ptr, () => { throw new Error("Locks must be manually freed with free()"); });'
1398             extra_body = f"""
1399         /** Releases this lock */
1400         public free() {{
1401                 bindings.{struct_name.replace("LDK","")}_free(this.ptr);
1402                 CommonBase.set_null_skip_free(this);
1403         }}"""
1404         formatted_doc_comment = struct_doc_comment.replace("\n", "\n * ")
1405         out_opaque_struct_human += f"""
1406 /**{extra_docs}
1407  * {formatted_doc_comment}
1408  */
1409 export class {hu_name} extends CommonBase {{
1410         /* @internal */
1411         public constructor(_dummy: null, ptr: bigint) {{
1412                 {constructor_body}
1413         }}{extra_body}
1414
1415 """
1416         self.obj_defined([hu_name], "structs")
1417         return out_opaque_struct_human
1418
1419     def map_tuple(self, struct_name):
1420         return self.map_opaque_struct(struct_name, "A Tuple")
1421
1422     def map_result(self, struct_name, res_map, err_map):
1423         human_ty = struct_name.replace("LDKCResult", "Result")
1424
1425         suffixes = f"export class {human_ty}_OK extends {human_ty} {{\n"
1426         if res_map.java_hu_ty != "void":
1427             suffixes += "\tpublic res: " + res_map.java_hu_ty + ";\n"
1428         suffixes += f"""
1429         /* @internal */
1430         public constructor(_dummy: null, ptr: bigint) {{
1431                 super(_dummy, ptr);
1432 """
1433         if res_map.java_hu_ty == "void":
1434             pass
1435         elif res_map.to_hu_conv is not None:
1436             suffixes += "\t\tconst res: " + res_map.java_ty + " = bindings." + struct_name.replace("LDK", "") + "_get_ok(ptr);\n"
1437             suffixes += "\t\t" + res_map.to_hu_conv.replace("\n", "\n\t\t")
1438             suffixes += "\n\t\tthis.res = " + res_map.to_hu_conv_name + ";\n"
1439         else:
1440             suffixes += "\t\tthis.res = bindings." + struct_name.replace("LDK", "") + "_get_ok(ptr);\n"
1441         suffixes += "\t}\n}\n"
1442
1443         suffixes += f"export class {human_ty}_Err extends {human_ty} {{\n"
1444         if err_map.java_hu_ty != "void":
1445             suffixes += "\tpublic err: " + err_map.java_hu_ty + ";\n"
1446         suffixes += f"""
1447         /* @internal */
1448         public constructor(_dummy: null, ptr: bigint) {{
1449                 super(_dummy, ptr);
1450 """
1451         if err_map.java_hu_ty == "void":
1452             pass
1453         elif err_map.to_hu_conv is not None:
1454             suffixes += "\t\tconst err: " + err_map.java_ty + " = bindings." + struct_name.replace("LDK", "") + "_get_err(ptr);\n"
1455             suffixes += "\t\t" + err_map.to_hu_conv.replace("\n", "\n\t\t")
1456             suffixes += "\n\t\tthis.err = " + err_map.to_hu_conv_name + ";\n"
1457         else:
1458             suffixes += "\t\tthis.err = bindings." + struct_name.replace("LDK", "") + "_get_err(ptr);\n"
1459         suffixes += "\t}\n}"
1460
1461         self.struct_file_suffixes[human_ty] = suffixes
1462         self.obj_defined([human_ty], "structs")
1463
1464         return f"""{self.hu_struct_file_prefix}
1465
1466 export class {human_ty} extends CommonBase {{
1467         protected constructor(_dummy: null, ptr: bigint) {{
1468                 super(ptr, bindings.{struct_name.replace("LDK","")}_free);
1469         }}
1470         /* @internal */
1471         public static constr_from_ptr(ptr: bigint): {human_ty} {{
1472                 if (bindings.{struct_name.replace("LDK", "")}_is_ok(ptr)) {{
1473                         return new {human_ty}_OK(null, ptr);
1474                 }} else {{
1475                         return new {human_ty}_Err(null, ptr);
1476                 }}
1477         }}
1478 """
1479
1480     def fn_call_body(self, method_name, return_c_ty, return_java_ty, method_argument_string, native_call_argument_string):
1481         has_return_value = return_c_ty != 'void'
1482         return_statement = 'return nativeResponseValue;'
1483         if not has_return_value:
1484             return_statement = '// debug statements here'
1485
1486         return f"""/* @internal */
1487 export function {method_name}({method_argument_string}): {return_java_ty} {{
1488         if(!isWasmInitialized) {{
1489                 throw new Error("initializeWasm() must be awaited first!");
1490         }}
1491         const nativeResponseValue = wasm.TS_{method_name}({native_call_argument_string});
1492         {return_statement}
1493 }}
1494 """
1495     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):
1496         out_java = ""
1497         out_c = ""
1498         out_java_struct = None
1499
1500         out_java += ("\t")
1501         out_c += (self.c_fn_ty_pfx)
1502         out_c += (return_type_info.c_ty)
1503         out_java += (return_type_info.java_ty)
1504         if return_type_info.ret_conv is not None:
1505             ret_conv_pfx, ret_conv_sfx = return_type_info.ret_conv
1506         out_java += (" " + method_name + "(")
1507         out_c += (" "  + self.c_fn_name_define_pfx(method_name, True))
1508
1509         method_argument_string = ""
1510         native_call_argument_string = ""
1511         for idx, arg_conv_info in enumerate(argument_types):
1512             if idx != 0:
1513                 method_argument_string += (", ")
1514                 native_call_argument_string += ', '
1515                 out_c += (", ")
1516             if arg_conv_info.c_ty != "void":
1517                 out_c += (arg_conv_info.c_ty + " " + arg_conv_info.arg_name)
1518                 method_argument_string += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
1519                 native_call_argument_string += arg_conv_info.arg_name
1520         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)
1521
1522         out_java_struct = ""
1523         if doc_comment is not None:
1524             out_java_struct = "\t/**\n\t * " + doc_comment.replace("\n", "\n\t * ") + "\n\t */\n"
1525
1526         if not args_known:
1527             out_java_struct += ("\t// Skipped " + method_name + "\n")
1528         else:
1529             if not takes_self:
1530                 out_java_struct += (
1531                         "\tpublic static constructor_" + meth_n + "(")
1532             else:
1533                 out_java_struct += ("\tpublic " + meth_n + "(")
1534             for idx, arg in enumerate(argument_types):
1535                 if idx != 0:
1536                     if not takes_self or idx > 1:
1537                         out_java_struct += (", ")
1538                 elif takes_self:
1539                     continue
1540                 if arg.java_ty != "void":
1541                     if arg.arg_name in default_constructor_args:
1542                         for explode_idx, explode_arg in enumerate(default_constructor_args[arg.arg_name]):
1543                             if explode_idx != 0:
1544                                 out_java_struct += (", ")
1545                             out_java_struct += arg.arg_name + "_" + explode_arg.arg_name + ": " + explode_arg.java_hu_ty
1546                     else:
1547                         out_java_struct += arg.arg_name + ": " + arg.java_hu_ty
1548                         if arg.nullable:
1549                             out_java_struct += "|null"
1550
1551         out_c += (") {\n")
1552         if out_java_struct is not None:
1553             out_java_struct += "): " + return_type_info.java_hu_ty + " {\n"
1554         for info in argument_types:
1555             if info.arg_conv is not None:
1556                 out_c += ("\t" + info.arg_conv.replace('\n', "\n\t") + "\n")
1557         if return_type_info.ret_conv is not None:
1558             out_c += ("\t" + ret_conv_pfx.replace('\n', '\n\t'))
1559         elif return_type_info.c_ty != "void":
1560             out_c += ("\t" + return_type_info.c_ty + " ret_val = ")
1561         else:
1562             out_c += ("\t")
1563         if c_call_string is None:
1564             out_c += (method_name + "(")
1565         else:
1566             out_c += (c_call_string)
1567         for idx, info in enumerate(argument_types):
1568             if info.arg_conv_name is not None:
1569                 if idx != 0:
1570                     out_c += (", ")
1571                 elif c_call_string is not None:
1572                     continue
1573                 out_c += (info.arg_conv_name)
1574         out_c += (")")
1575         if return_type_info.ret_conv is not None:
1576             out_c += (ret_conv_sfx.replace('\n', '\n\t'))
1577         else:
1578             out_c += (";")
1579         for info in argument_types:
1580             if info.arg_conv_cleanup is not None:
1581                 out_c += ("\n\t" + info.arg_conv_cleanup.replace("\n", "\n\t"))
1582         if return_type_info.ret_conv is not None:
1583             out_c += ("\n\treturn " + return_type_info.ret_conv_name + ";")
1584         elif return_type_info.c_ty != "void":
1585             out_c += ("\n\treturn ret_val;")
1586         out_c += ("\n}\n\n")
1587
1588         if args_known:
1589             out_java_struct += ("\t\t")
1590             if return_type_info.java_ty != "void":
1591                 out_java_struct += "const ret: " + return_type_info.java_ty + " = "
1592             out_java_struct += ("bindings." + method_name + "(")
1593             for idx, info in enumerate(argument_types):
1594                 if idx != 0:
1595                     out_java_struct += (", ")
1596                 if idx == 0 and takes_self:
1597                     out_java_struct += ("this.ptr")
1598                 elif info.arg_name in default_constructor_args:
1599                     out_java_struct += ("bindings." + info.java_hu_ty + "_new(")
1600                     for explode_idx, explode_arg in enumerate(default_constructor_args[info.arg_name]):
1601                         if explode_idx != 0:
1602                             out_java_struct += (", ")
1603                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1604                         if explode_arg.from_hu_conv is not None:
1605                             out_java_struct += (
1606                                 explode_arg.from_hu_conv[0].replace(explode_arg.arg_name, expl_arg_name))
1607                         else:
1608                             out_java_struct += (expl_arg_name)
1609                     out_java_struct += (")")
1610                 elif info.from_hu_conv is not None:
1611                     out_java_struct += (info.from_hu_conv[0])
1612                 else:
1613                     out_java_struct += (info.arg_name)
1614             out_java_struct += (");\n")
1615             if return_type_info.to_hu_conv is not None:
1616                 if not takes_self:
1617                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t").replace("this",
1618                                                                                                              return_type_info.to_hu_conv_name) + "\n")
1619                 else:
1620                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t") + "\n")
1621
1622             for idx, info in enumerate(argument_types):
1623                 if idx == 0 and takes_self:
1624                     pass
1625                 elif info.arg_name in default_constructor_args:
1626                     for explode_arg in default_constructor_args[info.arg_name]:
1627                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1628                         if explode_arg.from_hu_conv is not None and return_type_info.to_hu_conv_name:
1629                             out_java_struct += ("\t\t" + explode_arg.from_hu_conv[1].replace(explode_arg.arg_name,
1630                                                                                              expl_arg_name).replace(
1631                                 "this", return_type_info.to_hu_conv_name) + ";\n")
1632                 elif info.from_hu_conv is not None and info.from_hu_conv[1] != "":
1633                     if not takes_self and return_type_info.to_hu_conv_name is not None:
1634                         out_java_struct += (
1635                                 "\t\t" + info.from_hu_conv[1].replace("this", return_type_info.to_hu_conv_name).replace("\n", "\n\t\t") + ";\n")
1636                     else:
1637                         out_java_struct += ("\t\t" + info.from_hu_conv[1].replace("\n", "\n\t\t") + ";\n")
1638
1639             if return_type_info.to_hu_conv_name is not None:
1640                 out_java_struct += ("\t\treturn " + return_type_info.to_hu_conv_name + ";\n")
1641             elif return_type_info.java_ty != "void" and return_type_info.rust_obj != "LDK" + struct_meth:
1642                 out_java_struct += ("\t\treturn ret;\n")
1643             out_java_struct += ("\t}\n\n")
1644
1645         return (out_java, out_c, out_java_struct)
1646
1647     def cleanup(self):
1648         for struct in self.struct_file_suffixes:
1649             with open(self.outdir + "/structs/" + struct + self.file_ext, "a") as src:
1650                 src.write(self.struct_file_suffixes[struct])
1651
1652         with open(self.outdir + "/bindings.mts", "a") as bindings:
1653             bindings.write("""
1654
1655 js_invoke = function(obj_ptr: number, fn_id: number, arg1: bigint|number, arg2: bigint|number, arg3: bigint|number, arg4: bigint|number, arg5: bigint|number, arg6: bigint|number, arg7: bigint|number, arg8: bigint|number, arg9: bigint|number, arg10: bigint|number) {
1656         const weak: WeakRef<object>|undefined = js_objs[obj_ptr];
1657         if (weak == null || weak == undefined) {
1658                 console.error("Got function call on unknown/free'd JS object!");
1659                 throw new Error("Got function call on unknown/free'd JS object!");
1660         }
1661         const obj = weak.deref();
1662         if (obj == null || obj == undefined) {
1663                 console.error("Got function call on GC'd JS object!");
1664                 throw new Error("Got function call on GC'd JS object!");
1665         }
1666         var fn;
1667 """)
1668             bindings.write("\tswitch (fn_id) {\n")
1669             for f in self.function_ptrs:
1670                 bindings.write(f"\t\tcase {str(f)}: fn = Object.getOwnPropertyDescriptor(obj, \"{self.function_ptrs[f][1]}\"); break;\n")
1671
1672             bindings.write("""\t\tdefault:
1673                         console.error("Got unknown function call with id " + fn_id + " from C!");
1674                         throw new Error("Got unknown function call with id " + fn_id + " from C!");
1675         }
1676         if (fn == null || fn == undefined) {
1677                 console.error("Got function call with id " + fn_id + " on incorrect JS object: " + obj);
1678                 throw new Error("Got function call with id " + fn_id + " on incorrect JS object: " + obj);
1679         }
1680         var ret;
1681         try {
1682                 ret = fn.value.bind(obj)(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10);
1683         } catch (e) {
1684                 console.error("Got an exception calling function with id " + fn_id + "! This is fatal.");
1685                 console.error(e);
1686                 throw e;
1687         }
1688         if (ret === undefined || ret === null) return BigInt(0);
1689         return BigInt(ret);
1690 }""")