X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FFundingCreated.java;h=37168a0057ca519045ef0cafd1992024c3d533b7;hb=1854b5cebef22ace9e9e4dd191f609818df9ce08;hp=7687561d5f65f9520e1ed54d4505783825e4ef8e;hpb=fed2245c60159f6c074c9ed5c0f3ce273ad9841b;p=ldk-java diff --git a/src/main/java/org/ldk/structs/FundingCreated.java b/src/main/java/org/ldk/structs/FundingCreated.java index 7687561d..37168a00 100644 --- a/src/main/java/org/ldk/structs/FundingCreated.java +++ b/src/main/java/org/ldk/structs/FundingCreated.java @@ -4,7 +4,13 @@ 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 funding_created message to be sent or received from a peer + */ @SuppressWarnings("unchecked") // We correctly assign various generic arrays public class FundingCreated extends CommonBase { FundingCreated(Object _dummy, long ptr) { super(ptr); } @@ -14,65 +20,128 @@ public class FundingCreated extends CommonBase { if (ptr != 0) { bindings.FundingCreated_free(ptr); } } - public FundingCreated clone() { - long ret = bindings.FundingCreated_clone(this.ptr); - FundingCreated ret_hu_conv = new FundingCreated(null, ret); - ret_hu_conv.ptrs_to.add(this); - return ret_hu_conv; - } - + /** + * A temporary channel ID, until the funding is established + */ public byte[] get_temporary_channel_id() { byte[] ret = bindings.FundingCreated_get_temporary_channel_id(this.ptr); + Reference.reachabilityFence(this); return ret; } + /** + * A temporary channel ID, until the funding is established + */ public void set_temporary_channel_id(byte[] val) { - bindings.FundingCreated_set_temporary_channel_id(this.ptr, val); + bindings.FundingCreated_set_temporary_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32)); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } + /** + * The funding transaction ID + */ public byte[] get_funding_txid() { byte[] ret = bindings.FundingCreated_get_funding_txid(this.ptr); + Reference.reachabilityFence(this); return ret; } + /** + * The funding transaction ID + */ public void set_funding_txid(byte[] val) { - bindings.FundingCreated_set_funding_txid(this.ptr, val); + bindings.FundingCreated_set_funding_txid(this.ptr, InternalUtils.check_arr_len(val, 32)); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } + /** + * The specific output index funding this channel + */ public short get_funding_output_index() { short ret = bindings.FundingCreated_get_funding_output_index(this.ptr); + Reference.reachabilityFence(this); return ret; } + /** + * The specific output index funding this channel + */ public void set_funding_output_index(short val) { bindings.FundingCreated_set_funding_output_index(this.ptr, val); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } + /** + * The signature of the channel initiator (funder) on the initial commitment transaction + */ public byte[] get_signature() { byte[] ret = bindings.FundingCreated_get_signature(this.ptr); + Reference.reachabilityFence(this); return ret; } + /** + * The signature of the channel initiator (funder) on the initial commitment transaction + */ public void set_signature(byte[] val) { - bindings.FundingCreated_set_signature(this.ptr, val); + bindings.FundingCreated_set_signature(this.ptr, InternalUtils.check_arr_len(val, 64)); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } - public static FundingCreated constructor_new(byte[] temporary_channel_id_arg, byte[] funding_txid_arg, short funding_output_index_arg, byte[] signature_arg) { - long ret = bindings.FundingCreated_new(temporary_channel_id_arg, funding_txid_arg, funding_output_index_arg, signature_arg); - FundingCreated ret_hu_conv = new FundingCreated(null, ret); + /** + * Constructs a new FundingCreated given each field + */ + public static FundingCreated of(byte[] temporary_channel_id_arg, byte[] funding_txid_arg, short funding_output_index_arg, byte[] signature_arg) { + long ret = bindings.FundingCreated_new(InternalUtils.check_arr_len(temporary_channel_id_arg, 32), InternalUtils.check_arr_len(funding_txid_arg, 32), funding_output_index_arg, InternalUtils.check_arr_len(signature_arg, 64)); + Reference.reachabilityFence(temporary_channel_id_arg); + Reference.reachabilityFence(funding_txid_arg); + Reference.reachabilityFence(funding_output_index_arg); + Reference.reachabilityFence(signature_arg); + if (ret >= 0 && ret <= 4096) { return null; } + FundingCreated ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new FundingCreated(null, ret); } ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } + long clone_ptr() { + long ret = bindings.FundingCreated_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * Creates a copy of the FundingCreated + */ + public FundingCreated clone() { + long ret = bindings.FundingCreated_clone(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + FundingCreated ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new FundingCreated(null, ret); } + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + + /** + * Serialize the FundingCreated object into a byte array which can be read by FundingCreated_read + */ public byte[] write() { byte[] ret = bindings.FundingCreated_write(this.ptr); + Reference.reachabilityFence(this); return ret; } - public static FundingCreated constructor_read(byte[] ser) { + /** + * Read a FundingCreated from a byte array, created by FundingCreated_write + */ + public static Result_FundingCreatedDecodeErrorZ read(byte[] ser) { long ret = bindings.FundingCreated_read(ser); - FundingCreated ret_hu_conv = new FundingCreated(null, ret); - ret_hu_conv.ptrs_to.add(ret_hu_conv); + Reference.reachabilityFence(ser); + if (ret >= 0 && ret <= 4096) { return null; } + Result_FundingCreatedDecodeErrorZ ret_hu_conv = Result_FundingCreatedDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; }