Merge pull request #50 from TheBlueMatt/main
[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 javax.annotation.Nullable;
8
9
10 /**
11  * An implementation of [`chain::Watch`] for monitoring channels.
12  * 
13  * Connected and disconnected blocks must be provided to `ChainMonitor` as documented by
14  * [`chain::Watch`]. May be used in conjunction with [`ChannelManager`] to monitor channels locally
15  * or used independently to monitor channels remotely. See the [module-level documentation] for
16  * details.
17  * 
18  * [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
19  * [module-level documentation]: crate::chain::chainmonitor
20  */
21 @SuppressWarnings("unchecked") // We correctly assign various generic arrays
22 public class ChainMonitor extends CommonBase {
23         ChainMonitor(Object _dummy, long ptr) { super(ptr); }
24         @Override @SuppressWarnings("deprecation")
25         protected void finalize() throws Throwable {
26                 super.finalize();
27                 if (ptr != 0) { bindings.ChainMonitor_free(ptr); }
28         }
29
30         /**
31          * Creates a new `ChainMonitor` used to watch on-chain activity pertaining to channels.
32          * 
33          * When an optional chain source implementing [`chain::Filter`] is provided, the chain monitor
34          * will call back to it indicating transactions and outputs of interest. This allows clients to
35          * pre-filter blocks or only fetch blocks matching a compact filter. Otherwise, clients may
36          * always need to fetch full blocks absent another means for determining which blocks contain
37          * transactions relevant to the watched channels.
38          */
39         public static ChainMonitor of(Option_FilterZ chain_source, BroadcasterInterface broadcaster, Logger logger, FeeEstimator feeest, Persist persister) {
40                 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);
41                 if (ret >= 0 && ret < 1024) { return null; }
42                 ChainMonitor ret_hu_conv = new ChainMonitor(null, ret);
43                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
44                 ret_hu_conv.ptrs_to.add(broadcaster);
45                 ret_hu_conv.ptrs_to.add(logger);
46                 ret_hu_conv.ptrs_to.add(feeest);
47                 ret_hu_conv.ptrs_to.add(persister);
48                 return ret_hu_conv;
49         }
50
51         /**
52          * Gets the balances in the contained [`ChannelMonitor`]s which are claimable on-chain or
53          * claims which are awaiting confirmation.
54          * 
55          * Includes the balances from each [`ChannelMonitor`] *except* those included in
56          * `ignored_channels`, allowing you to filter out balances from channels which are still open
57          * (and whose balance should likely be pulled from the [`ChannelDetails`]).
58          * 
59          * See [`ChannelMonitor::get_claimable_balances`] for more details on the exact criteria for
60          * inclusion in the return value.
61          */
62         public Balance[] get_claimable_balances(ChannelDetails[] ignored_channels) {
63                 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 & ~1).toArray() : null);
64                 Balance[] ret_conv_9_arr = new Balance[ret.length];
65                 for (int j = 0; j < ret.length; j++) {
66                         long ret_conv_9 = ret[j];
67                         Balance ret_conv_9_hu_conv = Balance.constr_from_ptr(ret_conv_9);
68                         ret_conv_9_hu_conv.ptrs_to.add(this);
69                         ret_conv_9_arr[j] = ret_conv_9_hu_conv;
70                 }
71                 return ret_conv_9_arr;
72         }
73
74         /**
75          * Gets the [`LockedChannelMonitor`] for a given funding outpoint, returning an `Err` if no
76          * such [`ChannelMonitor`] is currently being monitored for.
77          * 
78          * Note that the result holds a mutex over our monitor set, and should not be held
79          * indefinitely.
80          */
81         public Result_LockedChannelMonitorNoneZ get_monitor(OutPoint funding_txo) {
82                 long ret = bindings.ChainMonitor_get_monitor(this.ptr, funding_txo == null ? 0 : funding_txo.ptr & ~1);
83                 if (ret >= 0 && ret < 1024) { return null; }
84                 Result_LockedChannelMonitorNoneZ ret_hu_conv = Result_LockedChannelMonitorNoneZ.constr_from_ptr(ret);
85                 return ret_hu_conv;
86         }
87
88         /**
89          * Lists the funding outpoint of each [`ChannelMonitor`] being monitored.
90          * 
91          * Note that [`ChannelMonitor`]s are not removed when a channel is closed as they are always
92          * monitoring for on-chain state resolutions.
93          */
94         public OutPoint[] list_monitors() {
95                 long[] ret = bindings.ChainMonitor_list_monitors(this.ptr);
96                 OutPoint[] ret_conv_10_arr = new OutPoint[ret.length];
97                 for (int k = 0; k < ret.length; k++) {
98                         long ret_conv_10 = ret[k];
99                         OutPoint ret_conv_10_hu_conv = new OutPoint(null, ret_conv_10);
100                         ret_conv_10_hu_conv.ptrs_to.add(this);
101                         ret_conv_10_arr[k] = ret_conv_10_hu_conv;
102                 }
103                 return ret_conv_10_arr;
104         }
105
106         /**
107          * Constructs a new Listen which calls the relevant methods on this_arg.
108          * This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
109          */
110         public Listen as_Listen() {
111                 long ret = bindings.ChainMonitor_as_Listen(this.ptr);
112                 if (ret >= 0 && ret < 1024) { return null; }
113                 Listen ret_hu_conv = new Listen(null, ret);
114                 ret_hu_conv.ptrs_to.add(this);
115                 return ret_hu_conv;
116         }
117
118         /**
119          * Constructs a new Confirm which calls the relevant methods on this_arg.
120          * This copies the `inner` pointer in this_arg and thus the returned Confirm must be freed before this_arg is
121          */
122         public Confirm as_Confirm() {
123                 long ret = bindings.ChainMonitor_as_Confirm(this.ptr);
124                 if (ret >= 0 && ret < 1024) { return null; }
125                 Confirm ret_hu_conv = new Confirm(null, ret);
126                 ret_hu_conv.ptrs_to.add(this);
127                 return ret_hu_conv;
128         }
129
130         /**
131          * Constructs a new Watch which calls the relevant methods on this_arg.
132          * This copies the `inner` pointer in this_arg and thus the returned Watch must be freed before this_arg is
133          */
134         public Watch as_Watch() {
135                 long ret = bindings.ChainMonitor_as_Watch(this.ptr);
136                 if (ret >= 0 && ret < 1024) { return null; }
137                 Watch ret_hu_conv = new Watch(null, ret);
138                 ret_hu_conv.ptrs_to.add(this);
139                 return ret_hu_conv;
140         }
141
142         /**
143          * Constructs a new EventsProvider which calls the relevant methods on this_arg.
144          * This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
145          */
146         public EventsProvider as_EventsProvider() {
147                 long ret = bindings.ChainMonitor_as_EventsProvider(this.ptr);
148                 if (ret >= 0 && ret < 1024) { return null; }
149                 EventsProvider ret_hu_conv = new EventsProvider(null, ret);
150                 ret_hu_conv.ptrs_to.add(this);
151                 return ret_hu_conv;
152         }
153
154 }