[Java] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
[ldk-java] / src / main / java / org / ldk / structs / DecodeError.java
index 5ad42b28c3ba91a984bdb24b1e0a8cdc0f674b3d..39e16610a7a25467be48b58a3fdbaa0321e7c54e 100644 (file)
@@ -42,6 +42,9 @@ public class DecodeError extends CommonBase {
                if (raw_val.getClass() == bindings.LDKDecodeError.UnsupportedCompression.class) {
                        return new UnsupportedCompression(ptr, (bindings.LDKDecodeError.UnsupportedCompression)raw_val);
                }
+               if (raw_val.getClass() == bindings.LDKDecodeError.DangerousValue.class) {
+                       return new DangerousValue(ptr, (bindings.LDKDecodeError.DangerousValue)raw_val);
+               }
                assert false; return null; // Unreachable without extending the (internal) bindings interface
        }
 
@@ -109,6 +112,22 @@ public class DecodeError extends CommonBase {
                        super(null, ptr);
                }
        }
+       /**
+        * Value is validly encoded but is dangerous to use.
+        * 
+        * This is used for things like [`ChannelManager`] deserialization where we want to ensure
+        * that we don't use a [`ChannelManager`] which is in out of sync with the [`ChannelMonitor`].
+        * This indicates that there is a critical implementation flaw in the storage implementation
+        * and it's unsafe to continue.
+        * 
+        * [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
+        * [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
+        */
+       public final static class DangerousValue extends DecodeError {
+               private DangerousValue(long ptr, bindings.LDKDecodeError.DangerousValue obj) {
+                       super(null, ptr);
+               }
+       }
        long clone_ptr() {
                long ret = bindings.DecodeError_clone_ptr(this.ptr);
                Reference.reachabilityFence(this);
@@ -205,6 +224,17 @@ public class DecodeError extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Utility method to constructs a new DangerousValue-variant DecodeError
+        */
+       public static DecodeError dangerous_value() {
+               long ret = bindings.DecodeError_dangerous_value();
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.DecodeError ret_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
        /**
         * Generates a non-cryptographic 64-bit hash of the DecodeError.
         */
@@ -222,7 +252,7 @@ public class DecodeError extends CommonBase {
         * This ignores pointers and is_owned flags and looks at the values in fields.
         */
        public boolean eq(org.ldk.structs.DecodeError b) {
-               boolean ret = bindings.DecodeError_eq(this.ptr, b == null ? 0 : b.ptr);
+               boolean ret = bindings.DecodeError_eq(this.ptr, b.ptr);
                Reference.reachabilityFence(this);
                Reference.reachabilityFence(b);
                return ret;
@@ -232,4 +262,13 @@ public class DecodeError extends CommonBase {
                if (!(o instanceof DecodeError)) return false;
                return this.eq((DecodeError)o);
        }
+       /**
+        * Get the string representation of a DecodeError object
+        */
+       public String to_str() {
+               String ret = bindings.DecodeError_to_str(this.ptr);
+               Reference.reachabilityFence(this);
+               return ret;
+       }
+
 }