X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FBigSize.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FBigSize.java;h=421d9e6b5b9d6ebba3f09b17c135aa71cd27049e;hb=8fa2bcb208a51fa352d04981f1387d8bceced107;hp=c87c9ae3dad8c05db4ad97573d71a75726213939;hpb=7da1092518e5ea1518255a4473c178f52549fd81;p=ldk-java diff --git a/src/main/java/org/ldk/structs/BigSize.java b/src/main/java/org/ldk/structs/BigSize.java index c87c9ae3..421d9e6b 100644 --- a/src/main/java/org/ldk/structs/BigSize.java +++ b/src/main/java/org/ldk/structs/BigSize.java @@ -50,4 +50,71 @@ public class BigSize extends CommonBase { return ret_hu_conv; } + long clone_ptr() { + long ret = bindings.BigSize_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * Creates a copy of the BigSize + */ + public BigSize clone() { + long ret = bindings.BigSize_clone(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.BigSize ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.BigSize(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * Generates a non-cryptographic 64-bit hash of the BigSize. + */ + public long hash() { + long ret = bindings.BigSize_hash(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + @Override public int hashCode() { + return (int)this.hash(); + } + /** + * Checks if two BigSizes 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(org.ldk.structs.BigSize b) { + boolean ret = bindings.BigSize_eq(this.ptr, b == null ? 0 : b.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(b); + if (this != null) { this.ptrs_to.add(b); }; + return ret; + } + + @Override public boolean equals(Object o) { + if (!(o instanceof BigSize)) return false; + return this.eq((BigSize)o); + } + /** + * Serialize the BigSize object into a byte array which can be read by BigSize_read + */ + public byte[] write() { + byte[] ret = bindings.BigSize_write(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * Read a BigSize from a byte array, created by BigSize_write + */ + public static Result_BigSizeDecodeErrorZ read(byte[] ser) { + long ret = bindings.BigSize_read(ser); + Reference.reachabilityFence(ser); + if (ret >= 0 && ret <= 4096) { return null; } + Result_BigSizeDecodeErrorZ ret_hu_conv = Result_BigSizeDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + }