X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FInitFeatures.java;h=1c4cee2d0331e57c520374bbffa5e58630c1a983;hb=1854b5cebef22ace9e9e4dd191f609818df9ce08;hp=cf4e0b3d9f3ba3d1cfe178cadc97389a4851a53e;hpb=d9af3c7d5fbc87035335d96b855bb9f1000a31a5;p=ldk-java diff --git a/src/main/java/org/ldk/structs/InitFeatures.java b/src/main/java/org/ldk/structs/InitFeatures.java index cf4e0b3d..1c4cee2d 100644 --- a/src/main/java/org/ldk/structs/InitFeatures.java +++ b/src/main/java/org/ldk/structs/InitFeatures.java @@ -4,6 +4,8 @@ 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; /** @@ -18,12 +20,37 @@ public class InitFeatures extends CommonBase { if (ptr != 0) { bindings.InitFeatures_free(ptr); } } + /** + * Checks if two InitFeaturess contain equal inner contents. + * This ignores pointers and is_owned flags and looks at the values in fields. + * Two objects with NULL inner values will be considered "equal" here. + */ + public boolean eq(InitFeatures b) { + boolean ret = bindings.InitFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1); + Reference.reachabilityFence(this); + Reference.reachabilityFence(b); + this.ptrs_to.add(b); + return ret; + } + + @Override public boolean equals(Object o) { + if (!(o instanceof InitFeatures)) return false; + return this.eq((InitFeatures)o); + } + long clone_ptr() { + long ret = bindings.InitFeatures_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + /** * Creates a copy of the InitFeatures */ public InitFeatures clone() { long ret = bindings.InitFeatures_clone(this.ptr); - InitFeatures ret_hu_conv = new InitFeatures(null, ret); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + InitFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new InitFeatures(null, ret); } ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -31,9 +58,10 @@ public class InitFeatures extends CommonBase { /** * Create a blank Features with no features set */ - public static InitFeatures constructor_empty() { + public static InitFeatures empty() { long ret = bindings.InitFeatures_empty(); - InitFeatures ret_hu_conv = new InitFeatures(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + InitFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new InitFeatures(null, ret); } ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } @@ -41,26 +69,40 @@ public class InitFeatures extends CommonBase { /** * Creates a Features with the bits set which are known by the implementation */ - public static InitFeatures constructor_known() { + public static InitFeatures known() { long ret = bindings.InitFeatures_known(); - InitFeatures ret_hu_conv = new InitFeatures(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + InitFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new InitFeatures(null, ret); } ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } + /** + * Returns true if this `Features` object contains unknown feature flags which are set as + * \"required\". + */ + public boolean requires_unknown_bits() { + boolean ret = bindings.InitFeatures_requires_unknown_bits(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + /** * Serialize the InitFeatures object into a byte array which can be read by InitFeatures_read */ public byte[] write() { byte[] ret = bindings.InitFeatures_write(this.ptr); + Reference.reachabilityFence(this); return ret; } /** * Read a InitFeatures from a byte array, created by InitFeatures_write */ - public static Result_InitFeaturesDecodeErrorZ constructor_read(byte[] ser) { + public static Result_InitFeaturesDecodeErrorZ read(byte[] ser) { long ret = bindings.InitFeatures_read(ser); + Reference.reachabilityFence(ser); + if (ret >= 0 && ret <= 4096) { return null; } Result_InitFeaturesDecodeErrorZ ret_hu_conv = Result_InitFeaturesDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }