[TS] Don't null-check array conversions that aren't nullable
[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":
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         elif mapped_ty.rust_obj == "LDKStr":
865             return ("XXX-unused", "")
866         else:
867             print(mapped_ty.c_ty)
868             assert False
869
870     def primitive_arr_to_hu(self, arr_ty, fixed_len, arr_name, conv_name):
871         mapped_ty = arr_ty.subty
872         if arr_ty.rust_obj == "LDKU128":
873             return "const " + conv_name + ": bigint = bindings.decodeUint128(" + arr_name + ");"
874         elif mapped_ty.c_ty == "uint8_t" or mapped_ty.c_ty == "int8_t":
875             return "const " + conv_name + ": Uint8Array = bindings.decodeUint8Array(" + arr_name + ");"
876         elif mapped_ty.c_ty == "uint16_t" or mapped_ty.c_ty == "int16_t":
877             return "const " + conv_name + ": Uint16Array = bindings.decodeUint16Array(" + arr_name + ");"
878         elif mapped_ty.c_ty == "uint64_t" or mapped_ty.c_ty == "int64_t":
879             return "const " + conv_name + ": bigint[] = bindings.decodeUint64Array(" + arr_name + ");"
880         else:
881             assert False
882
883     def var_decl_statement(self, ty_string, var_name, statement):
884         return "const " + var_name + ": " + ty_string + " = " + statement
885
886     def java_arr_ty_str(self, elem_ty_str):
887         return "number"
888
889     def for_n_in_range(self, n, minimum, maximum):
890         return "for (var " + n + " = " + minimum + "; " + n + " < " + maximum + "; " + n + "++) {"
891     def for_n_in_arr(self, n, arr_name, arr_elem_ty):
892         return (arr_name + ".forEach((" + n + ": " + arr_elem_ty.java_hu_ty + ") => { ", " })")
893
894     def get_ptr(self, var):
895         return "CommonBase.get_ptr_of(" + var + ")"
896     def set_null_skip_free(self, var):
897         return "CommonBase.set_null_skip_free(" + var + ");"
898
899     def add_ref(self, holder, referent):
900         return "CommonBase.add_ref_from(" + holder + ", " + referent + ")"
901
902     def obj_defined(self, struct_names, folder):
903         with open(self.outdir + "/index.mts", 'a') as index:
904             index.write(f"export * from './{folder}/{struct_names[0]}.mjs';\n")
905         with open(self.outdir + "/imports.mts.part", 'a') as imports:
906             imports.write(f"import {{ {', '.join(struct_names)} }} from '../{folder}/{struct_names[0]}.mjs';\n")
907
908     def fully_qualified_hu_ty_path(self, ty):
909         return ty.java_hu_ty
910
911     def native_c_unitary_enum_map(self, struct_name, variants, enum_doc_comment):
912         out_c = "static inline LDK" + struct_name + " LDK" + struct_name + "_from_js(int32_t ord) {\n"
913         out_c = out_c + "\tswitch (ord) {\n"
914         ord_v = 0
915
916         out_typescript_enum_fields = ""
917
918         for var, var_docs in variants:
919             out_c = out_c + "\t\tcase %d: return %s;\n" % (ord_v, var)
920             ord_v = ord_v + 1
921             if var_docs is not None:
922                 var_docs_repld = var_docs.replace("\n", "\n\t")
923                 out_typescript_enum_fields += f"/**\n\t * {var_docs_repld}\n\t */\n"
924             out_typescript_enum_fields += f"\t{var},\n\t"
925         out_c = out_c + "\t}\n"
926         out_c = out_c + "\tabort();\n"
927         out_c = out_c + "}\n"
928
929         out_c = out_c + "static inline int32_t LDK" + struct_name + "_to_js(LDK" + struct_name + " val) {\n"
930         out_c = out_c + "\tswitch (val) {\n"
931         ord_v = 0
932         for var, _ in variants:
933             out_c = out_c + "\t\tcase " + var + ": return %d;\n" % ord_v
934             ord_v = ord_v + 1
935         out_c = out_c + "\t\tdefault: abort();\n"
936         out_c = out_c + "\t}\n"
937         out_c = out_c + "}\n"
938
939         # Note that this is *not* marked /* @internal */ as we re-expose it directly in enums/
940         enum_comment_formatted = enum_doc_comment.replace("\n", "\n * ")
941         out_typescript = f"""
942 /**
943  * {enum_comment_formatted}
944  */
945 export enum {struct_name} {{
946         {out_typescript_enum_fields}
947 }}
948 """
949         out_typescript_enum = f"export {{ {struct_name} }} from \"../bindings.mjs\";"
950         self.obj_defined([struct_name], "enums")
951         return (out_c, out_typescript_enum, out_typescript)
952
953     def c_unitary_enum_to_native_call(self, ty_info):
954         return (ty_info.rust_obj + "_to_js(", ")")
955     def native_unitary_enum_to_c_call(self, ty_info):
956         return (ty_info.rust_obj + "_from_js(", ")")
957
958     def native_c_map_trait(self, struct_name, field_var_conversions, flattened_field_var_conversions, field_function_lines, trait_doc_comment):
959         out_typescript_bindings = ""
960         super_instantiator = ""
961         bindings_instantiator = ""
962         pointer_to_adder = ""
963         impl_constructor_arguments = ""
964         for var in flattened_field_var_conversions:
965             if isinstance(var, ConvInfo):
966                 impl_constructor_arguments += f", {var.arg_name}: {var.java_hu_ty}"
967                 super_instantiator += first_to_lower(var.arg_name) + ", "
968                 if var.from_hu_conv is not None:
969                     bindings_instantiator += ", " + var.from_hu_conv[0]
970                     if var.from_hu_conv[1] != "":
971                         pointer_to_adder += "\t\t\t" + var.from_hu_conv[1] + ";\n"
972                 else:
973                     bindings_instantiator += ", " + first_to_lower(var.arg_name)
974             else:
975                 bindings_instantiator += ", " + first_to_lower(var[1]) + ".instance_idx!"
976                 super_instantiator += first_to_lower(var[1]) + "_impl, "
977                 pointer_to_adder += "\t\timpl_holder.held.ptrs_to.push(" + first_to_lower(var[1]) + ");\n"
978                 impl_constructor_arguments += f", {first_to_lower(var[1])}_impl: {var[0].replace('LDK', '')}Interface"
979
980         super_constructor_statements = ""
981         trait_constructor_arguments = ""
982         for var in field_var_conversions:
983             if isinstance(var, ConvInfo):
984                 trait_constructor_arguments += ", " + var.arg_name
985             else:
986                 super_constructor_statements += "\t\tconst " + first_to_lower(var[1]) + " = " + var[1] + ".new_impl(" + super_instantiator + ");\n"
987                 trait_constructor_arguments += ", " + first_to_lower(var[1]) + ".instance_idx!"
988                 for suparg in var[2]:
989                     if isinstance(suparg, ConvInfo):
990                         trait_constructor_arguments += ", " + suparg.arg_name
991                     else:
992                         # Blindly assume that we can just strip the first arg to build the args for the supertrait
993                         super_constructor_statements += "\t\tconst " + first_to_lower(suparg[1]) + " = " + suparg[1] + ".new_impl(" + super_instantiator.split(", ", 1)[1] + ");\n"
994                         trait_constructor_arguments += ", " + suparg[1]
995
996         # BUILD INTERFACE METHODS
997         out_java_interface = ""
998         out_interface_implementation_overrides = ""
999         java_methods = []
1000         for fn_line in field_function_lines:
1001             java_method_descriptor = ""
1002             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1003                 out_java_interface += "\t/**" + fn_line.docs.replace("\n", "\n\t * ") + "\n\t */\n"
1004                 out_java_interface += "\t" + fn_line.fn_name + "("
1005                 out_interface_implementation_overrides += f"\t\t\t{fn_line.fn_name} ("
1006
1007                 for idx, arg_conv_info in enumerate(fn_line.args_ty):
1008                     if idx >= 1:
1009                         out_java_interface += ", "
1010                         out_interface_implementation_overrides += ", "
1011                     out_java_interface += f"{arg_conv_info.arg_name}: {arg_conv_info.java_hu_ty}"
1012                     out_interface_implementation_overrides += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
1013                     java_method_descriptor += arg_conv_info.java_fn_ty_arg
1014                 out_java_interface += f"): {fn_line.ret_ty_info.java_hu_ty};\n"
1015                 java_method_descriptor += ")" + fn_line.ret_ty_info.java_fn_ty_arg
1016                 java_methods.append((fn_line.fn_name, java_method_descriptor))
1017
1018                 out_interface_implementation_overrides += f"): {fn_line.ret_ty_info.java_ty} {{\n"
1019
1020                 for arg_info in fn_line.args_ty:
1021                     if arg_info.to_hu_conv is not None:
1022                         out_interface_implementation_overrides += "\t\t\t\t" + arg_info.to_hu_conv.replace("\n", "\n\t\t\t\t") + "\n"
1023
1024                 if fn_line.ret_ty_info.java_ty != "void":
1025                     out_interface_implementation_overrides += "\t\t\t\tconst ret: " + fn_line.ret_ty_info.java_hu_ty + " = arg." + fn_line.fn_name + "("
1026                 else:
1027                     out_interface_implementation_overrides += f"\t\t\t\targ." + fn_line.fn_name + "("
1028
1029                 for idx, arg_info in enumerate(fn_line.args_ty):
1030                     if idx != 0:
1031                         out_interface_implementation_overrides += ", "
1032                     if arg_info.to_hu_conv_name is not None:
1033                         out_interface_implementation_overrides += arg_info.to_hu_conv_name
1034                     else:
1035                         out_interface_implementation_overrides += arg_info.arg_name
1036
1037                 out_interface_implementation_overrides += ");\n"
1038                 if fn_line.ret_ty_info.java_ty != "void":
1039                     if fn_line.ret_ty_info.from_hu_conv is not None:
1040                         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"
1041                         if fn_line.ret_ty_info.from_hu_conv[1] != "":
1042                             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"
1043                         #if fn_line.ret_ty_info.rust_obj in result_types:
1044                         # XXX: We need to handle this in conversion logic so that its cross-language!
1045                         # Avoid double-free by breaking the result - we should learn to clone these and then we can be safe instead
1046                         #    out_interface_implementation_overrides = out_interface_implementation_overrides + "\t\t\t\tret.ptr = 0;\n"
1047                         out_interface_implementation_overrides += "\t\t\t\treturn result;\n"
1048                     else:
1049                         out_interface_implementation_overrides += "\t\t\t\treturn ret;\n"
1050                 out_interface_implementation_overrides += f"\t\t\t}},\n"
1051
1052         formatted_trait_docs = trait_doc_comment.replace("\n", "\n * ")
1053         out_typescript_human = f"""
1054 {self.hu_struct_file_prefix}
1055
1056 /** An implementation of {struct_name.replace("LDK","")} */
1057 export interface {struct_name.replace("LDK", "")}Interface {{
1058 {out_java_interface}}}
1059
1060 class {struct_name}Holder {{
1061         held: {struct_name.replace("LDK", "")}|null = null;
1062 }}
1063
1064 /**
1065  * {formatted_trait_docs}
1066  */
1067 export class {struct_name.replace("LDK","")} extends CommonBase {{
1068         /* @internal */
1069         public bindings_instance: bindings.{struct_name}|null;
1070
1071         /* @internal */
1072         public instance_idx?: number;
1073
1074         /* @internal */
1075         constructor(_dummy: null, ptr: bigint) {{
1076                 super(ptr, bindings.{struct_name.replace("LDK","")}_free);
1077                 this.bindings_instance = null;
1078         }}
1079
1080         /** Creates a new instance of {struct_name.replace("LDK","")} from a given implementation */
1081         public static new_impl(arg: {struct_name.replace("LDK", "")}Interface{impl_constructor_arguments}): {struct_name.replace("LDK", "")} {{
1082                 const impl_holder: {struct_name}Holder = new {struct_name}Holder();
1083                 let structImplementation = {{
1084 {out_interface_implementation_overrides}                }} as bindings.{struct_name};
1085 {super_constructor_statements}          const ptr_idx: [bigint, number] = bindings.{struct_name}_new(structImplementation{bindings_instantiator});
1086
1087                 impl_holder.held = new {struct_name.replace("LDK", "")}(null, ptr_idx[0]);
1088                 impl_holder.held.instance_idx = ptr_idx[1];
1089                 impl_holder.held.bindings_instance = structImplementation;
1090 {pointer_to_adder}              return impl_holder.held!;
1091         }}
1092
1093 """
1094         self.obj_defined([struct_name.replace("LDK", ""), struct_name.replace("LDK", "") + "Interface"], "structs")
1095
1096         out_typescript_bindings += "/* @internal */\nexport interface " + struct_name + " {\n"
1097         java_meths = []
1098         for fn_line in field_function_lines:
1099             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1100                 out_typescript_bindings += f"\t{fn_line.fn_name} ("
1101
1102                 for idx, arg_conv_info in enumerate(fn_line.args_ty):
1103                     if idx >= 1:
1104                         out_typescript_bindings = out_typescript_bindings + ", "
1105                     out_typescript_bindings += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
1106
1107                 out_typescript_bindings += f"): {fn_line.ret_ty_info.java_ty};\n"
1108
1109         out_typescript_bindings += "}\n\n"
1110
1111         c_call_extra_args = ""
1112         out_typescript_bindings += f"/* @internal */\nexport function {struct_name}_new(impl: {struct_name}"
1113         for var in flattened_field_var_conversions:
1114             if isinstance(var, ConvInfo):
1115                 out_typescript_bindings += f", {var.arg_name}: {var.java_ty}"
1116                 c_call_extra_args += f", {var.arg_name}"
1117             else:
1118                 out_typescript_bindings += f", {var[1]}: number"
1119                 c_call_extra_args += f", {var[1]}"
1120
1121
1122         out_typescript_bindings += f"""): [bigint, number] {{
1123         if(!isWasmInitialized) {{
1124                 throw new Error("initializeWasm() must be awaited first!");
1125         }}
1126         var new_obj_idx = js_objs.length;
1127         for (var i = 0; i < js_objs.length; i++) {{
1128                 if (js_objs[i] == null || js_objs[i] == undefined) {{ new_obj_idx = i; break; }}
1129         }}
1130         js_objs[i] = new WeakRef(impl);
1131         return [wasm.TS_{struct_name}_new(i{c_call_extra_args}), i];
1132 }}
1133 """
1134
1135         # Now that we've written out our java code (and created java_meths), generate C
1136         out_c = "typedef struct " + struct_name + "_JCalls {\n"
1137         out_c += "\tatomic_size_t refcnt;\n"
1138         out_c += "\tuint32_t instance_ptr;\n"
1139         for var in flattened_field_var_conversions:
1140             if isinstance(var, ConvInfo):
1141                 # We're a regular ol' field
1142                 pass
1143             else:
1144                 # We're a supertrait
1145                 out_c = out_c + "\t" + var[0] + "_JCalls* " + var[1] + ";\n"
1146         out_c = out_c + "} " + struct_name + "_JCalls;\n"
1147
1148         for fn_line in field_function_lines:
1149             if fn_line.fn_name == "free":
1150                 out_c = out_c + "static void " + struct_name + "_JCalls_free(void* this_arg) {\n"
1151                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
1152                 out_c = out_c + "\tif (atomic_fetch_sub_explicit(&j_calls->refcnt, 1, memory_order_acquire) == 1) {\n"
1153                 out_c = out_c + "\t\tFREE(j_calls);\n"
1154                 out_c = out_c + "\t}\n}\n"
1155
1156         for idx, fn_line in enumerate(field_function_lines):
1157             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1158                 assert fn_line.ret_ty_info.ty_info.get_full_rust_ty()[1] == ""
1159                 out_c = out_c + fn_line.ret_ty_info.ty_info.get_full_rust_ty()[0] + " " + fn_line.fn_name + "_" + struct_name + "_jcall("
1160                 if fn_line.self_is_const:
1161                     out_c = out_c + "const void* this_arg"
1162                 else:
1163                     out_c = out_c + "void* this_arg"
1164
1165                 for idx, arg in enumerate(fn_line.args_ty):
1166                     out_c = out_c + ", " + arg.ty_info.get_full_rust_ty()[0] + " " + arg.arg_name + arg.ty_info.get_full_rust_ty()[1]
1167
1168                 out_c = out_c + ") {\n"
1169                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
1170
1171                 for arg_info in fn_line.args_ty:
1172                     if arg_info.ret_conv is not None:
1173                         out_c = out_c + "\t" + arg_info.ret_conv[0].replace('\n', '\n\t')
1174                         out_c = out_c + arg_info.arg_name
1175                         out_c = out_c + arg_info.ret_conv[1].replace('\n', '\n\t') + "\n"
1176
1177                 fn_suffix = ""
1178                 assert len(fn_line.args_ty) < 7
1179                 for arg_info in fn_line.args_ty:
1180                     if arg_info.c_ty == "uint64_t" or arg_info.c_ty == "int64_t":
1181                         fn_suffix += "b"
1182                     else:
1183                         fn_suffix += "u"
1184                 for i in range(0, 6 - len(fn_line.args_ty)):
1185                     fn_suffix += "u"
1186                 if fn_line.ret_ty_info.c_ty.endswith("Array"):
1187                     out_c += "\t" + fn_line.ret_ty_info.c_ty + " ret = (" + fn_line.ret_ty_info.c_ty + ")"
1188                     out_c += "js_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1189                 elif fn_line.ret_ty_info.java_ty == "void":
1190                     out_c = out_c + "\tjs_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1191                 elif fn_line.ret_ty_info.java_hu_ty == "string":
1192                     out_c += "\tjstring ret = (jstring)js_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1193                 elif fn_line.ret_ty_info.arg_conv is None:
1194                     out_c += "\treturn js_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1195                 else:
1196                     out_c += "\tuint64_t ret = js_invoke_function_" + fn_suffix + "(j_calls->instance_ptr, " + str(self.function_ptr_counter)
1197
1198                 self.function_ptrs[self.function_ptr_counter] = (struct_name, fn_line.fn_name)
1199                 self.function_ptr_counter += 1
1200
1201                 for idx, arg_info in enumerate(fn_line.args_ty):
1202                     if arg_info.ret_conv is not None:
1203                         if arg_info.c_ty.endswith("Array"):
1204                             out_c += ", (uint32_t)" + arg_info.ret_conv_name
1205                         else:
1206                             out_c += ", " + arg_info.ret_conv_name
1207                     else:
1208                         assert False # TODO: Would we need some conversion here?
1209                         out_c += ", (uint32_t)" + arg_info.arg_name
1210                 for i in range(0, 6 - len(fn_line.args_ty)):
1211                     out_c += ", 0"
1212                 out_c = out_c + ");\n"
1213                 if fn_line.ret_ty_info.arg_conv is not None:
1214                     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"
1215
1216                 out_c = out_c + "}\n"
1217
1218         # Write out a clone function whether we need one or not, as we use them in moving to rust
1219         out_c = out_c + "static void " + struct_name + "_JCalls_cloned(" + struct_name + "* new_obj) {\n"
1220         out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) new_obj->this_arg;\n"
1221         out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->refcnt, 1, memory_order_release);\n"
1222         for var in flattened_field_var_conversions:
1223             if not isinstance(var, ConvInfo):
1224                 out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->" + var[2].replace(".", "->") + "->refcnt, 1, memory_order_release);\n"
1225         out_c = out_c + "}\n"
1226
1227         out_c = out_c + "static inline " + struct_name + " " + struct_name + "_init (JSValue o"
1228         for var in flattened_field_var_conversions:
1229             if isinstance(var, ConvInfo):
1230                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
1231             else:
1232                 out_c = out_c + ", JSValue " + var[1]
1233         out_c = out_c + ") {\n"
1234
1235         out_c = out_c + "\t" + struct_name + "_JCalls *calls = MALLOC(sizeof(" + struct_name + "_JCalls), \"" + struct_name + "_JCalls\");\n"
1236         out_c = out_c + "\tatomic_init(&calls->refcnt, 1);\n"
1237         out_c = out_c + "\tcalls->instance_ptr = o;\n"
1238
1239         for (fn_name, java_meth_descr) in java_meths:
1240             if fn_name != "free" and fn_name != "cloned":
1241                 out_c = out_c + "\tcalls->" + fn_name + "_meth = (*env)->GetMethodID(env, c, \"" + fn_name + "\", \"" + java_meth_descr + "\");\n"
1242                 out_c = out_c + "\tCHECK(calls->" + fn_name + "_meth != NULL);\n"
1243
1244         for var in flattened_field_var_conversions:
1245             if isinstance(var, ConvInfo) and var.arg_conv is not None:
1246                 out_c = out_c + "\n\t" + var.arg_conv.replace("\n", "\n\t") +"\n"
1247         out_c = out_c + "\n\t" + struct_name + " ret = {\n"
1248         out_c = out_c + "\t\t.this_arg = (void*) calls,\n"
1249         for fn_line in field_function_lines:
1250             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1251                 out_c = out_c + "\t\t." + fn_line.fn_name + " = " + fn_line.fn_name + "_" + struct_name + "_jcall,\n"
1252             elif fn_line.fn_name == "free":
1253                 out_c = out_c + "\t\t.free = " + struct_name + "_JCalls_free,\n"
1254             else:
1255                 out_c = out_c + "\t\t.cloned = " + struct_name + "_JCalls_cloned,\n"
1256         for var in field_var_conversions:
1257             if isinstance(var, ConvInfo):
1258                 if var.arg_conv_name is not None:
1259                     out_c = out_c + "\t\t." + var.arg_name + " = " + var.arg_conv_name + ",\n"
1260                     out_c = out_c + "\t\t.set_" + var.arg_name + " = NULL,\n"
1261                 else:
1262                     out_c = out_c + "\t\t." + var.var_name + " = " + var.var_name + ",\n"
1263                     out_c = out_c + "\t\t.set_" + var.var_name + " = NULL,\n"
1264             else:
1265                 out_c += "\t\t." + var[1] + " = " + var[0] + "_init(" + var[1]
1266                 for suparg in var[2]:
1267                     if isinstance(suparg, ConvInfo):
1268                         out_c += ", " + suparg.arg_name
1269                     else:
1270                         out_c += ", " + suparg[1]
1271                 out_c += "),\n"
1272         out_c = out_c + "\t};\n"
1273         for var in flattened_field_var_conversions:
1274             if not isinstance(var, ConvInfo):
1275                 out_c = out_c + "\tcalls->" + var[1] + " = ret." + var[2] + ".this_arg;\n"
1276         out_c = out_c + "\treturn ret;\n"
1277         out_c = out_c + "}\n"
1278
1279         out_c = out_c + self.c_fn_ty_pfx + "uint64_t " + self.c_fn_name_define_pfx(struct_name + "_new", True) + "JSValue o"
1280         for var in flattened_field_var_conversions:
1281             if isinstance(var, ConvInfo):
1282                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
1283             else:
1284                 out_c = out_c + ", JSValue " + var[1]
1285         out_c = out_c + ") {\n"
1286         out_c = out_c + "\t" + struct_name + " *res_ptr = MALLOC(sizeof(" + struct_name + "), \"" + struct_name + "\");\n"
1287         out_c = out_c + "\t*res_ptr = " + struct_name + "_init(o"
1288         for var in flattened_field_var_conversions:
1289             if isinstance(var, ConvInfo):
1290                 out_c = out_c + ", " + var.arg_name
1291             else:
1292                 out_c = out_c + ", " + var[1]
1293         out_c = out_c + ");\n"
1294         out_c = out_c + "\treturn tag_ptr(res_ptr, true);\n"
1295         out_c = out_c + "}\n"
1296
1297         return (out_typescript_bindings, out_typescript_human, out_c)
1298
1299     def trait_struct_inc_refcnt(self, ty_info):
1300         base_conv = "\nif (" + ty_info.var_name + "_conv.free == " + ty_info.rust_obj + "_JCalls_free) {\n"
1301         base_conv = base_conv + "\t// If this_arg is a JCalls struct, then we need to increment the refcnt in it.\n"
1302         base_conv = base_conv + "\t" + ty_info.rust_obj + "_JCalls_cloned(&" + ty_info.var_name + "_conv);\n}"
1303         return base_conv
1304
1305     def map_complex_enum(self, struct_name, variant_list, camel_to_snake, enum_doc_comment):
1306         bindings_type = struct_name.replace("LDK", "")
1307         java_hu_type = struct_name.replace("LDK", "").replace("COption", "Option")
1308
1309         out_java_enum = ""
1310         out_java = ""
1311         out_c = ""
1312
1313         out_java_enum += (self.hu_struct_file_prefix)
1314
1315         java_hu_class = "/**\n * " + enum_doc_comment.replace("\n", "\n * ") + "\n */\n"
1316         java_hu_class += "export class " + java_hu_type + " extends CommonBase {\n"
1317         java_hu_class += "\tprotected constructor(_dummy: null, ptr: bigint) { super(ptr, bindings." + bindings_type + "_free); }\n"
1318         java_hu_class += "\t/* @internal */\n"
1319         java_hu_class += f"\tpublic static constr_from_ptr(ptr: bigint): {java_hu_type} {{\n"
1320         java_hu_class += f"\t\tconst raw_ty: number = bindings." + struct_name + "_ty_from_ptr(ptr);\n"
1321         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"
1322         out_c += "\t" + struct_name + " *obj = (" + struct_name + "*)untag_ptr(ptr);\n"
1323         out_c += "\tswitch(obj->tag) {\n"
1324         java_hu_class += "\t\tswitch (raw_ty) {\n"
1325         java_hu_subclasses = ""
1326
1327         out_java += "/* @internal */\nexport class " + struct_name + " {\n"
1328         out_java += "\tprotected constructor() {}\n"
1329         var_idx = 0
1330         for var in variant_list:
1331             java_hu_subclasses += "/** A " + java_hu_type + " of type " + var.var_name + " */\n"
1332             java_hu_subclasses += "export class " + java_hu_type + "_" + var.var_name + " extends " + java_hu_type + " {\n"
1333             java_hu_class += f"\t\t\tcase {var_idx}: "
1334             java_hu_class += "return new " + java_hu_type + "_" + var.var_name + "(ptr);\n"
1335             out_c += f"\t\tcase {struct_name}_{var.var_name}: return {var_idx};\n"
1336             hu_conv_body = ""
1337             for idx, (field_ty, field_docs) in enumerate(var.fields):
1338                 if field_docs is not None:
1339                     java_hu_subclasses += "\t/**\n\t * " + field_docs.replace("\n", "\n\t * ") + "\n\t */\n"
1340                 java_hu_subclasses += "\tpublic " + field_ty.arg_name + f": {field_ty.java_hu_ty};\n"
1341                 if field_ty.to_hu_conv is not None:
1342                     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"
1343                     hu_conv_body += f"\t\t" + field_ty.to_hu_conv.replace("\n", "\n\t\t\t") + "\n"
1344                     hu_conv_body += f"\t\tthis." + field_ty.arg_name + " = " + field_ty.to_hu_conv_name + ";\n"
1345                 else:
1346                     hu_conv_body += f"\t\tthis.{field_ty.arg_name} = bindings.{struct_name}_{var.var_name}_get_{field_ty.arg_name}(ptr);\n"
1347             java_hu_subclasses += "\t/* @internal */\n"
1348             java_hu_subclasses += "\tpublic constructor(ptr: bigint) {\n\t\tsuper(null, ptr);\n"
1349             java_hu_subclasses = java_hu_subclasses + hu_conv_body
1350             java_hu_subclasses = java_hu_subclasses + "\t}\n}\n"
1351             var_idx += 1
1352         out_java += "}\n"
1353         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"
1354         out_java += self.fn_call_body(struct_name + "_ty_from_ptr", "uint32_t", "number", "ptr: bigint", "ptr")
1355         out_c += ("\t\tdefault: abort();\n")
1356         out_c += ("\t}\n}\n")
1357
1358         for var in variant_list:
1359             for idx, (field_map, _) in enumerate(var.fields):
1360                 fn_name = f"{struct_name}_{var.var_name}_get_{field_map.arg_name}"
1361                 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"
1362                 out_c += "\t" + struct_name + " *obj = (" + struct_name + "*)untag_ptr(ptr);\n"
1363                 out_c += f"\tassert(obj->tag == {struct_name}_{var.var_name});\n"
1364                 if field_map.ret_conv is not None:
1365                     out_c += ("\t\t\t" + field_map.ret_conv[0].replace("\n", "\n\t\t\t"))
1366                     if var.tuple_variant:
1367                         out_c += "obj->" + camel_to_snake(var.var_name)
1368                     else:
1369                         out_c += "obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name
1370                     out_c += (field_map.ret_conv[1].replace("\n", "\n\t\t\t") + "\n")
1371                     out_c += "\treturn " + field_map.ret_conv_name + ";\n"
1372                 else:
1373                     if var.tuple_variant:
1374                         out_c += "\treturn " + "obj->" + camel_to_snake(var.var_name) + ";\n"
1375                     else:
1376                         out_c += "\treturn " + "obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name + ";\n"
1377                 out_c += "}\n"
1378                 out_java += self.fn_call_body(fn_name, field_map.c_ty, field_map.java_ty, "ptr: bigint", "ptr")
1379         out_java_enum += java_hu_class
1380         self.struct_file_suffixes[java_hu_type] = java_hu_subclasses
1381         self.obj_defined([java_hu_type], "structs")
1382         return (out_java, out_java_enum, out_c)
1383
1384     def map_opaque_struct(self, struct_name, struct_doc_comment):
1385         method_header = ""
1386
1387         hu_name = struct_name.replace("LDKC2Tuple", "TwoTuple").replace("LDKC3Tuple", "ThreeTuple").replace("LDK", "")
1388         out_opaque_struct_human = f"{self.hu_struct_file_prefix}"
1389         constructor_body = "super(ptr, bindings." + struct_name.replace("LDK","") + "_free);"
1390         extra_docs = ""
1391         extra_body = ""
1392         if struct_name.startswith("LDKLocked") or struct_name.startswith("LDKReadOnly"):
1393             extra_docs = "\n * This type represents a lock and MUST BE MANUALLY FREE'd!"
1394             constructor_body = 'super(ptr, () => { throw new Error("Locks must be manually freed with free()"); });'
1395             extra_body = f"""
1396         /** Releases this lock */
1397         public free() {{
1398                 bindings.{struct_name.replace("LDK","")}_free(this.ptr);
1399                 CommonBase.set_null_skip_free(this);
1400         }}"""
1401         formatted_doc_comment = struct_doc_comment.replace("\n", "\n * ")
1402         out_opaque_struct_human += f"""
1403 /**{extra_docs}
1404  * {formatted_doc_comment}
1405  */
1406 export class {hu_name} extends CommonBase {{
1407         /* @internal */
1408         public constructor(_dummy: null, ptr: bigint) {{
1409                 {constructor_body}
1410         }}{extra_body}
1411
1412 """
1413         self.obj_defined([hu_name], "structs")
1414         return out_opaque_struct_human
1415
1416     def map_tuple(self, struct_name):
1417         return self.map_opaque_struct(struct_name, "A Tuple")
1418
1419     def map_result(self, struct_name, res_map, err_map):
1420         human_ty = struct_name.replace("LDKCResult", "Result")
1421
1422         suffixes = f"export class {human_ty}_OK extends {human_ty} {{\n"
1423         if res_map.java_hu_ty != "void":
1424             suffixes += "\tpublic res: " + res_map.java_hu_ty + ";\n"
1425         suffixes += f"""
1426         /* @internal */
1427         public constructor(_dummy: null, ptr: bigint) {{
1428                 super(_dummy, ptr);
1429 """
1430         if res_map.java_hu_ty == "void":
1431             pass
1432         elif res_map.to_hu_conv is not None:
1433             suffixes += "\t\tconst res: " + res_map.java_ty + " = bindings." + struct_name.replace("LDK", "") + "_get_ok(ptr);\n"
1434             suffixes += "\t\t" + res_map.to_hu_conv.replace("\n", "\n\t\t")
1435             suffixes += "\n\t\tthis.res = " + res_map.to_hu_conv_name + ";\n"
1436         else:
1437             suffixes += "\t\tthis.res = bindings." + struct_name.replace("LDK", "") + "_get_ok(ptr);\n"
1438         suffixes += "\t}\n}\n"
1439
1440         suffixes += f"export class {human_ty}_Err extends {human_ty} {{\n"
1441         if err_map.java_hu_ty != "void":
1442             suffixes += "\tpublic err: " + err_map.java_hu_ty + ";\n"
1443         suffixes += f"""
1444         /* @internal */
1445         public constructor(_dummy: null, ptr: bigint) {{
1446                 super(_dummy, ptr);
1447 """
1448         if err_map.java_hu_ty == "void":
1449             pass
1450         elif err_map.to_hu_conv is not None:
1451             suffixes += "\t\tconst err: " + err_map.java_ty + " = bindings." + struct_name.replace("LDK", "") + "_get_err(ptr);\n"
1452             suffixes += "\t\t" + err_map.to_hu_conv.replace("\n", "\n\t\t")
1453             suffixes += "\n\t\tthis.err = " + err_map.to_hu_conv_name + ";\n"
1454         else:
1455             suffixes += "\t\tthis.err = bindings." + struct_name.replace("LDK", "") + "_get_err(ptr);\n"
1456         suffixes += "\t}\n}"
1457
1458         self.struct_file_suffixes[human_ty] = suffixes
1459         self.obj_defined([human_ty], "structs")
1460
1461         return f"""{self.hu_struct_file_prefix}
1462
1463 export class {human_ty} extends CommonBase {{
1464         protected constructor(_dummy: null, ptr: bigint) {{
1465                 super(ptr, bindings.{struct_name.replace("LDK","")}_free);
1466         }}
1467         /* @internal */
1468         public static constr_from_ptr(ptr: bigint): {human_ty} {{
1469                 if (bindings.{struct_name.replace("LDK", "")}_is_ok(ptr)) {{
1470                         return new {human_ty}_OK(null, ptr);
1471                 }} else {{
1472                         return new {human_ty}_Err(null, ptr);
1473                 }}
1474         }}
1475 """
1476
1477     def fn_call_body(self, method_name, return_c_ty, return_java_ty, method_argument_string, native_call_argument_string):
1478         has_return_value = return_c_ty != 'void'
1479         return_statement = 'return nativeResponseValue;'
1480         if not has_return_value:
1481             return_statement = '// debug statements here'
1482
1483         return f"""/* @internal */
1484 export function {method_name}({method_argument_string}): {return_java_ty} {{
1485         if(!isWasmInitialized) {{
1486                 throw new Error("initializeWasm() must be awaited first!");
1487         }}
1488         const nativeResponseValue = wasm.TS_{method_name}({native_call_argument_string});
1489         {return_statement}
1490 }}
1491 """
1492     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):
1493         out_java = ""
1494         out_c = ""
1495         out_java_struct = None
1496
1497         out_java += ("\t")
1498         out_c += (self.c_fn_ty_pfx)
1499         out_c += (return_type_info.c_ty)
1500         out_java += (return_type_info.java_ty)
1501         if return_type_info.ret_conv is not None:
1502             ret_conv_pfx, ret_conv_sfx = return_type_info.ret_conv
1503         out_java += (" " + method_name + "(")
1504         out_c += (" "  + self.c_fn_name_define_pfx(method_name, True))
1505
1506         method_argument_string = ""
1507         native_call_argument_string = ""
1508         for idx, arg_conv_info in enumerate(argument_types):
1509             if idx != 0:
1510                 method_argument_string += (", ")
1511                 native_call_argument_string += ', '
1512                 out_c += (", ")
1513             if arg_conv_info.c_ty != "void":
1514                 out_c += (arg_conv_info.c_ty + " " + arg_conv_info.arg_name)
1515                 method_argument_string += f"{arg_conv_info.arg_name}: {arg_conv_info.java_ty}"
1516                 native_call_argument_string += arg_conv_info.arg_name
1517         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)
1518
1519         out_java_struct = ""
1520         if doc_comment is not None:
1521             out_java_struct = "\t/**\n\t * " + doc_comment.replace("\n", "\n\t * ") + "\n\t */\n"
1522
1523         if not args_known:
1524             out_java_struct += ("\t// Skipped " + method_name + "\n")
1525         else:
1526             if not takes_self:
1527                 out_java_struct += (
1528                         "\tpublic static constructor_" + meth_n + "(")
1529             else:
1530                 out_java_struct += ("\tpublic " + meth_n + "(")
1531             for idx, arg in enumerate(argument_types):
1532                 if idx != 0:
1533                     if not takes_self or idx > 1:
1534                         out_java_struct += (", ")
1535                 elif takes_self:
1536                     continue
1537                 if arg.java_ty != "void":
1538                     if arg.arg_name in default_constructor_args:
1539                         for explode_idx, explode_arg in enumerate(default_constructor_args[arg.arg_name]):
1540                             if explode_idx != 0:
1541                                 out_java_struct += (", ")
1542                             out_java_struct += arg.arg_name + "_" + explode_arg.arg_name + ": " + explode_arg.java_hu_ty
1543                     else:
1544                         out_java_struct += arg.arg_name + ": " + arg.java_hu_ty
1545                         if arg.nullable:
1546                             out_java_struct += "|null"
1547
1548         out_c += (") {\n")
1549         if out_java_struct is not None:
1550             out_java_struct += "): " + return_type_info.java_hu_ty + " {\n"
1551         for info in argument_types:
1552             if info.arg_conv is not None:
1553                 out_c += ("\t" + info.arg_conv.replace('\n', "\n\t") + "\n")
1554         if return_type_info.ret_conv is not None:
1555             out_c += ("\t" + ret_conv_pfx.replace('\n', '\n\t'))
1556         elif return_type_info.c_ty != "void":
1557             out_c += ("\t" + return_type_info.c_ty + " ret_val = ")
1558         else:
1559             out_c += ("\t")
1560         if c_call_string is None:
1561             out_c += (method_name + "(")
1562         else:
1563             out_c += (c_call_string)
1564         for idx, info in enumerate(argument_types):
1565             if info.arg_conv_name is not None:
1566                 if idx != 0:
1567                     out_c += (", ")
1568                 elif c_call_string is not None:
1569                     continue
1570                 out_c += (info.arg_conv_name)
1571         out_c += (")")
1572         if return_type_info.ret_conv is not None:
1573             out_c += (ret_conv_sfx.replace('\n', '\n\t'))
1574         else:
1575             out_c += (";")
1576         for info in argument_types:
1577             if info.arg_conv_cleanup is not None:
1578                 out_c += ("\n\t" + info.arg_conv_cleanup.replace("\n", "\n\t"))
1579         if return_type_info.ret_conv is not None:
1580             out_c += ("\n\treturn " + return_type_info.ret_conv_name + ";")
1581         elif return_type_info.c_ty != "void":
1582             out_c += ("\n\treturn ret_val;")
1583         out_c += ("\n}\n\n")
1584
1585         if args_known:
1586             out_java_struct += ("\t\t")
1587             if return_type_info.java_ty != "void":
1588                 out_java_struct += "const ret: " + return_type_info.java_ty + " = "
1589             out_java_struct += ("bindings." + method_name + "(")
1590             for idx, info in enumerate(argument_types):
1591                 if idx != 0:
1592                     out_java_struct += (", ")
1593                 if idx == 0 and takes_self:
1594                     out_java_struct += ("this.ptr")
1595                 elif info.arg_name in default_constructor_args:
1596                     out_java_struct += ("bindings." + info.java_hu_ty + "_new(")
1597                     for explode_idx, explode_arg in enumerate(default_constructor_args[info.arg_name]):
1598                         if explode_idx != 0:
1599                             out_java_struct += (", ")
1600                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1601                         if explode_arg.from_hu_conv is not None:
1602                             out_java_struct += (
1603                                 explode_arg.from_hu_conv[0].replace(explode_arg.arg_name, expl_arg_name))
1604                         else:
1605                             out_java_struct += (expl_arg_name)
1606                     out_java_struct += (")")
1607                 elif info.from_hu_conv is not None:
1608                     out_java_struct += (info.from_hu_conv[0])
1609                 else:
1610                     out_java_struct += (info.arg_name)
1611             out_java_struct += (");\n")
1612             if return_type_info.to_hu_conv is not None:
1613                 if not takes_self:
1614                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t").replace("this",
1615                                                                                                              return_type_info.to_hu_conv_name) + "\n")
1616                 else:
1617                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t") + "\n")
1618
1619             for idx, info in enumerate(argument_types):
1620                 if idx == 0 and takes_self:
1621                     pass
1622                 elif info.arg_name in default_constructor_args:
1623                     for explode_arg in default_constructor_args[info.arg_name]:
1624                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1625                         if explode_arg.from_hu_conv is not None and return_type_info.to_hu_conv_name:
1626                             out_java_struct += ("\t\t" + explode_arg.from_hu_conv[1].replace(explode_arg.arg_name,
1627                                                                                              expl_arg_name).replace(
1628                                 "this", return_type_info.to_hu_conv_name) + ";\n")
1629                 elif info.from_hu_conv is not None and info.from_hu_conv[1] != "":
1630                     if not takes_self and return_type_info.to_hu_conv_name is not None:
1631                         out_java_struct += (
1632                                 "\t\t" + info.from_hu_conv[1].replace("this", return_type_info.to_hu_conv_name).replace("\n", "\n\t\t") + ";\n")
1633                     else:
1634                         out_java_struct += ("\t\t" + info.from_hu_conv[1].replace("\n", "\n\t\t") + ";\n")
1635
1636             if return_type_info.to_hu_conv_name is not None:
1637                 out_java_struct += ("\t\treturn " + return_type_info.to_hu_conv_name + ";\n")
1638             elif return_type_info.java_ty != "void" and return_type_info.rust_obj != "LDK" + struct_meth:
1639                 out_java_struct += ("\t\treturn ret;\n")
1640             out_java_struct += ("\t}\n\n")
1641
1642         return (out_java, out_c, out_java_struct)
1643
1644     def cleanup(self):
1645         for struct in self.struct_file_suffixes:
1646             with open(self.outdir + "/structs/" + struct + self.file_ext, "a") as src:
1647                 src.write(self.struct_file_suffixes[struct])
1648
1649         with open(self.outdir + "/bindings.mts", "a") as bindings:
1650             bindings.write("""
1651
1652 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) {
1653         const weak: WeakRef<object>|undefined = js_objs[obj_ptr];
1654         if (weak == null || weak == undefined) {
1655                 console.error("Got function call on unknown/free'd JS object!");
1656                 throw new Error("Got function call on unknown/free'd JS object!");
1657         }
1658         const obj = weak.deref();
1659         if (obj == null || obj == undefined) {
1660                 console.error("Got function call on GC'd JS object!");
1661                 throw new Error("Got function call on GC'd JS object!");
1662         }
1663         var fn;
1664 """)
1665             bindings.write("\tswitch (fn_id) {\n")
1666             for f in self.function_ptrs:
1667                 bindings.write(f"\t\tcase {str(f)}: fn = Object.getOwnPropertyDescriptor(obj, \"{self.function_ptrs[f][1]}\"); break;\n")
1668
1669             bindings.write("""\t\tdefault:
1670                         console.error("Got unknown function call with id " + fn_id + " from C!");
1671                         throw new Error("Got unknown function call with id " + fn_id + " from C!");
1672         }
1673         if (fn == null || fn == undefined) {
1674                 console.error("Got function call with id " + fn_id + " on incorrect JS object: " + obj);
1675                 throw new Error("Got function call with id " + fn_id + " on incorrect JS object: " + obj);
1676         }
1677         var ret;
1678         try {
1679                 ret = fn.value.bind(obj)(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10);
1680         } catch (e) {
1681                 console.error("Got an exception calling function with id " + fn_id + "! This is fatal.");
1682                 console.error(e);
1683                 throw e;
1684         }
1685         if (ret === undefined || ret === null) return BigInt(0);
1686         return BigInt(ret);
1687 }""")