70c7ce0e371b144e84bc06daaca036e1bf3c79f9
[ldk-java] / src / main / java / org / ldk / structs / ChainMonitor.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 /**
12  * An implementation of [`chain::Watch`] for monitoring channels.
13  * 
14  * Connected and disconnected blocks must be provided to `ChainMonitor` as documented by
15  * [`chain::Watch`]. May be used in conjunction with [`ChannelManager`] to monitor channels locally
16  * or used independently to monitor channels remotely. See the [module-level documentation] for
17  * details.
18  * 
19  * [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
20  * [module-level documentation]: crate::chain::chainmonitor
21  */
22 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
23 public class ChainMonitor extends CommonBase {
24         ChainMonitor(Object _dummy, long ptr) { super(ptr); }
25         @Override @SuppressWarnings("deprecation")
26         protected void finalize() throws Throwable {
27                 super.finalize();
28                 if (ptr != 0) { bindings.ChainMonitor_free(ptr); }
29         }
30
31         /**
32          * Creates a new `ChainMonitor` used to watch on-chain activity pertaining to channels.
33          * 
34          * When an optional chain source implementing [`chain::Filter`] is provided, the chain monitor
35          * will call back to it indicating transactions and outputs of interest. This allows clients to
36          * pre-filter blocks or only fetch blocks matching a compact filter. Otherwise, clients may
37          * always need to fetch full blocks absent another means for determining which blocks contain
38          * transactions relevant to the watched channels.
39          */
40         public static ChainMonitor of(Option_FilterZ chain_source, BroadcasterInterface broadcaster, Logger logger, FeeEstimator feeest, Persist persister) {
41                 long ret = bindings.ChainMonitor_new(chain_source.ptr, broadcaster == null ? 0 : broadcaster.ptr, logger == null ? 0 : logger.ptr, feeest == null ? 0 : feeest.ptr, persister == null ? 0 : persister.ptr);
42                 Reference.reachabilityFence(chain_source);
43                 Reference.reachabilityFence(broadcaster);
44                 Reference.reachabilityFence(logger);
45                 Reference.reachabilityFence(feeest);
46                 Reference.reachabilityFence(persister);
47                 if (ret >= 0 && ret <= 4096) { return null; }
48                 org.ldk.structs.ChainMonitor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChainMonitor(null, ret); }
49                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
50                 ret_hu_conv.ptrs_to.add(chain_source);
51                 ret_hu_conv.ptrs_to.add(broadcaster);
52                 ret_hu_conv.ptrs_to.add(logger);
53                 ret_hu_conv.ptrs_to.add(feeest);
54                 ret_hu_conv.ptrs_to.add(persister);
55                 return ret_hu_conv;
56         }
57
58         /**
59          * Gets the balances in the contained [`ChannelMonitor`]s which are claimable on-chain or
60          * claims which are awaiting confirmation.
61          * 
62          * Includes the balances from each [`ChannelMonitor`] *except* those included in
63          * `ignored_channels`, allowing you to filter out balances from channels which are still open
64          * (and whose balance should likely be pulled from the [`ChannelDetails`]).
65          * 
66          * See [`ChannelMonitor::get_claimable_balances`] for more details on the exact criteria for
67          * inclusion in the return value.
68          */
69         public Balance[] get_claimable_balances(ChannelDetails[] ignored_channels) {
70                 long[] ret = bindings.ChainMonitor_get_claimable_balances(this.ptr, ignored_channels != null ? Arrays.stream(ignored_channels).mapToLong(ignored_channels_conv_16 -> ignored_channels_conv_16 == null ? 0 : ignored_channels_conv_16.ptr).toArray() : null);
71                 Reference.reachabilityFence(this);
72                 Reference.reachabilityFence(ignored_channels);
73                 int ret_conv_9_len = ret.length;
74                 Balance[] ret_conv_9_arr = new Balance[ret_conv_9_len];
75                 for (int j = 0; j < ret_conv_9_len; j++) {
76                         long ret_conv_9 = ret[j];
77                         org.ldk.structs.Balance ret_conv_9_hu_conv = org.ldk.structs.Balance.constr_from_ptr(ret_conv_9);
78                         ret_conv_9_hu_conv.ptrs_to.add(this);
79                         ret_conv_9_arr[j] = ret_conv_9_hu_conv;
80                 }
81                 for (ChannelDetails ignored_channels_conv_16: ignored_channels) { this.ptrs_to.add(ignored_channels_conv_16); };
82                 return ret_conv_9_arr;
83         }
84
85         /**
86          * Gets the [`LockedChannelMonitor`] for a given funding outpoint, returning an `Err` if no
87          * such [`ChannelMonitor`] is currently being monitored for.
88          * 
89          * Note that the result holds a mutex over our monitor set, and should not be held
90          * indefinitely.
91          */
92         public Result_LockedChannelMonitorNoneZ get_monitor(OutPoint funding_txo) {
93                 long ret = bindings.ChainMonitor_get_monitor(this.ptr, funding_txo == null ? 0 : funding_txo.ptr);
94                 Reference.reachabilityFence(this);
95                 Reference.reachabilityFence(funding_txo);
96                 if (ret >= 0 && ret <= 4096) { return null; }
97                 Result_LockedChannelMonitorNoneZ ret_hu_conv = Result_LockedChannelMonitorNoneZ.constr_from_ptr(ret);
98                 this.ptrs_to.add(funding_txo);
99                 return ret_hu_conv;
100         }
101
102         /**
103          * Lists the funding outpoint of each [`ChannelMonitor`] being monitored.
104          * 
105          * Note that [`ChannelMonitor`]s are not removed when a channel is closed as they are always
106          * monitoring for on-chain state resolutions.
107          */
108         public OutPoint[] list_monitors() {
109                 long[] ret = bindings.ChainMonitor_list_monitors(this.ptr);
110                 Reference.reachabilityFence(this);
111                 int ret_conv_10_len = ret.length;
112                 OutPoint[] ret_conv_10_arr = new OutPoint[ret_conv_10_len];
113                 for (int k = 0; k < ret_conv_10_len; k++) {
114                         long ret_conv_10 = ret[k];
115                         org.ldk.structs.OutPoint ret_conv_10_hu_conv = null; if (ret_conv_10 < 0 || ret_conv_10 > 4096) { ret_conv_10_hu_conv = new org.ldk.structs.OutPoint(null, ret_conv_10); }
116                         ret_conv_10_hu_conv.ptrs_to.add(this);
117                         ret_conv_10_arr[k] = ret_conv_10_hu_conv;
118                 }
119                 return ret_conv_10_arr;
120         }
121
122         /**
123          * Indicates the persistence of a [`ChannelMonitor`] has completed after
124          * [`ChannelMonitorUpdateErr::TemporaryFailure`] was returned from an update operation.
125          * 
126          * Thus, the anticipated use is, at a high level:
127          * 1) This [`ChainMonitor`] calls [`Persist::update_persisted_channel`] which stores the
128          * update to disk and begins updating any remote (e.g. watchtower/backup) copies,
129          * returning [`ChannelMonitorUpdateErr::TemporaryFailure`],
130          * 2) once all remote copies are updated, you call this function with the
131          * `completed_update_id` that completed, and once all pending updates have completed the
132          * channel will be re-enabled.
133          * 
134          * Returns an [`APIError::APIMisuseError`] if `funding_txo` does not match any currently
135          * registered [`ChannelMonitor`]s.
136          */
137         public Result_NoneAPIErrorZ channel_monitor_updated(OutPoint funding_txo, MonitorUpdateId completed_update_id) {
138                 long ret = bindings.ChainMonitor_channel_monitor_updated(this.ptr, funding_txo == null ? 0 : funding_txo.ptr, completed_update_id == null ? 0 : completed_update_id.ptr);
139                 Reference.reachabilityFence(this);
140                 Reference.reachabilityFence(funding_txo);
141                 Reference.reachabilityFence(completed_update_id);
142                 if (ret >= 0 && ret <= 4096) { return null; }
143                 Result_NoneAPIErrorZ ret_hu_conv = Result_NoneAPIErrorZ.constr_from_ptr(ret);
144                 this.ptrs_to.add(funding_txo);
145                 this.ptrs_to.add(completed_update_id);
146                 return ret_hu_conv;
147         }
148
149         /**
150          * Constructs a new Listen which calls the relevant methods on this_arg.
151          * This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
152          */
153         public Listen as_Listen() {
154                 long ret = bindings.ChainMonitor_as_Listen(this.ptr);
155                 Reference.reachabilityFence(this);
156                 if (ret >= 0 && ret <= 4096) { return null; }
157                 Listen ret_hu_conv = new Listen(null, ret);
158                 ret_hu_conv.ptrs_to.add(this);
159                 return ret_hu_conv;
160         }
161
162         /**
163          * Constructs a new Confirm which calls the relevant methods on this_arg.
164          * This copies the `inner` pointer in this_arg and thus the returned Confirm must be freed before this_arg is
165          */
166         public Confirm as_Confirm() {
167                 long ret = bindings.ChainMonitor_as_Confirm(this.ptr);
168                 Reference.reachabilityFence(this);
169                 if (ret >= 0 && ret <= 4096) { return null; }
170                 Confirm ret_hu_conv = new Confirm(null, ret);
171                 ret_hu_conv.ptrs_to.add(this);
172                 return ret_hu_conv;
173         }
174
175         /**
176          * Constructs a new Watch which calls the relevant methods on this_arg.
177          * This copies the `inner` pointer in this_arg and thus the returned Watch must be freed before this_arg is
178          */
179         public Watch as_Watch() {
180                 long ret = bindings.ChainMonitor_as_Watch(this.ptr);
181                 Reference.reachabilityFence(this);
182                 if (ret >= 0 && ret <= 4096) { return null; }
183                 Watch ret_hu_conv = new Watch(null, ret);
184                 ret_hu_conv.ptrs_to.add(this);
185                 return ret_hu_conv;
186         }
187
188         /**
189          * Constructs a new EventsProvider which calls the relevant methods on this_arg.
190          * This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
191          */
192         public EventsProvider as_EventsProvider() {
193                 long ret = bindings.ChainMonitor_as_EventsProvider(this.ptr);
194                 Reference.reachabilityFence(this);
195                 if (ret >= 0 && ret <= 4096) { return null; }
196                 EventsProvider ret_hu_conv = new EventsProvider(null, ret);
197                 ret_hu_conv.ptrs_to.add(this);
198                 return ret_hu_conv;
199         }
200
201 }