Merge pull request #17 from TheBlueMatt/2021-04-upstream-confirm
[ldk-c-bindings] / lightning-c-bindings / src / lightning / chain / chainmonitor.rs
1 // This file is Copyright its original authors, visible in version control
2 // history and in the source files from which this was generated.
3 //
4 // This file is licensed under the license available in the LICENSE or LICENSE.md
5 // file in the root of this repository or, if no such file exists, the same
6 // license as that which applies to the original source files from which this
7 // source was automatically generated.
8
9 //! Logic to connect off-chain channel management with on-chain transaction monitoring.
10 //!
11 //! [`ChainMonitor`] is an implementation of [`chain::Watch`] used both to process blocks and to
12 //! update [`ChannelMonitor`]s accordingly. If any on-chain events need further processing, it will
13 //! make those available as [`MonitorEvent`]s to be consumed.
14 //!
15 //! [`ChainMonitor`] is parameterized by an optional chain source, which must implement the
16 //! [`chain::Filter`] trait. This provides a mechanism to signal new relevant outputs back to light
17 //! clients, such that transactions spending those outputs are included in block data.
18 //!
19 //! [`ChainMonitor`] may be used directly to monitor channels locally or as a part of a distributed
20 //! setup to monitor channels remotely. In the latter case, a custom [`chain::Watch`] implementation
21 //! would be responsible for routing each update to a remote server and for retrieving monitor
22 //! events. The remote server would make use of [`ChainMonitor`] for block processing and for
23 //! servicing [`ChannelMonitor`] updates from the client.
24
25 use std::ffi::c_void;
26 use bitcoin::hashes::Hash;
27 use crate::c_types::*;
28
29
30 use lightning::chain::chainmonitor::ChainMonitor as nativeChainMonitorImport;
31 type nativeChainMonitor = nativeChainMonitorImport<crate::lightning::chain::keysinterface::Sign, crate::lightning::chain::Filter, crate::lightning::chain::chaininterface::BroadcasterInterface, crate::lightning::chain::chaininterface::FeeEstimator, crate::lightning::util::logger::Logger, crate::lightning::chain::channelmonitor::Persist>;
32
33 /// An implementation of [`chain::Watch`] for monitoring channels.
34 ///
35 /// Connected and disconnected blocks must be provided to `ChainMonitor` as documented by
36 /// [`chain::Watch`]. May be used in conjunction with [`ChannelManager`] to monitor channels locally
37 /// or used independently to monitor channels remotely. See the [module-level documentation] for
38 /// details.
39 ///
40 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
41 /// [module-level documentation]: crate::chain::chainmonitor
42 #[must_use]
43 #[repr(C)]
44 pub struct ChainMonitor {
45         /// A pointer to the opaque Rust object.
46
47         /// Nearly everywhere, inner must be non-null, however in places where
48         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
49         pub inner: *mut nativeChainMonitor,
50         /// Indicates that this is the only struct which contains the same pointer.
51
52         /// Rust functions which take ownership of an object provided via an argument require
53         /// this to be true and invalidate the object pointed to by inner.
54         pub is_owned: bool,
55 }
56
57 impl Drop for ChainMonitor {
58         fn drop(&mut self) {
59                 if self.is_owned && !<*mut nativeChainMonitor>::is_null(self.inner) {
60                         let _ = unsafe { Box::from_raw(self.inner) };
61                 }
62         }
63 }
64 /// Frees any resources used by the ChainMonitor, if is_owned is set and inner is non-NULL.
65 #[no_mangle]
66 pub extern "C" fn ChainMonitor_free(this_obj: ChainMonitor) { }
67 #[allow(unused)]
68 /// Used only if an object of this type is returned as a trait impl by a method
69 extern "C" fn ChainMonitor_free_void(this_ptr: *mut c_void) {
70         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChainMonitor); }
71 }
72 #[allow(unused)]
73 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
74 impl ChainMonitor {
75         pub(crate) fn take_inner(mut self) -> *mut nativeChainMonitor {
76                 assert!(self.is_owned);
77                 let ret = self.inner;
78                 self.inner = std::ptr::null_mut();
79                 ret
80         }
81 }
82 /// Creates a new `ChainMonitor` used to watch on-chain activity pertaining to channels.
83 ///
84 /// When an optional chain source implementing [`chain::Filter`] is provided, the chain monitor
85 /// will call back to it indicating transactions and outputs of interest. This allows clients to
86 /// pre-filter blocks or only fetch blocks matching a compact filter. Otherwise, clients may
87 /// always need to fetch full blocks absent another means for determining which blocks contain
88 /// transactions relevant to the watched channels.
89 #[must_use]
90 #[no_mangle]
91 pub extern "C" fn ChainMonitor_new(chain_source: *mut crate::lightning::chain::Filter, mut broadcaster: crate::lightning::chain::chaininterface::BroadcasterInterface, mut logger: crate::lightning::util::logger::Logger, mut feeest: crate::lightning::chain::chaininterface::FeeEstimator, mut persister: crate::lightning::chain::channelmonitor::Persist) -> ChainMonitor {
92         let mut local_chain_source = if chain_source == std::ptr::null_mut() { None } else { Some( { unsafe { *Box::from_raw(chain_source) } }) };
93         let mut ret = lightning::chain::chainmonitor::ChainMonitor::new(local_chain_source, broadcaster, logger, feeest, persister);
94         ChainMonitor { inner: Box::into_raw(Box::new(ret)), is_owned: true }
95 }
96
97 impl From<nativeChainMonitor> for crate::lightning::chain::Watch {
98         fn from(obj: nativeChainMonitor) -> Self {
99                 let mut rust_obj = ChainMonitor { inner: Box::into_raw(Box::new(obj)), is_owned: true };
100                 let mut ret = ChainMonitor_as_Watch(&rust_obj);
101                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
102                 rust_obj.inner = std::ptr::null_mut();
103                 ret.free = Some(ChainMonitor_free_void);
104                 ret
105         }
106 }
107 /// Constructs a new Watch which calls the relevant methods on this_arg.
108 /// This copies the `inner` pointer in this_arg and thus the returned Watch must be freed before this_arg is
109 #[no_mangle]
110 pub extern "C" fn ChainMonitor_as_Watch(this_arg: &ChainMonitor) -> crate::lightning::chain::Watch {
111         crate::lightning::chain::Watch {
112                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
113                 free: None,
114                 watch_channel: ChainMonitor_Watch_watch_channel,
115                 update_channel: ChainMonitor_Watch_update_channel,
116                 release_pending_monitor_events: ChainMonitor_Watch_release_pending_monitor_events,
117         }
118 }
119
120 #[must_use]
121 extern "C" fn ChainMonitor_Watch_watch_channel(this_arg: *const c_void, mut funding_outpoint: crate::lightning::chain::transaction::OutPoint, mut monitor: crate::lightning::chain::channelmonitor::ChannelMonitor) -> crate::c_types::derived::CResult_NoneChannelMonitorUpdateErrZ {
122         let mut ret = <nativeChainMonitor as lightning::chain::Watch<_>>::watch_channel(unsafe { &mut *(this_arg as *mut nativeChainMonitor) }, *unsafe { Box::from_raw(funding_outpoint.take_inner()) }, *unsafe { Box::from_raw(monitor.take_inner()) });
123         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::chain::channelmonitor::ChannelMonitorUpdateErr::native_into(e) }).into() };
124         local_ret
125 }
126 #[must_use]
127 extern "C" fn ChainMonitor_Watch_update_channel(this_arg: *const c_void, mut funding_txo: crate::lightning::chain::transaction::OutPoint, mut update: crate::lightning::chain::channelmonitor::ChannelMonitorUpdate) -> crate::c_types::derived::CResult_NoneChannelMonitorUpdateErrZ {
128         let mut ret = <nativeChainMonitor as lightning::chain::Watch<_>>::update_channel(unsafe { &mut *(this_arg as *mut nativeChainMonitor) }, *unsafe { Box::from_raw(funding_txo.take_inner()) }, *unsafe { Box::from_raw(update.take_inner()) });
129         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::chain::channelmonitor::ChannelMonitorUpdateErr::native_into(e) }).into() };
130         local_ret
131 }
132 #[must_use]
133 extern "C" fn ChainMonitor_Watch_release_pending_monitor_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MonitorEventZ {
134         let mut ret = <nativeChainMonitor as lightning::chain::Watch<_>>::release_pending_monitor_events(unsafe { &mut *(this_arg as *mut nativeChainMonitor) }, );
135         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::chain::channelmonitor::MonitorEvent::native_into(item) }); };
136         local_ret.into()
137 }
138
139 impl From<nativeChainMonitor> for crate::lightning::util::events::EventsProvider {
140         fn from(obj: nativeChainMonitor) -> Self {
141                 let mut rust_obj = ChainMonitor { inner: Box::into_raw(Box::new(obj)), is_owned: true };
142                 let mut ret = ChainMonitor_as_EventsProvider(&rust_obj);
143                 // We want to free rust_obj when ret gets drop()'d, not rust_obj, so wipe rust_obj's pointer and set ret's free() fn
144                 rust_obj.inner = std::ptr::null_mut();
145                 ret.free = Some(ChainMonitor_free_void);
146                 ret
147         }
148 }
149 /// Constructs a new EventsProvider which calls the relevant methods on this_arg.
150 /// This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
151 #[no_mangle]
152 pub extern "C" fn ChainMonitor_as_EventsProvider(this_arg: &ChainMonitor) -> crate::lightning::util::events::EventsProvider {
153         crate::lightning::util::events::EventsProvider {
154                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
155                 free: None,
156                 get_and_clear_pending_events: ChainMonitor_EventsProvider_get_and_clear_pending_events,
157         }
158 }
159
160 #[must_use]
161 extern "C" fn ChainMonitor_EventsProvider_get_and_clear_pending_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_EventZ {
162         let mut ret = <nativeChainMonitor as lightning::util::events::EventsProvider<>>::get_and_clear_pending_events(unsafe { &mut *(this_arg as *mut nativeChainMonitor) }, );
163         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::Event::native_into(item) }); };
164         local_ret.into()
165 }
166