Update auto-generated bindings
[ldk-c-bindings] / lightning-c-bindings / src / ln / channelmanager.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 //! The top-level channel management and payment tracking stuff lives here.
10 //!
11 //! The ChannelManager is the main chunk of logic implementing the lightning protocol and is
12 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
13 //! upon reconnect to the relevant peer(s).
14 //!
15 //! It does not manage routing logic (see routing::router::get_route for that) nor does it manage constructing
16 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
17 //! imply it needs to fail HTLCs/payments/channels it manages).
18 //!
19
20 use std::ffi::c_void;
21 use bitcoin::hashes::Hash;
22 use crate::c_types::*;
23
24
25 use lightning::ln::channelmanager::ChannelManager as nativeChannelManagerImport;
26 type nativeChannelManager = nativeChannelManagerImport<crate::chain::keysinterface::Sign, crate::chain::Watch, crate::chain::chaininterface::BroadcasterInterface, crate::chain::keysinterface::KeysInterface, crate::chain::chaininterface::FeeEstimator, crate::util::logger::Logger>;
27
28 /// Manager which keeps track of a number of channels and sends messages to the appropriate
29 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
30 ///
31 /// Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
32 /// to individual Channels.
33 ///
34 /// Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
35 /// all peers during write/read (though does not modify this instance, only the instance being
36 /// serialized). This will result in any channels which have not yet exchanged funding_created (ie
37 /// called funding_transaction_generated for outbound channels).
38 ///
39 /// Note that you can be a bit lazier about writing out ChannelManager than you can be with
40 /// ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
41 /// returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
42 /// happens out-of-band (and will prevent any other ChannelManager operations from occurring during
43 /// the serialization process). If the deserialized version is out-of-date compared to the
44 /// ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
45 /// ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
46 ///
47 /// Note that the deserializer is only implemented for (BlockHash, ChannelManager), which
48 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
49 /// the \"reorg path\" (ie call block_disconnected() until you get to a common block and then call
50 /// block_connected() to step towards your best block) upon deserialization before using the
51 /// object!
52 ///
53 /// Note that ChannelManager is responsible for tracking liveness of its channels and generating
54 /// ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
55 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
56 /// offline for a full minute. In order to track this, you must call
57 /// timer_chan_freshness_every_min roughly once per minute, though it doesn't have to be perfect.
58 ///
59 /// Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
60 /// a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
61 /// essentially you should default to using a SimpleRefChannelManager, and use a
62 /// SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
63 /// you're using lightning-net-tokio.
64 #[must_use]
65 #[repr(C)]
66 pub struct ChannelManager {
67         /// A pointer to the opaque Rust object.
68
69         /// Nearly everywhere, inner must be non-null, however in places where
70         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
71         pub inner: *mut nativeChannelManager,
72         /// Indicates that this is the only struct which contains the same pointer.
73
74         /// Rust functions which take ownership of an object provided via an argument require
75         /// this to be true and invalidate the object pointed to by inner.
76         pub is_owned: bool,
77 }
78
79 impl Drop for ChannelManager {
80         fn drop(&mut self) {
81                 if self.is_owned && !<*mut nativeChannelManager>::is_null(self.inner) {
82                         let _ = unsafe { Box::from_raw(self.inner) };
83                 }
84         }
85 }
86 /// Frees any resources used by the ChannelManager, if is_owned is set and inner is non-NULL.
87 #[no_mangle]
88 pub extern "C" fn ChannelManager_free(this_obj: ChannelManager) { }
89 #[allow(unused)]
90 /// Used only if an object of this type is returned as a trait impl by a method
91 extern "C" fn ChannelManager_free_void(this_ptr: *mut c_void) {
92         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManager); }
93 }
94 #[allow(unused)]
95 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
96 impl ChannelManager {
97         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManager {
98                 assert!(self.is_owned);
99                 let ret = self.inner;
100                 self.inner = std::ptr::null_mut();
101                 ret
102         }
103 }
104
105 use lightning::ln::channelmanager::ChainParameters as nativeChainParametersImport;
106 type nativeChainParameters = nativeChainParametersImport;
107
108 /// Chain-related parameters used to construct a new `ChannelManager`.
109 ///
110 /// Typically, the block-specific parameters are derived from the best block hash for the network,
111 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
112 /// are not needed when deserializing a previously constructed `ChannelManager`.
113 #[must_use]
114 #[repr(C)]
115 pub struct ChainParameters {
116         /// A pointer to the opaque Rust object.
117
118         /// Nearly everywhere, inner must be non-null, however in places where
119         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
120         pub inner: *mut nativeChainParameters,
121         /// Indicates that this is the only struct which contains the same pointer.
122
123         /// Rust functions which take ownership of an object provided via an argument require
124         /// this to be true and invalidate the object pointed to by inner.
125         pub is_owned: bool,
126 }
127
128 impl Drop for ChainParameters {
129         fn drop(&mut self) {
130                 if self.is_owned && !<*mut nativeChainParameters>::is_null(self.inner) {
131                         let _ = unsafe { Box::from_raw(self.inner) };
132                 }
133         }
134 }
135 /// Frees any resources used by the ChainParameters, if is_owned is set and inner is non-NULL.
136 #[no_mangle]
137 pub extern "C" fn ChainParameters_free(this_obj: ChainParameters) { }
138 #[allow(unused)]
139 /// Used only if an object of this type is returned as a trait impl by a method
140 extern "C" fn ChainParameters_free_void(this_ptr: *mut c_void) {
141         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChainParameters); }
142 }
143 #[allow(unused)]
144 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
145 impl ChainParameters {
146         pub(crate) fn take_inner(mut self) -> *mut nativeChainParameters {
147                 assert!(self.is_owned);
148                 let ret = self.inner;
149                 self.inner = std::ptr::null_mut();
150                 ret
151         }
152 }
153 /// The network for determining the `chain_hash` in Lightning messages.
154 #[no_mangle]
155 pub extern "C" fn ChainParameters_get_network(this_ptr: &ChainParameters) -> crate::bitcoin::network::Network {
156         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.network;
157         crate::bitcoin::network::Network::from_bitcoin((*inner_val))
158 }
159 /// The network for determining the `chain_hash` in Lightning messages.
160 #[no_mangle]
161 pub extern "C" fn ChainParameters_set_network(this_ptr: &mut ChainParameters, mut val: crate::bitcoin::network::Network) {
162         unsafe { &mut *this_ptr.inner }.network = val.into_bitcoin();
163 }
164 /// The hash of the latest block successfully connected.
165 #[no_mangle]
166 pub extern "C" fn ChainParameters_get_latest_hash(this_ptr: &ChainParameters) -> *const [u8; 32] {
167         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.latest_hash;
168         (*inner_val).as_inner()
169 }
170 /// The hash of the latest block successfully connected.
171 #[no_mangle]
172 pub extern "C" fn ChainParameters_set_latest_hash(this_ptr: &mut ChainParameters, mut val: crate::c_types::ThirtyTwoBytes) {
173         unsafe { &mut *this_ptr.inner }.latest_hash = ::bitcoin::hash_types::BlockHash::from_slice(&val.data[..]).unwrap();
174 }
175 /// The height of the latest block successfully connected.
176 ///
177 /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
178 #[no_mangle]
179 pub extern "C" fn ChainParameters_get_latest_height(this_ptr: &ChainParameters) -> usize {
180         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.latest_height;
181         (*inner_val)
182 }
183 /// The height of the latest block successfully connected.
184 ///
185 /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
186 #[no_mangle]
187 pub extern "C" fn ChainParameters_set_latest_height(this_ptr: &mut ChainParameters, mut val: usize) {
188         unsafe { &mut *this_ptr.inner }.latest_height = val;
189 }
190 /// Constructs a new ChainParameters given each field
191 #[must_use]
192 #[no_mangle]
193 pub extern "C" fn ChainParameters_new(mut network_arg: crate::bitcoin::network::Network, mut latest_hash_arg: crate::c_types::ThirtyTwoBytes, mut latest_height_arg: usize) -> ChainParameters {
194         ChainParameters { inner: Box::into_raw(Box::new(nativeChainParameters {
195                 network: network_arg.into_bitcoin(),
196                 latest_hash: ::bitcoin::hash_types::BlockHash::from_slice(&latest_hash_arg.data[..]).unwrap(),
197                 latest_height: latest_height_arg,
198         })), is_owned: true }
199 }
200 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
201 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
202 ///
203 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
204 ///
205 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
206
207 #[no_mangle]
208 pub static BREAKDOWN_TIMEOUT: u16 = lightning::ln::channelmanager::BREAKDOWN_TIMEOUT;
209 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
210 /// HTLC's CLTV. The current default represents roughly six hours of blocks at six blocks/hour.
211 ///
212 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
213 ///
214 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
215
216 #[no_mangle]
217 pub static MIN_CLTV_EXPIRY_DELTA: u16 = lightning::ln::channelmanager::MIN_CLTV_EXPIRY_DELTA;
218
219 use lightning::ln::channelmanager::ChannelDetails as nativeChannelDetailsImport;
220 type nativeChannelDetails = nativeChannelDetailsImport;
221
222 /// Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
223 #[must_use]
224 #[repr(C)]
225 pub struct ChannelDetails {
226         /// A pointer to the opaque Rust object.
227
228         /// Nearly everywhere, inner must be non-null, however in places where
229         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
230         pub inner: *mut nativeChannelDetails,
231         /// Indicates that this is the only struct which contains the same pointer.
232
233         /// Rust functions which take ownership of an object provided via an argument require
234         /// this to be true and invalidate the object pointed to by inner.
235         pub is_owned: bool,
236 }
237
238 impl Drop for ChannelDetails {
239         fn drop(&mut self) {
240                 if self.is_owned && !<*mut nativeChannelDetails>::is_null(self.inner) {
241                         let _ = unsafe { Box::from_raw(self.inner) };
242                 }
243         }
244 }
245 /// Frees any resources used by the ChannelDetails, if is_owned is set and inner is non-NULL.
246 #[no_mangle]
247 pub extern "C" fn ChannelDetails_free(this_obj: ChannelDetails) { }
248 #[allow(unused)]
249 /// Used only if an object of this type is returned as a trait impl by a method
250 extern "C" fn ChannelDetails_free_void(this_ptr: *mut c_void) {
251         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelDetails); }
252 }
253 #[allow(unused)]
254 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
255 impl ChannelDetails {
256         pub(crate) fn take_inner(mut self) -> *mut nativeChannelDetails {
257                 assert!(self.is_owned);
258                 let ret = self.inner;
259                 self.inner = std::ptr::null_mut();
260                 ret
261         }
262 }
263 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
264 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
265 /// Note that this means this value is *not* persistent - it can change once during the
266 /// lifetime of the channel.
267 #[no_mangle]
268 pub extern "C" fn ChannelDetails_get_channel_id(this_ptr: &ChannelDetails) -> *const [u8; 32] {
269         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
270         &(*inner_val)
271 }
272 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
273 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
274 /// Note that this means this value is *not* persistent - it can change once during the
275 /// lifetime of the channel.
276 #[no_mangle]
277 pub extern "C" fn ChannelDetails_set_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::ThirtyTwoBytes) {
278         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
279 }
280 /// The node_id of our counterparty
281 #[no_mangle]
282 pub extern "C" fn ChannelDetails_get_remote_network_id(this_ptr: &ChannelDetails) -> crate::c_types::PublicKey {
283         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.remote_network_id;
284         crate::c_types::PublicKey::from_rust(&(*inner_val))
285 }
286 /// The node_id of our counterparty
287 #[no_mangle]
288 pub extern "C" fn ChannelDetails_set_remote_network_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::PublicKey) {
289         unsafe { &mut *this_ptr.inner }.remote_network_id = val.into_rust();
290 }
291 /// The Features the channel counterparty provided upon last connection.
292 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
293 /// many routing-relevant features are present in the init context.
294 #[no_mangle]
295 pub extern "C" fn ChannelDetails_get_counterparty_features(this_ptr: &ChannelDetails) -> crate::ln::features::InitFeatures {
296         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.counterparty_features;
297         crate::ln::features::InitFeatures { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
298 }
299 /// The Features the channel counterparty provided upon last connection.
300 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
301 /// many routing-relevant features are present in the init context.
302 #[no_mangle]
303 pub extern "C" fn ChannelDetails_set_counterparty_features(this_ptr: &mut ChannelDetails, mut val: crate::ln::features::InitFeatures) {
304         unsafe { &mut *this_ptr.inner }.counterparty_features = *unsafe { Box::from_raw(val.take_inner()) };
305 }
306 /// The value, in satoshis, of this channel as appears in the funding output
307 #[no_mangle]
308 pub extern "C" fn ChannelDetails_get_channel_value_satoshis(this_ptr: &ChannelDetails) -> u64 {
309         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_value_satoshis;
310         (*inner_val)
311 }
312 /// The value, in satoshis, of this channel as appears in the funding output
313 #[no_mangle]
314 pub extern "C" fn ChannelDetails_set_channel_value_satoshis(this_ptr: &mut ChannelDetails, mut val: u64) {
315         unsafe { &mut *this_ptr.inner }.channel_value_satoshis = val;
316 }
317 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
318 #[no_mangle]
319 pub extern "C" fn ChannelDetails_get_user_id(this_ptr: &ChannelDetails) -> u64 {
320         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.user_id;
321         (*inner_val)
322 }
323 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
324 #[no_mangle]
325 pub extern "C" fn ChannelDetails_set_user_id(this_ptr: &mut ChannelDetails, mut val: u64) {
326         unsafe { &mut *this_ptr.inner }.user_id = val;
327 }
328 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
329 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
330 /// available for inclusion in new outbound HTLCs). This further does not include any pending
331 /// outgoing HTLCs which are awaiting some other resolution to be sent.
332 #[no_mangle]
333 pub extern "C" fn ChannelDetails_get_outbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
334         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.outbound_capacity_msat;
335         (*inner_val)
336 }
337 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
338 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
339 /// available for inclusion in new outbound HTLCs). This further does not include any pending
340 /// outgoing HTLCs which are awaiting some other resolution to be sent.
341 #[no_mangle]
342 pub extern "C" fn ChannelDetails_set_outbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
343         unsafe { &mut *this_ptr.inner }.outbound_capacity_msat = val;
344 }
345 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
346 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
347 /// available for inclusion in new inbound HTLCs).
348 /// Note that there are some corner cases not fully handled here, so the actual available
349 /// inbound capacity may be slightly higher than this.
350 #[no_mangle]
351 pub extern "C" fn ChannelDetails_get_inbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
352         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.inbound_capacity_msat;
353         (*inner_val)
354 }
355 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
356 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
357 /// available for inclusion in new inbound HTLCs).
358 /// Note that there are some corner cases not fully handled here, so the actual available
359 /// inbound capacity may be slightly higher than this.
360 #[no_mangle]
361 pub extern "C" fn ChannelDetails_set_inbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
362         unsafe { &mut *this_ptr.inner }.inbound_capacity_msat = val;
363 }
364 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
365 /// the peer is connected, and (c) no monitor update failure is pending resolution.
366 #[no_mangle]
367 pub extern "C" fn ChannelDetails_get_is_live(this_ptr: &ChannelDetails) -> bool {
368         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_live;
369         (*inner_val)
370 }
371 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
372 /// the peer is connected, and (c) no monitor update failure is pending resolution.
373 #[no_mangle]
374 pub extern "C" fn ChannelDetails_set_is_live(this_ptr: &mut ChannelDetails, mut val: bool) {
375         unsafe { &mut *this_ptr.inner }.is_live = val;
376 }
377 impl Clone for ChannelDetails {
378         fn clone(&self) -> Self {
379                 Self {
380                         inner: if <*mut nativeChannelDetails>::is_null(self.inner) { std::ptr::null_mut() } else {
381                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
382                         is_owned: true,
383                 }
384         }
385 }
386 #[allow(unused)]
387 /// Used only if an object of this type is returned as a trait impl by a method
388 pub(crate) extern "C" fn ChannelDetails_clone_void(this_ptr: *const c_void) -> *mut c_void {
389         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelDetails)).clone() })) as *mut c_void
390 }
391 #[no_mangle]
392 /// Creates a copy of the ChannelDetails
393 pub extern "C" fn ChannelDetails_clone(orig: &ChannelDetails) -> ChannelDetails {
394         orig.clone()
395 }
396 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
397 /// Err() type describing which state the payment is in, see the description of individual enum
398 /// states for more.
399 #[must_use]
400 #[derive(Clone)]
401 #[repr(C)]
402 pub enum PaymentSendFailure {
403         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
404         /// send the payment at all. No channel state has been changed or messages sent to peers, and
405         /// once you've changed the parameter at error, you can freely retry the payment in full.
406         ParameterError(crate::util::errors::APIError),
407         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
408         /// from attempting to send the payment at all. No channel state has been changed or messages
409         /// sent to peers, and once you've changed the parameter at error, you can freely retry the
410         /// payment in full.
411         ///
412         /// The results here are ordered the same as the paths in the route object which was passed to
413         /// send_payment.
414         PathParameterError(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
415         /// All paths which were attempted failed to send, with no channel state change taking place.
416         /// You can freely retry the payment in full (though you probably want to do so over different
417         /// paths than the ones selected).
418         AllFailedRetrySafe(crate::c_types::derived::CVec_APIErrorZ),
419         /// Some paths which were attempted failed to send, though possibly not all. At least some
420         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
421         /// in over-/re-payment.
422         ///
423         /// The results here are ordered the same as the paths in the route object which was passed to
424         /// send_payment, and any Errs which are not APIError::MonitorUpdateFailed can be safely
425         /// retried (though there is currently no API with which to do so).
426         ///
427         /// Any entries which contain Err(APIError::MonitorUpdateFailed) or Ok(()) MUST NOT be retried
428         /// as they will result in over-/re-payment. These HTLCs all either successfully sent (in the
429         /// case of Ok(())) or will send once channel_monitor_updated is called on the next-hop channel
430         /// with the latest update_id.
431         PartialFailure(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
432 }
433 use lightning::ln::channelmanager::PaymentSendFailure as nativePaymentSendFailure;
434 impl PaymentSendFailure {
435         #[allow(unused)]
436         pub(crate) fn to_native(&self) -> nativePaymentSendFailure {
437                 match self {
438                         PaymentSendFailure::ParameterError (ref a, ) => {
439                                 let mut a_nonref = (*a).clone();
440                                 nativePaymentSendFailure::ParameterError (
441                                         a_nonref.into_native(),
442                                 )
443                         },
444                         PaymentSendFailure::PathParameterError (ref a, ) => {
445                                 let mut a_nonref = (*a).clone();
446                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { let mut local_a_nonref_0 = match item.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.err)) }).into_native() })}; local_a_nonref_0 }); };
447                                 nativePaymentSendFailure::PathParameterError (
448                                         local_a_nonref,
449                                 )
450                         },
451                         PaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
452                                 let mut a_nonref = (*a).clone();
453                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { item.into_native() }); };
454                                 nativePaymentSendFailure::AllFailedRetrySafe (
455                                         local_a_nonref,
456                                 )
457                         },
458                         PaymentSendFailure::PartialFailure (ref a, ) => {
459                                 let mut a_nonref = (*a).clone();
460                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { let mut local_a_nonref_0 = match item.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.err)) }).into_native() })}; local_a_nonref_0 }); };
461                                 nativePaymentSendFailure::PartialFailure (
462                                         local_a_nonref,
463                                 )
464                         },
465                 }
466         }
467         #[allow(unused)]
468         pub(crate) fn into_native(self) -> nativePaymentSendFailure {
469                 match self {
470                         PaymentSendFailure::ParameterError (mut a, ) => {
471                                 nativePaymentSendFailure::ParameterError (
472                                         a.into_native(),
473                                 )
474                         },
475                         PaymentSendFailure::PathParameterError (mut a, ) => {
476                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { let mut local_a_0 = match item.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.err)) }).into_native() })}; local_a_0 }); };
477                                 nativePaymentSendFailure::PathParameterError (
478                                         local_a,
479                                 )
480                         },
481                         PaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
482                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { item.into_native() }); };
483                                 nativePaymentSendFailure::AllFailedRetrySafe (
484                                         local_a,
485                                 )
486                         },
487                         PaymentSendFailure::PartialFailure (mut a, ) => {
488                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { let mut local_a_0 = match item.result_ok { true => Ok( { () /*(*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.result)) })*/ }), false => Err( { (*unsafe { Box::from_raw(<*mut _>::take_ptr(&mut item.contents.err)) }).into_native() })}; local_a_0 }); };
489                                 nativePaymentSendFailure::PartialFailure (
490                                         local_a,
491                                 )
492                         },
493                 }
494         }
495         #[allow(unused)]
496         pub(crate) fn from_native(native: &nativePaymentSendFailure) -> Self {
497                 match native {
498                         nativePaymentSendFailure::ParameterError (ref a, ) => {
499                                 let mut a_nonref = (*a).clone();
500                                 PaymentSendFailure::ParameterError (
501                                         crate::util::errors::APIError::native_into(a_nonref),
502                                 )
503                         },
504                         nativePaymentSendFailure::PathParameterError (ref a, ) => {
505                                 let mut a_nonref = (*a).clone();
506                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.drain(..) { local_a_nonref.push( { let mut local_a_nonref_0 = match item { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::util::errors::APIError::native_into(e) }).into() }; local_a_nonref_0 }); };
507                                 PaymentSendFailure::PathParameterError (
508                                         local_a_nonref.into(),
509                                 )
510                         },
511                         nativePaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
512                                 let mut a_nonref = (*a).clone();
513                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.drain(..) { local_a_nonref.push( { crate::util::errors::APIError::native_into(item) }); };
514                                 PaymentSendFailure::AllFailedRetrySafe (
515                                         local_a_nonref.into(),
516                                 )
517                         },
518                         nativePaymentSendFailure::PartialFailure (ref a, ) => {
519                                 let mut a_nonref = (*a).clone();
520                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.drain(..) { local_a_nonref.push( { let mut local_a_nonref_0 = match item { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::util::errors::APIError::native_into(e) }).into() }; local_a_nonref_0 }); };
521                                 PaymentSendFailure::PartialFailure (
522                                         local_a_nonref.into(),
523                                 )
524                         },
525                 }
526         }
527         #[allow(unused)]
528         pub(crate) fn native_into(native: nativePaymentSendFailure) -> Self {
529                 match native {
530                         nativePaymentSendFailure::ParameterError (mut a, ) => {
531                                 PaymentSendFailure::ParameterError (
532                                         crate::util::errors::APIError::native_into(a),
533                                 )
534                         },
535                         nativePaymentSendFailure::PathParameterError (mut a, ) => {
536                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { let mut local_a_0 = match item { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::util::errors::APIError::native_into(e) }).into() }; local_a_0 }); };
537                                 PaymentSendFailure::PathParameterError (
538                                         local_a.into(),
539                                 )
540                         },
541                         nativePaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
542                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { crate::util::errors::APIError::native_into(item) }); };
543                                 PaymentSendFailure::AllFailedRetrySafe (
544                                         local_a.into(),
545                                 )
546                         },
547                         nativePaymentSendFailure::PartialFailure (mut a, ) => {
548                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { let mut local_a_0 = match item { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::util::errors::APIError::native_into(e) }).into() }; local_a_0 }); };
549                                 PaymentSendFailure::PartialFailure (
550                                         local_a.into(),
551                                 )
552                         },
553                 }
554         }
555 }
556 /// Frees any resources used by the PaymentSendFailure
557 #[no_mangle]
558 pub extern "C" fn PaymentSendFailure_free(this_ptr: PaymentSendFailure) { }
559 /// Creates a copy of the PaymentSendFailure
560 #[no_mangle]
561 pub extern "C" fn PaymentSendFailure_clone(orig: &PaymentSendFailure) -> PaymentSendFailure {
562         orig.clone()
563 }
564 /// Constructs a new ChannelManager to hold several channels and route between them.
565 ///
566 /// This is the main \"logic hub\" for all channel-related actions, and implements
567 /// ChannelMessageHandler.
568 ///
569 /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
570 ///
571 /// panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
572 ///
573 /// Users need to notify the new ChannelManager when a new block is connected or
574 /// disconnected using its `block_connected` and `block_disconnected` methods, starting
575 /// from after `params.latest_hash`.
576 #[must_use]
577 #[no_mangle]
578 pub extern "C" fn ChannelManager_new(mut fee_est: crate::chain::chaininterface::FeeEstimator, mut chain_monitor: crate::chain::Watch, mut tx_broadcaster: crate::chain::chaininterface::BroadcasterInterface, mut logger: crate::util::logger::Logger, mut keys_manager: crate::chain::keysinterface::KeysInterface, mut config: crate::util::config::UserConfig, mut params: crate::ln::channelmanager::ChainParameters) -> ChannelManager {
579         let mut ret = lightning::ln::channelmanager::ChannelManager::new(fee_est, chain_monitor, tx_broadcaster, logger, keys_manager, *unsafe { Box::from_raw(config.take_inner()) }, *unsafe { Box::from_raw(params.take_inner()) });
580         ChannelManager { inner: Box::into_raw(Box::new(ret)), is_owned: true }
581 }
582
583 /// Creates a new outbound channel to the given remote node and with the given value.
584 ///
585 /// user_id will be provided back as user_channel_id in FundingGenerationReady and
586 /// FundingBroadcastSafe events to allow tracking of which events correspond with which
587 /// create_channel call. Note that user_channel_id defaults to 0 for inbound channels, so you
588 /// may wish to avoid using 0 for user_id here.
589 ///
590 /// If successful, will generate a SendOpenChannel message event, so you should probably poll
591 /// PeerManager::process_events afterwards.
592 ///
593 /// Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat is
594 /// greater than channel_value_satoshis * 1k or channel_value_satoshis is < 1000.
595 #[must_use]
596 #[no_mangle]
597 pub extern "C" fn ChannelManager_create_channel(this_arg: &ChannelManager, mut their_network_key: crate::c_types::PublicKey, mut channel_value_satoshis: u64, mut push_msat: u64, mut user_id: u64, mut override_config: crate::util::config::UserConfig) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
598         let mut local_override_config = if override_config.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(override_config.take_inner()) } }) };
599         let mut ret = unsafe { &*this_arg.inner }.create_channel(their_network_key.into_rust(), channel_value_satoshis, push_msat, user_id, local_override_config);
600         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::util::errors::APIError::native_into(e) }).into() };
601         local_ret
602 }
603
604 /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
605 /// more information.
606 #[must_use]
607 #[no_mangle]
608 pub extern "C" fn ChannelManager_list_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
609         let mut ret = unsafe { &*this_arg.inner }.list_channels();
610         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::ln::channelmanager::ChannelDetails { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
611         local_ret.into()
612 }
613
614 /// Gets the list of usable channels, in random order. Useful as an argument to
615 /// get_route to ensure non-announced channels are used.
616 ///
617 /// These are guaranteed to have their is_live value set to true, see the documentation for
618 /// ChannelDetails::is_live for more info on exactly what the criteria are.
619 #[must_use]
620 #[no_mangle]
621 pub extern "C" fn ChannelManager_list_usable_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
622         let mut ret = unsafe { &*this_arg.inner }.list_usable_channels();
623         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::ln::channelmanager::ChannelDetails { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
624         local_ret.into()
625 }
626
627 /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
628 /// will be accepted on the given channel, and after additional timeout/the closing of all
629 /// pending HTLCs, the channel will be closed on chain.
630 ///
631 /// May generate a SendShutdown message event on success, which should be relayed.
632 #[must_use]
633 #[no_mangle]
634 pub extern "C" fn ChannelManager_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
635         let mut ret = unsafe { &*this_arg.inner }.close_channel(unsafe { &*channel_id});
636         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::util::errors::APIError::native_into(e) }).into() };
637         local_ret
638 }
639
640 /// Force closes a channel, immediately broadcasting the latest local commitment transaction to
641 /// the chain and rejecting new HTLCs on the given channel. Fails if channel_id is unknown to the manager.
642 #[must_use]
643 #[no_mangle]
644 pub extern "C" fn ChannelManager_force_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
645         let mut ret = unsafe { &*this_arg.inner }.force_close_channel(unsafe { &*channel_id});
646         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::util::errors::APIError::native_into(e) }).into() };
647         local_ret
648 }
649
650 /// Force close all channels, immediately broadcasting the latest local commitment transaction
651 /// for each to the chain and rejecting new HTLCs on each.
652 #[no_mangle]
653 pub extern "C" fn ChannelManager_force_close_all_channels(this_arg: &ChannelManager) {
654         unsafe { &*this_arg.inner }.force_close_all_channels()
655 }
656
657 /// Sends a payment along a given route.
658 ///
659 /// Value parameters are provided via the last hop in route, see documentation for RouteHop
660 /// fields for more info.
661 ///
662 /// Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
663 /// payment), we don't do anything to stop you! We always try to ensure that if the provided
664 /// next hop knows the preimage to payment_hash they can claim an additional amount as
665 /// specified in the last hop in the route! Thus, you should probably do your own
666 /// payment_preimage tracking (which you should already be doing as they represent \"proof of
667 /// payment\") and prevent double-sends yourself.
668 ///
669 /// May generate SendHTLCs message(s) event on success, which should be relayed.
670 ///
671 /// Each path may have a different return value, and PaymentSendValue may return a Vec with
672 /// each entry matching the corresponding-index entry in the route paths, see
673 /// PaymentSendFailure for more info.
674 ///
675 /// In general, a path may raise:
676 ///  * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
677 ///    node public key) is specified.
678 ///  * APIError::ChannelUnavailable if the next-hop channel is not available for updates
679 ///    (including due to previous monitor update failure or new permanent monitor update
680 ///    failure).
681 ///  * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
682 ///    relevant updates.
683 ///
684 /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
685 /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
686 /// different route unless you intend to pay twice!
687 ///
688 /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
689 /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
690 /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
691 /// must not contain multiple paths as multi-path payments require a recipient-provided
692 /// payment_secret.
693 /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
694 /// bit set (either as required or as available). If multiple paths are present in the Route,
695 /// we assume the invoice had the basic_mpp feature set.
696 #[must_use]
697 #[no_mangle]
698 pub extern "C" fn ChannelManager_send_payment(this_arg: &ChannelManager, route: &crate::routing::router::Route, mut payment_hash: crate::c_types::ThirtyTwoBytes, mut payment_secret: crate::c_types::ThirtyTwoBytes) -> crate::c_types::derived::CResult_NonePaymentSendFailureZ {
699         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
700         let mut ret = unsafe { &*this_arg.inner }.send_payment(unsafe { &*route.inner }, ::lightning::ln::channelmanager::PaymentHash(payment_hash.data), &local_payment_secret);
701         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::ln::channelmanager::PaymentSendFailure::native_into(e) }).into() };
702         local_ret
703 }
704
705 /// Call this upon creation of a funding transaction for the given channel.
706 ///
707 /// Note that ALL inputs in the transaction pointed to by funding_txo MUST spend SegWit outputs
708 /// or your counterparty can steal your funds!
709 ///
710 /// Panics if a funding transaction has already been provided for this channel.
711 ///
712 /// May panic if the funding_txo is duplicative with some other channel (note that this should
713 /// be trivially prevented by using unique funding transaction keys per-channel).
714 #[no_mangle]
715 pub extern "C" fn ChannelManager_funding_transaction_generated(this_arg: &ChannelManager, temporary_channel_id: *const [u8; 32], mut funding_txo: crate::chain::transaction::OutPoint) {
716         unsafe { &*this_arg.inner }.funding_transaction_generated(unsafe { &*temporary_channel_id}, *unsafe { Box::from_raw(funding_txo.take_inner()) })
717 }
718
719 /// Generates a signed node_announcement from the given arguments and creates a
720 /// BroadcastNodeAnnouncement event. Note that such messages will be ignored unless peers have
721 /// seen a channel_announcement from us (ie unless we have public channels open).
722 ///
723 /// RGB is a node \"color\" and alias is a printable human-readable string to describe this node
724 /// to humans. They carry no in-protocol meaning.
725 ///
726 /// addresses represent the set (possibly empty) of socket addresses on which this node accepts
727 /// incoming connections. These will be broadcast to the network, publicly tying these
728 /// addresses together. If you wish to preserve user privacy, addresses should likely contain
729 /// only Tor Onion addresses.
730 ///
731 /// Panics if addresses is absurdly large (more than 500).
732 #[no_mangle]
733 pub extern "C" fn ChannelManager_broadcast_node_announcement(this_arg: &ChannelManager, mut rgb: crate::c_types::ThreeBytes, mut alias: crate::c_types::ThirtyTwoBytes, mut addresses: crate::c_types::derived::CVec_NetAddressZ) {
734         let mut local_addresses = Vec::new(); for mut item in addresses.into_rust().drain(..) { local_addresses.push( { item.into_native() }); };
735         unsafe { &*this_arg.inner }.broadcast_node_announcement(rgb.data, alias.data, local_addresses)
736 }
737
738 /// Processes HTLCs which are pending waiting on random forward delay.
739 ///
740 /// Should only really ever be called in response to a PendingHTLCsForwardable event.
741 /// Will likely generate further events.
742 #[no_mangle]
743 pub extern "C" fn ChannelManager_process_pending_htlc_forwards(this_arg: &ChannelManager) {
744         unsafe { &*this_arg.inner }.process_pending_htlc_forwards()
745 }
746
747 /// If a peer is disconnected we mark any channels with that peer as 'disabled'.
748 /// After some time, if channels are still disabled we need to broadcast a ChannelUpdate
749 /// to inform the network about the uselessness of these channels.
750 ///
751 /// This method handles all the details, and must be called roughly once per minute.
752 ///
753 /// Note that in some rare cases this may generate a `chain::Watch::update_channel` call.
754 #[no_mangle]
755 pub extern "C" fn ChannelManager_timer_chan_freshness_every_min(this_arg: &ChannelManager) {
756         unsafe { &*this_arg.inner }.timer_chan_freshness_every_min()
757 }
758
759 /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
760 /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
761 /// along the path (including in our own channel on which we received it).
762 /// Returns false if no payment was found to fail backwards, true if the process of failing the
763 /// HTLC backwards has been started.
764 #[must_use]
765 #[no_mangle]
766 pub extern "C" fn ChannelManager_fail_htlc_backwards(this_arg: &ChannelManager, payment_hash: *const [u8; 32], mut payment_secret: crate::c_types::ThirtyTwoBytes) -> bool {
767         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
768         let mut ret = unsafe { &*this_arg.inner }.fail_htlc_backwards(&::lightning::ln::channelmanager::PaymentHash(unsafe { *payment_hash }), &local_payment_secret);
769         ret
770 }
771
772 /// Provides a payment preimage in response to a PaymentReceived event, returning true and
773 /// generating message events for the net layer to claim the payment, if possible. Thus, you
774 /// should probably kick the net layer to go send messages if this returns true!
775 ///
776 /// You must specify the expected amounts for this HTLC, and we will only claim HTLCs
777 /// available within a few percent of the expected amount. This is critical for several
778 /// reasons : a) it avoids providing senders with `proof-of-payment` (in the form of the
779 /// payment_preimage without having provided the full value and b) it avoids certain
780 /// privacy-breaking recipient-probing attacks which may reveal payment activity to
781 /// motivated attackers.
782 ///
783 /// Note that the privacy concerns in (b) are not relevant in payments with a payment_secret
784 /// set. Thus, for such payments we will claim any payments which do not under-pay.
785 ///
786 /// May panic if called except in response to a PaymentReceived event.
787 #[must_use]
788 #[no_mangle]
789 pub extern "C" fn ChannelManager_claim_funds(this_arg: &ChannelManager, mut payment_preimage: crate::c_types::ThirtyTwoBytes, mut payment_secret: crate::c_types::ThirtyTwoBytes, mut expected_amount: u64) -> bool {
790         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
791         let mut ret = unsafe { &*this_arg.inner }.claim_funds(::lightning::ln::channelmanager::PaymentPreimage(payment_preimage.data), &local_payment_secret, expected_amount);
792         ret
793 }
794
795 /// Gets the node_id held by this ChannelManager
796 #[must_use]
797 #[no_mangle]
798 pub extern "C" fn ChannelManager_get_our_node_id(this_arg: &ChannelManager) -> crate::c_types::PublicKey {
799         let mut ret = unsafe { &*this_arg.inner }.get_our_node_id();
800         crate::c_types::PublicKey::from_rust(&ret)
801 }
802
803 /// Restores a single, given channel to normal operation after a
804 /// ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
805 /// operation.
806 ///
807 /// All ChannelMonitor updates up to and including highest_applied_update_id must have been
808 /// fully committed in every copy of the given channels' ChannelMonitors.
809 ///
810 /// Note that there is no effect to calling with a highest_applied_update_id other than the
811 /// current latest ChannelMonitorUpdate and one call to this function after multiple
812 /// ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
813 /// exists largely only to prevent races between this and concurrent update_monitor calls.
814 ///
815 /// Thus, the anticipated use is, at a high level:
816 ///  1) You register a chain::Watch with this ChannelManager,
817 ///  2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
818 ///     said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
819 ///     any time it cannot do so instantly,
820 ///  3) update(s) are applied to each remote copy of a ChannelMonitor,
821 ///  4) once all remote copies are updated, you call this function with the update_id that
822 ///     completed, and once it is the latest the Channel will be re-enabled.
823 #[no_mangle]
824 pub extern "C" fn ChannelManager_channel_monitor_updated(this_arg: &ChannelManager, funding_txo: &crate::chain::transaction::OutPoint, mut highest_applied_update_id: u64) {
825         unsafe { &*this_arg.inner }.channel_monitor_updated(unsafe { &*funding_txo.inner }, highest_applied_update_id)
826 }
827
828 impl From<nativeChannelManager> for crate::util::events::MessageSendEventsProvider {
829         fn from(obj: nativeChannelManager) -> Self {
830                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
831                 let mut ret = ChannelManager_as_MessageSendEventsProvider(&rust_obj);
832                 // 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
833                 rust_obj.inner = std::ptr::null_mut();
834                 ret.free = Some(ChannelManager_free_void);
835                 ret
836         }
837 }
838 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
839 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
840 #[no_mangle]
841 pub extern "C" fn ChannelManager_as_MessageSendEventsProvider(this_arg: &ChannelManager) -> crate::util::events::MessageSendEventsProvider {
842         crate::util::events::MessageSendEventsProvider {
843                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
844                 free: None,
845                 get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
846         }
847 }
848
849 #[must_use]
850 extern "C" fn ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
851         let mut ret = <nativeChannelManager as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
852         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::util::events::MessageSendEvent::native_into(item) }); };
853         local_ret.into()
854 }
855
856 impl From<nativeChannelManager> for crate::util::events::EventsProvider {
857         fn from(obj: nativeChannelManager) -> Self {
858                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
859                 let mut ret = ChannelManager_as_EventsProvider(&rust_obj);
860                 // 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
861                 rust_obj.inner = std::ptr::null_mut();
862                 ret.free = Some(ChannelManager_free_void);
863                 ret
864         }
865 }
866 /// Constructs a new EventsProvider which calls the relevant methods on this_arg.
867 /// This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
868 #[no_mangle]
869 pub extern "C" fn ChannelManager_as_EventsProvider(this_arg: &ChannelManager) -> crate::util::events::EventsProvider {
870         crate::util::events::EventsProvider {
871                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
872                 free: None,
873                 get_and_clear_pending_events: ChannelManager_EventsProvider_get_and_clear_pending_events,
874         }
875 }
876
877 #[must_use]
878 extern "C" fn ChannelManager_EventsProvider_get_and_clear_pending_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_EventZ {
879         let mut ret = <nativeChannelManager as lightning::util::events::EventsProvider<>>::get_and_clear_pending_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
880         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::util::events::Event::native_into(item) }); };
881         local_ret.into()
882 }
883
884 impl From<nativeChannelManager> for crate::chain::Listen {
885         fn from(obj: nativeChannelManager) -> Self {
886                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
887                 let mut ret = ChannelManager_as_Listen(&rust_obj);
888                 // 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
889                 rust_obj.inner = std::ptr::null_mut();
890                 ret.free = Some(ChannelManager_free_void);
891                 ret
892         }
893 }
894 /// Constructs a new Listen which calls the relevant methods on this_arg.
895 /// This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
896 #[no_mangle]
897 pub extern "C" fn ChannelManager_as_Listen(this_arg: &ChannelManager) -> crate::chain::Listen {
898         crate::chain::Listen {
899                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
900                 free: None,
901                 block_connected: ChannelManager_Listen_block_connected,
902                 block_disconnected: ChannelManager_Listen_block_disconnected,
903         }
904 }
905
906 extern "C" fn ChannelManager_Listen_block_connected(this_arg: *const c_void, mut block: crate::c_types::u8slice, mut height: u32) {
907         <nativeChannelManager as lightning::chain::Listen<>>::block_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(block.to_slice()).unwrap(), height)
908 }
909 extern "C" fn ChannelManager_Listen_block_disconnected(this_arg: *const c_void, header: *const [u8; 80], mut _height: u32) {
910         <nativeChannelManager as lightning::chain::Listen<>>::block_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), _height)
911 }
912
913 /// Updates channel state based on transactions seen in a connected block.
914 #[no_mangle]
915 pub extern "C" fn ChannelManager_block_connected(this_arg: &ChannelManager, header: *const [u8; 80], mut txdata: crate::c_types::derived::CVec_C2Tuple_usizeTransactionZZ, mut height: u32) {
916         let mut local_txdata = Vec::new(); for mut item in txdata.into_rust().drain(..) { local_txdata.push( { let (mut orig_txdata_0_0, mut orig_txdata_0_1) = item.to_rust(); let mut local_txdata_0 = (orig_txdata_0_0, orig_txdata_0_1.into_bitcoin()); local_txdata_0 }); };
917         unsafe { &*this_arg.inner }.block_connected(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), &local_txdata.iter().map(|(a, b)| (*a, b)).collect::<Vec<_>>()[..], height)
918 }
919
920 /// Updates channel state based on a disconnected block.
921 ///
922 /// If necessary, the channel may be force-closed without letting the counterparty participate
923 /// in the shutdown.
924 #[no_mangle]
925 pub extern "C" fn ChannelManager_block_disconnected(this_arg: &ChannelManager, header: *const [u8; 80]) {
926         unsafe { &*this_arg.inner }.block_disconnected(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap())
927 }
928
929 /// Blocks until ChannelManager needs to be persisted. Only one listener on
930 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
931 /// up.
932 #[no_mangle]
933 pub extern "C" fn ChannelManager_await_persistable_update(this_arg: &ChannelManager) {
934         unsafe { &*this_arg.inner }.await_persistable_update()
935 }
936
937 impl From<nativeChannelManager> for crate::ln::msgs::ChannelMessageHandler {
938         fn from(obj: nativeChannelManager) -> Self {
939                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
940                 let mut ret = ChannelManager_as_ChannelMessageHandler(&rust_obj);
941                 // 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
942                 rust_obj.inner = std::ptr::null_mut();
943                 ret.free = Some(ChannelManager_free_void);
944                 ret
945         }
946 }
947 /// Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
948 /// This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
949 #[no_mangle]
950 pub extern "C" fn ChannelManager_as_ChannelMessageHandler(this_arg: &ChannelManager) -> crate::ln::msgs::ChannelMessageHandler {
951         crate::ln::msgs::ChannelMessageHandler {
952                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
953                 free: None,
954                 handle_open_channel: ChannelManager_ChannelMessageHandler_handle_open_channel,
955                 handle_accept_channel: ChannelManager_ChannelMessageHandler_handle_accept_channel,
956                 handle_funding_created: ChannelManager_ChannelMessageHandler_handle_funding_created,
957                 handle_funding_signed: ChannelManager_ChannelMessageHandler_handle_funding_signed,
958                 handle_funding_locked: ChannelManager_ChannelMessageHandler_handle_funding_locked,
959                 handle_shutdown: ChannelManager_ChannelMessageHandler_handle_shutdown,
960                 handle_closing_signed: ChannelManager_ChannelMessageHandler_handle_closing_signed,
961                 handle_update_add_htlc: ChannelManager_ChannelMessageHandler_handle_update_add_htlc,
962                 handle_update_fulfill_htlc: ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc,
963                 handle_update_fail_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_htlc,
964                 handle_update_fail_malformed_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc,
965                 handle_commitment_signed: ChannelManager_ChannelMessageHandler_handle_commitment_signed,
966                 handle_revoke_and_ack: ChannelManager_ChannelMessageHandler_handle_revoke_and_ack,
967                 handle_update_fee: ChannelManager_ChannelMessageHandler_handle_update_fee,
968                 handle_announcement_signatures: ChannelManager_ChannelMessageHandler_handle_announcement_signatures,
969                 peer_disconnected: ChannelManager_ChannelMessageHandler_peer_disconnected,
970                 peer_connected: ChannelManager_ChannelMessageHandler_peer_connected,
971                 handle_channel_reestablish: ChannelManager_ChannelMessageHandler_handle_channel_reestablish,
972                 handle_channel_update: ChannelManager_ChannelMessageHandler_handle_channel_update,
973                 handle_error: ChannelManager_ChannelMessageHandler_handle_error,
974                 MessageSendEventsProvider: crate::util::events::MessageSendEventsProvider {
975                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
976                         free: None,
977                         get_and_clear_pending_msg_events: ChannelManager_ChannelMessageHandler_get_and_clear_pending_msg_events,
978                 },
979         }
980 }
981
982 extern "C" fn ChannelManager_ChannelMessageHandler_handle_open_channel(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, mut their_features: crate::ln::features::InitFeatures, msg: &crate::ln::msgs::OpenChannel) {
983         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_open_channel(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), *unsafe { Box::from_raw(their_features.take_inner()) }, unsafe { &*msg.inner })
984 }
985 extern "C" fn ChannelManager_ChannelMessageHandler_handle_accept_channel(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, mut their_features: crate::ln::features::InitFeatures, msg: &crate::ln::msgs::AcceptChannel) {
986         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_accept_channel(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), *unsafe { Box::from_raw(their_features.take_inner()) }, unsafe { &*msg.inner })
987 }
988 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_created(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::FundingCreated) {
989         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_created(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
990 }
991 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::FundingSigned) {
992         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
993 }
994 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_locked(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::FundingLocked) {
995         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_locked(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
996 }
997 extern "C" fn ChannelManager_ChannelMessageHandler_handle_shutdown(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, their_features: &crate::ln::features::InitFeatures, msg: &crate::ln::msgs::Shutdown) {
998         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_shutdown(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*their_features.inner }, unsafe { &*msg.inner })
999 }
1000 extern "C" fn ChannelManager_ChannelMessageHandler_handle_closing_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::ClosingSigned) {
1001         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_closing_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1002 }
1003 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_add_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateAddHTLC) {
1004         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_add_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1005 }
1006 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateFulfillHTLC) {
1007         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fulfill_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1008 }
1009 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fail_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateFailHTLC) {
1010         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1011 }
1012 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateFailMalformedHTLC) {
1013         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_malformed_htlc(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1014 }
1015 extern "C" fn ChannelManager_ChannelMessageHandler_handle_commitment_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::CommitmentSigned) {
1016         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_commitment_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1017 }
1018 extern "C" fn ChannelManager_ChannelMessageHandler_handle_revoke_and_ack(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::RevokeAndACK) {
1019         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_revoke_and_ack(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1020 }
1021 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fee(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateFee) {
1022         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fee(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1023 }
1024 extern "C" fn ChannelManager_ChannelMessageHandler_handle_announcement_signatures(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::AnnouncementSignatures) {
1025         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_announcement_signatures(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1026 }
1027 extern "C" fn ChannelManager_ChannelMessageHandler_handle_channel_update(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::ChannelUpdate) {
1028         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1029 }
1030 extern "C" fn ChannelManager_ChannelMessageHandler_handle_channel_reestablish(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::ChannelReestablish) {
1031         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_reestablish(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1032 }
1033 extern "C" fn ChannelManager_ChannelMessageHandler_peer_disconnected(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, mut no_connection_possible: bool) {
1034         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), no_connection_possible)
1035 }
1036 extern "C" fn ChannelManager_ChannelMessageHandler_peer_connected(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, init_msg: &crate::ln::msgs::Init) {
1037         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*init_msg.inner })
1038 }
1039 extern "C" fn ChannelManager_ChannelMessageHandler_handle_error(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::ErrorMessage) {
1040         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_error(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1041 }
1042 #[must_use]
1043 extern "C" fn ChannelManager_ChannelMessageHandler_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
1044         let mut ret = <nativeChannelManager as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1045         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::util::events::MessageSendEvent::native_into(item) }); };
1046         local_ret.into()
1047 }
1048
1049 #[no_mangle]
1050 /// Serialize the ChannelManager object into a byte array which can be read by ChannelManager_read
1051 pub extern "C" fn ChannelManager_write(obj: &ChannelManager) -> crate::c_types::derived::CVec_u8Z {
1052         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1053 }
1054 #[no_mangle]
1055 pub(crate) extern "C" fn ChannelManager_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1056         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelManager) })
1057 }
1058
1059 use lightning::ln::channelmanager::ChannelManagerReadArgs as nativeChannelManagerReadArgsImport;
1060 type nativeChannelManagerReadArgs = nativeChannelManagerReadArgsImport<'static, crate::chain::keysinterface::Sign, crate::chain::Watch, crate::chain::chaininterface::BroadcasterInterface, crate::chain::keysinterface::KeysInterface, crate::chain::chaininterface::FeeEstimator, crate::util::logger::Logger>;
1061
1062 /// Arguments for the creation of a ChannelManager that are not deserialized.
1063 ///
1064 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
1065 /// is:
1066 /// 1) Deserialize all stored ChannelMonitors.
1067 /// 2) Deserialize the ChannelManager by filling in this struct and calling:
1068 ///    <(BlockHash, ChannelManager)>::read(reader, args)
1069 ///    This may result in closing some Channels if the ChannelMonitor is newer than the stored
1070 ///    ChannelManager state to ensure no loss of funds. Thus, transactions may be broadcasted.
1071 /// 3) If you are not fetching full blocks, register all relevant ChannelMonitor outpoints the same
1072 ///    way you would handle a `chain::Filter` call using ChannelMonitor::get_outputs_to_watch() and
1073 ///    ChannelMonitor::get_funding_txo().
1074 /// 4) Reconnect blocks on your ChannelMonitors.
1075 /// 5) Disconnect/connect blocks on the ChannelManager.
1076 /// 6) Move the ChannelMonitors into your local chain::Watch.
1077 ///
1078 /// Note that the ordering of #4-6 is not of importance, however all three must occur before you
1079 /// call any other methods on the newly-deserialized ChannelManager.
1080 ///
1081 /// Note that because some channels may be closed during deserialization, it is critical that you
1082 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
1083 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
1084 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
1085 /// not force-close the same channels but consider them live), you may end up revoking a state for
1086 /// which you've already broadcasted the transaction.
1087 #[must_use]
1088 #[repr(C)]
1089 pub struct ChannelManagerReadArgs {
1090         /// A pointer to the opaque Rust object.
1091
1092         /// Nearly everywhere, inner must be non-null, however in places where
1093         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1094         pub inner: *mut nativeChannelManagerReadArgs,
1095         /// Indicates that this is the only struct which contains the same pointer.
1096
1097         /// Rust functions which take ownership of an object provided via an argument require
1098         /// this to be true and invalidate the object pointed to by inner.
1099         pub is_owned: bool,
1100 }
1101
1102 impl Drop for ChannelManagerReadArgs {
1103         fn drop(&mut self) {
1104                 if self.is_owned && !<*mut nativeChannelManagerReadArgs>::is_null(self.inner) {
1105                         let _ = unsafe { Box::from_raw(self.inner) };
1106                 }
1107         }
1108 }
1109 /// Frees any resources used by the ChannelManagerReadArgs, if is_owned is set and inner is non-NULL.
1110 #[no_mangle]
1111 pub extern "C" fn ChannelManagerReadArgs_free(this_obj: ChannelManagerReadArgs) { }
1112 #[allow(unused)]
1113 /// Used only if an object of this type is returned as a trait impl by a method
1114 extern "C" fn ChannelManagerReadArgs_free_void(this_ptr: *mut c_void) {
1115         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManagerReadArgs); }
1116 }
1117 #[allow(unused)]
1118 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1119 impl ChannelManagerReadArgs {
1120         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManagerReadArgs {
1121                 assert!(self.is_owned);
1122                 let ret = self.inner;
1123                 self.inner = std::ptr::null_mut();
1124                 ret
1125         }
1126 }
1127 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1128 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1129 /// signing data.
1130 #[no_mangle]
1131 pub extern "C" fn ChannelManagerReadArgs_get_keys_manager(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::keysinterface::KeysInterface {
1132         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.keys_manager;
1133         &(*inner_val)
1134 }
1135 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1136 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1137 /// signing data.
1138 #[no_mangle]
1139 pub extern "C" fn ChannelManagerReadArgs_set_keys_manager(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::keysinterface::KeysInterface) {
1140         unsafe { &mut *this_ptr.inner }.keys_manager = val;
1141 }
1142 /// The fee_estimator for use in the ChannelManager in the future.
1143 ///
1144 /// No calls to the FeeEstimator will be made during deserialization.
1145 #[no_mangle]
1146 pub extern "C" fn ChannelManagerReadArgs_get_fee_estimator(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::chaininterface::FeeEstimator {
1147         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_estimator;
1148         &(*inner_val)
1149 }
1150 /// The fee_estimator for use in the ChannelManager in the future.
1151 ///
1152 /// No calls to the FeeEstimator will be made during deserialization.
1153 #[no_mangle]
1154 pub extern "C" fn ChannelManagerReadArgs_set_fee_estimator(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::chaininterface::FeeEstimator) {
1155         unsafe { &mut *this_ptr.inner }.fee_estimator = val;
1156 }
1157 /// The chain::Watch for use in the ChannelManager in the future.
1158 ///
1159 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1160 /// you have deserialized ChannelMonitors separately and will add them to your
1161 /// chain::Watch after deserializing this ChannelManager.
1162 #[no_mangle]
1163 pub extern "C" fn ChannelManagerReadArgs_get_chain_monitor(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::Watch {
1164         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_monitor;
1165         &(*inner_val)
1166 }
1167 /// The chain::Watch for use in the ChannelManager in the future.
1168 ///
1169 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1170 /// you have deserialized ChannelMonitors separately and will add them to your
1171 /// chain::Watch after deserializing this ChannelManager.
1172 #[no_mangle]
1173 pub extern "C" fn ChannelManagerReadArgs_set_chain_monitor(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::Watch) {
1174         unsafe { &mut *this_ptr.inner }.chain_monitor = val;
1175 }
1176 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1177 /// used to broadcast the latest local commitment transactions of channels which must be
1178 /// force-closed during deserialization.
1179 #[no_mangle]
1180 pub extern "C" fn ChannelManagerReadArgs_get_tx_broadcaster(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::chaininterface::BroadcasterInterface {
1181         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.tx_broadcaster;
1182         &(*inner_val)
1183 }
1184 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1185 /// used to broadcast the latest local commitment transactions of channels which must be
1186 /// force-closed during deserialization.
1187 #[no_mangle]
1188 pub extern "C" fn ChannelManagerReadArgs_set_tx_broadcaster(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::chaininterface::BroadcasterInterface) {
1189         unsafe { &mut *this_ptr.inner }.tx_broadcaster = val;
1190 }
1191 /// The Logger for use in the ChannelManager and which may be used to log information during
1192 /// deserialization.
1193 #[no_mangle]
1194 pub extern "C" fn ChannelManagerReadArgs_get_logger(this_ptr: &ChannelManagerReadArgs) -> *const crate::util::logger::Logger {
1195         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.logger;
1196         &(*inner_val)
1197 }
1198 /// The Logger for use in the ChannelManager and which may be used to log information during
1199 /// deserialization.
1200 #[no_mangle]
1201 pub extern "C" fn ChannelManagerReadArgs_set_logger(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::util::logger::Logger) {
1202         unsafe { &mut *this_ptr.inner }.logger = val;
1203 }
1204 /// Default settings used for new channels. Any existing channels will continue to use the
1205 /// runtime settings which were stored when the ChannelManager was serialized.
1206 #[no_mangle]
1207 pub extern "C" fn ChannelManagerReadArgs_get_default_config(this_ptr: &ChannelManagerReadArgs) -> crate::util::config::UserConfig {
1208         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.default_config;
1209         crate::util::config::UserConfig { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
1210 }
1211 /// Default settings used for new channels. Any existing channels will continue to use the
1212 /// runtime settings which were stored when the ChannelManager was serialized.
1213 #[no_mangle]
1214 pub extern "C" fn ChannelManagerReadArgs_set_default_config(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::util::config::UserConfig) {
1215         unsafe { &mut *this_ptr.inner }.default_config = *unsafe { Box::from_raw(val.take_inner()) };
1216 }
1217 /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
1218 /// HashMap for you. This is primarily useful for C bindings where it is not practical to
1219 /// populate a HashMap directly from C.
1220 #[must_use]
1221 #[no_mangle]
1222 pub extern "C" fn ChannelManagerReadArgs_new(mut keys_manager: crate::chain::keysinterface::KeysInterface, mut fee_estimator: crate::chain::chaininterface::FeeEstimator, mut chain_monitor: crate::chain::Watch, mut tx_broadcaster: crate::chain::chaininterface::BroadcasterInterface, mut logger: crate::util::logger::Logger, mut default_config: crate::util::config::UserConfig, mut channel_monitors: crate::c_types::derived::CVec_ChannelMonitorZ) -> ChannelManagerReadArgs {
1223         let mut local_channel_monitors = Vec::new(); for mut item in channel_monitors.into_rust().drain(..) { local_channel_monitors.push( { unsafe { &mut *item.inner } }); };
1224         let mut ret = lightning::ln::channelmanager::ChannelManagerReadArgs::new(keys_manager, fee_estimator, chain_monitor, tx_broadcaster, logger, *unsafe { Box::from_raw(default_config.take_inner()) }, local_channel_monitors);
1225         ChannelManagerReadArgs { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1226 }
1227
1228 #[no_mangle]
1229 /// Read a C2Tuple_BlockHashChannelManagerZ from a byte array, created by C2Tuple_BlockHashChannelManagerZ_write
1230 pub extern "C" fn C2Tuple_BlockHashChannelManagerZ_read(ser: crate::c_types::u8slice, arg: crate::ln::channelmanager::ChannelManagerReadArgs) -> crate::c_types::derived::CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ {
1231         let arg_conv = *unsafe { Box::from_raw(arg.take_inner()) };
1232         let res: Result<(bitcoin::hash_types::BlockHash, lightning::ln::channelmanager::ChannelManager<crate::chain::keysinterface::Sign, crate::chain::Watch, crate::chain::chaininterface::BroadcasterInterface, crate::chain::keysinterface::KeysInterface, crate::chain::chaininterface::FeeEstimator, crate::util::logger::Logger>), lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj_arg(ser, arg_conv);
1233         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { let (mut orig_res_0_0, mut orig_res_0_1) = o; let mut local_res_0 = (crate::c_types::ThirtyTwoBytes { data: orig_res_0_0.into_inner() }, crate::ln::channelmanager::ChannelManager { inner: Box::into_raw(Box::new(orig_res_0_1)), is_owned: true }).into(); local_res_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1234         local_res
1235 }