X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=csharp_strings.py;h=4df1d34c688fb5d4b1d976cbbcfc75b64546446c;hb=2df822c808677a0ad691b8d513e76064b0365cef;hp=c08fc2eb07e8877f23138dfc8feb8ce153b05682;hpb=ee72c84d4bf9e2404e02fe20155efb502ceaee1b;p=ldk-java diff --git a/csharp_strings.py b/csharp_strings.py index c08fc2eb..4df1d34c 100644 --- a/csharp_strings.py +++ b/csharp_strings.py @@ -16,6 +16,7 @@ class Consts: uint32_t = ['int'], uint64_t = ['long'], int64_t = ['long'], + double = ['double'], ) self.java_type_map = dict( String = "string" @@ -439,7 +440,7 @@ namespace org { namespace ldk { namespace structs { self.usize_c_ty = "int64_t" self.usize_native_ty = "long" self.native_zero_ptr = "0" - self.result_c_ty = "jclass" + self.unitary_enum_c_ty = "int32_t" self.ptr_arr = "jobjectArray" self.is_arr_some_check = ("", " != NULL") self.get_native_arr_len_call = ("(*env)->GetArrayLength(env, ", ")") @@ -454,21 +455,6 @@ namespace org { namespace ldk { namespace structs { def c_fn_name_define_pfx(self, fn_name, have_args): return " CS_LDK_" + fn_name + "(" - def construct_jenv(self): - res = "JNIEnv *env;\n" - res += "jint get_jenv_res = (*j_calls->vm)->GetEnv(j_calls->vm, (void**)&env, JNI_VERSION_1_6);\n" - res += "if (get_jenv_res == JNI_EDETACHED) {\n" - res += "\tDO_ASSERT((*j_calls->vm)->AttachCurrentThread(j_calls->vm, (void**)&env, NULL) == JNI_OK);\n" - res += "} else {\n" - res += "\tDO_ASSERT(get_jenv_res == JNI_OK);\n" - res += "}\n" - return res - def deconstruct_jenv(self): - res = "if (get_jenv_res == JNI_EDETACHED) {\n" - res += "\tDO_ASSERT((*j_calls->vm)->DetachCurrentThread(j_calls->vm) == JNI_OK);\n" - res += "}\n" - return res - def release_native_arr_ptr_call(self, ty_info, arr_var, arr_ptr_var): return None def create_native_arr_call(self, arr_len, ty_info): @@ -508,7 +494,7 @@ namespace org { namespace ldk { namespace structs { else: return "FREE(" + arr_name + ")" - def map_hu_array_elems(self, arr_name, conv_name, arr_ty, elem_ty): + def map_hu_array_elems(self, arr_name, conv_name, arr_ty, elem_ty, is_nullable): if elem_ty.java_hu_ty == "UInt5": return arr_name + " != null ? InternalUtils.convUInt5Array(" + arr_name + ") : null" elif elem_ty.java_hu_ty == "WitnessVersion": @@ -815,9 +801,7 @@ namespace org { namespace ldk { namespace structs { out_c = out_c + "static void " + struct_name + "_JCalls_free(void* this_arg) {\n" out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n" out_c = out_c + "\tif (atomic_fetch_sub_explicit(&j_calls->refcnt, 1, memory_order_acquire) == 1) {\n" - out_c += "\t\t" + self.construct_jenv().replace("\n", "\n\t\t").strip() + "\n" out_c = out_c + "\t\t(*env)->DeleteWeakGlobalRef(env, j_calls->o);\n" - out_c += "\t\t" + self.deconstruct_jenv().replace("\n", "\n\t\t").strip() + "\n" out_c = out_c + "\t\tFREE(j_calls);\n" out_c = out_c + "\t}\n}\n" @@ -835,7 +819,6 @@ namespace org { namespace ldk { namespace structs { out_c = out_c + ") {\n" out_c = out_c + "\t" + struct_name + "_JCalls *j_calls = (" + struct_name + "_JCalls*) this_arg;\n" - out_c += "\t" + self.construct_jenv().replace("\n", "\n\t").strip() + "\n" for arg_info in fn_line.args_ty: if arg_info.ret_conv is not None: @@ -870,10 +853,8 @@ namespace org { namespace ldk { namespace structs { if fn_line.ret_ty_info.arg_conv is not None: out_c += "\t" + fn_line.ret_ty_info.arg_conv.replace("\n", "\n\t") + "\n" - out_c += "\t" + self.deconstruct_jenv().replace("\n", "\n\t").strip() + "\n" out_c += "\treturn " + fn_line.ret_ty_info.arg_conv_name + ";\n" else: - out_c += "\t" + self.deconstruct_jenv().replace("\n", "\n\t").strip() + "\n" if not fn_line.ret_ty_info.passed_as_ptr and fn_line.ret_ty_info.c_ty != "void": out_c += "\treturn ret;\n" @@ -1052,7 +1033,7 @@ namespace org { namespace ldk { namespace structs { out_c += "\t" + struct_name + " *obj = (" + struct_name + "*)untag_ptr(ptr);\n" out_c += f"\tassert(obj->tag == {struct_name}_{var.var_name});\n" if field_map.ret_conv is not None: - out_c += ("\t\t\t" + field_map.ret_conv[0].replace("\n", "\n\t\t\t")) + out_c += ("\t" + field_map.ret_conv[0].replace("\n", "\n\t")) if var.tuple_variant: out_c += "obj->" + camel_to_snake(var.var_name) else: