Update auto-updated Java files
[ldk-java] / src / main / java / org / ldk / structs / Shutdown.java
index 187027b436a832014bd7dfeb2b54a91b974ddd5a..2245c11bbbe9073add3c55e010a42c8b09bf5ef9 100644 (file)
@@ -4,6 +4,7 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import java.lang.ref.Reference;
 import javax.annotation.Nullable;
 
 
@@ -24,6 +25,7 @@ public class Shutdown extends CommonBase {
         */
        public byte[] get_channel_id() {
                byte[] ret = bindings.Shutdown_get_channel_id(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -31,7 +33,9 @@ public class Shutdown extends CommonBase {
         * The channel ID
         */
        public void set_channel_id(byte[] val) {
-               bindings.Shutdown_set_channel_id(this.ptr, val);
+               bindings.Shutdown_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
        }
 
        /**
@@ -40,6 +44,7 @@ public class Shutdown extends CommonBase {
         */
        public byte[] get_scriptpubkey() {
                byte[] ret = bindings.Shutdown_get_scriptpubkey(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -49,26 +54,37 @@ public class Shutdown extends CommonBase {
         */
        public void set_scriptpubkey(byte[] val) {
                bindings.Shutdown_set_scriptpubkey(this.ptr, val);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(val);
        }
 
        /**
         * Constructs a new Shutdown given each field
         */
        public static Shutdown of(byte[] channel_id_arg, byte[] scriptpubkey_arg) {
-               long ret = bindings.Shutdown_new(channel_id_arg, scriptpubkey_arg);
-               if (ret >= 0 && ret < 1024) { return null; }
-               Shutdown ret_hu_conv = new Shutdown(null, ret);
+               long ret = bindings.Shutdown_new(InternalUtils.check_arr_len(channel_id_arg, 32), scriptpubkey_arg);
+               Reference.reachabilityFence(channel_id_arg);
+               Reference.reachabilityFence(scriptpubkey_arg);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Shutdown ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new Shutdown(null, ret); }
                ret_hu_conv.ptrs_to.add(ret_hu_conv);
                return ret_hu_conv;
        }
 
+       long clone_ptr() {
+               long ret = bindings.Shutdown_clone_ptr(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
        /**
         * Creates a copy of the Shutdown
         */
        public Shutdown clone() {
                long ret = bindings.Shutdown_clone(this.ptr);
-               if (ret >= 0 && ret < 1024) { return null; }
-               Shutdown ret_hu_conv = new Shutdown(null, ret);
+               Reference.reachabilityFence(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Shutdown ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new Shutdown(null, ret); }
                ret_hu_conv.ptrs_to.add(this);
                return ret_hu_conv;
        }
@@ -78,6 +94,7 @@ public class Shutdown extends CommonBase {
         */
        public byte[] write() {
                byte[] ret = bindings.Shutdown_write(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -86,7 +103,8 @@ public class Shutdown extends CommonBase {
         */
        public static Result_ShutdownDecodeErrorZ read(byte[] ser) {
                long ret = bindings.Shutdown_read(ser);
-               if (ret >= 0 && ret < 1024) { return null; }
+               Reference.reachabilityFence(ser);
+               if (ret >= 0 && ret <= 4096) { return null; }
                Result_ShutdownDecodeErrorZ ret_hu_conv = Result_ShutdownDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }