X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FCommitmentUpdate.java;h=6a32283415af188a720835deaca0b6a1a2a9d8c1;hb=1854b5cebef22ace9e9e4dd191f609818df9ce08;hp=d886689d383bb0b8865dd1ec7c01d54175b54c8a;hpb=3d559f3266fde7c6a21248c10d9a7145125b5e69;p=ldk-java diff --git a/src/main/java/org/ldk/structs/CommitmentUpdate.java b/src/main/java/org/ldk/structs/CommitmentUpdate.java index d886689d..6a322834 100644 --- a/src/main/java/org/ldk/structs/CommitmentUpdate.java +++ b/src/main/java/org/ldk/structs/CommitmentUpdate.java @@ -2,46 +2,205 @@ 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; + +/** + * Struct used to return values from revoke_and_ack messages, containing a bunch of commitment + * transaction updates if they were pending. + */ +@SuppressWarnings("unchecked") // We correctly assign various generic arrays public class CommitmentUpdate extends CommonBase { CommitmentUpdate(Object _dummy, long ptr) { super(ptr); } @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { - bindings.CommitmentUpdate_free(ptr); super.finalize(); + super.finalize(); + if (ptr != 0) { bindings.CommitmentUpdate_free(ptr); } } - public CommitmentUpdate(CommitmentUpdate orig) { - super(bindings.CommitmentUpdate_clone(orig.ptr & ~1)); - this.ptrs_to.add(orig); + /** + * update_add_htlc messages which should be sent + */ + public UpdateAddHTLC[] get_update_add_htlcs() { + long[] ret = bindings.CommitmentUpdate_get_update_add_htlcs(this.ptr); + Reference.reachabilityFence(this); + UpdateAddHTLC[] ret_conv_15_arr = new UpdateAddHTLC[ret.length]; + for (int p = 0; p < ret.length; p++) { + long ret_conv_15 = ret[p]; + UpdateAddHTLC ret_conv_15_hu_conv = null; if (ret_conv_15 < 0 || ret_conv_15 > 4096) { ret_conv_15_hu_conv = new UpdateAddHTLC(null, ret_conv_15); } + ret_conv_15_hu_conv.ptrs_to.add(this); + ret_conv_15_arr[p] = ret_conv_15_hu_conv; + } + return ret_conv_15_arr; } - // Skipped CommitmentUpdate_set_update_add_htlcs - // Skipped CommitmentUpdate_set_update_fulfill_htlcs - // Skipped CommitmentUpdate_set_update_fail_htlcs - // Skipped CommitmentUpdate_set_update_fail_malformed_htlcs - public UpdateFee get_update_fee(CommitmentUpdate this_ptr) { - UpdateFee ret = new UpdateFee(null, bindings.CommitmentUpdate_get_update_fee(this_ptr.ptr & ~1)); - this.ptrs_to.add(this_ptr); - return ret; + /** + * update_add_htlc messages which should be sent + */ + public void set_update_add_htlcs(UpdateAddHTLC[] val) { + bindings.CommitmentUpdate_set_update_add_htlcs(this.ptr, val != null ? Arrays.stream(val).mapToLong(val_conv_15 -> val_conv_15 == null ? 0 : val_conv_15.ptr & ~1).toArray() : null); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + /** + * update_fulfill_htlc messages which should be sent + */ + public UpdateFulfillHTLC[] get_update_fulfill_htlcs() { + long[] ret = bindings.CommitmentUpdate_get_update_fulfill_htlcs(this.ptr); + Reference.reachabilityFence(this); + UpdateFulfillHTLC[] ret_conv_19_arr = new UpdateFulfillHTLC[ret.length]; + for (int t = 0; t < ret.length; t++) { + long ret_conv_19 = ret[t]; + UpdateFulfillHTLC ret_conv_19_hu_conv = null; if (ret_conv_19 < 0 || ret_conv_19 > 4096) { ret_conv_19_hu_conv = new UpdateFulfillHTLC(null, ret_conv_19); } + ret_conv_19_hu_conv.ptrs_to.add(this); + ret_conv_19_arr[t] = ret_conv_19_hu_conv; + } + return ret_conv_19_arr; + } + + /** + * update_fulfill_htlc messages which should be sent + */ + public void set_update_fulfill_htlcs(UpdateFulfillHTLC[] val) { + bindings.CommitmentUpdate_set_update_fulfill_htlcs(this.ptr, val != null ? Arrays.stream(val).mapToLong(val_conv_19 -> val_conv_19 == null ? 0 : val_conv_19.ptr & ~1).toArray() : null); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + /** + * update_fail_htlc messages which should be sent + */ + public UpdateFailHTLC[] get_update_fail_htlcs() { + long[] ret = bindings.CommitmentUpdate_get_update_fail_htlcs(this.ptr); + Reference.reachabilityFence(this); + UpdateFailHTLC[] ret_conv_16_arr = new UpdateFailHTLC[ret.length]; + for (int q = 0; q < ret.length; q++) { + long ret_conv_16 = ret[q]; + UpdateFailHTLC ret_conv_16_hu_conv = null; if (ret_conv_16 < 0 || ret_conv_16 > 4096) { ret_conv_16_hu_conv = new UpdateFailHTLC(null, ret_conv_16); } + ret_conv_16_hu_conv.ptrs_to.add(this); + ret_conv_16_arr[q] = ret_conv_16_hu_conv; + } + return ret_conv_16_arr; + } + + /** + * update_fail_htlc messages which should be sent + */ + public void set_update_fail_htlcs(UpdateFailHTLC[] val) { + bindings.CommitmentUpdate_set_update_fail_htlcs(this.ptr, val != null ? Arrays.stream(val).mapToLong(val_conv_16 -> val_conv_16 == null ? 0 : val_conv_16.ptr & ~1).toArray() : null); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + /** + * update_fail_malformed_htlc messages which should be sent + */ + public UpdateFailMalformedHTLC[] get_update_fail_malformed_htlcs() { + long[] ret = bindings.CommitmentUpdate_get_update_fail_malformed_htlcs(this.ptr); + Reference.reachabilityFence(this); + UpdateFailMalformedHTLC[] ret_conv_25_arr = new UpdateFailMalformedHTLC[ret.length]; + for (int z = 0; z < ret.length; z++) { + long ret_conv_25 = ret[z]; + UpdateFailMalformedHTLC ret_conv_25_hu_conv = null; if (ret_conv_25 < 0 || ret_conv_25 > 4096) { ret_conv_25_hu_conv = new UpdateFailMalformedHTLC(null, ret_conv_25); } + ret_conv_25_hu_conv.ptrs_to.add(this); + ret_conv_25_arr[z] = ret_conv_25_hu_conv; + } + return ret_conv_25_arr; + } + + /** + * update_fail_malformed_htlc messages which should be sent + */ + public void set_update_fail_malformed_htlcs(UpdateFailMalformedHTLC[] val) { + bindings.CommitmentUpdate_set_update_fail_malformed_htlcs(this.ptr, val != null ? Arrays.stream(val).mapToLong(val_conv_25 -> val_conv_25 == null ? 0 : val_conv_25.ptr & ~1).toArray() : null); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + /** + * An update_fee message which should be sent + * + * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None + */ + @Nullable + public UpdateFee get_update_fee() { + long ret = bindings.CommitmentUpdate_get_update_fee(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + UpdateFee ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new UpdateFee(null, ret); } + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + + /** + * An update_fee message which should be sent + * + * Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None + */ + public void set_update_fee(@Nullable UpdateFee val) { + bindings.CommitmentUpdate_set_update_fee(this.ptr, val == null ? 0 : val.ptr & ~1); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); + } + + /** + * Finally, the commitment_signed message which should be sent + */ + public CommitmentSigned get_commitment_signed() { + long ret = bindings.CommitmentUpdate_get_commitment_signed(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + CommitmentSigned ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new CommitmentSigned(null, ret); } + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; + } + + /** + * Finally, the commitment_signed message which should be sent + */ + public void set_commitment_signed(CommitmentSigned val) { + bindings.CommitmentUpdate_set_commitment_signed(this.ptr, val == null ? 0 : val.ptr & ~1); + Reference.reachabilityFence(this); + Reference.reachabilityFence(val); } - public void set_update_fee(CommitmentUpdate this_ptr, UpdateFee val) { - bindings.CommitmentUpdate_set_update_fee(this_ptr.ptr & ~1, val.ptr & ~1); - this.ptrs_to.add(this_ptr); - this.ptrs_to.add(val); + /** + * Constructs a new CommitmentUpdate given each field + */ + public static CommitmentUpdate of(UpdateAddHTLC[] update_add_htlcs_arg, UpdateFulfillHTLC[] update_fulfill_htlcs_arg, UpdateFailHTLC[] update_fail_htlcs_arg, UpdateFailMalformedHTLC[] update_fail_malformed_htlcs_arg, UpdateFee update_fee_arg, CommitmentSigned commitment_signed_arg) { + long ret = bindings.CommitmentUpdate_new(update_add_htlcs_arg != null ? Arrays.stream(update_add_htlcs_arg).mapToLong(update_add_htlcs_arg_conv_15 -> update_add_htlcs_arg_conv_15 == null ? 0 : update_add_htlcs_arg_conv_15.ptr & ~1).toArray() : null, update_fulfill_htlcs_arg != null ? Arrays.stream(update_fulfill_htlcs_arg).mapToLong(update_fulfill_htlcs_arg_conv_19 -> update_fulfill_htlcs_arg_conv_19 == null ? 0 : update_fulfill_htlcs_arg_conv_19.ptr & ~1).toArray() : null, update_fail_htlcs_arg != null ? Arrays.stream(update_fail_htlcs_arg).mapToLong(update_fail_htlcs_arg_conv_16 -> update_fail_htlcs_arg_conv_16 == null ? 0 : update_fail_htlcs_arg_conv_16.ptr & ~1).toArray() : null, update_fail_malformed_htlcs_arg != null ? Arrays.stream(update_fail_malformed_htlcs_arg).mapToLong(update_fail_malformed_htlcs_arg_conv_25 -> update_fail_malformed_htlcs_arg_conv_25 == null ? 0 : update_fail_malformed_htlcs_arg_conv_25.ptr & ~1).toArray() : null, update_fee_arg == null ? 0 : update_fee_arg.ptr & ~1, commitment_signed_arg == null ? 0 : commitment_signed_arg.ptr & ~1); + Reference.reachabilityFence(update_add_htlcs_arg); + Reference.reachabilityFence(update_fulfill_htlcs_arg); + Reference.reachabilityFence(update_fail_htlcs_arg); + Reference.reachabilityFence(update_fail_malformed_htlcs_arg); + Reference.reachabilityFence(update_fee_arg); + Reference.reachabilityFence(commitment_signed_arg); + if (ret >= 0 && ret <= 4096) { return null; } + CommitmentUpdate ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new CommitmentUpdate(null, ret); } + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; } - public CommitmentSigned get_commitment_signed(CommitmentUpdate this_ptr) { - CommitmentSigned ret = new CommitmentSigned(null, bindings.CommitmentUpdate_get_commitment_signed(this_ptr.ptr & ~1)); - this.ptrs_to.add(this_ptr); + long clone_ptr() { + long ret = bindings.CommitmentUpdate_clone_ptr(this.ptr); + Reference.reachabilityFence(this); return ret; } - public void set_commitment_signed(CommitmentUpdate this_ptr, CommitmentSigned val) { - bindings.CommitmentUpdate_set_commitment_signed(this_ptr.ptr & ~1, val.ptr & ~1); - this.ptrs_to.add(this_ptr); - this.ptrs_to.add(val); + /** + * Creates a copy of the CommitmentUpdate + */ + public CommitmentUpdate clone() { + long ret = bindings.CommitmentUpdate_clone(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + CommitmentUpdate ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new CommitmentUpdate(null, ret); } + ret_hu_conv.ptrs_to.add(this); + return ret_hu_conv; } - // Skipped CommitmentUpdate_new }