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