bindings updates
[ldk-java] / src / main / java / org / ldk / structs / Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7
8 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
9 public class Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ extends CommonBase {
10         private Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
11         protected void finalize() throws Throwable {
12                 if (ptr != 0) { bindings.CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_free(ptr); } super.finalize();
13         }
14
15         static Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ constr_from_ptr(long ptr) {
16                 if (bindings.LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_result_ok(ptr)) {
17                         return new Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_OK(null, ptr);
18                 } else {
19                         return new Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_Err(null, ptr);
20                 }
21         }
22         public static final class Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_OK extends Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ {
23                 public final TwoTuple<byte[], ChannelManager> res;
24                 private Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_OK(Object _dummy, long ptr) {
25                         super(_dummy, ptr);
26                         long res = bindings.LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_get_ok(ptr);
27                         byte[] res_a = bindings.LDKC2Tuple_BlockHashChannelManagerZ_get_a(res);
28                         long res_b = bindings.LDKC2Tuple_BlockHashChannelManagerZ_get_b(res);
29                         ChannelManager res_b_hu_conv = new ChannelManager(null, res_b);
30                         res_b_hu_conv.ptrs_to.add(this);;
31                         TwoTuple<byte[], ChannelManager> res_conv = new TwoTuple<byte[], ChannelManager>(res_a, res_b_hu_conv, () -> {
32                                 bindings.C2Tuple_BlockHashChannelManagerZ_free(res);
33                         });
34                         res_b_hu_conv.ptrs_to.add(res_conv);
35                         this.res = res_conv;
36                 }
37                 public Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_OK(TwoTuple<byte[], ChannelManager> res) {
38                         this(null, bindings.CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_ok(bindings.C2Tuple_BlockHashChannelManagerZ_new(res.a, res.b == null ? 0 : res.b.ptr & ~1)));
39                         this.ptrs_to.add(res.b);
40                         // Due to rust's strict-ownership memory model, in some cases we need to "move"
41                         // an object to pass exclusive ownership to the function being called.
42                         // In most cases, we avoid this being visible in GC'd languages by cloning the object
43                         // at the FFI layer, creating a new object which Rust can claim ownership of
44                         // However, in some cases (eg here), there is no way to clone an object, and thus
45                         // we actually have to pass full ownership to Rust.
46                         // Thus, after this call, res.b is reset to null and is now a dummy object.
47                         res.b.ptr = 0;
48                 }
49         }
50
51         public static final class Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_Err extends Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ {
52                 public final DecodeError err;
53                 private Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_Err(Object _dummy, long ptr) {
54                         super(_dummy, ptr);
55                         long err = bindings.LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_get_err(ptr);
56                         DecodeError err_hu_conv = new DecodeError(null, err);
57                         err_hu_conv.ptrs_to.add(this);
58                         this.err = err_hu_conv;
59                 }
60                 public Result_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_Err(DecodeError err) {
61                         this(null, bindings.CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_err(err == null ? 0 : err.ptr & ~1));
62                         this.ptrs_to.add(err);
63                 }
64         }
65 }