6cc7fee64b2bc26ddc9f0b2711f5577e29c087eb
[ldk-java] / src / main / java / org / ldk / structs / Watch.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10 /**
11  * The `Watch` trait defines behavior for watching on-chain activity pertaining to channels as
12  * blocks are connected and disconnected.
13  * 
14  * Each channel is associated with a [`ChannelMonitor`]. Implementations of this trait are
15  * responsible for maintaining a set of monitors such that they can be updated accordingly as
16  * channel state changes and HTLCs are resolved. See method documentation for specific
17  * requirements.
18  * 
19  * Implementations **must** ensure that updates are successfully applied and persisted upon method
20  * completion. If an update fails with a [`PermanentFailure`], then it must immediately shut down
21  * without taking any further action such as persisting the current state.
22  * 
23  * If an implementation maintains multiple instances of a channel's monitor (e.g., by storing
24  * backup copies), then it must ensure that updates are applied across all instances. Otherwise, it
25  * could result in a revoked transaction being broadcast, allowing the counterparty to claim all
26  * funds in the channel. See [`ChannelMonitorUpdateErr`] for more details about how to handle
27  * multiple instances.
28  * 
29  * [`PermanentFailure`]: ChannelMonitorUpdateErr::PermanentFailure
30  */
31 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
32 public class Watch extends CommonBase {
33         final bindings.LDKWatch bindings_instance;
34         Watch(Object _dummy, long ptr) { super(ptr); bindings_instance = null; }
35         private Watch(bindings.LDKWatch arg) {
36                 super(bindings.LDKWatch_new(arg));
37                 this.ptrs_to.add(arg);
38                 this.bindings_instance = arg;
39         }
40         @Override @SuppressWarnings("deprecation")
41         protected void finalize() throws Throwable {
42                 if (ptr != 0) { bindings.Watch_free(ptr); } super.finalize();
43         }
44
45         public static interface WatchInterface {
46                 /**
47                  * Watches a channel identified by `funding_txo` using `monitor`.
48                  * 
49                  * Implementations are responsible for watching the chain for the funding transaction along
50                  * with any spends of outputs returned by [`get_outputs_to_watch`]. In practice, this means
51                  * calling [`block_connected`] and [`block_disconnected`] on the monitor.
52                  * 
53                  * Note: this interface MUST error with `ChannelMonitorUpdateErr::PermanentFailure` if
54                  * the given `funding_txo` has previously been registered via `watch_channel`.
55                  * 
56                  * [`get_outputs_to_watch`]: channelmonitor::ChannelMonitor::get_outputs_to_watch
57                  * [`block_connected`]: channelmonitor::ChannelMonitor::block_connected
58                  * [`block_disconnected`]: channelmonitor::ChannelMonitor::block_disconnected
59                  */
60                 Result_NoneChannelMonitorUpdateErrZ watch_channel(OutPoint funding_txo, ChannelMonitor monitor);
61                 /**
62                  * Updates a channel identified by `funding_txo` by applying `update` to its monitor.
63                  * 
64                  * Implementations must call [`update_monitor`] with the given update. See
65                  * [`ChannelMonitorUpdateErr`] for invariants around returning an error.
66                  * 
67                  * [`update_monitor`]: channelmonitor::ChannelMonitor::update_monitor
68                  */
69                 Result_NoneChannelMonitorUpdateErrZ update_channel(OutPoint funding_txo, ChannelMonitorUpdate update);
70                 /**
71                  * Returns any monitor events since the last call. Subsequent calls must only return new
72                  * events.
73                  * 
74                  * Note that after any block- or transaction-connection calls to a [`ChannelMonitor`], no
75                  * further events may be returned here until the [`ChannelMonitor`] has been fully persisted
76                  * to disk.
77                  * 
78                  * For details on asynchronous [`ChannelMonitor`] updating and returning
79                  * [`MonitorEvent::UpdateCompleted`] here, see [`ChannelMonitorUpdateErr::TemporaryFailure`].
80                  */
81                 MonitorEvent[] release_pending_monitor_events();
82         }
83         private static class LDKWatchHolder { Watch held; }
84         public static Watch new_impl(WatchInterface arg) {
85                 final LDKWatchHolder impl_holder = new LDKWatchHolder();
86                 impl_holder.held = new Watch(new bindings.LDKWatch() {
87                         @Override public long watch_channel(long funding_txo, long monitor) {
88                                 OutPoint funding_txo_hu_conv = null; if (funding_txo < 0 || funding_txo > 4096) { funding_txo_hu_conv = new OutPoint(null, funding_txo); }
89                                 funding_txo_hu_conv.ptrs_to.add(this);
90                                 ChannelMonitor monitor_hu_conv = null; if (monitor < 0 || monitor > 4096) { monitor_hu_conv = new ChannelMonitor(null, monitor); }
91                                 monitor_hu_conv.ptrs_to.add(this);
92                                 Result_NoneChannelMonitorUpdateErrZ ret = arg.watch_channel(funding_txo_hu_conv, monitor_hu_conv);
93                                 long result = ret == null ? 0 : ret.clone_ptr();
94                                 return result;
95                         }
96                         @Override public long update_channel(long funding_txo, long update) {
97                                 OutPoint funding_txo_hu_conv = null; if (funding_txo < 0 || funding_txo > 4096) { funding_txo_hu_conv = new OutPoint(null, funding_txo); }
98                                 funding_txo_hu_conv.ptrs_to.add(this);
99                                 ChannelMonitorUpdate update_hu_conv = null; if (update < 0 || update > 4096) { update_hu_conv = new ChannelMonitorUpdate(null, update); }
100                                 update_hu_conv.ptrs_to.add(this);
101                                 Result_NoneChannelMonitorUpdateErrZ ret = arg.update_channel(funding_txo_hu_conv, update_hu_conv);
102                                 long result = ret == null ? 0 : ret.clone_ptr();
103                                 return result;
104                         }
105                         @Override public long[] release_pending_monitor_events() {
106                                 MonitorEvent[] ret = arg.release_pending_monitor_events();
107                                 long[] result = ret != null ? Arrays.stream(ret).mapToLong(ret_conv_14 -> ret_conv_14 == null ? 0 : ret_conv_14.clone_ptr()).toArray() : null;
108                                 return result;
109                         }
110                 });
111                 return impl_holder.held;
112         }
113         /**
114          * Watches a channel identified by `funding_txo` using `monitor`.
115          * 
116          * Implementations are responsible for watching the chain for the funding transaction along
117          * with any spends of outputs returned by [`get_outputs_to_watch`]. In practice, this means
118          * calling [`block_connected`] and [`block_disconnected`] on the monitor.
119          * 
120          * Note: this interface MUST error with `ChannelMonitorUpdateErr::PermanentFailure` if
121          * the given `funding_txo` has previously been registered via `watch_channel`.
122          * 
123          * [`get_outputs_to_watch`]: channelmonitor::ChannelMonitor::get_outputs_to_watch
124          * [`block_connected`]: channelmonitor::ChannelMonitor::block_connected
125          * [`block_disconnected`]: channelmonitor::ChannelMonitor::block_disconnected
126          */
127         public Result_NoneChannelMonitorUpdateErrZ watch_channel(OutPoint funding_txo, ChannelMonitor monitor) {
128                 long ret = bindings.Watch_watch_channel(this.ptr, funding_txo == null ? 0 : funding_txo.ptr & ~1, monitor == null ? 0 : monitor.ptr & ~1);
129                 Reference.reachabilityFence(this);
130                 Reference.reachabilityFence(funding_txo);
131                 Reference.reachabilityFence(monitor);
132                 if (ret >= 0 && ret <= 4096) { return null; }
133                 Result_NoneChannelMonitorUpdateErrZ ret_hu_conv = Result_NoneChannelMonitorUpdateErrZ.constr_from_ptr(ret);
134                 return ret_hu_conv;
135         }
136
137         /**
138          * Updates a channel identified by `funding_txo` by applying `update` to its monitor.
139          * 
140          * Implementations must call [`update_monitor`] with the given update. See
141          * [`ChannelMonitorUpdateErr`] for invariants around returning an error.
142          * 
143          * [`update_monitor`]: channelmonitor::ChannelMonitor::update_monitor
144          */
145         public Result_NoneChannelMonitorUpdateErrZ update_channel(OutPoint funding_txo, ChannelMonitorUpdate update) {
146                 long ret = bindings.Watch_update_channel(this.ptr, funding_txo == null ? 0 : funding_txo.ptr & ~1, update == null ? 0 : update.ptr & ~1);
147                 Reference.reachabilityFence(this);
148                 Reference.reachabilityFence(funding_txo);
149                 Reference.reachabilityFence(update);
150                 if (ret >= 0 && ret <= 4096) { return null; }
151                 Result_NoneChannelMonitorUpdateErrZ ret_hu_conv = Result_NoneChannelMonitorUpdateErrZ.constr_from_ptr(ret);
152                 return ret_hu_conv;
153         }
154
155         /**
156          * Returns any monitor events since the last call. Subsequent calls must only return new
157          * events.
158          * 
159          * Note that after any block- or transaction-connection calls to a [`ChannelMonitor`], no
160          * further events may be returned here until the [`ChannelMonitor`] has been fully persisted
161          * to disk.
162          * 
163          * For details on asynchronous [`ChannelMonitor`] updating and returning
164          * [`MonitorEvent::UpdateCompleted`] here, see [`ChannelMonitorUpdateErr::TemporaryFailure`].
165          */
166         public MonitorEvent[] release_pending_monitor_events() {
167                 long[] ret = bindings.Watch_release_pending_monitor_events(this.ptr);
168                 Reference.reachabilityFence(this);
169                 int ret_conv_14_len = ret.length;
170                 MonitorEvent[] ret_conv_14_arr = new MonitorEvent[ret_conv_14_len];
171                 for (int o = 0; o < ret_conv_14_len; o++) {
172                         long ret_conv_14 = ret[o];
173                         MonitorEvent ret_conv_14_hu_conv = MonitorEvent.constr_from_ptr(ret_conv_14);
174                         ret_conv_14_hu_conv.ptrs_to.add(this);
175                         ret_conv_14_arr[o] = ret_conv_14_hu_conv;
176                 }
177                 return ret_conv_14_arr;
178         }
179
180 }