Add a timeout to NioPeerHandler.connect
[ldk-java] / java_strings.py
1 from bindingstypes import *
2 from enum import Enum
3
4 class Target(Enum):
5     JAVA = 1,
6     ANDROID = 2
7
8 class Consts:
9     def __init__(self, DEBUG: bool, target: Target, **kwargs):
10         self.target = target
11         self.c_array_class_caches = set()
12         self.c_type_map = dict(
13             uint8_t = ['byte'],
14             uint16_t = ['short'],
15             uint32_t = ['int'],
16             uint64_t = ['long'],
17         )
18
19         self.to_hu_conv_templates = dict(
20             ptr = '{human_type} {var_name}_hu_conv = new {human_type}(null, {var_name});',
21             default = '{human_type} {var_name}_hu_conv = new {human_type}(null, {var_name});'
22         )
23
24         self.bindings_header = """package org.ldk.impl;
25 import org.ldk.enums.*;
26
27 public class bindings {
28         public static class VecOrSliceDef {
29                 public long dataptr;
30                 public long datalen;
31                 public long stride;
32                 public VecOrSliceDef(long dataptr, long datalen, long stride) {
33                         this.dataptr = dataptr; this.datalen = datalen; this.stride = stride;
34                 }
35         }
36         static {
37                 System.loadLibrary(\"lightningjni\");
38                 init(java.lang.Enum.class, VecOrSliceDef.class);
39                 init_class_cache();
40         }
41         static native void init(java.lang.Class c, java.lang.Class slicedef);
42         static native void init_class_cache();
43
44         public static native boolean deref_bool(long ptr);
45         public static native long deref_long(long ptr);
46         public static native void free_heap_ptr(long ptr);
47         public static native byte[] read_bytes(long ptr, long len);
48         public static native byte[] get_u8_slice_bytes(long slice_ptr);
49         public static native long bytes_to_u8_vec(byte[] bytes);
50         public static native long new_txpointer_copy_data(byte[] txdata);
51         public static native void txpointer_free(long ptr);
52         public static native byte[] txpointer_get_buffer(long ptr);
53         public static native long vec_slice_len(long vec);
54         public static native long new_empty_slice_vec();
55
56 """
57
58         self.bindings_footer = "}\n"
59
60         self.util_fn_pfx = """package org.ldk.structs;
61 import org.ldk.impl.bindings;
62 import java.util.Arrays;
63
64 public class UtilMethods {
65 """
66         self.util_fn_sfx = "}"
67         self.common_base = """package org.ldk.structs;
68 import java.util.LinkedList;
69 class CommonBase {
70         long ptr;
71         LinkedList<Object> ptrs_to = new LinkedList();
72         protected CommonBase(long ptr) { this.ptr = ptr; }
73         public long _test_only_get_ptr() { return this.ptr; }
74 }
75 """
76
77         self.c_file_pfx = """#include \"org_ldk_impl_bindings.h\"
78 #include <rust_types.h>
79 #include <lightning.h>
80 #include <string.h>
81 #include <stdatomic.h>
82 #include <stdlib.h>
83
84 """
85
86         if not DEBUG:
87             self.c_file_pfx = self.c_file_pfx + """#define MALLOC(a, _) malloc(a)
88 #define FREE(p) if ((long)(p) > 1024) { free(p); }
89 #define DO_ASSERT(a) (void)(a)
90 #define CHECK(a)
91 """
92         else:
93             self.c_file_pfx = self.c_file_pfx + """#include <assert.h>
94 // Always run a, then assert it is true:
95 #define DO_ASSERT(a) do { bool _assert_val = (a); assert(_assert_val); } while(0)
96 // Assert a is true or do nothing
97 #define CHECK(a) DO_ASSERT(a)
98
99 // Running a leak check across all the allocations and frees of the JDK is a mess,
100 // so instead we implement our own naive leak checker here, relying on the -wrap
101 // linker option to wrap malloc/calloc/realloc/free, tracking everyhing allocated
102 // and free'd in Rust or C across the generated bindings shared library.
103 #include <threads.h>
104 #include <execinfo.h>
105 #include <unistd.h>
106 static mtx_t allocation_mtx;
107
108 void __attribute__((constructor)) init_mtx() {
109         DO_ASSERT(mtx_init(&allocation_mtx, mtx_plain) == thrd_success);
110 }
111
112 #define BT_MAX 128
113 typedef struct allocation {
114         struct allocation* next;
115         void* ptr;
116         const char* struct_name;
117         void* bt[BT_MAX];
118         int bt_len;
119         size_t alloc_len;
120 } allocation;
121 static allocation* allocation_ll = NULL;
122
123 void* __real_malloc(size_t len);
124 void* __real_calloc(size_t nmemb, size_t len);
125 static void new_allocation(void* res, const char* struct_name, size_t len) {
126         allocation* new_alloc = __real_malloc(sizeof(allocation));
127         new_alloc->ptr = res;
128         new_alloc->struct_name = struct_name;
129         new_alloc->bt_len = backtrace(new_alloc->bt, BT_MAX);
130         new_alloc->alloc_len = len;
131         DO_ASSERT(mtx_lock(&allocation_mtx) == thrd_success);
132         new_alloc->next = allocation_ll;
133         allocation_ll = new_alloc;
134         DO_ASSERT(mtx_unlock(&allocation_mtx) == thrd_success);
135 }
136 static void* MALLOC(size_t len, const char* struct_name) {
137         void* res = __real_malloc(len);
138         new_allocation(res, struct_name, len);
139         return res;
140 }
141 void __real_free(void* ptr);
142 static void alloc_freed(void* ptr) {
143         allocation* p = NULL;
144         DO_ASSERT(mtx_lock(&allocation_mtx) == thrd_success);
145         allocation* it = allocation_ll;
146         while (it->ptr != ptr) {
147                 p = it; it = it->next;
148                 if (it == NULL) {
149                         fprintf(stderr, "Tried to free unknown pointer %p at:\\n", ptr);
150                         void* bt[BT_MAX];
151                         int bt_len = backtrace(bt, BT_MAX);
152                         backtrace_symbols_fd(bt, bt_len, STDERR_FILENO);
153                         fprintf(stderr, "\\n\\n");
154                         DO_ASSERT(mtx_unlock(&allocation_mtx) == thrd_success);
155                         return; // addrsan should catch malloc-unknown and print more info than we have
156                 }
157         }
158         if (p) { p->next = it->next; } else { allocation_ll = it->next; }
159         DO_ASSERT(mtx_unlock(&allocation_mtx) == thrd_success);
160         DO_ASSERT(it->ptr == ptr);
161         __real_free(it);
162 }
163 static void FREE(void* ptr) {
164         if ((long)ptr < 1024) return; // Rust loves to create pointers to the NULL page for dummys
165         alloc_freed(ptr);
166         __real_free(ptr);
167 }
168
169 void* __wrap_malloc(size_t len) {
170         void* res = __real_malloc(len);
171         new_allocation(res, "malloc call", len);
172         return res;
173 }
174 void* __wrap_calloc(size_t nmemb, size_t len) {
175         void* res = __real_calloc(nmemb, len);
176         new_allocation(res, "calloc call", len);
177         return res;
178 }
179 void __wrap_free(void* ptr) {
180         if (ptr == NULL) return;
181         alloc_freed(ptr);
182         __real_free(ptr);
183 }
184
185 void* __real_realloc(void* ptr, size_t newlen);
186 void* __wrap_realloc(void* ptr, size_t len) {
187         if (ptr != NULL) alloc_freed(ptr);
188         void* res = __real_realloc(ptr, len);
189         new_allocation(res, "realloc call", len);
190         return res;
191 }
192 void __wrap_reallocarray(void* ptr, size_t new_sz) {
193         // Rust doesn't seem to use reallocarray currently
194         DO_ASSERT(false);
195 }
196
197 void __attribute__((destructor)) check_leaks() {
198         size_t alloc_count = 0;
199         size_t alloc_size = 0;
200         for (allocation* a = allocation_ll; a != NULL; a = a->next) {
201                 fprintf(stderr, "%s %p (%lu bytes) remains:\\n", a->struct_name, a->ptr, a->alloc_len);
202                 backtrace_symbols_fd(a->bt, a->bt_len, STDERR_FILENO);
203                 fprintf(stderr, "\\n\\n");
204                 alloc_count++;
205                 alloc_size += a->alloc_len;
206         }
207         fprintf(stderr, "%lu allocations remained for %lu bytes.\\n", alloc_count, alloc_size);
208         DO_ASSERT(allocation_ll == NULL);
209 }
210 """
211         self.c_file_pfx = self.c_file_pfx + """
212 static jmethodID ordinal_meth = NULL;
213 static jmethodID slicedef_meth = NULL;
214 static jclass slicedef_cls = NULL;
215 JNIEXPORT void Java_org_ldk_impl_bindings_init(JNIEnv * env, jclass _b, jclass enum_class, jclass slicedef_class) {
216         ordinal_meth = (*env)->GetMethodID(env, enum_class, "ordinal", "()I");
217         CHECK(ordinal_meth != NULL);
218         slicedef_meth = (*env)->GetMethodID(env, slicedef_class, "<init>", "(JJJ)V");
219         CHECK(slicedef_meth != NULL);
220         slicedef_cls = (*env)->NewGlobalRef(env, slicedef_class);
221         CHECK(slicedef_cls != NULL);
222 }
223
224 JNIEXPORT jboolean JNICALL Java_org_ldk_impl_bindings_deref_1bool (JNIEnv * env, jclass _a, jlong ptr) {
225         return *((bool*)ptr);
226 }
227 JNIEXPORT jlong JNICALL Java_org_ldk_impl_bindings_deref_1long (JNIEnv * env, jclass _a, jlong ptr) {
228         return *((long*)ptr);
229 }
230 JNIEXPORT void JNICALL Java_org_ldk_impl_bindings_free_1heap_1ptr (JNIEnv * env, jclass _a, jlong ptr) {
231         FREE((void*)ptr);
232 }
233 JNIEXPORT jbyteArray JNICALL Java_org_ldk_impl_bindings_read_1bytes (JNIEnv * env, jclass _b, jlong ptr, jlong len) {
234         jbyteArray ret_arr = (*env)->NewByteArray(env, len);
235         (*env)->SetByteArrayRegion(env, ret_arr, 0, len, (unsigned char*)ptr);
236         return ret_arr;
237 }
238 JNIEXPORT jbyteArray JNICALL Java_org_ldk_impl_bindings_get_1u8_1slice_1bytes (JNIEnv * env, jclass _b, jlong slice_ptr) {
239         LDKu8slice *slice = (LDKu8slice*)slice_ptr;
240         jbyteArray ret_arr = (*env)->NewByteArray(env, slice->datalen);
241         (*env)->SetByteArrayRegion(env, ret_arr, 0, slice->datalen, slice->data);
242         return ret_arr;
243 }
244 JNIEXPORT int64_t impl_bindings_bytes_1to_1u8_1vec (JNIEnv * env, jclass _b, jbyteArray bytes) {
245         LDKCVec_u8Z *vec = (LDKCVec_u8Z*)MALLOC(sizeof(LDKCVec_u8Z), "LDKCVec_u8");
246         vec->datalen = (*env)->GetArrayLength(env, bytes);
247         vec->data = (uint8_t*)MALLOC(vec->datalen, "LDKCVec_u8Z Bytes");
248         (*env)->GetByteArrayRegion (env, bytes, 0, vec->datalen, vec->data);
249         return (long)vec;
250 }
251 JNIEXPORT jbyteArray JNICALL Java_org_ldk_impl_bindings_txpointer_1get_1buffer (JNIEnv * env, jclass _b, jlong ptr) {
252         LDKTransaction *txdata = (LDKTransaction*)ptr;
253         LDKu8slice slice;
254         slice.data = txdata->data;
255         slice.datalen = txdata->datalen;
256         return Java_org_ldk_impl_bindings_get_1u8_1slice_1bytes(env, _b, (long)&slice);
257 }
258 JNIEXPORT int64_t JNICALL Java_org_ldk_impl_bindings_new_1txpointer_1copy_1data (JNIEnv * env, jclass _b, jbyteArray bytes) {
259         LDKTransaction *txdata = (LDKTransaction*)MALLOC(sizeof(LDKTransaction), "LDKTransaction");
260         txdata->datalen = (*env)->GetArrayLength(env, bytes);
261         txdata->data = (uint8_t*)MALLOC(txdata->datalen, "Tx Data Bytes");
262         txdata->data_is_owned = false;
263         (*env)->GetByteArrayRegion (env, bytes, 0, txdata->datalen, txdata->data);
264         return (long)txdata;
265 }
266 JNIEXPORT void JNICALL Java_org_ldk_impl_bindings_txpointer_1free (JNIEnv * env, jclass _b, jlong ptr) {
267         LDKTransaction *tx = (LDKTransaction*)ptr;
268         tx->data_is_owned = true;
269         Transaction_free(*tx);
270         FREE((void*)ptr);
271 }
272 JNIEXPORT jlong JNICALL Java_org_ldk_impl_bindings_vec_1slice_1len (JNIEnv * env, jclass _a, jlong ptr) {
273         // Check offsets of a few Vec types are all consistent as we're meant to be generic across types
274         _Static_assert(offsetof(LDKCVec_u8Z, datalen) == offsetof(LDKCVec_SignatureZ, datalen), "Vec<*> needs to be mapped identically");
275         _Static_assert(offsetof(LDKCVec_u8Z, datalen) == offsetof(LDKCVec_MessageSendEventZ, datalen), "Vec<*> needs to be mapped identically");
276         _Static_assert(offsetof(LDKCVec_u8Z, datalen) == offsetof(LDKCVec_EventZ, datalen), "Vec<*> needs to be mapped identically");
277         _Static_assert(offsetof(LDKCVec_u8Z, datalen) == offsetof(LDKCVec_C2Tuple_usizeTransactionZZ, datalen), "Vec<*> needs to be mapped identically");
278         LDKCVec_u8Z *vec = (LDKCVec_u8Z*)ptr;
279         return (long)vec->datalen;
280 }
281 JNIEXPORT int64_t JNICALL Java_org_ldk_impl_bindings_new_1empty_1slice_1vec (JNIEnv * env, jclass _b) {
282         // Check sizes of a few Vec types are all consistent as we're meant to be generic across types
283         _Static_assert(sizeof(LDKCVec_u8Z) == sizeof(LDKCVec_SignatureZ), "Vec<*> needs to be mapped identically");
284         _Static_assert(sizeof(LDKCVec_u8Z) == sizeof(LDKCVec_MessageSendEventZ), "Vec<*> needs to be mapped identically");
285         _Static_assert(sizeof(LDKCVec_u8Z) == sizeof(LDKCVec_EventZ), "Vec<*> needs to be mapped identically");
286         _Static_assert(sizeof(LDKCVec_u8Z) == sizeof(LDKCVec_C2Tuple_usizeTransactionZZ), "Vec<*> needs to be mapped identically");
287         LDKCVec_u8Z *vec = (LDKCVec_u8Z*)MALLOC(sizeof(LDKCVec_u8Z), "Empty LDKCVec");
288         vec->data = NULL;
289         vec->datalen = 0;
290         return (long)vec;
291 }
292
293 // We assume that CVec_u8Z and u8slice are the same size and layout (and thus pointers to the two can be mixed)
294 _Static_assert(sizeof(LDKCVec_u8Z) == sizeof(LDKu8slice), "Vec<u8> and [u8] need to have been mapped identically");
295 _Static_assert(offsetof(LDKCVec_u8Z, data) == offsetof(LDKu8slice, data), "Vec<u8> and [u8] need to have been mapped identically");
296 _Static_assert(offsetof(LDKCVec_u8Z, datalen) == offsetof(LDKu8slice, datalen), "Vec<u8> and [u8] need to have been mapped identically");
297
298 _Static_assert(sizeof(jlong) == sizeof(int64_t), "We assume that j-types are the same as C types");
299 _Static_assert(sizeof(jbyte) == sizeof(char), "We assume that j-types are the same as C types");
300 _Static_assert(sizeof(void*) <= 8, "Pointers must fit into 64 bits");
301
302 typedef jlongArray int64_tArray;
303 typedef jbyteArray int8_tArray;
304
305 static inline jstring str_ref_to_java(JNIEnv *env, const char* chars, size_t len) {
306         // Sadly we need to create a temporary because Java can't accept a char* without a 0-terminator
307         char* err_buf = MALLOC(len + 1, "str conv buf");
308         memcpy(err_buf, chars, len);
309         err_buf[len] = 0;
310         jstring err_conv = (*env)->NewStringUTF(env, chars);
311         FREE(err_buf);
312         return err_conv;
313 }
314 """
315
316         self.hu_struct_file_prefix = """package org.ldk.structs;
317
318 import org.ldk.impl.bindings;
319 import org.ldk.enums.*;
320 import org.ldk.util.*;
321 import java.util.Arrays;
322
323 """
324         self.c_fn_ty_pfx = "JNIEXPORT "
325         self.c_fn_args_pfx = "JNIEnv *env, jclass clz"
326         self.file_ext = ".java"
327         self.ptr_c_ty = "int64_t"
328         self.ptr_native_ty = "long"
329         self.result_c_ty = "jclass"
330         self.ptr_arr = "jobjectArray"
331         self.get_native_arr_len_call = ("(*env)->GetArrayLength(env, ", ")")
332
333     def release_native_arr_ptr_call(self, ty_info, arr_var, arr_ptr_var):
334         if ty_info.subty is None or not ty_info.subty.c_ty.endswith("Array"):
335             return "(*env)->ReleasePrimitiveArrayCritical(env, " + arr_var + ", " + arr_ptr_var + ", 0)"
336         return None
337     def create_native_arr_call(self, arr_len, ty_info):
338         if ty_info.c_ty == "int8_tArray":
339             return "(*env)->NewByteArray(env, " + arr_len + ")"
340         elif ty_info.subty.c_ty.endswith("Array"):
341             clz_var = ty_info.java_fn_ty_arg[1:].replace("[", "arr_of_")
342             self.c_array_class_caches.add(clz_var)
343             return "(*env)->NewObjectArray(env, " + arr_len + ", " + clz_var + "_clz, NULL);\n"
344         else:
345             return "(*env)->New" + ty_info.java_ty.strip("[]").title() + "Array(env, " + arr_len + ")"
346     def set_native_arr_contents(self, arr_name, arr_len, ty_info):
347         if ty_info.c_ty == "int8_tArray":
348             return ("(*env)->SetByteArrayRegion(env, " + arr_name + ", 0, " + arr_len + ", ", ")")
349         else:
350             assert False
351     def get_native_arr_contents(self, arr_name, dest_name, arr_len, ty_info, copy):
352         if ty_info.c_ty == "int8_tArray":
353             if copy:
354                 return "(*env)->GetByteArrayRegion(env, " + arr_name + ", 0, " + arr_len + ", " + dest_name + ")"
355             else:
356                 return "(*env)->GetByteArrayElements (env, " + arr_name + ", NULL)"
357         elif not ty_info.java_ty[:len(ty_info.java_ty) - 2].endswith("[]"):
358             return "(*env)->Get" + ty_info.subty.java_ty.title() + "ArrayElements (env, " + arr_name + ", NULL)"
359         else:
360             return None
361     def get_native_arr_elem(self, arr_name, idxc, ty_info):
362         if self.get_native_arr_contents(arr_name, "", "", ty_info, False) is None:
363             return "(*env)->GetObjectArrayElement(env, " + arr_name + ", " + idxc + ")"
364         else:
365             assert False # Only called if above is None
366     def get_native_arr_ptr_call(self, ty_info):
367         if ty_info.subty is not None and ty_info.subty.c_ty.endswith("Array"):
368             return None
369         return ("(*env)->GetPrimitiveArrayCritical(env, ", ", NULL)")
370     def get_native_arr_entry_call(self, ty_info, arr_name, idxc, entry_access):
371         if ty_info.subty is None or not ty_info.subty.c_ty.endswith("Array"):
372             return None
373         return "(*env)->SetObjectArrayElement(env, " + arr_name + ", " + idxc + ", " + entry_access + ")"
374     def cleanup_native_arr_ref_contents(self, arr_name, dest_name, arr_len, ty_info):
375         if ty_info.c_ty == "int8_tArray":
376             return "(*env)->ReleaseByteArrayElements(env, " + arr_name + ", (int8_t*)" + dest_name + ", 0);"
377         else:
378             return "(*env)->Release" + ty_info.java_ty.strip("[]").title() + "ArrayElements(env, " + arr_name + ", " + dest_name + ", 0)"
379
380     def str_ref_to_c_call(self, var_name, str_len):
381         return "str_ref_to_java(env, " + var_name + ", " + str_len + ")"
382
383     def c_fn_name_define_pfx(self, fn_name, has_args):
384         if has_args:
385             return "JNICALL Java_org_ldk_impl_bindings_" + fn_name.replace("_", "_1") + "(JNIEnv *env, jclass clz, "
386         return "JNICALL Java_org_ldk_impl_bindings_" + fn_name.replace("_", "_1") + "(JNIEnv *env, jclass clz"
387
388     def init_str(self):
389         res = ""
390         for ty in self.c_array_class_caches:
391             res = res + "static jclass " + ty + "_clz = NULL;\n"
392         res = res + "JNIEXPORT void Java_org_ldk_impl_bindings_init_1class_1cache(JNIEnv * env, jclass clz) {\n"
393         for ty in self.c_array_class_caches:
394             res = res + "\t" + ty + "_clz = (*env)->FindClass(env, \"" + ty.replace("arr_of_", "[") + "\");\n"
395             res = res + "\tCHECK(" + ty + "_clz != NULL);\n"
396             res = res + "\t" + ty + "_clz = (*env)->NewGlobalRef(env, " + ty + "_clz);\n"
397         res = res + "}\n"
398         return res
399
400     def native_c_unitary_enum_map(self, struct_name, variants, enum_doc_comment):
401         out_java_enum = "package org.ldk.enums;\n\n"
402         out_java = ""
403         out_c = ""
404         out_c = out_c + "static inline " + struct_name + " " + struct_name + "_from_java(" + self.c_fn_args_pfx + ") {\n"
405         out_c = out_c + "\tswitch ((*env)->CallIntMethod(env, clz, ordinal_meth)) {\n"
406
407         if enum_doc_comment is not None:
408             out_java_enum += "/**\n * " + enum_doc_comment.replace("\n", "\n * ") + "\n */\n"
409         out_java_enum += "public enum " + struct_name + " {\n"
410         ord_v = 0
411         for var in variants:
412             out_java_enum = out_java_enum + "\t" + var + ",\n"
413             out_c = out_c + "\t\tcase %d: return %s;\n" % (ord_v, var)
414             ord_v = ord_v + 1
415         out_java_enum = out_java_enum + "\t; static native void init();\n"
416         out_java_enum = out_java_enum + "\tstatic { init(); }\n"
417         out_java_enum = out_java_enum + "}"
418         out_java = out_java + "\tstatic { " + struct_name + ".values(); /* Force enum statics to run */ }\n"
419         out_c = out_c + "\t}\n"
420         out_c = out_c + "\tabort();\n"
421         out_c = out_c + "}\n"
422
423         out_c = out_c + "static jclass " + struct_name + "_class = NULL;\n"
424         for var in variants:
425             out_c = out_c + "static jfieldID " + struct_name + "_" + var + " = NULL;\n"
426         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"
427         out_c = out_c + "\t" + struct_name + "_class = (*env)->NewGlobalRef(env, clz);\n"
428         out_c = out_c + "\tCHECK(" + struct_name + "_class != NULL);\n"
429         for var in variants:
430             out_c = out_c + "\t" + struct_name + "_" + var + " = (*env)->GetStaticFieldID(env, " + struct_name + "_class, \"" + var + "\", \"Lorg/ldk/enums/" + struct_name + ";\");\n"
431             out_c = out_c + "\tCHECK(" + struct_name + "_" + var + " != NULL);\n"
432         out_c = out_c + "}\n"
433         out_c = out_c + "static inline jclass " + struct_name + "_to_java(JNIEnv *env, " + struct_name + " val) {\n"
434         out_c = out_c + "\tswitch (val) {\n"
435         ord_v = 0
436         for var in variants:
437             out_c = out_c + "\t\tcase " + var + ":\n"
438             out_c = out_c + "\t\t\treturn (*env)->GetStaticObjectField(env, " + struct_name + "_class, " + struct_name + "_" + var + ");\n"
439             ord_v = ord_v + 1
440         out_c = out_c + "\t\tdefault: abort();\n"
441         out_c = out_c + "\t}\n"
442         out_c = out_c + "}\n\n"
443
444         return (out_c, out_java_enum, out_java)
445
446     def c_unitary_enum_to_native_call(self, ty_info):
447         return (ty_info.rust_obj + "_to_java(env, ", ")")
448     def native_unitary_enum_to_c_call(self, ty_info):
449         return (ty_info.rust_obj + "_from_java(env, ", ")")
450
451     def c_complex_enum_pfx(self, struct_name, variants, init_meth_jty_strs):
452         out_c = ""
453         for var in variants:
454             out_c = out_c + "static jclass " + struct_name + "_" + var + "_class = NULL;\n"
455             out_c = out_c + "static jmethodID " + struct_name + "_" + var + "_meth = NULL;\n"
456         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"
457         for var_name in variants:
458             out_c = out_c + "\t" + struct_name + "_" + var_name + "_class =\n"
459             if self.target == Target.ANDROID:
460                 out_c = out_c + "\t\t(*env)->NewGlobalRef(env, (*env)->FindClass(env, \"org/ldk/impl/bindings$" + struct_name + "$" + var_name + "\"));\n"
461             else:
462                 out_c = out_c + "\t\t(*env)->NewGlobalRef(env, (*env)->FindClass(env, \"Lorg/ldk/impl/bindings$" + struct_name + "$" + var_name + ";\"));\n"
463             out_c = out_c + "\tCHECK(" + struct_name + "_" + var_name + "_class != NULL);\n"
464             out_c = 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"
465             out_c = out_c + "\tCHECK(" + struct_name + "_" + var_name + "_meth != NULL);\n"
466         out_c = out_c + "}\n"
467         return out_c
468
469     def c_complex_enum_pass_ty(self, struct_name):
470         return "jobject"
471
472     def c_constr_native_complex_enum(self, struct_name, variant, c_params):
473         ret = "(*env)->NewObject(env, " + struct_name + "_" + variant + "_class, " + struct_name + "_" + variant + "_meth"
474         for param in c_params:
475             ret = ret + ", " + param
476         return ret + ")"
477
478     def native_c_map_trait(self, struct_name, field_vars, field_fns, trait_doc_comment):
479         out_java_trait = ""
480         out_java = ""
481
482         # First generate most of the Java code, note that we need information about java method argument strings for C
483         out_java_trait = out_java_trait + self.hu_struct_file_prefix
484         if trait_doc_comment is not None:
485             out_java_trait += "/**\n * " + trait_doc_comment.replace("\n", "\n * ") + "\n */\n"
486         out_java_trait += "@SuppressWarnings(\"unchecked\") // We correctly assign various generic arrays\n"
487         out_java_trait = out_java_trait + "public class " + struct_name.replace("LDK","") + " extends CommonBase {\n"
488         out_java_trait = out_java_trait + "\tfinal bindings." + struct_name + " bindings_instance;\n"
489         out_java_trait = out_java_trait + "\t" + struct_name.replace("LDK", "") + "(Object _dummy, long ptr) { super(ptr); bindings_instance = null; }\n"
490         out_java_trait = out_java_trait + "\tprivate " + struct_name.replace("LDK", "") + "(bindings." + struct_name + " arg"
491         for var in field_vars:
492             if isinstance(var, ConvInfo):
493                 out_java_trait = out_java_trait + ", " + var.java_hu_ty + " " + var.arg_name
494             else:
495                 out_java_trait = out_java_trait + ", bindings." + var[0] + " " + var[1]
496         out_java_trait = out_java_trait + ") {\n"
497         out_java_trait = out_java_trait + "\t\tsuper(bindings." + struct_name + "_new(arg"
498         for var in field_vars:
499             if isinstance(var, ConvInfo):
500                 if var.from_hu_conv is not None:
501                     out_java_trait = out_java_trait + ", " + var.from_hu_conv[0]
502                 else:
503                     out_java_trait = out_java_trait + ", " + var.arg_name
504             else:
505                 out_java_trait = out_java_trait + ", " + var[1]
506         out_java_trait = out_java_trait + "));\n"
507         out_java_trait = out_java_trait + "\t\tthis.ptrs_to.add(arg);\n"
508         for var in field_vars:
509             if isinstance(var, ConvInfo):
510                 if var.from_hu_conv is not None and var.from_hu_conv[1] != "":
511                     out_java_trait = out_java_trait + "\t\t" + var.from_hu_conv[1].replace("\n", "\n\t\t") + ";\n"
512             else:
513                 out_java_trait = out_java_trait + "\t\tthis.ptrs_to.add(" + var[1] + ");\n"
514         out_java_trait = out_java_trait + "\t\tthis.bindings_instance = arg;\n"
515         out_java_trait = out_java_trait + "\t}\n"
516         out_java_trait = out_java_trait + "\t@Override @SuppressWarnings(\"deprecation\")\n"
517         out_java_trait = out_java_trait + "\tprotected void finalize() throws Throwable {\n"
518         out_java_trait = out_java_trait + "\t\tif (ptr != 0) { bindings." + struct_name.replace("LDK","") + "_free(ptr); } super.finalize();\n"
519         out_java_trait = out_java_trait + "\t}\n\n"
520
521         java_trait_constr = "\tprivate static class " + struct_name + "Holder { " + struct_name.replace("LDK", "") + " held; }\n"
522         java_trait_constr = java_trait_constr + "\tpublic static " + struct_name.replace("LDK", "") + " new_impl(" + struct_name.replace("LDK", "") + "Interface arg"
523         for var in field_vars:
524             if isinstance(var, ConvInfo):
525                 java_trait_constr = java_trait_constr + ", " + var.java_hu_ty + " " + var.arg_name
526             else:
527                 # Ideally we'd be able to take any instance of the interface, but our C code can only represent
528                 # Java-implemented version, so we require users pass a Java implementation here :/
529                 java_trait_constr = java_trait_constr + ", " + var[0].replace("LDK", "") + "." + var[0].replace("LDK", "") + "Interface " + var[1] + "_impl"
530         java_trait_constr = java_trait_constr + ") {\n\t\tfinal " + struct_name + "Holder impl_holder = new " + struct_name + "Holder();\n"
531         java_trait_constr = java_trait_constr + "\t\timpl_holder.held = new " + struct_name.replace("LDK", "") + "(new bindings." + struct_name + "() {\n"
532         out_java_trait = out_java_trait + "\tpublic static interface " + struct_name.replace("LDK", "") + "Interface {\n"
533         out_java = out_java + "\tpublic interface " + struct_name + " {\n"
534         java_meths = []
535         for fn_line in field_fns:
536             java_meth_descr = "("
537             if fn_line.fn_name != "free" and fn_line.fn_name != "clone":
538                 out_java = out_java + "\t\t " + fn_line.ret_ty_info.java_ty + " " + fn_line.fn_name + "("
539                 java_trait_constr = java_trait_constr + "\t\t\t@Override public " + fn_line.ret_ty_info.java_ty + " " + fn_line.fn_name + "("
540                 out_java_trait += "\t\t/**\n\t\t * " + fn_line.docs.replace("\n", "\n\t\t * ") + "\n\t\t */\n"
541                 out_java_trait = out_java_trait + "\t\t" + fn_line.ret_ty_info.java_hu_ty + " " + fn_line.fn_name + "("
542
543                 for idx, arg_conv_info in enumerate(fn_line.args_ty):
544                     if idx >= 1:
545                         out_java = out_java + ", "
546                         java_trait_constr = java_trait_constr + ", "
547                         out_java_trait = out_java_trait + ", "
548                     out_java = out_java + arg_conv_info.java_ty + " " + arg_conv_info.arg_name
549                     out_java_trait = out_java_trait + arg_conv_info.java_hu_ty + " " + arg_conv_info.arg_name
550                     java_trait_constr = java_trait_constr + arg_conv_info.java_ty + " " + arg_conv_info.arg_name
551                     java_meth_descr = java_meth_descr + arg_conv_info.java_fn_ty_arg
552                 java_meth_descr = java_meth_descr + ")" + fn_line.ret_ty_info.java_fn_ty_arg
553                 java_meths.append((fn_line.fn_name, java_meth_descr))
554
555                 out_java = out_java + ");\n"
556                 out_java_trait = out_java_trait + ");\n"
557                 java_trait_constr = java_trait_constr + ") {\n"
558
559                 for arg_info in fn_line.args_ty:
560                     if arg_info.to_hu_conv is not None:
561                         java_trait_constr = java_trait_constr + "\t\t\t\t" + arg_info.to_hu_conv.replace("\n", "\n\t\t\t\t") + "\n"
562
563                 if fn_line.ret_ty_info.java_ty != "void":
564                     java_trait_constr = java_trait_constr + "\t\t\t\t" + fn_line.ret_ty_info.java_hu_ty + " ret = arg." + fn_line.fn_name + "("
565                 else:
566                     java_trait_constr = java_trait_constr + "\t\t\t\targ." + fn_line.fn_name + "("
567
568                 for idx, arg_info in enumerate(fn_line.args_ty):
569                     if idx != 0:
570                         java_trait_constr = java_trait_constr + ", "
571                     if arg_info.to_hu_conv_name is not None:
572                         java_trait_constr = java_trait_constr + arg_info.to_hu_conv_name
573                     else:
574                         java_trait_constr = java_trait_constr + arg_info.arg_name
575
576                 java_trait_constr = java_trait_constr + ");\n"
577                 if fn_line.ret_ty_info.java_ty != "void":
578                     if fn_line.ret_ty_info.from_hu_conv is not None:
579                         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"
580                         if fn_line.ret_ty_info.from_hu_conv[1] != "":
581                             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"
582                         #if fn_line.ret_ty_info.rust_obj in result_types:
583                         java_trait_constr = java_trait_constr + "\t\t\t\treturn result;\n"
584                     else:
585                         java_trait_constr = java_trait_constr + "\t\t\t\treturn ret;\n"
586                 java_trait_constr = java_trait_constr + "\t\t\t}\n"
587         java_trait_constr = java_trait_constr + "\t\t}"
588         for var in field_vars:
589             if isinstance(var, ConvInfo):
590                 java_trait_constr = java_trait_constr + ", " + var.arg_name
591             else:
592                 java_trait_constr = java_trait_constr + ", " + var[1] + ".new_impl(" + var[1] + "_impl).bindings_instance"
593         out_java_trait = out_java_trait + "\t}\n"
594         out_java_trait = out_java_trait + java_trait_constr + ");\n\t\treturn impl_holder.held;\n\t}\n"
595
596         out_java = out_java + "\t}\n"
597
598         out_java = out_java + "\tpublic static native long " + struct_name + "_new(" + struct_name + " impl"
599         for var in field_vars:
600             if isinstance(var, ConvInfo):
601                 out_java = out_java + ", " + var.java_ty + " " + var.arg_name
602             else:
603                 out_java = out_java + ", " + var[0] + " " + var[1]
604         out_java = out_java + ");\n"
605
606         # Now that we've written out our java code (and created java_meths), generate C
607         out_c = "typedef struct " + struct_name + "_JCalls {\n"
608         out_c = out_c + "\tatomic_size_t refcnt;\n"
609         out_c = out_c + "\tJavaVM *vm;\n"
610         out_c = out_c + "\tjweak o;\n"
611         for var in field_vars:
612             if isinstance(var, ConvInfo):
613                 # We're a regular ol' field
614                 pass
615             else:
616                 # We're a supertrait
617                 out_c = out_c + "\t" + var[0] + "_JCalls* " + var[1] + ";\n"
618         for fn in field_fns:
619             if fn.fn_name != "free" and fn.fn_name != "clone":
620                 out_c = out_c + "\tjmethodID " + fn.fn_name + "_meth;\n"
621         out_c = out_c + "} " + struct_name + "_JCalls;\n"
622
623         for fn_line in field_fns:
624             if fn_line.fn_name == "free":
625                 out_c = out_c + "static void " + struct_name + "_JCalls_free(void* this_arg) {\n"
626                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
627                 out_c = out_c + "\tif (atomic_fetch_sub_explicit(&j_calls->refcnt, 1, memory_order_acquire) == 1) {\n"
628                 out_c = out_c + "\t\tJNIEnv *env;\n"
629                 out_c = out_c + "\t\tDO_ASSERT((*j_calls->vm)->GetEnv(j_calls->vm, (void**)&env, JNI_VERSION_1_6) == JNI_OK);\n"
630                 out_c = out_c + "\t\t(*env)->DeleteWeakGlobalRef(env, j_calls->o);\n"
631                 out_c = out_c + "\t\tFREE(j_calls);\n"
632                 out_c = out_c + "\t}\n}\n"
633
634         for idx, fn_line in enumerate(field_fns):
635             if fn_line.fn_name != "free" and fn_line.fn_name != "clone":
636                 assert fn_line.ret_ty_info.ty_info.get_full_rust_ty()[1] == ""
637                 out_c = out_c + fn_line.ret_ty_info.ty_info.get_full_rust_ty()[0] + " " + fn_line.fn_name + "_jcall("
638                 if fn_line.self_is_const:
639                     out_c = out_c + "const void* this_arg"
640                 else:
641                     out_c = out_c + "void* this_arg"
642
643                 for idx, arg in enumerate(fn_line.args_ty):
644                     out_c = out_c + ", " + arg.ty_info.get_full_rust_ty()[0] + " " + arg.arg_name + arg.ty_info.get_full_rust_ty()[1]
645
646                 out_c = out_c + ") {\n"
647                 out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
648                 out_c = out_c + "\tJNIEnv *env;\n"
649                 out_c = out_c + "\tDO_ASSERT((*j_calls->vm)->GetEnv(j_calls->vm, (void**)&env, JNI_VERSION_1_6) == JNI_OK);\n"
650
651                 for arg_info in fn_line.args_ty:
652                     if arg_info.ret_conv is not None:
653                         out_c = out_c + "\t" + arg_info.ret_conv[0].replace('\n', '\n\t')
654                         out_c = out_c + arg_info.arg_name
655                         out_c = out_c + arg_info.ret_conv[1].replace('\n', '\n\t') + "\n"
656
657                 out_c = out_c + "\tjobject obj = (*env)->NewLocalRef(env, j_calls->o);\n\tCHECK(obj != NULL);\n"
658                 if fn_line.ret_ty_info.c_ty.endswith("Array"):
659                     out_c = out_c + "\t" + fn_line.ret_ty_info.c_ty + " ret = (*env)->CallObjectMethod(env, obj, j_calls->" + fn_line.fn_name + "_meth"
660                 elif not fn_line.ret_ty_info.passed_as_ptr:
661                     out_c = out_c + "\treturn (*env)->Call" + fn_line.ret_ty_info.java_ty.title() + "Method(env, obj, j_calls->" + fn_line.fn_name + "_meth"
662                 else:
663                     out_c = out_c + "\t" + fn_line.ret_ty_info.rust_obj + "* ret = (" + fn_line.ret_ty_info.rust_obj + "*)(*env)->CallLongMethod(env, obj, j_calls->" + fn_line.fn_name + "_meth"
664
665                 for idx, arg_info in enumerate(fn_line.args_ty):
666                     if arg_info.ret_conv is not None:
667                         out_c = out_c + ", " + arg_info.ret_conv_name
668                     else:
669                         out_c = out_c + ", " + arg_info.arg_name
670                 out_c = out_c + ");\n"
671                 if fn_line.ret_ty_info.arg_conv is not None:
672                     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"
673
674                 out_c = out_c + "}\n"
675
676         # Write out a clone function whether we need one or not, as we use them in moving to rust
677         out_c = out_c + "static void* " + struct_name + "_JCalls_clone(const void* this_arg) {\n"
678         out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n"
679         out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->refcnt, 1, memory_order_release);\n"
680         for var in field_vars:
681             if not isinstance(var, ConvInfo):
682                 out_c = out_c + "\tatomic_fetch_add_explicit(&j_calls->" + var[1] + "->refcnt, 1, memory_order_release);\n"
683         out_c = out_c + "\treturn (void*) this_arg;\n"
684         out_c = out_c + "}\n"
685
686         out_c = out_c + "static inline " + struct_name + " " + struct_name + "_init (" + self.c_fn_args_pfx + ", jobject o"
687         for var in field_vars:
688             if isinstance(var, ConvInfo):
689                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
690             else:
691                 out_c = out_c + ", jobject " + var[1]
692         out_c = out_c + ") {\n"
693
694         out_c = out_c + "\tjclass c = (*env)->GetObjectClass(env, o);\n"
695         out_c = out_c + "\tCHECK(c != NULL);\n"
696         out_c = out_c + "\t" + struct_name + "_JCalls *calls = MALLOC(sizeof(" + struct_name + "_JCalls), \"" + struct_name + "_JCalls\");\n"
697         out_c = out_c + "\tatomic_init(&calls->refcnt, 1);\n"
698         out_c = out_c + "\tDO_ASSERT((*env)->GetJavaVM(env, &calls->vm) == 0);\n"
699         out_c = out_c + "\tcalls->o = (*env)->NewWeakGlobalRef(env, o);\n"
700
701         for (fn_name, java_meth_descr) in java_meths:
702             if fn_name != "free" and fn_name != "clone":
703                 out_c = out_c + "\tcalls->" + fn_name + "_meth = (*env)->GetMethodID(env, c, \"" + fn_name + "\", \"" + java_meth_descr + "\");\n"
704                 out_c = out_c + "\tCHECK(calls->" + fn_name + "_meth != NULL);\n"
705
706         for var in field_vars:
707             if isinstance(var, ConvInfo) and var.arg_conv is not None:
708                 out_c = out_c + "\n\t" + var.arg_conv.replace("\n", "\n\t") +"\n"
709         out_c = out_c + "\n\t" + struct_name + " ret = {\n"
710         out_c = out_c + "\t\t.this_arg = (void*) calls,\n"
711         for fn_line in field_fns:
712             if fn_line.fn_name != "free" and fn_line.fn_name != "clone":
713                 out_c = out_c + "\t\t." + fn_line.fn_name + " = " + fn_line.fn_name + "_jcall,\n"
714             elif fn_line.fn_name == "free":
715                 out_c = out_c + "\t\t.free = " + struct_name + "_JCalls_free,\n"
716             else:
717                 out_c = out_c + "\t\t.clone = " + struct_name + "_JCalls_clone,\n"
718         for var in field_vars:
719             if isinstance(var, ConvInfo):
720                 if var.arg_conv_name is not None:
721                     out_c = out_c + "\t\t." + var.arg_name + " = " + var.arg_conv_name + ",\n"
722                     out_c = out_c + "\t\t.set_" + var.arg_name + " = NULL,\n"
723                 else:
724                     out_c = out_c + "\t\t." + var.var_name + " = " + var.var_name + ",\n"
725                     out_c = out_c + "\t\t.set_" + var.var_name + " = NULL,\n"
726             else:
727                 out_c = out_c + "\t\t." + var[1] + " = " + var[0] + "_init(env, clz, " + var[1] + "),\n"
728         out_c = out_c + "\t};\n"
729         for var in field_vars:
730             if not isinstance(var, ConvInfo):
731                 out_c = out_c + "\tcalls->" + var[1] + " = ret." + var[1] + ".this_arg;\n"
732         out_c = out_c + "\treturn ret;\n"
733         out_c = out_c + "}\n"
734
735         out_c = out_c + self.c_fn_ty_pfx + "int64_t " + self.c_fn_name_define_pfx(struct_name + "_new", True) + "jobject o"
736         for var in field_vars:
737             if isinstance(var, ConvInfo):
738                 out_c = out_c + ", " + var.c_ty + " " + var.arg_name
739             else:
740                 out_c = out_c + ", jobject " + var[1]
741         out_c = out_c + ") {\n"
742         out_c = out_c + "\t" + struct_name + " *res_ptr = MALLOC(sizeof(" + struct_name + "), \"" + struct_name + "\");\n"
743         out_c = out_c + "\t*res_ptr = " + struct_name + "_init(env, clz, o"
744         for var in field_vars:
745             if isinstance(var, ConvInfo):
746                 out_c = out_c + ", " + var.arg_name
747             else:
748                 out_c = out_c + ", " + var[1]
749         out_c = out_c + ");\n"
750         out_c = out_c + "\treturn (long)res_ptr;\n"
751         out_c = out_c + "}\n"
752
753         return (out_java, out_java_trait, out_c)
754
755     def trait_struct_inc_refcnt(self, ty_info):
756         base_conv = "\nif (" + ty_info.var_name + "_conv.free == " + ty_info.rust_obj + "_JCalls_free) {\n"
757         base_conv = base_conv + "\t// If this_arg is a JCalls struct, then we need to increment the refcnt in it.\n"
758         base_conv = base_conv + "\t" + ty_info.rust_obj + "_JCalls_clone(" + ty_info.var_name + "_conv.this_arg);\n}"
759         return base_conv
760
761     def map_complex_enum(self, struct_name, variant_list, camel_to_snake, enum_doc_comment):
762         java_hu_type = struct_name.replace("LDK", "")
763         out_java_enum = ""
764         out_java = ""
765         out_c = ""
766
767         out_java_enum += (self.hu_struct_file_prefix)
768         out_java_enum += "\n/**\n * " + enum_doc_comment.replace("\n", "\n * ") + "\n */\n"
769         out_java_enum += "@SuppressWarnings(\"unchecked\") // We correctly assign various generic arrays\n"
770         out_java_enum += ("public class " + java_hu_type + " extends CommonBase {\n")
771         out_java_enum += ("\tprivate " + java_hu_type + "(Object _dummy, long ptr) { super(ptr); }\n")
772         out_java_enum += ("\t@Override @SuppressWarnings(\"deprecation\")\n")
773         out_java_enum += ("\tprotected void finalize() throws Throwable {\n")
774         out_java_enum += ("\t\tsuper.finalize();\n")
775         out_java_enum += ("\t\tif (ptr != 0) { bindings." + java_hu_type + "_free(ptr); }\n")
776         out_java_enum += ("\t}\n")
777         out_java_enum += ("\tstatic " + java_hu_type + " constr_from_ptr(long ptr) {\n")
778         out_java_enum += ("\t\tbindings." + struct_name + " raw_val = bindings." + struct_name + "_ref_from_ptr(ptr);\n")
779         java_hu_subclasses = ""
780
781         init_meth_jty_strs = {}
782
783         out_java +=  ("\tpublic static class " + struct_name + " {\n")
784         out_java +=  ("\t\tprivate " + struct_name + "() {}\n")
785         for var in variant_list:
786             out_java +=  ("\t\tpublic final static class " + var.var_name + " extends " + struct_name + " {\n")
787             java_hu_subclasses = java_hu_subclasses + "\tpublic final static class " + var.var_name + " extends " + java_hu_type + " {\n"
788             out_java_enum += ("\t\tif (raw_val.getClass() == bindings." + struct_name + "." + var.var_name + ".class) {\n")
789             out_java_enum += ("\t\t\treturn new " + var.var_name + "(ptr, (bindings." + struct_name + "." + var.var_name + ")raw_val);\n")
790             init_meth_jty_str = ""
791             init_meth_params = ""
792             init_meth_body = ""
793             hu_conv_body = ""
794             for idx, field_ty in enumerate(var.fields):
795                 out_java += ("\t\t\tpublic " + field_ty.java_ty + " " + field_ty.arg_name + ";\n")
796                 java_hu_subclasses = java_hu_subclasses + "\t\tpublic final " + field_ty.java_hu_ty + " " + field_ty.arg_name + ";\n"
797                 if field_ty.to_hu_conv is not None:
798                     hu_conv_body = hu_conv_body + "\t\t\t" + field_ty.java_ty + " " + field_ty.arg_name + " = obj." + field_ty.arg_name + ";\n"
799                     hu_conv_body = hu_conv_body + "\t\t\t" + field_ty.to_hu_conv.replace("\n", "\n\t\t\t") + "\n"
800                     hu_conv_body = hu_conv_body + "\t\t\tthis." + field_ty.arg_name + " = " + field_ty.to_hu_conv_name + ";\n"
801                 else:
802                     hu_conv_body = hu_conv_body + "\t\t\tthis." + field_ty.arg_name + " = obj." + field_ty.arg_name + ";\n"
803                 init_meth_jty_str = init_meth_jty_str + field_ty.java_fn_ty_arg
804                 if idx > 0:
805                     init_meth_params = init_meth_params + ", "
806                 init_meth_params = init_meth_params + field_ty.java_ty + " " + field_ty.arg_name
807                 init_meth_body = init_meth_body + "this." + field_ty.arg_name + " = " + field_ty.arg_name + "; "
808             out_java +=  ("\t\t\t" + var.var_name + "(" + init_meth_params + ") { ")
809             out_java +=  (init_meth_body)
810             out_java +=  ("}\n")
811             out_java += ("\t\t}\n")
812             out_java_enum += ("\t\t}\n")
813             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"
814             java_hu_subclasses = java_hu_subclasses + hu_conv_body
815             java_hu_subclasses = java_hu_subclasses + "\t\t}\n\t}\n"
816             init_meth_jty_strs[var.var_name] = init_meth_jty_str
817         out_java += ("\t\tstatic native void init();\n")
818         out_java += ("\t}\n")
819         out_java_enum += ("\t\tassert false; return null; // Unreachable without extending the (internal) bindings interface\n\t}\n\n")
820         out_java_enum += (java_hu_subclasses)
821         out_java += ("\tstatic { " + struct_name + ".init(); }\n")
822         out_java += ("\tpublic static native " + struct_name + " " + struct_name + "_ref_from_ptr(long ptr);\n");
823
824         out_c += (self.c_complex_enum_pfx(struct_name, [x.var_name for x in variant_list], init_meth_jty_strs))
825
826         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")
827         out_c += ("\t" + struct_name + " *obj = (" + struct_name + "*)ptr;\n")
828         out_c += ("\tswitch(obj->tag) {\n")
829         for var in variant_list:
830             out_c += ("\t\tcase " + struct_name + "_" + var.var_name + ": {\n")
831             c_params = []
832             for idx, field_map in enumerate(var.fields):
833                 if field_map.ret_conv is not None:
834                     out_c += ("\t\t\t" + field_map.ret_conv[0].replace("\n", "\n\t\t\t"))
835                     out_c += ("obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name)
836                     out_c += (field_map.ret_conv[1].replace("\n", "\n\t\t\t") + "\n")
837                     c_params.append(field_map.ret_conv_name)
838                 else:
839                     c_params.append("obj->" + camel_to_snake(var.var_name) + "." + field_map.arg_name)
840             out_c += ("\t\t\treturn " + self.c_constr_native_complex_enum(struct_name, var.var_name, c_params) + ";\n")
841             out_c += ("\t\t}\n")
842         out_c += ("\t\tdefault: abort();\n")
843         out_c += ("\t}\n}\n")
844         out_java_enum += ("}\n")
845         return (out_java, out_java_enum, out_c)
846
847     def map_opaque_struct(self, struct_name, struct_doc_comment):
848         out_opaque_struct_human = ""
849         out_opaque_struct_human += self.hu_struct_file_prefix
850         out_opaque_struct_human += "\n/**\n * " + struct_doc_comment.replace("\n", "\n * ") + "\n */\n"
851         out_opaque_struct_human += "@SuppressWarnings(\"unchecked\") // We correctly assign various generic arrays\n"
852         out_opaque_struct_human += ("public class " + struct_name.replace("LDK","") + " extends CommonBase")
853         if struct_name.startswith("LDKLocked"):
854             out_opaque_struct_human += (" implements AutoCloseable")
855         out_opaque_struct_human += (" {\n")
856         out_opaque_struct_human += ("\t" + struct_name.replace("LDK", "") + "(Object _dummy, long ptr) { super(ptr); }\n")
857         if struct_name.startswith("LDKLocked"):
858             out_opaque_struct_human += ("\t@Override public void close() {\n")
859         else:
860             out_opaque_struct_human += ("\t@Override @SuppressWarnings(\"deprecation\")\n")
861             out_opaque_struct_human += ("\tprotected void finalize() throws Throwable {\n")
862             out_opaque_struct_human += ("\t\tsuper.finalize();\n")
863         out_opaque_struct_human += ("\t\tif (ptr != 0) { bindings." + struct_name.replace("LDK","") + "_free(ptr); }\n")
864         out_opaque_struct_human += ("\t}\n\n")
865         return out_opaque_struct_human
866
867
868     def map_function(self, argument_types, c_call_string, method_name, return_type_info, struct_meth, default_constructor_args, takes_self, args_known, type_mapping_generator, doc_comment):
869         out_java = ""
870         out_c = ""
871         out_java_struct = None
872
873         out_java += ("\tpublic static native ")
874         out_c += (self.c_fn_ty_pfx)
875         out_c += (return_type_info.c_ty)
876         out_java += (return_type_info.java_ty)
877         if return_type_info.ret_conv is not None:
878             ret_conv_pfx, ret_conv_sfx = return_type_info.ret_conv
879         out_java += (" " + method_name + "(")
880         have_args = len(argument_types) > 1 or (len(argument_types) > 0 and argument_types[0].c_ty != "void")
881         out_c += (" " + self.c_fn_name_define_pfx(method_name, have_args))
882
883         for idx, arg_conv_info in enumerate(argument_types):
884             if idx != 0:
885                 out_java += (", ")
886                 out_c += (", ")
887             if arg_conv_info.c_ty != "void":
888                 out_c += (arg_conv_info.c_ty + " " + arg_conv_info.arg_name)
889                 out_java += (arg_conv_info.java_ty + " " + arg_conv_info.arg_name)
890
891         out_java_struct = ""
892         if not args_known:
893             out_java_struct += ("\t// Skipped " + method_name + "\n")
894         else:
895             meth_n = method_name[len(struct_meth) + 1:]
896             if doc_comment is not None:
897                 out_java_struct += "\t/**\n\t * " + doc_comment.replace("\n", "\n\t * ") + "\n\t */\n"
898             if not takes_self:
899                 out_java_struct += (
900                     "\tpublic static " + return_type_info.java_hu_ty + " constructor_" + meth_n + "(")
901             else:
902                 out_java_struct += ("\tpublic " + return_type_info.java_hu_ty + " " + meth_n + "(")
903             for idx, arg in enumerate(argument_types):
904                 if idx != 0:
905                     if not takes_self or idx > 1:
906                         out_java_struct += (", ")
907                 elif takes_self:
908                     continue
909                 if arg.java_ty != "void":
910                     if arg.arg_name in default_constructor_args:
911                         for explode_idx, explode_arg in enumerate(default_constructor_args[arg.arg_name]):
912                             if explode_idx != 0:
913                                 out_java_struct += (", ")
914                             out_java_struct += (
915                                 explode_arg.java_hu_ty + " " + arg.arg_name + "_" + explode_arg.arg_name)
916                     else:
917                         out_java_struct += (arg.java_hu_ty + " " + arg.arg_name)
918         out_java += (");\n")
919         out_c += (") {\n")
920         if out_java_struct is not None:
921             out_java_struct += (") {\n")
922         for info in argument_types:
923             if info.arg_conv is not None:
924                 out_c += ("\t" + info.arg_conv.replace('\n', "\n\t") + "\n")
925         if return_type_info.ret_conv is not None:
926             out_c += ("\t" + ret_conv_pfx.replace('\n', '\n\t'))
927         elif return_type_info.c_ty != "void":
928             out_c += ("\t" + return_type_info.c_ty + " ret_val = ")
929         else:
930             out_c += ("\t")
931         if c_call_string is None:
932             out_c += (method_name + "(")
933         else:
934             out_c += (c_call_string)
935         for idx, info in enumerate(argument_types):
936             if info.arg_conv_name is not None:
937                 if idx != 0:
938                     out_c += (", ")
939                 elif c_call_string is not None:
940                     continue
941                 out_c += (info.arg_conv_name)
942         out_c += (")")
943         if return_type_info.ret_conv is not None:
944             out_c += (ret_conv_sfx.replace('\n', '\n\t'))
945         else:
946             out_c += (";")
947         for info in argument_types:
948             if info.arg_conv_cleanup is not None:
949                 out_c += ("\n\t" + info.arg_conv_cleanup.replace("\n", "\n\t"))
950         if return_type_info.ret_conv is not None:
951             out_c += ("\n\treturn " + return_type_info.ret_conv_name + ";")
952         elif return_type_info.c_ty != "void":
953             out_c += ("\n\treturn ret_val;")
954         out_c += ("\n}\n\n")
955
956         if args_known:
957             out_java_struct += ("\t\t")
958             if return_type_info.java_ty != "void":
959                 out_java_struct += (return_type_info.java_ty + " ret = ")
960             out_java_struct += ("bindings." + method_name + "(")
961             for idx, info in enumerate(argument_types):
962                 if idx != 0:
963                     out_java_struct += (", ")
964                 if idx == 0 and takes_self:
965                     out_java_struct += ("this.ptr")
966                 elif info.arg_name in default_constructor_args:
967                     out_java_struct += ("bindings." + info.java_hu_ty + "_new(")
968                     for explode_idx, explode_arg in enumerate(default_constructor_args[info.arg_name]):
969                         if explode_idx != 0:
970                             out_java_struct += (", ")
971                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
972                         if explode_arg.from_hu_conv is not None:
973                             out_java_struct += (
974                                 explode_arg.from_hu_conv[0].replace(explode_arg.arg_name, expl_arg_name))
975                         else:
976                             out_java_struct += (expl_arg_name)
977                     out_java_struct += (")")
978                 elif info.from_hu_conv is not None:
979                     out_java_struct += (info.from_hu_conv[0])
980                 else:
981                     out_java_struct += (info.arg_name)
982             out_java_struct += (");\n")
983             if return_type_info.to_hu_conv is not None:
984                 if not takes_self:
985                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t").replace("this",
986                                                                                                                return_type_info.to_hu_conv_name) + "\n")
987                 else:
988                     out_java_struct += ("\t\t" + return_type_info.to_hu_conv.replace("\n", "\n\t\t") + "\n")
989
990             for idx, info in enumerate(argument_types):
991                 if idx == 0 and takes_self:
992                     pass
993                 elif info.arg_name in default_constructor_args:
994                     for explode_arg in default_constructor_args[info.arg_name]:
995                         expl_arg_name = info.arg_name + "_" + explode_arg.arg_name
996                         if explode_arg.from_hu_conv is not None and return_type_info.to_hu_conv_name:
997                             out_java_struct += ("\t\t" + explode_arg.from_hu_conv[1].replace(explode_arg.arg_name,
998                                                                                                expl_arg_name).replace(
999                                 "this", return_type_info.to_hu_conv_name) + ";\n")
1000                 elif info.from_hu_conv is not None and info.from_hu_conv[1] != "":
1001                     if not takes_self and return_type_info.to_hu_conv_name is not None:
1002                         out_java_struct += (
1003                             "\t\t" + info.from_hu_conv[1].replace("this", return_type_info.to_hu_conv_name).replace("\n", "\n\t\t") + ";\n")
1004                     else:
1005                         out_java_struct += ("\t\t" + info.from_hu_conv[1].replace("\n", "\n\t\t") + ";\n")
1006
1007             if return_type_info.to_hu_conv_name is not None:
1008                 out_java_struct += ("\t\treturn " + return_type_info.to_hu_conv_name + ";\n")
1009             elif return_type_info.java_ty != "void" and return_type_info.rust_obj != "LDK" + struct_meth:
1010                 out_java_struct += ("\t\treturn ret;\n")
1011             out_java_struct += ("\t}\n\n")
1012
1013         return (out_java, out_c, out_java_struct)