Merge pull request #128 from TheBlueMatt/main
[ldk-java] / java_strings.py
1 from bindingstypes import *
2 from enum import Enum
3 import sys
4
5 class Target(Enum):
6     JAVA = 1,
7     ANDROID = 2
8
9 class Consts:
10     def __init__(self, DEBUG: bool, target: Target, **kwargs):
11         self.target = target
12         self.c_array_class_caches = set()
13         self.c_type_map = dict(
14             bool = ['boolean'],
15             uint8_t = ['byte'],
16             uint16_t = ['short'],
17             uint32_t = ['int'],
18             uint64_t = ['long'],
19         )
20         self.java_type_map = dict(
21             String = "String"
22         )
23         self.java_hu_type_map = dict(
24             String = "String"
25         )
26
27         self.to_hu_conv_templates = dict(
28             ptr = '{human_type} {var_name}_hu_conv = null; if ({var_name} < 0 || {var_name} > 4096) { {var_name}_hu_conv = new {human_type}(null, {var_name}); }',
29             default = '{human_type} {var_name}_hu_conv = null; if ({var_name} < 0 || {var_name} > 4096) { {var_name}_hu_conv = new {human_type}(null, {var_name}); }'
30         )
31
32         self.bindings_header = """package org.ldk.impl;
33 import org.ldk.enums.*;
34 import org.ldk.impl.version;
35 import java.io.File;
36 import java.io.InputStream;
37 import java.io.IOException;
38 import java.nio.file.Files;
39 import java.nio.file.Path;
40 import java.nio.file.StandardCopyOption;
41
42 public class bindings {
43         static {
44                 try {
45                         // Try to load natively first, this works on Android and in testing.
46                         System.loadLibrary(\"lightningjni\");
47                 } catch (UnsatisfiedLinkError system_load_err) {
48                         // Otherwise try to load from the library jar.
49                         File tmpdir = new File(System.getProperty("java.io.tmpdir"), "ldk-java-nativelib");
50                         tmpdir.mkdir(); // If it fails to create, assume it was there already
51                         tmpdir.deleteOnExit();
52                         String libname = "liblightningjni_" + System.getProperty("os.name").replaceAll(" ", "") +
53                                 "-" + System.getProperty("os.arch").replaceAll(" ", "") + ".nativelib";
54                         try (InputStream is = bindings.class.getResourceAsStream("/" + libname)) {
55                                 Path libpath = new File(tmpdir.toPath().toString(), "liblightningjni.so").toPath();
56                                 Files.copy(is, libpath, StandardCopyOption.REPLACE_EXISTING);
57                                 Runtime.getRuntime().load(libpath.toString());
58                         } catch (Exception e) {
59                                 System.err.println("Failed to load LDK native library.");
60                                 System.err.println("System LDK native library load failed with: " + system_load_err);
61                                 System.err.println("Resource-based LDK native library load failed with: " + e);
62                                 throw new IllegalArgumentException(e);
63                         }
64                 }
65                 init(java.lang.Enum.class);
66                 init_class_cache();
67                 if (!get_lib_version_string().equals(version.get_ldk_java_bindings_version()))
68                         throw new IllegalArgumentException("Compiled LDK library and LDK class failes do not match");
69                 // Fetching the LDK versions from C also checks that the header and binaries match
70                 System.err.println("Loaded LDK-Java Bindings " + version.get_ldk_java_bindings_version() + " with LDK " + get_ldk_version() + " and LDK-C-Bindings " + get_ldk_c_bindings_version());
71         }
72         static native void init(java.lang.Class c);
73         static native void init_class_cache();
74         static native String get_lib_version_string();
75
76         public static native String get_ldk_c_bindings_version();
77         public static native String get_ldk_version();
78
79 """
80         self.bindings_version_file = """package org.ldk.impl;
81
82 public class version {
83         public static String get_ldk_java_bindings_version() {
84                 return "<git_version_ldk_garbagecollected>";
85         }
86 }"""
87
88         self.util_fn_pfx = """package org.ldk.structs;
89 import org.ldk.impl.bindings;
90 import org.ldk.enums.*;
91 import org.ldk.util.*;
92 import java.util.Arrays;
93 import java.lang.ref.Reference;
94 import javax.annotation.Nullable;
95
96 public class UtilMethods {
97 """
98         self.util_fn_sfx = "}"
99         self.common_base = """package org.ldk.structs;
100 import java.util.LinkedList;
101 class CommonBase {
102         long ptr;
103         LinkedList<Object> ptrs_to = new LinkedList();
104         protected CommonBase(long ptr) { assert ptr < 0 || ptr > 4096; this.ptr = ptr; }
105 }
106 """
107
108         self.txout_defn = """public class TxOut extends CommonBase {
109         /** The script_pubkey in this output */
110         public final byte[] script_pubkey;
111         /** The value, in satoshis, of this output */
112         public final long value;
113
114         TxOut(java.lang.Object _dummy, long ptr) {
115                 super(ptr);
116                 this.script_pubkey = bindings.TxOut_get_script_pubkey(ptr);
117                 this.value = bindings.TxOut_get_value(ptr);
118         }
119         public TxOut(long value, byte[] script_pubkey) {
120                 super(bindings.TxOut_new(script_pubkey, value));
121                 this.script_pubkey = bindings.TxOut_get_script_pubkey(ptr);
122                 this.value = bindings.TxOut_get_value(ptr);
123         }
124
125         @Override @SuppressWarnings(\"deprecation\")
126         protected void finalize() throws Throwable {
127                 super.finalize();
128                 if (ptr != 0) { bindings.TxOut_free(ptr); }
129         }
130 }"""
131
132         self.scalar_defn = """public class BigEndianScalar extends CommonBase {
133         /** The bytes of the scalar value, in big endian */
134         public final byte[] scalar_bytes;
135
136         BigEndianScalar(java.lang.Object _dummy, long ptr) {
137                 super(ptr);
138                 this.scalar_bytes = bindings.BigEndianScalar_get_bytes(ptr);
139         }
140         public BigEndianScalar(byte[] scalar_bytes) {
141                 super(bindings.BigEndianScalar_new(scalar_bytes));
142                 this.scalar_bytes = bindings.BigEndianScalar_get_bytes(ptr);
143         }
144
145         @Override @SuppressWarnings(\"deprecation\")
146         protected void finalize() throws Throwable {
147                 super.finalize();
148                 if (ptr != 0) { bindings.BigEndianScalar_free(ptr); }
149         }
150 }"""
151
152
153         self.c_file_pfx = """#include <jni.h>
154 // On OSX jlong (ie long long) is not equivalent to int64_t, so we override here
155 #define int64_t jlong
156 #include \"org_ldk_impl_bindings.h\"
157 #include <lightning.h>
158 #include <string.h>
159 #include <stdatomic.h>
160 #include <stdlib.h>
161
162 #define LIKELY(v) __builtin_expect(!!(v), 1)
163 #define UNLIKELY(v) __builtin_expect(!!(v), 0)
164
165 """
166
167         if self.target == Target.ANDROID:
168             self.c_file_pfx = self.c_file_pfx + """
169 #include <android/log.h>
170 #define DEBUG_PRINT(...) __android_log_print(ANDROID_LOG_ERROR, "LDK", __VA_ARGS__)
171
172 #include <unistd.h>
173 #include <pthread.h>
174 static void* redirect_stderr(void* ignored) {
175         int pipes[2];
176         pipe(pipes);
177         dup2(pipes[1], STDERR_FILENO);
178         char buf[8192];
179         memset(buf, 0, 8192);
180         ssize_t len;
181         while ((len = read(pipes[0], buf, 8191)) > 0) {
182                 DEBUG_PRINT("%s\\n", buf);
183                 memset(buf, 0, 8192);
184         }
185         DEBUG_PRINT("End of stderr???\\n");
186         return 0;
187 }
188 void __attribute__((constructor)) spawn_stderr_redirection() {
189         pthread_t thread;
190         pthread_create(&thread, NULL, &redirect_stderr, NULL);
191 }
192 """
193         else:
194             self.c_file_pfx = self.c_file_pfx + "#define DEBUG_PRINT(...) fprintf(stderr, __VA_ARGS__)\n"
195
196         if not DEBUG or sys.platform == "darwin":
197             self.c_file_pfx = self.c_file_pfx + """#define MALLOC(a, _) malloc(a)
198 #define FREE(p) if ((uint64_t)(p) > 4096) { free(p); }
199 #define CHECK_ACCESS(p)
200 #define CHECK_INNER_FIELD_ACCESS_OR_NULL(v)
201 """
202         if not DEBUG:
203             self.c_file_pfx += """#define DO_ASSERT(a) (void)(a)
204 #define CHECK(a)
205 """
206         if DEBUG:
207             self.c_file_pfx = self.c_file_pfx + """#include <assert.h>
208 // Always run a, then assert it is true:
209 #define DO_ASSERT(a) do { bool _assert_val = (a); assert(_assert_val); } while(0)
210 // Assert a is true or do nothing
211 #define CHECK(a) DO_ASSERT(a)
212
213 void __attribute__((constructor)) debug_log_version() {
214         if (check_get_ldk_version() == NULL)
215                 DEBUG_PRINT("LDK version did not match the header we built against\\n");
216         if (check_get_ldk_bindings_version() == NULL)
217                 DEBUG_PRINT("LDK C Bindings version did not match the header we built against\\n");
218 }
219 """
220
221             if sys.platform != "darwin":
222                 self.c_file_pfx += """
223 // Running a leak check across all the allocations and frees of the JDK is a mess,
224 // so instead we implement our own naive leak checker here, relying on the -wrap
225 // linker option to wrap malloc/calloc/realloc/free, tracking everyhing allocated
226 // and free'd in Rust or C across the generated bindings shared library.
227 #include <threads.h>
228 """
229
230                 if self.target == Target.ANDROID:
231                     self.c_file_pfx = self.c_file_pfx + """
232 #include <unwind.h>
233 #include <dlfcn.h>
234
235 // Implement the execinfo functions using _Unwind_backtrace. This seems to miss many Rust
236 // symbols, so we only use it on Android, where execinfo.h is unavailable.
237
238 struct BacktraceState {
239         void** current;
240         void** end;
241 };
242 static _Unwind_Reason_Code unwind_callback(struct _Unwind_Context* context, void* arg) {
243         struct BacktraceState* state = (struct BacktraceState*)arg;
244         uintptr_t pc = _Unwind_GetIP(context);
245         if (pc) {
246                 if (state->current == state->end) {
247                         return _URC_END_OF_STACK;
248                 } else {
249                         *state->current++ = (void*)(pc);
250                 }
251         }
252         return _URC_NO_REASON;
253 }
254
255 int backtrace(void** buffer, int max) {
256         struct BacktraceState state = { buffer, buffer + max };
257         _Unwind_Backtrace(unwind_callback, &state);
258         return state.current - buffer;
259 }
260
261 void backtrace_symbols_fd(void ** buffer, int count, int _fd) {
262         for (int idx = 0; idx < count; ++idx) {
263                 Dl_info info;
264                 if (dladdr(buffer[idx], &info) && info.dli_sname) {
265                         DEBUG_PRINT("%p: %s", buffer[idx], info.dli_sname);
266                 } else {
267                         DEBUG_PRINT("%p: ???", buffer[idx]);
268                 }
269         }
270 }
271 """
272                 else:
273                     self.c_file_pfx = self.c_file_pfx + "#include <execinfo.h>\n"
274                 self.c_file_pfx = self.c_file_pfx + """
275 #include <unistd.h>
276 #include <pthread.h>
277 static pthread_mutex_t allocation_mtx;
278
279 void __attribute__((constructor)) init_mtx() {
280         DO_ASSERT(!pthread_mutex_init(&allocation_mtx, NULL));
281 }
282
283 #define BT_MAX 128
284 typedef struct allocation {
285         struct allocation* next;
286         void* ptr;
287         const char* struct_name;
288         void* bt[BT_MAX];
289         int bt_len;
290         unsigned long alloc_len;
291 } allocation;
292 static allocation* allocation_ll = NULL;
293
294 void* __real_malloc(size_t len);
295 void* __real_calloc(size_t nmemb, size_t len);
296 static void new_allocation(void* res, const char* struct_name, size_t len) {
297         allocation* new_alloc = __real_malloc(sizeof(allocation));
298         new_alloc->ptr = res;
299         new_alloc->struct_name = struct_name;
300         new_alloc->bt_len = backtrace(new_alloc->bt, BT_MAX);
301         new_alloc->alloc_len = len;
302         DO_ASSERT(!pthread_mutex_lock(&allocation_mtx));
303         new_alloc->next = allocation_ll;
304         allocation_ll = new_alloc;
305         DO_ASSERT(!pthread_mutex_unlock(&allocation_mtx));
306 }
307 static void* MALLOC(size_t len, const char* struct_name) {
308         void* res = __real_malloc(len);
309         new_allocation(res, struct_name, len);
310         return res;
311 }
312 void __real_free(void* ptr);
313 static void alloc_freed(void* ptr) {
314         allocation* p = NULL;
315         DO_ASSERT(!pthread_mutex_lock(&allocation_mtx));
316         allocation* it = allocation_ll;
317         while (it->ptr != ptr) {
318                 p = it; it = it->next;
319                 if (it == NULL) {
320                         DEBUG_PRINT("ERROR: Tried to free unknown pointer %p at:\\n", ptr);
321                         void* bt[BT_MAX];
322                         int bt_len = backtrace(bt, BT_MAX);
323                         backtrace_symbols_fd(bt, bt_len, STDERR_FILENO);
324                         DEBUG_PRINT("\\n\\n");
325                         DO_ASSERT(!pthread_mutex_unlock(&allocation_mtx));
326                         return; // addrsan should catch malloc-unknown and print more info than we have
327                 }
328         }
329         if (p) { p->next = it->next; } else { allocation_ll = it->next; }
330         DO_ASSERT(!pthread_mutex_unlock(&allocation_mtx));
331         DO_ASSERT(it->ptr == ptr);
332         __real_free(it);
333 }
334 static void FREE(void* ptr) {
335         if ((uint64_t)ptr <= 4096) return; // Rust loves to create pointers to the NULL page for dummys
336         alloc_freed(ptr);
337         __real_free(ptr);
338 }
339
340 void* __wrap_malloc(size_t len) {
341         void* res = __real_malloc(len);
342         new_allocation(res, "malloc call", len);
343         return res;
344 }
345 void* __wrap_calloc(size_t nmemb, size_t len) {
346         void* res = __real_calloc(nmemb, len);
347         new_allocation(res, "calloc call", len);
348         return res;
349 }
350 void __wrap_free(void* ptr) {
351         if (ptr == NULL) return;
352         alloc_freed(ptr);
353         __real_free(ptr);
354 }
355
356 static void CHECK_ACCESS(const void* ptr) {
357         DO_ASSERT(!pthread_mutex_lock(&allocation_mtx));
358         allocation* it = allocation_ll;
359         while (it->ptr != ptr) {
360                 it = it->next;
361                 if (it == NULL) {
362                         DEBUG_PRINT("ERROR: Tried to access unknown pointer %p at:\\n", ptr);
363                         void* bt[BT_MAX];
364                         int bt_len = backtrace(bt, BT_MAX);
365                         backtrace_symbols_fd(bt, bt_len, STDERR_FILENO);
366                         DEBUG_PRINT("\\n\\n");
367                         DO_ASSERT(!pthread_mutex_unlock(&allocation_mtx));
368                         return; // addrsan should catch and print more info than we have
369                 }
370         }
371         DO_ASSERT(!pthread_mutex_unlock(&allocation_mtx));
372 }
373 #define CHECK_INNER_FIELD_ACCESS_OR_NULL(v) \\
374         if (v.is_owned && v.inner != NULL) { \\
375                 const void *p = __unmangle_inner_ptr(v.inner); \\
376                 if (p != NULL) { \\
377                         CHECK_ACCESS(p); \\
378                 } \\
379         }
380
381 void* __real_realloc(void* ptr, size_t newlen);
382 void* __wrap_realloc(void* ptr, size_t len) {
383         if (ptr != NULL) alloc_freed(ptr);
384         void* res = __real_realloc(ptr, len);
385         new_allocation(res, "realloc call", len);
386         return res;
387 }
388 void __wrap_reallocarray(void* ptr, size_t new_sz) {
389         // Rust doesn't seem to use reallocarray currently
390         DO_ASSERT(false);
391 }
392
393 void __attribute__((destructor)) check_leaks() {
394         unsigned long alloc_count = 0;
395         unsigned long alloc_size = 0;
396         DEBUG_PRINT("The following LDK-allocated blocks still remain.\\n");
397         DEBUG_PRINT("Note that this is only accurate if System.gc(); System.runFinalization()\\n");
398         DEBUG_PRINT("was called prior to exit after all LDK objects were out of scope.\\n");
399         for (allocation* a = allocation_ll; a != NULL; a = a->next) {
400                 DEBUG_PRINT("%s %p (%lu bytes) remains:\\n", a->struct_name, a->ptr, a->alloc_len);
401                 backtrace_symbols_fd(a->bt, a->bt_len, STDERR_FILENO);
402                 DEBUG_PRINT("\\n\\n");
403                 alloc_count++;
404                 alloc_size += a->alloc_len;
405         }
406         DEBUG_PRINT("%lu allocations remained for %lu bytes.\\n", alloc_count, alloc_size);
407         DEBUG_PRINT("Note that this is only accurate if System.gc(); System.runFinalization()\\n");
408         DEBUG_PRINT("was called prior to exit after all LDK objects were out of scope.\\n");
409 }
410 """
411         self.c_file_pfx = self.c_file_pfx + """
412 static jmethodID ordinal_meth = NULL;
413 JNIEXPORT void Java_org_ldk_impl_bindings_init(JNIEnv * env, jclass _b, jclass enum_class) {
414         ordinal_meth = (*env)->GetMethodID(env, enum_class, "ordinal", "()I");
415         CHECK(ordinal_meth != NULL);
416 }
417
418 // We assume that CVec_u8Z and u8slice are the same size and layout (and thus pointers to the two can be mixed)
419 _Static_assert(sizeof(LDKCVec_u8Z) == sizeof(LDKu8slice), "Vec<u8> and [u8] need to have been mapped identically");
420 _Static_assert(offsetof(LDKCVec_u8Z, data) == offsetof(LDKu8slice, data), "Vec<u8> and [u8] need to have been mapped identically");
421 _Static_assert(offsetof(LDKCVec_u8Z, datalen) == offsetof(LDKu8slice, datalen), "Vec<u8> and [u8] need to have been mapped identically");
422
423 _Static_assert(sizeof(jlong) == sizeof(int64_t), "We assume that j-types are the same as C types");
424 _Static_assert(sizeof(jbyte) == sizeof(char), "We assume that j-types are the same as C types");
425 _Static_assert(sizeof(void*) <= 8, "Pointers must fit into 64 bits");
426
427 typedef jlongArray int64_tArray;
428 typedef jbyteArray int8_tArray;
429 typedef jshortArray int16_tArray;
430
431 static inline jstring str_ref_to_java(JNIEnv *env, const char* chars, size_t len) {
432         // Sadly we need to create a temporary because Java can't accept a char* without a 0-terminator
433         char* conv_buf = MALLOC(len + 1, "str conv buf");
434         memcpy(conv_buf, chars, len);
435         conv_buf[len] = 0;
436         jstring ret = (*env)->NewStringUTF(env, conv_buf);
437         FREE(conv_buf);
438         return ret;
439 }
440 static inline LDKStr java_to_owned_str(JNIEnv *env, jstring str) {
441         uint64_t str_len = (*env)->GetStringUTFLength(env, str);
442         char* newchars = MALLOC(str_len + 1, "String chars");
443         const char* jchars = (*env)->GetStringUTFChars(env, str, NULL);
444         memcpy(newchars, jchars, str_len);
445         newchars[str_len] = 0;
446         (*env)->ReleaseStringUTFChars(env, str, jchars);
447         LDKStr res = {
448                 .chars = newchars,
449                 .len = str_len,
450                 .chars_is_owned = true
451         };
452         return res;
453 }
454
455 JNIEXPORT jstring JNICALL Java_org_ldk_impl_bindings_get_1ldk_1c_1bindings_1version(JNIEnv *env, jclass _c) {
456         return str_ref_to_java(env, check_get_ldk_bindings_version(), strlen(check_get_ldk_bindings_version()));
457 }
458 JNIEXPORT jstring JNICALL Java_org_ldk_impl_bindings_get_1ldk_1version(JNIEnv *env, jclass _c) {
459         return str_ref_to_java(env, check_get_ldk_version(), strlen(check_get_ldk_version()));
460 }
461 #include "version.c"
462 """
463         self.c_version_file = """JNIEXPORT jstring JNICALL Java_org_ldk_impl_bindings_get_1lib_1version_1string(JNIEnv *env, jclass _c) {
464         return str_ref_to_java(env, "<git_version_ldk_garbagecollected>", strlen("<git_version_ldk_garbagecollected>"));
465 }"""
466
467         self.hu_struct_file_prefix = """package org.ldk.structs;
468
469 import org.ldk.impl.bindings;
470 import org.ldk.enums.*;
471 import org.ldk.util.*;
472 import java.util.Arrays;
473 import java.lang.ref.Reference;
474 import javax.annotation.Nullable;
475
476 """
477         self.hu_struct_file_suffix = ""
478         self.c_fn_ty_pfx = "JNIEXPORT "
479         self.c_fn_args_pfx = "JNIEnv *env, jclass clz"
480         self.file_ext = ".java"
481         self.ptr_c_ty = "int64_t"
482         self.ptr_native_ty = "long"
483         self.u128_native_ty = "UInt128"
484         self.usize_c_ty = "int64_t"
485         self.usize_native_ty = "long"
486         self.native_zero_ptr = "0"
487         self.result_c_ty = "jclass"
488         self.ptr_arr = "jobjectArray"
489         self.is_arr_some_check = ("", " != NULL")
490         self.get_native_arr_len_call = ("(*env)->GetArrayLength(env, ", ")")
491
492     def bindings_footer(self):
493         return "}\n"
494
495     def construct_jenv(self):
496         res =  "JNIEnv *env;\n"
497         res += "jint get_jenv_res = (*j_calls->vm)->GetEnv(j_calls->vm, (void**)&env, JNI_VERSION_1_6);\n"
498         res += "if (get_jenv_res == JNI_EDETACHED) {\n"
499         if self.target == Target.ANDROID:
500             res += "\tDO_ASSERT((*j_calls->vm)->AttachCurrentThread(j_calls->vm, &env, NULL) == JNI_OK);\n"
501         else:
502             res += "\tDO_ASSERT((*j_calls->vm)->AttachCurrentThread(j_calls->vm, (void**)&env, NULL) == JNI_OK);\n"
503         res += "} else {\n"
504         res += "\tDO_ASSERT(get_jenv_res == JNI_OK);\n"
505         res += "}\n"
506         return res
507     def deconstruct_jenv(self):
508         res = "if (get_jenv_res == JNI_EDETACHED) {\n"
509         res += "\tDO_ASSERT((*j_calls->vm)->DetachCurrentThread(j_calls->vm) == JNI_OK);\n"
510         res += "}\n"
511         return res
512
513     def release_native_arr_ptr_call(self, ty_info, arr_var, arr_ptr_var):
514         if ty_info.subty is None or not ty_info.subty.c_ty.endswith("Array"):
515             return "(*env)->ReleasePrimitiveArrayCritical(env, " + arr_var + ", " + arr_ptr_var + ", 0)"
516         return None
517     def create_native_arr_call(self, arr_len, ty_info):
518         if ty_info.c_ty == "int8_tArray":
519             return "(*env)->NewByteArray(env, " + arr_len + ")"
520         elif ty_info.subty.c_ty.endswith("Array"):
521             clz_var = ty_info.java_fn_ty_arg[1:].replace("[", "arr_of_")
522             self.c_array_class_caches.add(clz_var)
523             return "(*env)->NewObjectArray(env, " + arr_len + ", " + clz_var + "_clz, NULL);\n"
524         elif ty_info.subty.c_ty == "jstring":
525             return "(*env)->NewObjectArray(env, " + arr_len + ", String_clz, NULL);\n"
526         else:
527             return "(*env)->New" + ty_info.java_ty.strip("[]").title() + "Array(env, " + arr_len + ")"
528     def set_native_arr_contents(self, arr_name, arr_len, ty_info):
529         if ty_info.c_ty == "int8_tArray":
530             return ("(*env)->SetByteArrayRegion(env, " + arr_name + ", 0, " + arr_len + ", ", ")")
531         elif ty_info.c_ty == "int16_tArray":
532             return ("(*env)->SetShortArrayRegion(env, " + arr_name + ", 0, " + arr_len + ", ", ")")
533         else:
534             assert False
535     def get_native_arr_contents(self, arr_name, dest_name, arr_len, ty_info, copy):
536         if "String" in ty_info.java_ty:
537             return None
538         if ty_info.c_ty == "int8_tArray" or ty_info.c_ty == "int16_tArray":
539             fn_ty = "Byte" if ty_info.c_ty == "int8_tArray" else "Short"
540             if copy:
541                 return "(*env)->Get" + fn_ty + "ArrayRegion(env, " + arr_name + ", 0, " + arr_len + ", " + dest_name + ")"
542             else:
543                 return "(*env)->Get" + fn_ty + "ArrayElements (env, " + arr_name + ", NULL)"
544         elif not ty_info.java_ty[:len(ty_info.java_ty) - 2].endswith("[]"):
545             return "(*env)->Get" + ty_info.subty.java_ty.title() + "ArrayElements (env, " + arr_name + ", NULL)"
546         else:
547             return None
548     def get_native_arr_elem(self, arr_name, idxc, ty_info):
549         if self.get_native_arr_contents(arr_name, "", "", ty_info, False) is None:
550             return "(*env)->GetObjectArrayElement(env, " + arr_name + ", " + idxc + ")"
551         else:
552             assert False # Only called if above is None
553     def get_native_arr_ptr_call(self, ty_info):
554         if ty_info.subty is not None and ty_info.subty.c_ty.endswith("Array"):
555             return None
556         return ("(*env)->GetPrimitiveArrayCritical(env, ", ", NULL)")
557     def get_native_arr_entry_call(self, ty_info, arr_name, idxc, entry_access):
558         if ty_info.subty is None or not ty_info.subty.c_ty.endswith("Array"):
559             return None
560         return "(*env)->SetObjectArrayElement(env, " + arr_name + ", " + idxc + ", " + entry_access + ")"
561     def cleanup_native_arr_ref_contents(self, arr_name, dest_name, arr_len, ty_info):
562         if ty_info.c_ty == "int8_tArray":
563             return "(*env)->ReleaseByteArrayElements(env, " + arr_name + ", (int8_t*)" + dest_name + ", 0);"
564         else:
565             return "(*env)->Release" + ty_info.java_ty.strip("[]").title() + "ArrayElements(env, " + arr_name + ", " + dest_name + ", 0)"
566
567     def map_hu_array_elems(self, arr_name, conv_name, arr_ty, elem_ty):
568         if elem_ty.java_ty == "long" and elem_ty.java_hu_ty != "long":
569             return arr_name + " != null ? Arrays.stream(" + arr_name + ").mapToLong(" + conv_name + " -> " + elem_ty.from_hu_conv[0] + ").toArray() : null"
570         elif elem_ty.java_ty == "long":
571             return arr_name + " != null ? Arrays.stream(" + arr_name + ").map(" + conv_name + " -> " + elem_ty.from_hu_conv[0] + ").toArray() : null"
572         elif elem_ty.java_hu_ty == "UInt5":
573             return arr_name + " != null ? InternalUtils.convUInt5Array(" + arr_name + ") : null"
574         elif elem_ty.java_hu_ty == "WitnessVersion":
575             return arr_name + " != null ? InternalUtils.convWitnessVersionArray(" + arr_name + ") : null"
576         else:
577             return arr_name + " != null ? Arrays.stream(" + arr_name + ").map(" + conv_name + " -> " + elem_ty.from_hu_conv[0] + ").toArray(" + arr_ty.java_ty + "::new) : null"
578
579     def str_ref_to_native_call(self, var_name, str_len):
580         return "str_ref_to_java(env, " + var_name + ", " + str_len + ")"
581     def str_ref_to_c_call(self, var_name):
582         return "java_to_owned_str(env, " + var_name + ")"
583     def str_to_hu_conv(self, var_name):
584         return None
585     def str_from_hu_conv(self, var_name):
586         return None
587
588     def c_fn_name_define_pfx(self, fn_name, has_args):
589         if has_args:
590             return "JNICALL Java_org_ldk_impl_bindings_" + fn_name.replace("_", "_1") + "(JNIEnv *env, jclass clz, "
591         return "JNICALL Java_org_ldk_impl_bindings_" + fn_name.replace("_", "_1") + "(JNIEnv *env, jclass clz"
592
593     def init_str(self):
594         res = ""
595         for ty in sorted(self.c_array_class_caches):
596             res = res + "static jclass " + ty + "_clz = NULL;\n"
597         res = res + "static jclass String_clz = NULL;\n"
598         res = res + "JNIEXPORT void Java_org_ldk_impl_bindings_init_1class_1cache(JNIEnv * env, jclass clz) {\n"
599         for ty in sorted(self.c_array_class_caches):
600             res = res + "\t" + ty + "_clz = (*env)->FindClass(env, \"" + ty.replace("arr_of_", "[") + "\");\n"
601             res = res + "\tCHECK(" + ty + "_clz != NULL);\n"
602             res = res + "\t" + ty + "_clz = (*env)->NewGlobalRef(env, " + ty + "_clz);\n"
603         res = res + "\tString_clz = (*env)->FindClass(env, \"Ljava/lang/String;\");\n"
604         res = res + "\tCHECK(String_clz != NULL);\n"
605         res = res + "\tString_clz = (*env)->NewGlobalRef(env, String_clz);\n"
606
607         res = res + "}\n"
608         return res
609
610     def var_decl_statement(self, ty_string, var_name, statement):
611         return ty_string + " " + var_name + " = " + statement
612
613     def get_java_arr_len(self, arr_name):
614         return arr_name + ".length"
615     def get_java_arr_elem(self, elem_ty, arr_name, idx):
616         return arr_name + "[" + idx + "]"
617     def constr_hu_array(self, ty_info, arr_len):
618         base_ty = ty_info.subty.java_hu_ty.split("[")[0].split("<")[0]
619         conv = "new " + base_ty + "[" + arr_len + "]"
620         if "[" in ty_info.subty.java_hu_ty.split("<")[0]:
621             # Do a bit of a dance to move any excess [] to the end
622             conv += "[" + ty_info.subty.java_hu_ty.split("<")[0].split("[")[1]
623         return conv
624     def cleanup_converted_native_array(self, ty_info, arr_name):
625         return None
626
627     def primitive_arr_from_hu(self, arr_ty, fixed_len, arr_name):
628         mapped_ty = arr_ty.subty
629         if arr_ty.rust_obj == "LDKU128":
630             return ("" + arr_name + ".getLEBytes()", "")
631         if fixed_len is not None:
632             if mapped_ty.c_ty == "int8_t" or mapped_ty.c_ty == "uint8_t":
633                 return ("InternalUtils.check_arr_len(" + arr_name + ", " + fixed_len + ")", "")
634             elif mapped_ty.c_ty == "int16_t" or mapped_ty.c_ty == "uint16_t":
635                 return ("InternalUtils.check_arr_16_len(" + arr_name + ", " + fixed_len + ")", "")
636             else:
637                 print(arr_ty.c_ty)
638                 assert False
639         return None
640     def primitive_arr_to_hu(self, arr_ty, fixed_len, arr_name, conv_name):
641         if arr_ty.rust_obj == "LDKU128":
642             return "org.ldk.util.UInt128 " + conv_name + " = new org.ldk.util.UInt128(" + arr_name + ");"
643         return None
644
645     def java_arr_ty_str(self, elem_ty_str):
646         return elem_ty_str + "[]"
647
648     def for_n_in_range(self, n, minimum, maximum):
649         return "for (int " + n + " = " + minimum + "; " + n + " < " + maximum + "; " + n + "++) {"
650     def for_n_in_arr(self, n, arr_name, arr_elem_ty):
651         return ("for (" + arr_elem_ty.java_hu_ty + " " + n + ": " + arr_name + ") { ", " }")
652
653     def get_ptr(self, var):
654         return var + ".ptr"
655     def set_null_skip_free(self, var):
656         return var + ".ptr" + " = 0;"
657
658     def add_ref(self, holder, referent):
659         return "if (" + holder + " != null) { " + holder + ".ptrs_to.add(" + referent + "); }"
660
661     def fully_qualified_hu_ty_path(self, ty):
662         if ty.java_fn_ty_arg.startswith("L") and ty.java_fn_ty_arg.endswith(";"):
663             return ty.java_fn_ty_arg.strip("L;").replace("/", ".")
664         if ty.java_hu_ty == "UnqualifiedError" or ty.java_hu_ty == "UInt128" or ty.java_hu_ty == "UInt5" or ty.java_hu_ty == "WitnessVersion":
665             return "org.ldk.util." + ty.java_hu_ty
666         if not ty.is_native_primitive and ty.rust_obj is not None and not "[]" in ty.java_hu_ty:
667             return "org.ldk.structs." + ty.java_hu_ty
668         return ty.java_hu_ty
669
670     def native_c_unitary_enum_map(self, struct_name, variants, enum_doc_comment):
671         out_java_enum = "package org.ldk.enums;\n\n"
672         out_java = ""
673         out_c = ""
674         out_c += "static inline LDK" + struct_name + " LDK" + struct_name + "_from_java(" + self.c_fn_args_pfx + ") {\n"
675         out_c += "\tjint ord = (*env)->CallIntMethod(env, clz, ordinal_meth);\n"
676         out_c += "\tif (UNLIKELY((*env)->ExceptionCheck(env))) {\n"
677         out_c += "\t\t(*env)->ExceptionDescribe(env);\n"
678         out_c += "\t\t(*env)->FatalError(env, \"A call to " + struct_name + ".ordinal() from rust threw an exception.\");\n"
679         out_c += "\t}\n"
680         out_c += "\tswitch (ord) {\n"
681
682         if enum_doc_comment is not None:
683             out_java_enum += "/**\n * " + enum_doc_comment.replace("\n", "\n * ") + "\n */\n"
684         out_java_enum += "public enum " + struct_name + " {\n"
685         ord_v = 0
686         for var, var_docs in variants:
687             if var_docs is not None:
688                 out_java_enum += "\t/**\n\t * " + var_docs.replace("\n", "\n\t * ") + "\n\t */\n"
689             out_java_enum += "\t" + var + ",\n"
690             out_c = out_c + "\t\tcase %d: return %s;\n" % (ord_v, var)
691             ord_v = ord_v + 1
692         out_java_enum = out_java_enum + "\t; static native void init();\n"
693         out_java_enum = out_java_enum + "\tstatic { init(); }\n"
694         out_java_enum = out_java_enum + "}"
695         out_java = out_java + "\tstatic { " + struct_name + ".values(); /* Force enum statics to run */ }\n"
696         out_c += "\t}\n"
697         out_c += "\t(*env)->FatalError(env, \"A call to " + struct_name + ".ordinal() from rust returned an invalid value.\");\n"
698         out_c += "\tabort(); // Unreachable, but will let the compiler know we don't return here\n"
699         out_c += "}\n"
700
701         out_c = out_c + "static jclass " + struct_name + "_class = NULL;\n"
702         for var, _ in variants:
703             out_c = out_c + "static jfieldID " + struct_name + "_" + var + " = NULL;\n"
704         out_c = out_c + self.c_fn_ty_pfx + "void JNICALL Java_org_ldk_enums_" + struct_name.replace("_", "_1") + "_init (" + self.c_fn_args_pfx + ") {\n"
705         out_c = out_c + "\t" + struct_name + "_class = (*env)->NewGlobalRef(env, clz);\n"
706         out_c = out_c + "\tCHECK(" + struct_name + "_class != NULL);\n"
707         for var, _ in variants:
708             out_c = out_c + "\t" + struct_name + "_" + var + " = (*env)->GetStaticFieldID(env, " + struct_name + "_class, \"" + var + "\", \"Lorg/ldk/enums/" + struct_name + ";\");\n"
709             out_c = out_c + "\tCHECK(" + struct_name + "_" + var + " != NULL);\n"
710         out_c = out_c + "}\n"
711         out_c = out_c + "static inline jclass LDK" + struct_name + "_to_java(JNIEnv *env, LDK" + struct_name + " val) {\n"
712         out_c = out_c + "\tswitch (val) {\n"
713         ord_v = 0
714         for var, _ in variants:
715             out_c = out_c + "\t\tcase " + var + ":\n"
716             out_c = out_c + "\t\t\treturn (*env)->GetStaticObjectField(env, " + struct_name + "_class, " + struct_name + "_" + var + ");\n"
717             ord_v = ord_v + 1
718         out_c = out_c + "\t\tdefault: abort();\n"
719         out_c = out_c + "\t}\n"
720         out_c = out_c + "}\n\n"
721
722         return (out_c, out_java_enum, out_java)
723
724     def c_unitary_enum_to_native_call(self, ty_info):
725         return (ty_info.rust_obj + "_to_java(env, ", ")")
726     def native_unitary_enum_to_c_call(self, ty_info):
727         return (ty_info.rust_obj + "_from_java(env, ", ")")
728
729     def c_complex_enum_pfx(self, struct_name, variants, init_meth_jty_strs):
730         out_c = ""
731         for var in variants:
732             out_c = out_c + "static jclass " + struct_name + "_" + var + "_class = NULL;\n"
733             out_c = out_c + "static jmethodID " + struct_name + "_" + var + "_meth = NULL;\n"
734         out_c = out_c + self.c_fn_ty_pfx + "void JNICALL Java_org_ldk_impl_bindings_00024" + struct_name.replace("_", "_1") + "_init (" + self.c_fn_args_pfx + ") {\n"
735         for var_name in variants:
736             out_c += "\t" + struct_name + "_" + var_name + "_class =\n"
737             out_c += "\t\t(*env)->NewGlobalRef(env, (*env)->FindClass(env, \"org/ldk/impl/bindings$" + struct_name + "$" + var_name + "\"));\n"
738             out_c += "\tCHECK(" + struct_name + "_" + var_name + "_class != NULL);\n"
739             out_c += "\t" + struct_name + "_" + var_name + "_meth = (*env)->GetMethodID(env, " + struct_name + "_" + var_name + "_class, \"<init>\", \"(" + init_meth_jty_strs[var_name] + ")V\");\n"
740             out_c += "\tCHECK(" + struct_name + "_" + var_name + "_meth != NULL);\n"
741         out_c = out_c + "}\n"
742         return out_c
743
744     def c_complex_enum_pass_ty(self, struct_name):
745         return "jobject"
746
747     def c_constr_native_complex_enum(self, struct_name, variant, c_params):
748         ret = "(*env)->NewObject(env, " + struct_name + "_" + variant + "_class, " + struct_name + "_" + variant + "_meth"
749         for param in c_params:
750             ret = ret + ", " + param
751         return ret + ")"
752
753     def native_c_map_trait(self, struct_name, field_vars, flattened_field_vars, field_fns, trait_doc_comment):
754         out_java_trait = ""
755         out_java = ""
756
757         # First generate most of the Java code, note that we need information about java method argument strings for C
758         out_java_trait = out_java_trait + self.hu_struct_file_prefix
759         if trait_doc_comment is not None:
760             out_java_trait += "/**\n * " + trait_doc_comment.replace("\n", "\n * ") + "\n */\n"
761         out_java_trait += "@SuppressWarnings(\"unchecked\") // We correctly assign various generic arrays\n"
762         out_java_trait = out_java_trait + "public class " + struct_name.replace("LDK","") + " extends CommonBase {\n"
763         out_java_trait = out_java_trait + "\tfinal bindings." + struct_name + " bindings_instance;\n"
764         out_java_trait = out_java_trait + "\t" + struct_name.replace("LDK", "") + "(Object _dummy, long ptr) { super(ptr); bindings_instance = null; }\n"
765         out_java_trait = out_java_trait + "\tprivate " + struct_name.replace("LDK", "") + "(bindings." + struct_name + " arg"
766         for var in flattened_field_vars:
767             if isinstance(var, ConvInfo):
768                 out_java_trait = out_java_trait + ", " + var.java_hu_ty + " " + var.arg_name
769             else:
770                 out_java_trait = out_java_trait + ", bindings." + var[0] + " " + var[1]
771         out_java_trait = out_java_trait + ") {\n"
772         out_java_trait = out_java_trait + "\t\tsuper(bindings." + struct_name + "_new(arg"
773         for var in flattened_field_vars:
774             if isinstance(var, ConvInfo):
775                 if var.from_hu_conv is not None:
776                     out_java_trait = out_java_trait + ", " + var.from_hu_conv[0]
777                 else:
778                     out_java_trait = out_java_trait + ", " + var.arg_name
779             else:
780                 out_java_trait = out_java_trait + ", " + var[1]
781         out_java_trait = out_java_trait + "));\n"
782         out_java_trait = out_java_trait + "\t\tthis.ptrs_to.add(arg);\n"
783         for var in flattened_field_vars:
784             if isinstance(var, ConvInfo):
785                 if var.from_hu_conv is not None and var.from_hu_conv[1] != "":
786                     out_java_trait = out_java_trait + "\t\t" + var.from_hu_conv[1].replace("\n", "\n\t\t") + ";\n"
787             else:
788                 out_java_trait = out_java_trait + "\t\tthis.ptrs_to.add(" + var[1] + ");\n"
789         out_java_trait += f"""          this.bindings_instance = arg;
790         }}
791         @Override @SuppressWarnings("deprecation")
792         protected void finalize() throws Throwable {{
793                 if (ptr != 0) {{ bindings.{struct_name.replace("LDK","")}_free(ptr); }} super.finalize();
794         }}
795         /**
796          * Destroys the object, freeing associated resources. After this call, any access
797          * to this object may result in a SEGFAULT or worse.
798          *
799          * You should generally NEVER call this method. You should let the garbage collector
800          * do this for you when it finalizes objects. However, it may be useful for types
801          * which represent locks and should be closed immediately to avoid holding locks
802          * until the GC runs.
803          */
804         public void destroy() {{
805                 if (ptr != 0) {{ bindings.{struct_name.replace("LDK","")}_free(ptr); }}
806                 ptr = 0;
807         }}
808 """
809
810         java_trait_constr = "\tprivate static class " + struct_name + "Holder { " + struct_name.replace("LDK", "") + " held; }\n"
811         java_trait_constr = java_trait_constr + "\tpublic static " + struct_name.replace("LDK", "") + " new_impl(" + struct_name.replace("LDK", "") + "Interface arg"
812         for var in flattened_field_vars:
813             if isinstance(var, ConvInfo):
814                 java_trait_constr = java_trait_constr + ", " + var.java_hu_ty + " " + var.arg_name
815             else:
816                 # Ideally we'd be able to take any instance of the interface, but our C code can only represent
817                 # Java-implemented version, so we require users pass a Java implementation here :/
818                 java_trait_constr = java_trait_constr + ", " + var[0].replace("LDK", "") + "." + var[0].replace("LDK", "") + "Interface " + var[1] + "_impl"
819         java_trait_constr = java_trait_constr + ") {\n\t\tfinal " + struct_name + "Holder impl_holder = new " + struct_name + "Holder();\n"
820         java_trait_constr = java_trait_constr + "\t\timpl_holder.held = new " + struct_name.replace("LDK", "") + "(new bindings." + struct_name + "() {\n"
821         out_java_trait = out_java_trait + "\tpublic static interface " + struct_name.replace("LDK", "") + "Interface {\n"
822         out_java = out_java + "\tpublic interface " + struct_name + " {\n"
823         java_meths = []
824         for fn_line in field_fns:
825             java_meth_descr = "("
826             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
827                 out_java = out_java + "\t\t " + fn_line.ret_ty_info.java_ty + " " + fn_line.fn_name + "("
828                 java_trait_constr = java_trait_constr + "\t\t\t@Override public " + fn_line.ret_ty_info.java_ty + " " + fn_line.fn_name + "("
829                 out_java_trait += "\t\t/**\n\t\t * " + fn_line.docs.replace("\n", "\n\t\t * ") + "\n\t\t */\n"
830                 out_java_trait = out_java_trait + "\t\t" + fn_line.ret_ty_info.java_hu_ty + " " + fn_line.fn_name + "("
831
832                 for idx, arg_conv_info in enumerate(fn_line.args_ty):
833                     if idx >= 1:
834                         out_java = out_java + ", "
835                         java_trait_constr = java_trait_constr + ", "
836                         out_java_trait = out_java_trait + ", "
837                     out_java = out_java + arg_conv_info.java_ty + " " + arg_conv_info.arg_name
838                     out_java_trait = out_java_trait + arg_conv_info.java_hu_ty + " " + arg_conv_info.arg_name
839                     java_trait_constr = java_trait_constr + arg_conv_info.java_ty + " " + arg_conv_info.arg_name
840                     java_meth_descr = java_meth_descr + arg_conv_info.java_fn_ty_arg
841                 java_meth_descr = java_meth_descr + ")" + fn_line.ret_ty_info.java_fn_ty_arg
842                 java_meths.append((fn_line.fn_name, java_meth_descr))
843
844                 out_java = out_java + ");\n"
845                 out_java_trait = out_java_trait + ");\n"
846                 java_trait_constr = java_trait_constr + ") {\n"
847
848                 for arg_info in fn_line.args_ty:
849                     if arg_info.to_hu_conv is not None:
850                         java_trait_constr = java_trait_constr + "\t\t\t\t" + arg_info.to_hu_conv.replace("\n", "\n\t\t\t\t") + "\n"
851
852                 if fn_line.ret_ty_info.java_ty != "void":
853                     java_trait_constr = java_trait_constr + "\t\t\t\t" + fn_line.ret_ty_info.java_hu_ty + " ret = arg." + fn_line.fn_name + "("
854                 else:
855                     java_trait_constr = java_trait_constr + "\t\t\t\targ." + fn_line.fn_name + "("
856
857                 for idx, arg_info in enumerate(fn_line.args_ty):
858                     if idx != 0:
859                         java_trait_constr = java_trait_constr + ", "
860                     if arg_info.to_hu_conv_name is not None:
861                         java_trait_constr = java_trait_constr + arg_info.to_hu_conv_name
862                     else:
863                         java_trait_constr = java_trait_constr + arg_info.arg_name
864
865                 java_trait_constr += ");\n"
866                 java_trait_constr += "\t\t\t\tReference.reachabilityFence(arg);\n"
867                 if fn_line.ret_ty_info.java_ty != "void":
868                     if fn_line.ret_ty_info.from_hu_conv is not None:
869                         java_trait_constr = java_trait_constr + "\t\t\t\t" + fn_line.ret_ty_info.java_ty + " result = " + fn_line.ret_ty_info.from_hu_conv[0] + ";\n"
870                         if fn_line.ret_ty_info.from_hu_conv[1] != "":
871                             java_trait_constr = java_trait_constr + "\t\t\t\t" + fn_line.ret_ty_info.from_hu_conv[1].replace("this", "impl_holder.held") + ";\n"
872                         #if fn_line.ret_ty_info.rust_obj in result_types:
873                         java_trait_constr = java_trait_constr + "\t\t\t\treturn result;\n"
874                     else:
875                         java_trait_constr = java_trait_constr + "\t\t\t\treturn ret;\n"
876                 java_trait_constr = java_trait_constr + "\t\t\t}\n"
877         java_trait_constr = java_trait_constr + "\t\t}"
878         for var in field_vars:
879             if isinstance(var, ConvInfo):
880                 java_trait_constr = java_trait_constr + ", " + var.arg_name
881             else:
882                 java_trait_constr += ", " + var[1] + ".new_impl(" + var[1] + "_impl"
883                 suptrait_constr = ""
884                 for suparg in var[2]:
885                     if isinstance(suparg, ConvInfo):
886                         suptrait_constr += ", " + suparg.arg_name
887                     else:
888                         suptrait_constr += ", " + suparg[1] + "_impl"
889                 java_trait_constr += suptrait_constr + ").bindings_instance"
890                 for suparg in var[2]:
891                     if isinstance(suparg, ConvInfo):
892                         java_trait_constr += ", " + suparg.arg_name
893                     else:
894                         java_trait_constr += ", " + suparg[1] + ".new_impl("
895                         # Blindly assume that we can just strip the first arg to build the args for the supertrait
896                         java_trait_constr += suptrait_constr.split(", ", 1)[1]
897                         java_trait_constr += ").bindings_instance"
898         out_java_trait = out_java_trait + "\t}\n"
899         out_java_trait = out_java_trait + java_trait_constr + ");\n\t\treturn impl_holder.held;\n\t}\n"
900
901         out_java = out_java + "\t}\n"
902
903         out_java = out_java + "\tpublic static native long " + struct_name + "_new(" + struct_name + " impl"
904         for var in flattened_field_vars:
905             if isinstance(var, ConvInfo):
906                 out_java = out_java + ", " + var.java_ty + " " + var.arg_name
907             else:
908                 out_java = out_java + ", " + var[0] + " " + var[1]
909         out_java = out_java + ");\n"
910
911         # Now that we've written out our java code (and created java_meths), generate C
912         out_c = "typedef struct " + struct_name + "_JCalls {\n"
913         out_c = out_c + "\tatomic_size_t refcnt;\n"
914         out_c = out_c + "\tJavaVM *vm;\n"
915         out_c = out_c + "\tjweak o;\n"
916         for var in flattened_field_vars:
917             if isinstance(var, ConvInfo):
918                 # We're a regular ol' field
919                 pass
920             else:
921                 # We're a supertrait
922                 out_c = out_c + "\t" + var[0] + "_JCalls* " + var[1] + ";\n"
923         for fn in field_fns:
924             if fn.fn_name != "free" and fn.fn_name != "cloned":
925                 out_c = out_c + "\tjmethodID " + fn.fn_name + "_meth;\n"
926         out_c = out_c + "} " + struct_name + "_JCalls;\n"
927
928         for fn_line in field_fns:
929             if fn_line.fn_name == "free":
930                 out_c = out_c + "static void " + struct_name + "_JCalls_free(void* this_arg) {\n"
931                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
932                 out_c = out_c + "\tif (atomic_fetch_sub_explicit(&j_calls->refcnt, 1, memory_order_acquire) == 1) {\n"
933                 out_c += "\t\t" + self.construct_jenv().replace("\n", "\n\t\t").strip() + "\n"
934                 out_c = out_c + "\t\t(*env)->DeleteWeakGlobalRef(env, j_calls->o);\n"
935                 out_c += "\t\t" + self.deconstruct_jenv().replace("\n", "\n\t\t").strip() + "\n"
936                 out_c = out_c + "\t\tFREE(j_calls);\n"
937                 out_c = out_c + "\t}\n}\n"
938
939         for idx, fn_line in enumerate(field_fns):
940             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
941                 assert fn_line.ret_ty_info.ty_info.get_full_rust_ty()[1] == ""
942                 out_c = out_c + fn_line.ret_ty_info.ty_info.get_full_rust_ty()[0] + " " + fn_line.fn_name + "_" + struct_name + "_jcall("
943                 if fn_line.self_is_const:
944                     out_c = out_c + "const void* this_arg"
945                 else:
946                     out_c = out_c + "void* this_arg"
947
948                 for idx, arg in enumerate(fn_line.args_ty):
949                     out_c = out_c + ", " + arg.ty_info.get_full_rust_ty()[0] + " " + arg.arg_name + arg.ty_info.get_full_rust_ty()[1]
950
951                 out_c = out_c + ") {\n"
952                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
953                 out_c += "\t" + self.construct_jenv().replace("\n", "\n\t").strip() + "\n"
954
955                 for arg_info in fn_line.args_ty:
956                     if arg_info.ret_conv is not None:
957                         out_c = out_c + "\t" + arg_info.ret_conv[0].replace('\n', '\n\t')
958                         out_c = out_c + arg_info.arg_name
959                         out_c = out_c + arg_info.ret_conv[1].replace('\n', '\n\t') + "\n"
960
961                 out_c = out_c + "\tjobject obj = (*env)->NewLocalRef(env, j_calls->o);\n\tCHECK(obj != NULL);\n"
962                 if fn_line.ret_ty_info.c_ty.endswith("Array"):
963                     out_c = out_c + "\t" + fn_line.ret_ty_info.c_ty + " ret = (*env)->CallObjectMethod(env, obj, j_calls->" + fn_line.fn_name + "_meth"
964                 elif fn_line.ret_ty_info.c_ty == "void":
965                     out_c += "\t(*env)->CallVoidMethod(env, obj, j_calls->" + fn_line.fn_name + "_meth"
966                 elif fn_line.ret_ty_info.java_hu_ty == "String" or "org/ldk/enums" in fn_line.ret_ty_info.java_fn_ty_arg:
967                     # Manually write out String methods as they're just an Object
968                     out_c += "\t" + fn_line.ret_ty_info.c_ty + " ret = (*env)->CallObjectMethod(env, obj, j_calls->" + fn_line.fn_name + "_meth"
969                 elif not fn_line.ret_ty_info.passed_as_ptr:
970                     out_c += "\t" + fn_line.ret_ty_info.c_ty + " ret = (*env)->Call" + fn_line.ret_ty_info.java_ty.title() + "Method(env, obj, j_calls->" + fn_line.fn_name + "_meth"
971                 else:
972                     out_c = out_c + "\tuint64_t ret = (*env)->CallLongMethod(env, obj, j_calls->" + fn_line.fn_name + "_meth"
973
974                 for idx, arg_info in enumerate(fn_line.args_ty):
975                     if arg_info.ret_conv is not None:
976                         out_c = out_c + ", " + arg_info.ret_conv_name
977                     else:
978                         out_c = out_c + ", " + arg_info.arg_name
979                 out_c = out_c + ");\n"
980
981                 out_c += "\tif (UNLIKELY((*env)->ExceptionCheck(env))) {\n"
982                 out_c += "\t\t(*env)->ExceptionDescribe(env);\n"
983                 out_c += "\t\t(*env)->FatalError(env, \"A call to " + fn_line.fn_name + " in " + struct_name + " from rust threw an exception.\");\n"
984                 out_c += "\t}\n"
985
986                 if fn_line.ret_ty_info.arg_conv is not None:
987                     out_c += "\t" + fn_line.ret_ty_info.arg_conv.replace("\n", "\n\t") + "\n"
988                     out_c += "\t" + self.deconstruct_jenv().replace("\n", "\n\t").strip() + "\n"
989                     out_c += "\treturn " + fn_line.ret_ty_info.arg_conv_name + ";\n"
990                 else:
991                     out_c += "\t" + self.deconstruct_jenv().replace("\n", "\n\t").strip() + "\n"
992                     if not fn_line.ret_ty_info.passed_as_ptr and fn_line.ret_ty_info.c_ty != "void":
993                         out_c += "\treturn ret;\n"
994
995                 out_c = out_c + "}\n"
996
997         # If we can, write out a clone function whether we need one or not, as we use them in moving to rust
998         can_clone_with_ptr = True
999         for var in field_vars:
1000             if isinstance(var, ConvInfo):
1001                 can_clone_with_ptr = False
1002         if can_clone_with_ptr:
1003             out_c = out_c + "static void " + struct_name + "_JCalls_cloned(" + struct_name + "* new_obj) {\n"
1004             out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) new_obj->this_arg;\n"
1005             out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->refcnt, 1, memory_order_release);\n"
1006             for var in flattened_field_vars:
1007                 if not isinstance(var, ConvInfo):
1008                     out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->" + var[2].replace(".", "->") + "->refcnt, 1, memory_order_release);\n"
1009             out_c = out_c + "}\n"
1010
1011         out_c = out_c + "static inline " + struct_name + " " + struct_name + "_init (" + self.c_fn_args_pfx + ", jobject o"
1012         for var in flattened_field_vars:
1013             if isinstance(var, ConvInfo):
1014                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
1015             else:
1016                 out_c = out_c + ", jobject " + var[1]
1017         out_c = out_c + ") {\n"
1018
1019         out_c = out_c + "\tjclass c = (*env)->GetObjectClass(env, o);\n"
1020         out_c = out_c + "\tCHECK(c != NULL);\n"
1021         out_c = out_c + "\t" + struct_name + "_JCalls *calls = MALLOC(sizeof(" + struct_name + "_JCalls), \"" + struct_name + "_JCalls\");\n"
1022         out_c = out_c + "\tatomic_init(&calls->refcnt, 1);\n"
1023         out_c = out_c + "\tDO_ASSERT((*env)->GetJavaVM(env, &calls->vm) == 0);\n"
1024         out_c = out_c + "\tcalls->o = (*env)->NewWeakGlobalRef(env, o);\n"
1025
1026         for (fn_name, java_meth_descr) in java_meths:
1027             if fn_name != "free" and fn_name != "cloned":
1028                 out_c = out_c + "\tcalls->" + fn_name + "_meth = (*env)->GetMethodID(env, c, \"" + fn_name + "\", \"" + java_meth_descr + "\");\n"
1029                 out_c = out_c + "\tCHECK(calls->" + fn_name + "_meth != NULL);\n"
1030
1031         for var in flattened_field_vars:
1032             if isinstance(var, ConvInfo) and var.arg_conv is not None:
1033                 out_c = out_c + "\n\t" + var.arg_conv.replace("\n", "\n\t") +"\n"
1034         out_c = out_c + "\n\t" + struct_name + " ret = {\n"
1035         out_c = out_c + "\t\t.this_arg = (void*) calls,\n"
1036         for fn_line in field_fns:
1037             if fn_line.fn_name != "free" and fn_line.fn_name != "cloned":
1038                 out_c = out_c + "\t\t." + fn_line.fn_name + " = " + fn_line.fn_name + "_" + struct_name + "_jcall,\n"
1039             elif fn_line.fn_name == "free":
1040                 out_c = out_c + "\t\t.free = " + struct_name + "_JCalls_free,\n"
1041             else:
1042                 out_c = out_c + "\t\t.cloned = " + struct_name + "_JCalls_cloned,\n"
1043         for var in field_vars:
1044             if isinstance(var, ConvInfo):
1045                 if var.arg_conv_name is not None:
1046                     out_c = out_c + "\t\t." + var.arg_name + " = " + var.arg_conv_name + ",\n"
1047                     out_c = out_c + "\t\t.set_" + var.arg_name + " = NULL,\n"
1048                 else:
1049                     out_c = out_c + "\t\t." + var.var_name + " = " + var.var_name + ",\n"
1050                     out_c = out_c + "\t\t.set_" + var.var_name + " = NULL,\n"
1051             else:
1052                 out_c += "\t\t." + var[1] + " = " + var[0] + "_init(env, clz, " + var[1]
1053                 for suparg in var[2]:
1054                     if isinstance(suparg, ConvInfo):
1055                         out_c = out_c + ", " + suparg.arg_name
1056                     else:
1057                         out_c = out_c + ", " + suparg[1]
1058                 out_c += "),\n"
1059         out_c = out_c + "\t};\n"
1060         for var in flattened_field_vars:
1061             if not isinstance(var, ConvInfo):
1062                 out_c = out_c + "\tcalls->" + var[1] + " = ret." + var[2] + ".this_arg;\n"
1063         out_c = out_c + "\treturn ret;\n"
1064         out_c = out_c + "}\n"
1065
1066         out_c = out_c + self.c_fn_ty_pfx + "int64_t " + self.c_fn_name_define_pfx(struct_name + "_new", True) + "jobject o"
1067         for var in flattened_field_vars:
1068             if isinstance(var, ConvInfo):
1069                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
1070             else:
1071                 out_c = out_c + ", jobject " + var[1]
1072         out_c = out_c + ") {\n"
1073         out_c = out_c + "\t" + struct_name + " *res_ptr = MALLOC(sizeof(" + struct_name + "), \"" + struct_name + "\");\n"
1074         out_c = out_c + "\t*res_ptr = " + struct_name + "_init(env, clz, o"
1075         for var in flattened_field_vars:
1076             if isinstance(var, ConvInfo):
1077                 out_c = out_c + ", " + var.arg_name
1078             else:
1079                 out_c = out_c + ", " + var[1]
1080         out_c = out_c + ");\n"
1081         out_c = out_c + "\treturn tag_ptr(res_ptr, true);\n"
1082         out_c = out_c + "}\n"
1083
1084         for var in flattened_field_vars:
1085             if not isinstance(var, ConvInfo):
1086                 out_java_trait += "\n\t/**\n"
1087                 out_java_trait += "\t * Gets the underlying " + var[1] + ".\n"
1088                 out_java_trait += "\t */\n"
1089                 underscore_name = ''.join('_' + c.lower() if c.isupper() else c for c in var[1]).strip('_')
1090                 out_java_trait += "\tpublic " + var[1] + " get_" + underscore_name + "() {\n"
1091                 out_java_trait += "\t\t" + var[1] + " res = new " + var[1] + "(null, bindings." + struct_name + "_get_" + var[1] + "(this.ptr));\n"
1092                 out_java_trait += "\t\tres.ptrs_to.add(this);\n"
1093                 out_java_trait += "\t\treturn res;\n"
1094                 out_java_trait += "\t}\n"
1095                 out_java_trait += "\n"
1096
1097                 out_java += "\tpublic static native long " + struct_name + "_get_" + var[1] + "(long arg);\n"
1098
1099                 out_c += "JNIEXPORT int64_t JNICALL Java_org_ldk_impl_bindings_" + struct_name + "_1get_1" + var[1] + "(JNIEnv *env, jclass clz, int64_t arg) {\n"
1100                 out_c += "\t" + struct_name + " *inp = (" + struct_name + " *)untag_ptr(arg);\n"
1101                 out_c += "\treturn tag_ptr(&inp->" + var[2] + ", false);\n"
1102                 out_c += "}\n"
1103
1104         return (out_java, out_java_trait, out_c)
1105
1106     def trait_struct_inc_refcnt(self, ty_info):
1107         base_conv = "\nif (" + ty_info.var_name + "_conv.free == " + ty_info.rust_obj + "_JCalls_free) {\n"
1108         base_conv = base_conv + "\t// If this_arg is a JCalls struct, then we need to increment the refcnt in it.\n"
1109         base_conv = base_conv + "\t" + ty_info.rust_obj + "_JCalls_cloned(&" + ty_info.var_name + "_conv);\n}"
1110         return base_conv
1111
1112     def map_complex_enum(self, struct_name, variant_list, camel_to_snake, enum_doc_comment):
1113         java_hu_type = struct_name.replace("LDK", "").replace("COption", "Option")
1114         out_java_enum = ""
1115         out_java = ""
1116         out_c = ""
1117
1118         out_java_enum += (self.hu_struct_file_prefix)
1119         out_java_enum += "\n/**\n * " + enum_doc_comment.replace("\n", "\n * ") + "\n */\n"
1120         out_java_enum += "@SuppressWarnings(\"unchecked\") // We correctly assign various generic arrays\n"
1121         out_java_enum += ("public class " + java_hu_type + " extends CommonBase {\n")
1122         out_java_enum += ("\tprivate " + java_hu_type + "(Object _dummy, long ptr) { super(ptr); }\n")
1123         out_java_enum += ("\t@Override @SuppressWarnings(\"deprecation\")\n")
1124         out_java_enum += ("\tprotected void finalize() throws Throwable {\n")
1125         out_java_enum += ("\t\tsuper.finalize();\n")
1126         out_java_enum += ("\t\tif (ptr != 0) { bindings." + struct_name.replace("LDK", "") + "_free(ptr); }\n")
1127         out_java_enum += ("\t}\n")
1128         out_java_enum += ("\tstatic " + java_hu_type + " constr_from_ptr(long ptr) {\n")
1129         out_java_enum += ("\t\tbindings." + struct_name + " raw_val = bindings." + struct_name + "_ref_from_ptr(ptr);\n")
1130         java_hu_subclasses = ""
1131
1132         init_meth_jty_strs = {}
1133
1134         out_java +=  ("\tpublic static class " + struct_name + " {\n")
1135         out_java +=  ("\t\tprivate " + struct_name + "() {}\n")
1136         for var in variant_list:
1137             out_java +=  ("\t\tpublic final static class " + var.var_name + " extends " + struct_name + " {\n")
1138             if var.var_docs is not None:
1139                 java_hu_subclasses += "\t/**\n\t * " + var.var_docs.replace("\n", "\n\t * ") + "\n\t */\n"
1140             java_hu_subclasses += "\tpublic final static class " + var.var_name + " extends " + java_hu_type + " {\n"
1141             out_java_enum += ("\t\tif (raw_val.getClass() == bindings." + struct_name + "." + var.var_name + ".class) {\n")
1142             out_java_enum += ("\t\t\treturn new " + var.var_name + "(ptr, (bindings." + struct_name + "." + var.var_name + ")raw_val);\n")
1143             init_meth_jty_str = ""
1144             init_meth_params = ""
1145             init_meth_body = ""
1146             hu_conv_body = ""
1147             for idx, (field_ty, field_docs) in enumerate(var.fields):
1148                 if idx > 0:
1149                     init_meth_params = init_meth_params + ", "
1150
1151                 java_ty = field_ty.java_ty
1152                 if field_ty.java_fn_ty_arg.startswith("L") and field_ty.java_fn_ty_arg.endswith(";"):
1153                     # If this is a simple enum, we have to reference it in the low-level bindings differently:
1154                     java_ty = field_ty.java_fn_ty_arg.strip("L;").replace("/", ".")
1155                 out_java += "\t\t\tpublic " + java_ty + " " + field_ty.arg_name + ";\n"
1156                 if field_docs is not None:
1157                     java_hu_subclasses += "\t\t/**\n\t\t * " + field_docs.replace("\n", "\n\t\t * ") + "\n\t\t*/\n"
1158                 java_hu_subclasses += "\t\t"
1159                 if field_ty.nullable:
1160                     java_hu_subclasses += "@Nullable "
1161                 java_hu_subclasses += "public final " + self.fully_qualified_hu_ty_path(field_ty) + " " + field_ty.arg_name + ";\n"
1162                 init_meth_params = init_meth_params + java_ty + " " + field_ty.arg_name
1163
1164                 init_meth_body = init_meth_body + "this." + field_ty.arg_name + " = " + field_ty.arg_name + "; "
1165                 if field_ty.to_hu_conv is not None:
1166                     hu_conv_body = hu_conv_body + "\t\t\t" + field_ty.java_ty + " " + field_ty.arg_name + " = obj." + field_ty.arg_name + ";\n"
1167                     hu_conv_body = hu_conv_body + "\t\t\t" + field_ty.to_hu_conv.replace("\n", "\n\t\t\t") + "\n"
1168                     hu_conv_body = hu_conv_body + "\t\t\tthis." + field_ty.arg_name + " = " + field_ty.to_hu_conv_name + ";\n"
1169                 else:
1170                     hu_conv_body = hu_conv_body + "\t\t\tthis." + field_ty.arg_name + " = obj." + field_ty.arg_name + ";\n"
1171                 init_meth_jty_str = init_meth_jty_str + field_ty.java_fn_ty_arg
1172             out_java +=  ("\t\t\t" + var.var_name + "(" + init_meth_params + ") { ")
1173             out_java +=  (init_meth_body)
1174             out_java +=  ("}\n")
1175             out_java += ("\t\t}\n")
1176             out_java_enum += ("\t\t}\n")
1177             java_hu_subclasses = java_hu_subclasses + "\t\tprivate " + var.var_name + "(long ptr, bindings." + struct_name + "." + var.var_name + " obj) {\n\t\t\tsuper(null, ptr);\n"
1178             java_hu_subclasses = java_hu_subclasses + hu_conv_body
1179             java_hu_subclasses = java_hu_subclasses + "\t\t}\n\t}\n"
1180             init_meth_jty_strs[var.var_name] = init_meth_jty_str
1181         out_java += ("\t\tstatic native void init();\n")
1182         out_java += ("\t}\n")
1183         out_java_enum += ("\t\tassert false; return null; // Unreachable without extending the (internal) bindings interface\n\t}\n\n")
1184         out_java_enum += (java_hu_subclasses)
1185         out_java += ("\tstatic { " + struct_name + ".init(); }\n")
1186         out_java += ("\tpublic static native " + struct_name + " " + struct_name + "_ref_from_ptr(long ptr);\n");
1187
1188         out_c += (self.c_complex_enum_pfx(struct_name, [x.var_name for x in variant_list], init_meth_jty_strs))
1189
1190         out_c += (self.c_fn_ty_pfx + self.c_complex_enum_pass_ty(struct_name) + " " + self.c_fn_name_define_pfx(struct_name + "_ref_from_ptr", True) + self.ptr_c_ty + " ptr) {\n")
1191         out_c += ("\t" + struct_name + " *obj = (" + struct_name + "*)untag_ptr(ptr);\n")
1192         out_c += ("\tswitch(obj->tag) {\n")
1193         for var in variant_list:
1194             out_c += ("\t\tcase " + struct_name + "_" + var.var_name + ": {\n")
1195             c_params = []
1196             for idx, (field_map, field_docs) in enumerate(var.fields):
1197                 if field_map.ret_conv is not None:
1198                     out_c += ("\t\t\t" + field_map.ret_conv[0].replace("\n", "\n\t\t\t"))
1199                     if var.tuple_variant:
1200                         out_c += "obj->" + camel_to_snake(var.var_name)
1201                     else:
1202                         out_c += "obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name
1203                     out_c += (field_map.ret_conv[1].replace("\n", "\n\t\t\t") + "\n")
1204                     c_params.append(field_map.ret_conv_name)
1205                 else:
1206                     if var.tuple_variant:
1207                         c_params.append("obj->" + camel_to_snake(var.var_name))
1208                     else:
1209                         c_params.append("obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name)
1210             out_c += ("\t\t\treturn " + self.c_constr_native_complex_enum(struct_name, var.var_name, c_params) + ";\n")
1211             out_c += ("\t\t}\n")
1212         out_c += ("\t\tdefault: abort();\n")
1213         out_c += ("\t}\n}\n")
1214         return (out_java, out_java_enum, out_c)
1215
1216     def map_opaque_struct(self, struct_name, struct_doc_comment):
1217         out_opaque_struct_human = ""
1218         out_opaque_struct_human += self.hu_struct_file_prefix
1219         out_opaque_struct_human += "\n/**\n * " + struct_doc_comment.replace("\n", "\n * ") + "\n */\n"
1220         out_opaque_struct_human += "@SuppressWarnings(\"unchecked\") // We correctly assign various generic arrays\n"
1221         hu_name = struct_name.replace("LDKC2Tuple", "TwoTuple").replace("LDKC3Tuple", "ThreeTuple").replace("LDK", "")
1222         out_opaque_struct_human += ("public class " + hu_name + " extends CommonBase")
1223         if struct_name.startswith("LDKLocked") or struct_name.startswith("LDKReadOnly"):
1224             out_opaque_struct_human += (" implements AutoCloseable")
1225         out_opaque_struct_human += (" {\n")
1226         out_opaque_struct_human += ("\t" + hu_name + "(Object _dummy, long ptr) { super(ptr); }\n")
1227         if struct_name.startswith("LDKLocked") or struct_name.startswith("LDKReadOnly"):
1228             out_opaque_struct_human += ("\t@Override public void close() {\n")
1229         else:
1230             out_opaque_struct_human += ("\t@Override @SuppressWarnings(\"deprecation\")\n")
1231             out_opaque_struct_human += ("\tprotected void finalize() throws Throwable {\n")
1232             out_opaque_struct_human += ("\t\tsuper.finalize();\n")
1233         out_opaque_struct_human += ("\t\tif (ptr != 0) { bindings." + struct_name.replace("LDK","") + "_free(ptr); }\n")
1234         out_opaque_struct_human += ("\t}\n\n")
1235         return out_opaque_struct_human
1236
1237     def map_tuple(self, struct_name):
1238         return self.map_opaque_struct(struct_name, "A Tuple")
1239
1240     def map_result(self, struct_name, res_map, err_map):
1241         human_ty = struct_name.replace("LDKCResult", "Result")
1242         java_hu_struct = ""
1243         java_hu_struct += self.hu_struct_file_prefix
1244         java_hu_struct += "public class " + human_ty + " extends CommonBase {\n"
1245         java_hu_struct += "\tprivate " + human_ty + "(Object _dummy, long ptr) { super(ptr); }\n"
1246         java_hu_struct += "\tprotected void finalize() throws Throwable {\n"
1247         java_hu_struct += "\t\tif (ptr != 0) { bindings." + struct_name.replace("LDK","") + "_free(ptr); } super.finalize();\n"
1248         java_hu_struct += "\t}\n\n"
1249         java_hu_struct += "\tstatic " + human_ty + " constr_from_ptr(long ptr) {\n"
1250         java_hu_struct += "\t\tif (bindings." + struct_name.replace("LDK", "") + "_is_ok(ptr)) {\n"
1251         java_hu_struct += "\t\t\treturn new " + human_ty + "_OK(null, ptr);\n"
1252         java_hu_struct += "\t\t} else {\n"
1253         java_hu_struct += "\t\t\treturn new " + human_ty + "_Err(null, ptr);\n"
1254         java_hu_struct += "\t\t}\n"
1255         java_hu_struct += "\t}\n"
1256
1257         java_hu_struct += "\tpublic static final class " + human_ty + "_OK extends " + human_ty + " {\n"
1258
1259         if res_map.java_hu_ty != "void":
1260             java_hu_struct += "\t\tpublic final " + res_map.java_hu_ty + " res;\n"
1261         java_hu_struct += "\t\tprivate " + human_ty + "_OK(Object _dummy, long ptr) {\n"
1262         java_hu_struct += "\t\t\tsuper(_dummy, ptr);\n"
1263         if res_map.java_hu_ty == "void":
1264             pass
1265         elif res_map.to_hu_conv is not None:
1266             java_hu_struct += "\t\t\t" + res_map.java_ty + " res = bindings." + struct_name.replace("LDK", "") + "_get_ok(ptr);\n"
1267             java_hu_struct += "\t\t\t" + res_map.to_hu_conv.replace("\n", "\n\t\t\t")
1268             java_hu_struct += "\n\t\t\tthis.res = " + res_map.to_hu_conv_name + ";\n"
1269         else:
1270             java_hu_struct += "\t\t\tthis.res = bindings." + struct_name.replace("LDK", "") + "_get_ok(ptr);\n"
1271         java_hu_struct += "\t\t}\n"
1272         java_hu_struct += "\t}\n\n"
1273
1274         java_hu_struct += "\tpublic static final class " + human_ty + "_Err extends " + human_ty + " {\n"
1275         if err_map.java_hu_ty != "void":
1276             java_hu_struct += "\t\tpublic final " + err_map.java_hu_ty + " err;\n"
1277         java_hu_struct += "\t\tprivate " + human_ty + "_Err(Object _dummy, long ptr) {\n"
1278         java_hu_struct += "\t\t\tsuper(_dummy, ptr);\n"
1279         if err_map.java_hu_ty == "void":
1280             pass
1281         elif err_map.to_hu_conv is not None:
1282             java_hu_struct += "\t\t\t" + err_map.java_ty + " err = bindings." + struct_name.replace("LDK", "") + "_get_err(ptr);\n"
1283             java_hu_struct += "\t\t\t" + err_map.to_hu_conv.replace("\n", "\n\t\t\t")
1284             java_hu_struct += "\n\t\t\tthis.err = " + err_map.to_hu_conv_name + ";\n"
1285         else:
1286             java_hu_struct += "\t\t\tthis.err = bindings." + struct_name.replace("LDK", "") + "_get_err(ptr);\n"
1287         java_hu_struct += "\t\t}\n"
1288
1289         java_hu_struct += "\t}\n\n"
1290         return java_hu_struct
1291
1292     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):
1293         out_java = ""
1294         out_c = ""
1295         out_java_struct = None
1296
1297         out_java += ("\tpublic static native ")
1298         out_c += (self.c_fn_ty_pfx)
1299         out_c += (return_type_info.c_ty)
1300         out_java += (return_type_info.java_ty)
1301         if return_type_info.ret_conv is not None:
1302             ret_conv_pfx, ret_conv_sfx = return_type_info.ret_conv
1303         out_java += (" " + method_name + "(")
1304         have_args = len(argument_types) > 1 or (len(argument_types) > 0 and argument_types[0].c_ty != "void")
1305         out_c += (" " + self.c_fn_name_define_pfx(method_name, have_args))
1306
1307         for idx, arg_conv_info in enumerate(argument_types):
1308             if idx != 0:
1309                 out_java += (", ")
1310                 out_c += (", ")
1311             if arg_conv_info.c_ty != "void":
1312                 out_c += (arg_conv_info.c_ty + " " + arg_conv_info.arg_name)
1313                 out_java += (arg_conv_info.java_ty + " " + arg_conv_info.arg_name)
1314
1315         out_java_struct = ""
1316         extra_java_struct_out = ""
1317         if not args_known:
1318             out_java_struct += ("\t// Skipped " + method_name + "\n")
1319         else:
1320             if doc_comment is not None:
1321                 out_java_struct += "\t/**\n\t * " + doc_comment.replace("\n", "\n\t * ") + "\n\t */\n"
1322             if return_type_info.nullable:
1323                 out_java_struct += "\t@Nullable\n"
1324             if not takes_self:
1325                 if meth_n == "new":
1326                     out_java_struct += "\tpublic static " + return_type_info.java_hu_ty + " of("
1327                 elif meth_n == "default":
1328                     out_java_struct += "\tpublic static " + return_type_info.java_hu_ty + " with_default("
1329                 else:
1330                     out_java_struct += "\tpublic static " + return_type_info.java_hu_ty + " " + meth_n + "("
1331             elif meth_n == "clone_ptr" or (struct_meth.startswith("LDKCResult") and (meth_n == "get_ok" or meth_n == "get_err")):
1332                 out_java_struct += ("\t" + return_type_info.java_hu_ty + " " + meth_n + "(")
1333             else:
1334                 if meth_n == "hash" and return_type_info.java_hu_ty == "long":
1335                     extra_java_struct_out = "\t@Override public int hashCode() {\n"
1336                     extra_java_struct_out += "\t\treturn (int)this.hash();\n"
1337                     extra_java_struct_out += "\t}\n"
1338                 elif meth_n == "eq" and return_type_info.java_hu_ty == "boolean":
1339                     extra_java_struct_out = "\t@Override public boolean equals(Object o) {\n"
1340                     extra_java_struct_out += "\t\tif (!(o instanceof " + struct_meth + ")) return false;\n"
1341                     extra_java_struct_out += "\t\treturn this.eq((" + struct_meth + ")o);\n"
1342                     extra_java_struct_out += "\t}\n"
1343                 if meth_n == "wait":
1344                     meth_n = "wait_indefinite"
1345                 out_java_struct += ("\tpublic " + return_type_info.java_hu_ty + " " + meth_n + "(")
1346             for idx, arg in enumerate(argument_types):
1347                 if idx != 0:
1348                     if not takes_self or idx > 1:
1349                         out_java_struct += ", "
1350                 elif takes_self:
1351                     continue
1352                 if arg.java_ty != "void":
1353                     if arg.arg_name in default_constructor_args:
1354                         assert not arg.nullable
1355                         for explode_idx, explode_arg in enumerate(default_constructor_args[arg.arg_name]):
1356                             if explode_idx != 0:
1357                                 out_java_struct += (", ")
1358                             out_java_struct += (
1359                                 explode_arg.java_hu_ty + " " + arg.arg_name + "_" + explode_arg.arg_name)
1360                     else:
1361                         if arg.nullable:
1362                             out_java_struct += "@Nullable "
1363                         ty_string = self.fully_qualified_hu_ty_path(arg)
1364                         out_java_struct += ty_string + " " + arg.arg_name
1365         out_java += (");\n")
1366         out_c += (") {\n")
1367         if out_java_struct is not None:
1368             out_java_struct += (") {\n")
1369         for info in argument_types:
1370             if info.arg_conv is not None:
1371                 out_c += ("\t" + info.arg_conv.replace('\n', "\n\t") + "\n")
1372         if return_type_info.ret_conv is not None:
1373             out_c += ("\t" + ret_conv_pfx.replace('\n', '\n\t'))
1374         elif return_type_info.c_ty != "void":
1375             out_c += ("\t" + return_type_info.c_ty + " ret_val = ")
1376         else:
1377             out_c += ("\t")
1378         if c_call_string is None:
1379             out_c += (method_name + "(")
1380         else:
1381             out_c += (c_call_string)
1382         for idx, info in enumerate(argument_types):
1383             if info.arg_conv_name is not None:
1384                 if idx != 0:
1385                     out_c += (", ")
1386                 elif c_call_string is not None:
1387                     continue
1388                 out_c += (info.arg_conv_name)
1389         out_c += (")")
1390         if return_type_info.ret_conv is not None:
1391             out_c += (ret_conv_sfx.replace('\n', '\n\t'))
1392         else:
1393             out_c += (";")
1394         for info in argument_types:
1395             if info.arg_conv_cleanup is not None:
1396                 out_c += ("\n\t" + info.arg_conv_cleanup.replace("\n", "\n\t"))
1397         if return_type_info.ret_conv is not None:
1398             out_c += ("\n\treturn " + return_type_info.ret_conv_name + ";")
1399         elif return_type_info.c_ty != "void":
1400             out_c += ("\n\treturn ret_val;")
1401         out_c += ("\n}\n\n")
1402
1403         if args_known:
1404             out_java_struct += ("\t\t")
1405             if return_type_info.java_ty != "void":
1406                 out_java_struct += (return_type_info.java_ty + " ret = ")
1407             out_java_struct += ("bindings." + method_name + "(")
1408             for idx, info in enumerate(argument_types):
1409                 if idx != 0:
1410                     out_java_struct += (", ")
1411                 if idx == 0 and takes_self:
1412                     out_java_struct += ("this.ptr")
1413                 elif info.arg_name in default_constructor_args:
1414                     out_java_struct += ("bindings." + info.java_hu_ty + "_new(")
1415                     for explode_idx, explode_arg in enumerate(default_constructor_args[info.arg_name]):
1416                         if explode_idx != 0:
1417                             out_java_struct += (", ")
1418                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1419                         if explode_arg.from_hu_conv is not None:
1420                             out_java_struct += (
1421                                 explode_arg.from_hu_conv[0].replace(explode_arg.arg_name, expl_arg_name))
1422                         else:
1423                             out_java_struct += (expl_arg_name)
1424                     out_java_struct += (")")
1425                 elif info.from_hu_conv is not None:
1426                     out_java_struct += (info.from_hu_conv[0])
1427                 else:
1428                     out_java_struct += (info.arg_name)
1429             out_java_struct += (");\n")
1430
1431             # This is completely nuts. The OpenJDK JRE JIT will optimize out a object which is on
1432             # the stack, calling its finalizer immediately even if member methods are *actively
1433             # executing* on the same object, as long as said object is on the stack. There is no
1434             # concrete specification for when the optimizer is allowed to do this, and when it is
1435             # not, so there is absolutely no way to be certain that this fix suffices.
1436             #
1437             # Instead, the "Java Language Specification" says only that an object is reachable
1438             # (i.e. will not yet be finalized) if it "can be accessed in any potential continuing
1439             # computation from any live thread". To any sensible reader this would mean actively
1440             # executing a member function on an object would make it not eligible for finalization.
1441             # But, no, dear reader, this statement does not say that. Well, okay, it says that,
1442             # very explicitly in fact, but those are just, like, words, man.
1443             #
1444             # In the seemingly non-normative text further down, a few examples of things the
1445             # optimizer can do are given, including "if the values in an object's fields are
1446             # stored in registers[, t]he may then access the registers instead of the object, and
1447             # never access the object again[, implying] that the object is garbage". This appears
1448             # to fully contradict both the above statement, the API documentation in java.lang.ref
1449             # regarding when a reference is "strongly reachable", and basic common sense. There is
1450             # no concrete set of limitations stated, however, seemingly implying the JIT could
1451             # decide your code would run faster by simply garbage collecting everything
1452             # immediately, ensuring your code finishes soon, just by SEGFAULT. Thus, we're really
1453             # entirely flying blind here. We add some fences and hope that its sufficient, but
1454             # with no specification to rely on, we cannot be certain of anything.
1455             #
1456             # TL;DR: The Java Language "Specification" provides no real guarantees on when an
1457             # object will be considered available for garbage collection once the JIT kicks in, so
1458             # we put in some fences and hope to god the JIT doesn't get smarter/more broken.
1459             for idx, info in enumerate(argument_types):
1460                 if idx == 0 and takes_self:
1461                     out_java_struct += ("\t\tReference.reachabilityFence(this);\n")
1462                 elif info.arg_name in default_constructor_args:
1463                     for explode_idx, explode_arg in enumerate(default_constructor_args[info.arg_name]):
1464                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1465                         out_java_struct += ("\t\tReference.reachabilityFence(" + expl_arg_name + ");\n")
1466                 elif info.c_ty != "void":
1467                     out_java_struct += ("\t\tReference.reachabilityFence(" + info.arg_name + ");\n")
1468
1469             if return_type_info.java_ty == "long" and return_type_info.java_hu_ty != "long":
1470                 out_java_struct += "\t\tif (ret >= 0 && ret <= 4096) { return null; }\n"
1471
1472             if return_type_info.to_hu_conv is not None:
1473                 if not takes_self:
1474                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t").replace("this",
1475                                                                                                                return_type_info.to_hu_conv_name) + "\n")
1476                 else:
1477                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t") + "\n")
1478
1479             for idx, info in enumerate(argument_types):
1480                 if idx == 0 and takes_self:
1481                     pass
1482                 elif info.arg_name in default_constructor_args:
1483                     for explode_arg in default_constructor_args[info.arg_name]:
1484                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
1485                         if explode_arg.from_hu_conv is not None and return_type_info.to_hu_conv_name:
1486                             out_java_struct += ("\t\t" + explode_arg.from_hu_conv[1].replace(explode_arg.arg_name,
1487                                                                                                expl_arg_name).replace(
1488                                 "this", return_type_info.to_hu_conv_name) + ";\n")
1489                 elif info.from_hu_conv is not None and info.from_hu_conv[1] != "":
1490                     if not takes_self and return_type_info.to_hu_conv_name is not None:
1491                         out_java_struct += (
1492                             "\t\t" + info.from_hu_conv[1].replace("this", return_type_info.to_hu_conv_name).replace("\n", "\n\t\t") + ";\n")
1493                     else:
1494                         out_java_struct += ("\t\t" + info.from_hu_conv[1].replace("\n", "\n\t\t") + ";\n")
1495
1496             if takes_self and not takes_self_as_ref:
1497                 out_java_struct += "\t\t" + argument_types[0].from_hu_conv[1].replace("\n", "\n\t\t").replace("this_arg", "this") + ";\n"
1498             if return_type_info.to_hu_conv_name is not None:
1499                 out_java_struct += ("\t\treturn " + return_type_info.to_hu_conv_name + ";\n")
1500             elif return_type_info.java_ty != "void" and return_type_info.rust_obj != "LDK" + struct_meth:
1501                 out_java_struct += ("\t\treturn ret;\n")
1502             out_java_struct += ("\t}\n\n")
1503
1504         return (out_java, out_c, out_java_struct + extra_java_struct_out)
1505
1506     def cleanup(self):
1507         pass