[Java] Update auto-generated Java structs
[ldk-java] / src / main / java / org / ldk / structs / ShutdownScript.java
index 19a81ae000754325750b38a23501674b1315342a..c40b2b77a564f3e17e045aec3ebd5bc9e54655e5 100644 (file)
@@ -4,13 +4,14 @@ 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;
 
 
 /**
  * A script pubkey for shutting down a channel as defined by [BOLT #2].
  * 
- * [BOLT #2]: https://github.com/lightningnetwork/lightning-rfc/blob/master/02-peer-protocol.md
+ * [BOLT #2]: https://github.com/lightning/bolts/blob/master/02-peer-protocol.md
  */
 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
 public class ShutdownScript extends CommonBase {
@@ -21,14 +22,21 @@ public class ShutdownScript extends CommonBase {
                if (ptr != 0) { bindings.ShutdownScript_free(ptr); }
        }
 
+       long clone_ptr() {
+               long ret = bindings.ShutdownScript_clone_ptr(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
        /**
         * Creates a copy of the ShutdownScript
         */
        public ShutdownScript clone() {
                long ret = bindings.ShutdownScript_clone(this.ptr);
+               Reference.reachabilityFence(this);
                if (ret >= 0 && ret <= 4096) { return null; }
-               ShutdownScript ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ShutdownScript(null, ret); }
-               ret_hu_conv.ptrs_to.add(this);
+               org.ldk.structs.ShutdownScript ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ShutdownScript(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
                return ret_hu_conv;
        }
 
@@ -37,6 +45,7 @@ public class ShutdownScript extends CommonBase {
         */
        public byte[] write() {
                byte[] ret = bindings.ShutdownScript_write(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -45,6 +54,7 @@ public class ShutdownScript extends CommonBase {
         */
        public static Result_ShutdownScriptDecodeErrorZ read(byte[] ser) {
                long ret = bindings.ShutdownScript_read(ser);
+               Reference.reachabilityFence(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ShutdownScriptDecodeErrorZ ret_hu_conv = Result_ShutdownScriptDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
@@ -54,10 +64,11 @@ public class ShutdownScript extends CommonBase {
         * Generates a P2WPKH script pubkey from the given [`WPubkeyHash`].
         */
        public static ShutdownScript new_p2wpkh(byte[] pubkey_hash) {
-               long ret = bindings.ShutdownScript_new_p2wpkh(pubkey_hash);
+               long ret = bindings.ShutdownScript_new_p2wpkh(InternalUtils.check_arr_len(pubkey_hash, 20));
+               Reference.reachabilityFence(pubkey_hash);
                if (ret >= 0 && ret <= 4096) { return null; }
-               ShutdownScript ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ShutdownScript(null, ret); }
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
+               org.ldk.structs.ShutdownScript ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ShutdownScript(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
                return ret_hu_conv;
        }
 
@@ -65,10 +76,11 @@ public class ShutdownScript extends CommonBase {
         * Generates a P2WSH script pubkey from the given [`WScriptHash`].
         */
        public static ShutdownScript new_p2wsh(byte[] script_hash) {
-               long ret = bindings.ShutdownScript_new_p2wsh(script_hash);
+               long ret = bindings.ShutdownScript_new_p2wsh(InternalUtils.check_arr_len(script_hash, 32));
+               Reference.reachabilityFence(script_hash);
                if (ret >= 0 && ret <= 4096) { return null; }
-               ShutdownScript ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ShutdownScript(null, ret); }
-               ret_hu_conv.ptrs_to.add(ret_hu_conv);
+               org.ldk.structs.ShutdownScript ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ShutdownScript(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
                return ret_hu_conv;
        }
 
@@ -82,8 +94,10 @@ public class ShutdownScript extends CommonBase {
         * 
         * This function may return an error if `program` is invalid for the segwit `version`.
         */
-       public static Result_ShutdownScriptInvalidShutdownScriptZ new_witness_program(byte version, byte[] program) {
-               long ret = bindings.ShutdownScript_new_witness_program(version, program);
+       public static Result_ShutdownScriptInvalidShutdownScriptZ new_witness_program(WitnessVersion version, byte[] program) {
+               long ret = bindings.ShutdownScript_new_witness_program(version.getVal(), program);
+               Reference.reachabilityFence(version);
+               Reference.reachabilityFence(program);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ShutdownScriptInvalidShutdownScriptZ ret_hu_conv = Result_ShutdownScriptInvalidShutdownScriptZ.constr_from_ptr(ret);
                return ret_hu_conv;
@@ -94,7 +108,8 @@ public class ShutdownScript extends CommonBase {
         */
        public byte[] into_inner() {
                byte[] ret = bindings.ShutdownScript_into_inner(this.ptr);
-               ;
+               Reference.reachabilityFence(this);
+               if (this != null) { this.ptrs_to.add(this); };
                return ret;
        }
 
@@ -106,6 +121,7 @@ public class ShutdownScript extends CommonBase {
        @Nullable
        public byte[] as_legacy_pubkey() {
                byte[] ret = bindings.ShutdownScript_as_legacy_pubkey(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -115,8 +131,10 @@ public class ShutdownScript extends CommonBase {
         * Specifically, checks for compliance with feature `option_shutdown_anysegwit`.
         */
        public boolean is_compatible(InitFeatures features) {
-               boolean ret = bindings.ShutdownScript_is_compatible(this.ptr, features == null ? 0 : features.ptr & ~1);
-               this.ptrs_to.add(features);
+               boolean ret = bindings.ShutdownScript_is_compatible(this.ptr, features == null ? 0 : features.ptr);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(features);
+               if (this != null) { this.ptrs_to.add(features); };
                return ret;
        }