X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FNodeFeatures.java;h=1a05b6d5aad4cbca48d75e97f94566a1eb8dd5e3;hb=f3e670e9341decac613d33fc52febf19cea32f20;hp=022a46f68e4d4721b260996cde63beb249bb7426;hpb=d9af3c7d5fbc87035335d96b855bb9f1000a31a5;p=ldk-java diff --git a/src/main/java/org/ldk/structs/NodeFeatures.java b/src/main/java/org/ldk/structs/NodeFeatures.java index 022a46f6..1a05b6d5 100644 --- a/src/main/java/org/ldk/structs/NodeFeatures.java +++ b/src/main/java/org/ldk/structs/NodeFeatures.java @@ -4,6 +4,7 @@ import org.ldk.impl.bindings; import org.ldk.enums.*; import org.ldk.util.*; import java.util.Arrays; +import javax.annotation.Nullable; /** @@ -18,12 +19,29 @@ public class NodeFeatures extends CommonBase { if (ptr != 0) { bindings.NodeFeatures_free(ptr); } } + /** + * Checks if two NodeFeaturess 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(NodeFeatures b) { + boolean ret = bindings.NodeFeatures_eq(this.ptr, b == null ? 0 : b.ptr & ~1); + this.ptrs_to.add(b); + return ret; + } + + long clone_ptr() { + long ret = bindings.NodeFeatures_clone_ptr(this.ptr); + return ret; + } + /** * Creates a copy of the NodeFeatures */ public NodeFeatures clone() { long ret = bindings.NodeFeatures_clone(this.ptr); - NodeFeatures ret_hu_conv = new NodeFeatures(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + NodeFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new NodeFeatures(null, ret); } ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -31,9 +49,10 @@ public class NodeFeatures extends CommonBase { /** * Create a blank Features with no features set */ - public static NodeFeatures constructor_empty() { + public static NodeFeatures empty() { long ret = bindings.NodeFeatures_empty(); - NodeFeatures ret_hu_conv = new NodeFeatures(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + NodeFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new NodeFeatures(null, ret); } ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } @@ -41,13 +60,31 @@ public class NodeFeatures extends CommonBase { /** * Creates a Features with the bits set which are known by the implementation */ - public static NodeFeatures constructor_known() { + public static NodeFeatures known() { long ret = bindings.NodeFeatures_known(); - NodeFeatures ret_hu_conv = new NodeFeatures(null, ret); + if (ret >= 0 && ret <= 4096) { return null; } + NodeFeatures ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new NodeFeatures(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.NodeFeatures_requires_unknown_bits(this.ptr); + return ret; + } + + /** + * Returns whether the `payment_secret` feature is supported. + */ + public boolean supports_payment_secret() { + boolean ret = bindings.NodeFeatures_supports_payment_secret(this.ptr); + return ret; + } + /** * Serialize the NodeFeatures object into a byte array which can be read by NodeFeatures_read */ @@ -59,8 +96,9 @@ public class NodeFeatures extends CommonBase { /** * Read a NodeFeatures from a byte array, created by NodeFeatures_write */ - public static Result_NodeFeaturesDecodeErrorZ constructor_read(byte[] ser) { + public static Result_NodeFeaturesDecodeErrorZ read(byte[] ser) { long ret = bindings.NodeFeatures_read(ser); + if (ret >= 0 && ret <= 4096) { return null; } Result_NodeFeaturesDecodeErrorZ ret_hu_conv = Result_NodeFeaturesDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }