1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
12 * A transaction output watched by a [`ChannelMonitor`] for spends on-chain.
14 * Used to convey to a [`Filter`] such an output with a given spending condition. Any transaction
15 * spending the output must be given to [`ChannelMonitor::block_connected`] either directly or via
16 * [`Confirm::transactions_confirmed`].
18 * If `block_hash` is `Some`, this indicates the output was created in the corresponding block and
19 * may have been spent there. See [`Filter::register_output`] for details.
21 * [`ChannelMonitor`]: channelmonitor::ChannelMonitor
22 * [`ChannelMonitor::block_connected`]: channelmonitor::ChannelMonitor::block_connected
24 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
25 public class WatchedOutput extends CommonBase {
26 WatchedOutput(Object _dummy, long ptr) { super(ptr); }
27 @Override @SuppressWarnings("deprecation")
28 protected void finalize() throws Throwable {
30 if (ptr != 0) { bindings.WatchedOutput_free(ptr); }
34 * First block where the transaction output may have been spent.
36 * Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
39 public byte[] get_block_hash() {
40 byte[] ret = bindings.WatchedOutput_get_block_hash(this.ptr);
41 Reference.reachabilityFence(this);
46 * First block where the transaction output may have been spent.
48 * Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
50 public void set_block_hash(@Nullable byte[] val) {
51 bindings.WatchedOutput_set_block_hash(this.ptr, InternalUtils.check_arr_len(val, 32));
52 Reference.reachabilityFence(this);
53 Reference.reachabilityFence(val);
57 * Outpoint identifying the transaction output.
59 public OutPoint get_outpoint() {
60 long ret = bindings.WatchedOutput_get_outpoint(this.ptr);
61 Reference.reachabilityFence(this);
62 if (ret >= 0 && ret <= 4096) { return null; }
63 org.ldk.structs.OutPoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OutPoint(null, ret); }
64 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
69 * Outpoint identifying the transaction output.
71 public void set_outpoint(org.ldk.structs.OutPoint val) {
72 bindings.WatchedOutput_set_outpoint(this.ptr, val == null ? 0 : val.ptr);
73 Reference.reachabilityFence(this);
74 Reference.reachabilityFence(val);
75 if (this != null) { this.ptrs_to.add(val); };
79 * Spending condition of the transaction output.
81 public byte[] get_script_pubkey() {
82 byte[] ret = bindings.WatchedOutput_get_script_pubkey(this.ptr);
83 Reference.reachabilityFence(this);
88 * Spending condition of the transaction output.
90 public void set_script_pubkey(byte[] val) {
91 bindings.WatchedOutput_set_script_pubkey(this.ptr, val);
92 Reference.reachabilityFence(this);
93 Reference.reachabilityFence(val);
97 * Constructs a new WatchedOutput given each field
99 public static WatchedOutput of(byte[] block_hash_arg, org.ldk.structs.OutPoint outpoint_arg, byte[] script_pubkey_arg) {
100 long ret = bindings.WatchedOutput_new(InternalUtils.check_arr_len(block_hash_arg, 32), outpoint_arg == null ? 0 : outpoint_arg.ptr, script_pubkey_arg);
101 Reference.reachabilityFence(block_hash_arg);
102 Reference.reachabilityFence(outpoint_arg);
103 Reference.reachabilityFence(script_pubkey_arg);
104 if (ret >= 0 && ret <= 4096) { return null; }
105 org.ldk.structs.WatchedOutput ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.WatchedOutput(null, ret); }
106 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
107 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(outpoint_arg); };
112 long ret = bindings.WatchedOutput_clone_ptr(this.ptr);
113 Reference.reachabilityFence(this);
118 * Creates a copy of the WatchedOutput
120 public WatchedOutput clone() {
121 long ret = bindings.WatchedOutput_clone(this.ptr);
122 Reference.reachabilityFence(this);
123 if (ret >= 0 && ret <= 4096) { return null; }
124 org.ldk.structs.WatchedOutput ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.WatchedOutput(null, ret); }
125 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
130 * Checks if two WatchedOutputs contain equal inner contents.
131 * This ignores pointers and is_owned flags and looks at the values in fields.
132 * Two objects with NULL inner values will be considered "equal" here.
134 public boolean eq(org.ldk.structs.WatchedOutput b) {
135 boolean ret = bindings.WatchedOutput_eq(this.ptr, b == null ? 0 : b.ptr);
136 Reference.reachabilityFence(this);
137 Reference.reachabilityFence(b);
138 if (this != null) { this.ptrs_to.add(b); };
142 @Override public boolean equals(Object o) {
143 if (!(o instanceof WatchedOutput)) return false;
144 return this.eq((WatchedOutput)o);
147 * Generates a non-cryptographic 64-bit hash of the WatchedOutput.
150 long ret = bindings.WatchedOutput_hash(this.ptr);
151 Reference.reachabilityFence(this);
155 @Override public int hashCode() {
156 return (int)this.hash();