X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FHostname.java;h=a6d90d2c67a6b3f9c3dd32048ad77c7b11f98df7;hb=2bb592fb946e316dba9f4d1123f8ac72ff4e9bf8;hp=afe13a63baa1cfae0bd22788546572ed7923696e;hpb=f385eff0dd0aa61fbf21ae946c424f4a6a26de04;p=ldk-java diff --git a/src/main/java/org/ldk/structs/Hostname.java b/src/main/java/org/ldk/structs/Hostname.java index afe13a63..a6d90d2c 100644 --- a/src/main/java/org/ldk/structs/Hostname.java +++ b/src/main/java/org/ldk/structs/Hostname.java @@ -13,7 +13,9 @@ import javax.annotation.Nullable; * Only the character set and length will be validated. * The character set consists of ASCII alphanumeric characters, hyphens, and periods. * Its length is guaranteed to be representable by a single byte. - * This serialization is used by BOLT 7 hostnames. + * This serialization is used by [`BOLT 7`] hostnames. + * + * [`BOLT 7`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class Hostname extends CommonBase { @@ -42,6 +44,35 @@ public class Hostname extends CommonBase { return ret_hu_conv; } + /** + * Generates a non-cryptographic 64-bit hash of the Hostname. + */ + public long hash() { + long ret = bindings.Hostname_hash(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + @Override public int hashCode() { + return (int)this.hash(); + } + /** + * Checks if two Hostnames 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.Hostname b) { + boolean ret = bindings.Hostname_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 Hostname)) return false; + return this.eq((Hostname)o); + } /** * Returns the length of the hostname. */ @@ -51,4 +82,24 @@ public class Hostname extends CommonBase { return ret; } + /** + * Serialize the Hostname object into a byte array which can be read by Hostname_read + */ + public byte[] write() { + byte[] ret = bindings.Hostname_write(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * Read a Hostname from a byte array, created by Hostname_write + */ + public static Result_HostnameDecodeErrorZ read(byte[] ser) { + long ret = bindings.Hostname_read(ser); + Reference.reachabilityFence(ser); + if (ret >= 0 && ret <= 4096) { return null; } + Result_HostnameDecodeErrorZ ret_hu_conv = Result_HostnameDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; + } + }