Update auto-generated bindings
[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 < 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          * Constructs a new Listen which calls the relevant methods on this_arg.
76          * This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
77          */
78         public Listen as_Listen() {
79                 long ret = bindings.ChainMonitor_as_Listen(this.ptr);
80                 if (ret < 1024) { return null; }
81                 Listen ret_hu_conv = new Listen(null, ret);
82                 ret_hu_conv.ptrs_to.add(this);
83                 return ret_hu_conv;
84         }
85
86         /**
87          * Constructs a new Confirm which calls the relevant methods on this_arg.
88          * This copies the `inner` pointer in this_arg and thus the returned Confirm must be freed before this_arg is
89          */
90         public Confirm as_Confirm() {
91                 long ret = bindings.ChainMonitor_as_Confirm(this.ptr);
92                 if (ret < 1024) { return null; }
93                 Confirm ret_hu_conv = new Confirm(null, ret);
94                 ret_hu_conv.ptrs_to.add(this);
95                 return ret_hu_conv;
96         }
97
98         /**
99          * Constructs a new Watch which calls the relevant methods on this_arg.
100          * This copies the `inner` pointer in this_arg and thus the returned Watch must be freed before this_arg is
101          */
102         public Watch as_Watch() {
103                 long ret = bindings.ChainMonitor_as_Watch(this.ptr);
104                 if (ret < 1024) { return null; }
105                 Watch ret_hu_conv = new Watch(null, ret);
106                 ret_hu_conv.ptrs_to.add(this);
107                 return ret_hu_conv;
108         }
109
110         /**
111          * Constructs a new EventsProvider which calls the relevant methods on this_arg.
112          * This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
113          */
114         public EventsProvider as_EventsProvider() {
115                 long ret = bindings.ChainMonitor_as_EventsProvider(this.ptr);
116                 if (ret < 1024) { return null; }
117                 EventsProvider ret_hu_conv = new EventsProvider(null, ret);
118                 ret_hu_conv.ptrs_to.add(this);
119                 return ret_hu_conv;
120         }
121
122 }