X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelReestablish.java;h=42c7696cf26aecff061d9237511d7cea215577eb;hb=ffdd56c967087cba7548599934585b8a9a3102e2;hp=3d47cc18364f72136b84298f1d292f0d25eaa9ee;hpb=592c4f92dd3011a2f2a7988ce66ed166c3a8f58c;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelReestablish.java b/src/main/java/org/ldk/structs/ChannelReestablish.java index 3d47cc18..42c7696c 100644 --- a/src/main/java/org/ldk/structs/ChannelReestablish.java +++ b/src/main/java/org/ldk/structs/ChannelReestablish.java @@ -2,61 +2,228 @@ package org.ldk.structs; 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; + +/** + * A [`channel_reestablish`] message to be sent to or received from a peer. + * + * [`channel_reestablish`]: https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#message-retransmission + */ +@SuppressWarnings("unchecked") // We correctly assign various generic arrays public class ChannelReestablish extends CommonBase { ChannelReestablish(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { super.finalize(); - bindings.ChannelReestablish_free(ptr); + if (ptr != 0) { bindings.ChannelReestablish_free(ptr); } + } + + /** + * The channel ID + */ + public ChannelId get_channel_id() { + long ret = bindings.ChannelReestablish_get_channel_id(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.ChannelId ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelId(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * The channel ID + */ + public void set_channel_id(org.ldk.structs.ChannelId val) { + bindings.ChannelReestablish_set_channel_id(this.ptr, val.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + if (this != null) { this.ptrs_to.add(val); }; + } + + /** + * The next commitment number for the sender + */ + public long get_next_local_commitment_number() { + long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr); + Reference.reachabilityFence(this); + return ret; } - public ChannelReestablish(ChannelReestablish orig) { - super(bindings.ChannelReestablish_clone(orig == null ? 0 : orig.ptr & ~1)); - this.ptrs_to.add(orig); + /** + * The next commitment number for the sender + */ + public void set_next_local_commitment_number(long val) { + bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, val); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } - public byte[] get_channel_id(ChannelReestablish this_ptr) { - byte[] ret = bindings.ChannelReestablish_get_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1); - this.ptrs_to.add(this_ptr); + /** + * The next commitment number for the recipient + */ + public long get_next_remote_commitment_number() { + long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr); + Reference.reachabilityFence(this); return ret; } - public void set_channel_id(ChannelReestablish this_ptr, byte[] val) { - bindings.ChannelReestablish_set_channel_id(this_ptr == null ? 0 : this_ptr.ptr & ~1, val); - this.ptrs_to.add(this_ptr); + /** + * The next commitment number for the recipient + */ + public void set_next_remote_commitment_number(long val) { + bindings.ChannelReestablish_set_next_remote_commitment_number(this.ptr, val); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } - public long get_next_local_commitment_number(ChannelReestablish this_ptr) { - long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this_ptr == null ? 0 : this_ptr.ptr & ~1); - this.ptrs_to.add(this_ptr); + /** + * Proof that the sender knows the per-commitment secret of a specific commitment transaction + * belonging to the recipient + */ + public byte[] get_your_last_per_commitment_secret() { + byte[] ret = bindings.ChannelReestablish_get_your_last_per_commitment_secret(this.ptr); + Reference.reachabilityFence(this); return ret; } - public void set_next_local_commitment_number(ChannelReestablish this_ptr, long val) { - bindings.ChannelReestablish_set_next_local_commitment_number(this_ptr == null ? 0 : this_ptr.ptr & ~1, val); - this.ptrs_to.add(this_ptr); + /** + * Proof that the sender knows the per-commitment secret of a specific commitment transaction + * belonging to the recipient + */ + public void set_your_last_per_commitment_secret(byte[] val) { + bindings.ChannelReestablish_set_your_last_per_commitment_secret(this.ptr, InternalUtils.check_arr_len(val, 32)); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } - public long get_next_remote_commitment_number(ChannelReestablish this_ptr) { - long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this_ptr == null ? 0 : this_ptr.ptr & ~1); - this.ptrs_to.add(this_ptr); + /** + * The sender's per-commitment point for their current commitment transaction + */ + public byte[] get_my_current_per_commitment_point() { + byte[] ret = bindings.ChannelReestablish_get_my_current_per_commitment_point(this.ptr); + Reference.reachabilityFence(this); return ret; } - public void set_next_remote_commitment_number(ChannelReestablish this_ptr, long val) { - bindings.ChannelReestablish_set_next_remote_commitment_number(this_ptr == null ? 0 : this_ptr.ptr & ~1, val); - this.ptrs_to.add(this_ptr); + /** + * The sender's per-commitment point for their current commitment transaction + */ + public void set_my_current_per_commitment_point(byte[] val) { + bindings.ChannelReestablish_set_my_current_per_commitment_point(this.ptr, InternalUtils.check_arr_len(val, 33)); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + /** + * The next funding transaction ID + */ + public Option_ThirtyTwoBytesZ get_next_funding_txid() { + long ret = bindings.ChannelReestablish_get_next_funding_txid(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.Option_ThirtyTwoBytesZ ret_hu_conv = org.ldk.structs.Option_ThirtyTwoBytesZ.constr_from_ptr(ret); + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * The next funding transaction ID + */ + public void set_next_funding_txid(org.ldk.structs.Option_ThirtyTwoBytesZ val) { + bindings.ChannelReestablish_set_next_funding_txid(this.ptr, val.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + if (this != null) { this.ptrs_to.add(val); }; + } + + /** + * Constructs a new ChannelReestablish given each field + */ + public static ChannelReestablish of(org.ldk.structs.ChannelId channel_id_arg, long next_local_commitment_number_arg, long next_remote_commitment_number_arg, byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg, org.ldk.structs.Option_ThirtyTwoBytesZ next_funding_txid_arg) { + long ret = bindings.ChannelReestablish_new(channel_id_arg.ptr, next_local_commitment_number_arg, next_remote_commitment_number_arg, InternalUtils.check_arr_len(your_last_per_commitment_secret_arg, 32), InternalUtils.check_arr_len(my_current_per_commitment_point_arg, 33), next_funding_txid_arg.ptr); + Reference.reachabilityFence(channel_id_arg); + Reference.reachabilityFence(next_local_commitment_number_arg); + Reference.reachabilityFence(next_remote_commitment_number_arg); + Reference.reachabilityFence(your_last_per_commitment_secret_arg); + Reference.reachabilityFence(my_current_per_commitment_point_arg); + Reference.reachabilityFence(next_funding_txid_arg); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.ChannelReestablish ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelReestablish(null, ret); } + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); }; + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(channel_id_arg); }; + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(next_funding_txid_arg); }; + return ret_hu_conv; } - public byte[] write(ChannelReestablish obj) { - byte[] ret = bindings.ChannelReestablish_write(obj == null ? 0 : obj.ptr & ~1); - this.ptrs_to.add(obj); + long clone_ptr() { + long ret = bindings.ChannelReestablish_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * Creates a copy of the ChannelReestablish + */ + public ChannelReestablish clone() { + long ret = bindings.ChannelReestablish_clone(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.ChannelReestablish ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelReestablish(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 ChannelReestablish. + */ + public long hash() { + long ret = bindings.ChannelReestablish_hash(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + @Override public int hashCode() { + return (int)this.hash(); + } + /** + * Checks if two ChannelReestablishs 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.ChannelReestablish b) { + boolean ret = bindings.ChannelReestablish_eq(this.ptr, 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 ChannelReestablish)) return false; + return this.eq((ChannelReestablish)o); + } + /** + * Serialize the ChannelReestablish object into a byte array which can be read by ChannelReestablish_read + */ + public byte[] write() { + byte[] ret = bindings.ChannelReestablish_write(this.ptr); + Reference.reachabilityFence(this); return ret; } - public ChannelReestablish(byte[] ser) { - super(bindings.ChannelReestablish_read(ser)); + /** + * Read a ChannelReestablish from a byte array, created by ChannelReestablish_write + */ + public static Result_ChannelReestablishDecodeErrorZ read(byte[] ser) { + long ret = bindings.ChannelReestablish_read(ser); + Reference.reachabilityFence(ser); + if (ret >= 0 && ret <= 4096) { return null; } + Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; } }