X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FReplyShortChannelIdsEnd.java;h=8d0e5bc78d71a26fe83a5e668f90cab92d828d97;hb=f3e670e9341decac613d33fc52febf19cea32f20;hp=895988fa97564857523abcd7f136342ebbb1d99a;hpb=166ff04616cfee975ce991607ca0df88857193df;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ReplyShortChannelIdsEnd.java b/src/main/java/org/ldk/structs/ReplyShortChannelIdsEnd.java index 895988fa..8d0e5bc7 100644 --- a/src/main/java/org/ldk/structs/ReplyShortChannelIdsEnd.java +++ b/src/main/java/org/ldk/structs/ReplyShortChannelIdsEnd.java @@ -2,48 +2,101 @@ 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 reply_short_channel_ids_end message is sent as a reply to a + * query_short_channel_ids message. The query recipient makes a best + * effort to respond based on their local network view which may not be + * a perfect view of the network. + */ +@SuppressWarnings("unchecked") // We correctly assign various generic arrays public class ReplyShortChannelIdsEnd extends CommonBase { ReplyShortChannelIdsEnd(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { - bindings.ReplyShortChannelIdsEnd_free(ptr); super.finalize(); + super.finalize(); + if (ptr != 0) { bindings.ReplyShortChannelIdsEnd_free(ptr); } + } + + /** + * The genesis hash of the blockchain that was queried + */ + public byte[] get_chain_hash() { + byte[] ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this.ptr); + return ret; } - public ReplyShortChannelIdsEnd(ReplyShortChannelIdsEnd orig) { - super(bindings.ReplyShortChannelIdsEnd_clone(orig.ptr & ~1)); - this.ptrs_to.add(orig); + /** + * The genesis hash of the blockchain that was queried + */ + public void set_chain_hash(byte[] val) { + bindings.ReplyShortChannelIdsEnd_set_chain_hash(this.ptr, InternalUtils.check_arr_len(val, 32)); } - public byte[] get_chain_hash(ReplyShortChannelIdsEnd this_ptr) { - byte[] ret = bindings.ReplyShortChannelIdsEnd_get_chain_hash(this_ptr.ptr & ~1); - this.ptrs_to.add(this_ptr); + /** + * Indicates if the query recipient maintains up-to-date channel + * information for the chain_hash + */ + public boolean get_full_information() { + boolean ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this.ptr); return ret; } - public void set_chain_hash(ReplyShortChannelIdsEnd this_ptr, byte[] val) { - bindings.ReplyShortChannelIdsEnd_set_chain_hash(this_ptr.ptr & ~1, val); - this.ptrs_to.add(this_ptr); + /** + * Indicates if the query recipient maintains up-to-date channel + * information for the chain_hash + */ + public void set_full_information(boolean val) { + bindings.ReplyShortChannelIdsEnd_set_full_information(this.ptr, val); } - public boolean get_full_information(ReplyShortChannelIdsEnd this_ptr) { - boolean ret = bindings.ReplyShortChannelIdsEnd_get_full_information(this_ptr.ptr & ~1); - this.ptrs_to.add(this_ptr); + /** + * Constructs a new ReplyShortChannelIdsEnd given each field + */ + public static ReplyShortChannelIdsEnd of(byte[] chain_hash_arg, boolean full_information_arg) { + long ret = bindings.ReplyShortChannelIdsEnd_new(InternalUtils.check_arr_len(chain_hash_arg, 32), full_information_arg); + if (ret >= 0 && ret <= 4096) { return null; } + ReplyShortChannelIdsEnd ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret); } + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + long clone_ptr() { + long ret = bindings.ReplyShortChannelIdsEnd_clone_ptr(this.ptr); return ret; } - public void set_full_information(ReplyShortChannelIdsEnd this_ptr, boolean val) { - bindings.ReplyShortChannelIdsEnd_set_full_information(this_ptr.ptr & ~1, val); - this.ptrs_to.add(this_ptr); + /** + * Creates a copy of the ReplyShortChannelIdsEnd + */ + public ReplyShortChannelIdsEnd clone() { + long ret = bindings.ReplyShortChannelIdsEnd_clone(this.ptr); + if (ret >= 0 && ret <= 4096) { return null; } + ReplyShortChannelIdsEnd ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new ReplyShortChannelIdsEnd(null, ret); } + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; } - public ReplyShortChannelIdsEnd(byte[] chain_hash_arg, boolean full_information_arg) { - super(bindings.ReplyShortChannelIdsEnd_new(chain_hash_arg, full_information_arg)); + /** + * Serialize the ReplyShortChannelIdsEnd object into a byte array which can be read by ReplyShortChannelIdsEnd_read + */ + public byte[] write() { + byte[] ret = bindings.ReplyShortChannelIdsEnd_write(this.ptr); + return ret; } - public ReplyShortChannelIdsEnd(byte[] ser) { - super(bindings.ReplyShortChannelIdsEnd_read(ser)); + /** + * Read a ReplyShortChannelIdsEnd from a byte array, created by ReplyShortChannelIdsEnd_write + */ + public static Result_ReplyShortChannelIdsEndDecodeErrorZ read(byte[] ser) { + long ret = bindings.ReplyShortChannelIdsEnd_read(ser); + if (ret >= 0 && ret <= 4096) { return null; } + Result_ReplyShortChannelIdsEndDecodeErrorZ ret_hu_conv = Result_ReplyShortChannelIdsEndDecodeErrorZ.constr_from_ptr(ret); + return ret_hu_conv; } - // Skipped ReplyShortChannelIdsEnd_write }