X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelReestablish.java;h=cf589693f792f444c51303f0f1a1076b551ce19c;hb=c6bac88847b7c09560af81f00ba8dd3c2ebe3a19;hp=97f72ee37027872139ab36147215ed1354b37466;hpb=ad15b3a4dbf3fbc7f08ef22d656bae79e8182008;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelReestablish.java b/src/main/java/org/ldk/structs/ChannelReestablish.java index 97f72ee3..cf589693 100644 --- a/src/main/java/org/ldk/structs/ChannelReestablish.java +++ b/src/main/java/org/ldk/structs/ChannelReestablish.java @@ -2,56 +2,95 @@ package org.ldk.structs; import org.ldk.impl.bindings; import org.ldk.enums.*; +import org.ldk.util.*; +import java.util.Arrays; +import javax.annotation.Nullable; + +/** + * A channel_reestablish message to be sent or received from a peer + */ +@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 byte[] get_channel_id() { + byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr); + return ret; } - public ChannelReestablish(ChannelReestablish orig) { - super(bindings.ChannelReestablish_clone(orig == null ? 0 : orig.ptr & ~1)); - this.ptrs_to.add(orig); + /** + * The channel ID + */ + public void set_channel_id(byte[] val) { + bindings.ChannelReestablish_set_channel_id(this.ptr, 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 sender + */ + public long get_next_local_commitment_number() { + long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr); 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 sender + */ + public void set_next_local_commitment_number(long val) { + bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, 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); + /** + * 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); 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); + /** + * 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); } - 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); - return ret; + /** + * Creates a copy of the ChannelReestablish + */ + public ChannelReestablish clone() { + long ret = bindings.ChannelReestablish_clone(this.ptr); + if (ret >= 0 && ret <= 4096) { return null; } + ChannelReestablish ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ChannelReestablish(null, ret); } + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; } - 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); + /** + * 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); + return ret; } - // Skipped ChannelReestablish_write - 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); + if (ret >= 0 && ret <= 4096) { return null; } + Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; } }