X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FProbeSendFailure.java;fp=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FProbeSendFailure.java;h=927c3f4ff3d66e538935c41dcb4afbf4c93b6cf4;hb=07d5d868dfe064aadb28a7f7ca6002c16be9723d;hp=0000000000000000000000000000000000000000;hpb=32973ea2749f8efd05b543dd774763513013b38b;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ProbeSendFailure.java b/src/main/java/org/ldk/structs/ProbeSendFailure.java new file mode 100644 index 00000000..927c3f4f --- /dev/null +++ b/src/main/java/org/ldk/structs/ProbeSendFailure.java @@ -0,0 +1,114 @@ +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; + + +/** + * Indicates that we failed to send a payment probe. Further errors may be surfaced later via + * [`Event::ProbeFailed`]. + * + * [`Event::ProbeFailed`]: crate::events::Event::ProbeFailed + */ +@SuppressWarnings("unchecked") // We correctly assign various generic arrays +public class ProbeSendFailure extends CommonBase { + private ProbeSendFailure(Object _dummy, long ptr) { super(ptr); } + @Override @SuppressWarnings("deprecation") + protected void finalize() throws Throwable { + super.finalize(); + if (ptr != 0) { bindings.ProbeSendFailure_free(ptr); } + } + static ProbeSendFailure constr_from_ptr(long ptr) { + bindings.LDKProbeSendFailure raw_val = bindings.LDKProbeSendFailure_ref_from_ptr(ptr); + if (raw_val.getClass() == bindings.LDKProbeSendFailure.RouteNotFound.class) { + return new RouteNotFound(ptr, (bindings.LDKProbeSendFailure.RouteNotFound)raw_val); + } + if (raw_val.getClass() == bindings.LDKProbeSendFailure.SendingFailed.class) { + return new SendingFailed(ptr, (bindings.LDKProbeSendFailure.SendingFailed)raw_val); + } + assert false; return null; // Unreachable without extending the (internal) bindings interface + } + + /** + * We were unable to find a route to the destination. + */ + public final static class RouteNotFound extends ProbeSendFailure { + private RouteNotFound(long ptr, bindings.LDKProbeSendFailure.RouteNotFound obj) { + super(null, ptr); + } + } + /** + * We failed to send the payment probes. + */ + public final static class SendingFailed extends ProbeSendFailure { + public final org.ldk.structs.PaymentSendFailure sending_failed; + private SendingFailed(long ptr, bindings.LDKProbeSendFailure.SendingFailed obj) { + super(null, ptr); + long sending_failed = obj.sending_failed; + org.ldk.structs.PaymentSendFailure sending_failed_hu_conv = org.ldk.structs.PaymentSendFailure.constr_from_ptr(sending_failed); + if (sending_failed_hu_conv != null) { sending_failed_hu_conv.ptrs_to.add(this); }; + this.sending_failed = sending_failed_hu_conv; + } + } + long clone_ptr() { + long ret = bindings.ProbeSendFailure_clone_ptr(this.ptr); + Reference.reachabilityFence(this); + return ret; + } + + /** + * Creates a copy of the ProbeSendFailure + */ + public ProbeSendFailure clone() { + long ret = bindings.ProbeSendFailure_clone(this.ptr); + Reference.reachabilityFence(this); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.ProbeSendFailure ret_hu_conv = org.ldk.structs.ProbeSendFailure.constr_from_ptr(ret); + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); }; + return ret_hu_conv; + } + + /** + * Utility method to constructs a new RouteNotFound-variant ProbeSendFailure + */ + public static ProbeSendFailure route_not_found() { + long ret = bindings.ProbeSendFailure_route_not_found(); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.ProbeSendFailure ret_hu_conv = org.ldk.structs.ProbeSendFailure.constr_from_ptr(ret); + if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); }; + return ret_hu_conv; + } + + /** + * Utility method to constructs a new SendingFailed-variant ProbeSendFailure + */ + public static ProbeSendFailure sending_failed(org.ldk.structs.PaymentSendFailure a) { + long ret = bindings.ProbeSendFailure_sending_failed(a.ptr); + Reference.reachabilityFence(a); + if (ret >= 0 && ret <= 4096) { return null; } + org.ldk.structs.ProbeSendFailure ret_hu_conv = org.ldk.structs.ProbeSendFailure.constr_from_ptr(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(a); }; + return ret_hu_conv; + } + + /** + * Checks if two ProbeSendFailures contain equal inner contents. + * This ignores pointers and is_owned flags and looks at the values in fields. + */ + public boolean eq(org.ldk.structs.ProbeSendFailure b) { + boolean ret = bindings.ProbeSendFailure_eq(this.ptr, b == null ? 0 : b.ptr); + Reference.reachabilityFence(this); + Reference.reachabilityFence(b); + return ret; + } + + @Override public boolean equals(Object o) { + if (!(o instanceof ProbeSendFailure)) return false; + return this.eq((ProbeSendFailure)o); + } +}