89a3b249e39078d61bf7915cf5b4e7471b940d3a
[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 position of the funding transaction in the chain. None if the funding transaction has
281 /// not yet been confirmed and the channel fully opened.
282 #[no_mangle]
283 pub extern "C" fn ChannelDetails_get_short_channel_id(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u64Z {
284         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
285         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_u64Z::None } else {  { crate::c_types::derived::COption_u64Z::Some(inner_val.unwrap()) } };
286         local_inner_val
287 }
288 /// The position of the funding transaction in the chain. None if the funding transaction has
289 /// not yet been confirmed and the channel fully opened.
290 #[no_mangle]
291 pub extern "C" fn ChannelDetails_set_short_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u64Z) {
292         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
293         unsafe { &mut *this_ptr.inner }.short_channel_id = local_val;
294 }
295 /// The node_id of our counterparty
296 #[no_mangle]
297 pub extern "C" fn ChannelDetails_get_remote_network_id(this_ptr: &ChannelDetails) -> crate::c_types::PublicKey {
298         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.remote_network_id;
299         crate::c_types::PublicKey::from_rust(&(*inner_val))
300 }
301 /// The node_id of our counterparty
302 #[no_mangle]
303 pub extern "C" fn ChannelDetails_set_remote_network_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::PublicKey) {
304         unsafe { &mut *this_ptr.inner }.remote_network_id = val.into_rust();
305 }
306 /// The Features the channel counterparty provided upon last connection.
307 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
308 /// many routing-relevant features are present in the init context.
309 #[no_mangle]
310 pub extern "C" fn ChannelDetails_get_counterparty_features(this_ptr: &ChannelDetails) -> crate::ln::features::InitFeatures {
311         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.counterparty_features;
312         crate::ln::features::InitFeatures { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
313 }
314 /// The Features the channel counterparty provided upon last connection.
315 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
316 /// many routing-relevant features are present in the init context.
317 #[no_mangle]
318 pub extern "C" fn ChannelDetails_set_counterparty_features(this_ptr: &mut ChannelDetails, mut val: crate::ln::features::InitFeatures) {
319         unsafe { &mut *this_ptr.inner }.counterparty_features = *unsafe { Box::from_raw(val.take_inner()) };
320 }
321 /// The value, in satoshis, of this channel as appears in the funding output
322 #[no_mangle]
323 pub extern "C" fn ChannelDetails_get_channel_value_satoshis(this_ptr: &ChannelDetails) -> u64 {
324         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_value_satoshis;
325         (*inner_val)
326 }
327 /// The value, in satoshis, of this channel as appears in the funding output
328 #[no_mangle]
329 pub extern "C" fn ChannelDetails_set_channel_value_satoshis(this_ptr: &mut ChannelDetails, mut val: u64) {
330         unsafe { &mut *this_ptr.inner }.channel_value_satoshis = val;
331 }
332 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
333 #[no_mangle]
334 pub extern "C" fn ChannelDetails_get_user_id(this_ptr: &ChannelDetails) -> u64 {
335         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.user_id;
336         (*inner_val)
337 }
338 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
339 #[no_mangle]
340 pub extern "C" fn ChannelDetails_set_user_id(this_ptr: &mut ChannelDetails, mut val: u64) {
341         unsafe { &mut *this_ptr.inner }.user_id = val;
342 }
343 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
344 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
345 /// available for inclusion in new outbound HTLCs). This further does not include any pending
346 /// outgoing HTLCs which are awaiting some other resolution to be sent.
347 #[no_mangle]
348 pub extern "C" fn ChannelDetails_get_outbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
349         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.outbound_capacity_msat;
350         (*inner_val)
351 }
352 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
353 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
354 /// available for inclusion in new outbound HTLCs). This further does not include any pending
355 /// outgoing HTLCs which are awaiting some other resolution to be sent.
356 #[no_mangle]
357 pub extern "C" fn ChannelDetails_set_outbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
358         unsafe { &mut *this_ptr.inner }.outbound_capacity_msat = val;
359 }
360 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
361 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
362 /// available for inclusion in new inbound HTLCs).
363 /// Note that there are some corner cases not fully handled here, so the actual available
364 /// inbound capacity may be slightly higher than this.
365 #[no_mangle]
366 pub extern "C" fn ChannelDetails_get_inbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
367         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.inbound_capacity_msat;
368         (*inner_val)
369 }
370 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
371 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
372 /// available for inclusion in new inbound HTLCs).
373 /// Note that there are some corner cases not fully handled here, so the actual available
374 /// inbound capacity may be slightly higher than this.
375 #[no_mangle]
376 pub extern "C" fn ChannelDetails_set_inbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
377         unsafe { &mut *this_ptr.inner }.inbound_capacity_msat = val;
378 }
379 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
380 /// the peer is connected, and (c) no monitor update failure is pending resolution.
381 #[no_mangle]
382 pub extern "C" fn ChannelDetails_get_is_live(this_ptr: &ChannelDetails) -> bool {
383         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_live;
384         (*inner_val)
385 }
386 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
387 /// the peer is connected, and (c) no monitor update failure is pending resolution.
388 #[no_mangle]
389 pub extern "C" fn ChannelDetails_set_is_live(this_ptr: &mut ChannelDetails, mut val: bool) {
390         unsafe { &mut *this_ptr.inner }.is_live = val;
391 }
392 impl Clone for ChannelDetails {
393         fn clone(&self) -> Self {
394                 Self {
395                         inner: if <*mut nativeChannelDetails>::is_null(self.inner) { std::ptr::null_mut() } else {
396                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
397                         is_owned: true,
398                 }
399         }
400 }
401 #[allow(unused)]
402 /// Used only if an object of this type is returned as a trait impl by a method
403 pub(crate) extern "C" fn ChannelDetails_clone_void(this_ptr: *const c_void) -> *mut c_void {
404         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelDetails)).clone() })) as *mut c_void
405 }
406 #[no_mangle]
407 /// Creates a copy of the ChannelDetails
408 pub extern "C" fn ChannelDetails_clone(orig: &ChannelDetails) -> ChannelDetails {
409         orig.clone()
410 }
411 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
412 /// Err() type describing which state the payment is in, see the description of individual enum
413 /// states for more.
414 #[must_use]
415 #[derive(Clone)]
416 #[repr(C)]
417 pub enum PaymentSendFailure {
418         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
419         /// send the payment at all. No channel state has been changed or messages sent to peers, and
420         /// once you've changed the parameter at error, you can freely retry the payment in full.
421         ParameterError(crate::util::errors::APIError),
422         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
423         /// from attempting to send the payment at all. No channel state has been changed or messages
424         /// sent to peers, and once you've changed the parameter at error, you can freely retry the
425         /// payment in full.
426         ///
427         /// The results here are ordered the same as the paths in the route object which was passed to
428         /// send_payment.
429         PathParameterError(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
430         /// All paths which were attempted failed to send, with no channel state change taking place.
431         /// You can freely retry the payment in full (though you probably want to do so over different
432         /// paths than the ones selected).
433         AllFailedRetrySafe(crate::c_types::derived::CVec_APIErrorZ),
434         /// Some paths which were attempted failed to send, though possibly not all. At least some
435         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
436         /// in over-/re-payment.
437         ///
438         /// The results here are ordered the same as the paths in the route object which was passed to
439         /// send_payment, and any Errs which are not APIError::MonitorUpdateFailed can be safely
440         /// retried (though there is currently no API with which to do so).
441         ///
442         /// Any entries which contain Err(APIError::MonitorUpdateFailed) or Ok(()) MUST NOT be retried
443         /// as they will result in over-/re-payment. These HTLCs all either successfully sent (in the
444         /// case of Ok(())) or will send once channel_monitor_updated is called on the next-hop channel
445         /// with the latest update_id.
446         PartialFailure(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
447 }
448 use lightning::ln::channelmanager::PaymentSendFailure as nativePaymentSendFailure;
449 impl PaymentSendFailure {
450         #[allow(unused)]
451         pub(crate) fn to_native(&self) -> nativePaymentSendFailure {
452                 match self {
453                         PaymentSendFailure::ParameterError (ref a, ) => {
454                                 let mut a_nonref = (*a).clone();
455                                 nativePaymentSendFailure::ParameterError (
456                                         a_nonref.into_native(),
457                                 )
458                         },
459                         PaymentSendFailure::PathParameterError (ref a, ) => {
460                                 let mut a_nonref = (*a).clone();
461                                 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 }); };
462                                 nativePaymentSendFailure::PathParameterError (
463                                         local_a_nonref,
464                                 )
465                         },
466                         PaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
467                                 let mut a_nonref = (*a).clone();
468                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { item.into_native() }); };
469                                 nativePaymentSendFailure::AllFailedRetrySafe (
470                                         local_a_nonref,
471                                 )
472                         },
473                         PaymentSendFailure::PartialFailure (ref a, ) => {
474                                 let mut a_nonref = (*a).clone();
475                                 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 }); };
476                                 nativePaymentSendFailure::PartialFailure (
477                                         local_a_nonref,
478                                 )
479                         },
480                 }
481         }
482         #[allow(unused)]
483         pub(crate) fn into_native(self) -> nativePaymentSendFailure {
484                 match self {
485                         PaymentSendFailure::ParameterError (mut a, ) => {
486                                 nativePaymentSendFailure::ParameterError (
487                                         a.into_native(),
488                                 )
489                         },
490                         PaymentSendFailure::PathParameterError (mut a, ) => {
491                                 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 }); };
492                                 nativePaymentSendFailure::PathParameterError (
493                                         local_a,
494                                 )
495                         },
496                         PaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
497                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { item.into_native() }); };
498                                 nativePaymentSendFailure::AllFailedRetrySafe (
499                                         local_a,
500                                 )
501                         },
502                         PaymentSendFailure::PartialFailure (mut a, ) => {
503                                 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 }); };
504                                 nativePaymentSendFailure::PartialFailure (
505                                         local_a,
506                                 )
507                         },
508                 }
509         }
510         #[allow(unused)]
511         pub(crate) fn from_native(native: &nativePaymentSendFailure) -> Self {
512                 match native {
513                         nativePaymentSendFailure::ParameterError (ref a, ) => {
514                                 let mut a_nonref = (*a).clone();
515                                 PaymentSendFailure::ParameterError (
516                                         crate::util::errors::APIError::native_into(a_nonref),
517                                 )
518                         },
519                         nativePaymentSendFailure::PathParameterError (ref a, ) => {
520                                 let mut a_nonref = (*a).clone();
521                                 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 }); };
522                                 PaymentSendFailure::PathParameterError (
523                                         local_a_nonref.into(),
524                                 )
525                         },
526                         nativePaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
527                                 let mut a_nonref = (*a).clone();
528                                 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) }); };
529                                 PaymentSendFailure::AllFailedRetrySafe (
530                                         local_a_nonref.into(),
531                                 )
532                         },
533                         nativePaymentSendFailure::PartialFailure (ref a, ) => {
534                                 let mut a_nonref = (*a).clone();
535                                 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 }); };
536                                 PaymentSendFailure::PartialFailure (
537                                         local_a_nonref.into(),
538                                 )
539                         },
540                 }
541         }
542         #[allow(unused)]
543         pub(crate) fn native_into(native: nativePaymentSendFailure) -> Self {
544                 match native {
545                         nativePaymentSendFailure::ParameterError (mut a, ) => {
546                                 PaymentSendFailure::ParameterError (
547                                         crate::util::errors::APIError::native_into(a),
548                                 )
549                         },
550                         nativePaymentSendFailure::PathParameterError (mut a, ) => {
551                                 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 }); };
552                                 PaymentSendFailure::PathParameterError (
553                                         local_a.into(),
554                                 )
555                         },
556                         nativePaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
557                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { crate::util::errors::APIError::native_into(item) }); };
558                                 PaymentSendFailure::AllFailedRetrySafe (
559                                         local_a.into(),
560                                 )
561                         },
562                         nativePaymentSendFailure::PartialFailure (mut a, ) => {
563                                 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 }); };
564                                 PaymentSendFailure::PartialFailure (
565                                         local_a.into(),
566                                 )
567                         },
568                 }
569         }
570 }
571 /// Frees any resources used by the PaymentSendFailure
572 #[no_mangle]
573 pub extern "C" fn PaymentSendFailure_free(this_ptr: PaymentSendFailure) { }
574 /// Creates a copy of the PaymentSendFailure
575 #[no_mangle]
576 pub extern "C" fn PaymentSendFailure_clone(orig: &PaymentSendFailure) -> PaymentSendFailure {
577         orig.clone()
578 }
579 /// Constructs a new ChannelManager to hold several channels and route between them.
580 ///
581 /// This is the main \"logic hub\" for all channel-related actions, and implements
582 /// ChannelMessageHandler.
583 ///
584 /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
585 ///
586 /// panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
587 ///
588 /// Users need to notify the new ChannelManager when a new block is connected or
589 /// disconnected using its `block_connected` and `block_disconnected` methods, starting
590 /// from after `params.latest_hash`.
591 #[must_use]
592 #[no_mangle]
593 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 {
594         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()) });
595         ChannelManager { inner: Box::into_raw(Box::new(ret)), is_owned: true }
596 }
597
598 /// Creates a new outbound channel to the given remote node and with the given value.
599 ///
600 /// user_id will be provided back as user_channel_id in FundingGenerationReady and
601 /// FundingBroadcastSafe events to allow tracking of which events correspond with which
602 /// create_channel call. Note that user_channel_id defaults to 0 for inbound channels, so you
603 /// may wish to avoid using 0 for user_id here.
604 ///
605 /// If successful, will generate a SendOpenChannel message event, so you should probably poll
606 /// PeerManager::process_events afterwards.
607 ///
608 /// Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat is
609 /// greater than channel_value_satoshis * 1k or channel_value_satoshis is < 1000.
610 #[must_use]
611 #[no_mangle]
612 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 {
613         let mut local_override_config = if override_config.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(override_config.take_inner()) } }) };
614         let mut ret = unsafe { &*this_arg.inner }.create_channel(their_network_key.into_rust(), channel_value_satoshis, push_msat, user_id, local_override_config);
615         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() };
616         local_ret
617 }
618
619 /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
620 /// more information.
621 #[must_use]
622 #[no_mangle]
623 pub extern "C" fn ChannelManager_list_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
624         let mut ret = unsafe { &*this_arg.inner }.list_channels();
625         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 } }); };
626         local_ret.into()
627 }
628
629 /// Gets the list of usable channels, in random order. Useful as an argument to
630 /// get_route to ensure non-announced channels are used.
631 ///
632 /// These are guaranteed to have their is_live value set to true, see the documentation for
633 /// ChannelDetails::is_live for more info on exactly what the criteria are.
634 #[must_use]
635 #[no_mangle]
636 pub extern "C" fn ChannelManager_list_usable_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
637         let mut ret = unsafe { &*this_arg.inner }.list_usable_channels();
638         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 } }); };
639         local_ret.into()
640 }
641
642 /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
643 /// will be accepted on the given channel, and after additional timeout/the closing of all
644 /// pending HTLCs, the channel will be closed on chain.
645 ///
646 /// May generate a SendShutdown message event on success, which should be relayed.
647 #[must_use]
648 #[no_mangle]
649 pub extern "C" fn ChannelManager_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
650         let mut ret = unsafe { &*this_arg.inner }.close_channel(unsafe { &*channel_id});
651         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() };
652         local_ret
653 }
654
655 /// Force closes a channel, immediately broadcasting the latest local commitment transaction to
656 /// the chain and rejecting new HTLCs on the given channel. Fails if channel_id is unknown to the manager.
657 #[must_use]
658 #[no_mangle]
659 pub extern "C" fn ChannelManager_force_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
660         let mut ret = unsafe { &*this_arg.inner }.force_close_channel(unsafe { &*channel_id});
661         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() };
662         local_ret
663 }
664
665 /// Force close all channels, immediately broadcasting the latest local commitment transaction
666 /// for each to the chain and rejecting new HTLCs on each.
667 #[no_mangle]
668 pub extern "C" fn ChannelManager_force_close_all_channels(this_arg: &ChannelManager) {
669         unsafe { &*this_arg.inner }.force_close_all_channels()
670 }
671
672 /// Sends a payment along a given route.
673 ///
674 /// Value parameters are provided via the last hop in route, see documentation for RouteHop
675 /// fields for more info.
676 ///
677 /// Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
678 /// payment), we don't do anything to stop you! We always try to ensure that if the provided
679 /// next hop knows the preimage to payment_hash they can claim an additional amount as
680 /// specified in the last hop in the route! Thus, you should probably do your own
681 /// payment_preimage tracking (which you should already be doing as they represent \"proof of
682 /// payment\") and prevent double-sends yourself.
683 ///
684 /// May generate SendHTLCs message(s) event on success, which should be relayed.
685 ///
686 /// Each path may have a different return value, and PaymentSendValue may return a Vec with
687 /// each entry matching the corresponding-index entry in the route paths, see
688 /// PaymentSendFailure for more info.
689 ///
690 /// In general, a path may raise:
691 ///  * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
692 ///    node public key) is specified.
693 ///  * APIError::ChannelUnavailable if the next-hop channel is not available for updates
694 ///    (including due to previous monitor update failure or new permanent monitor update
695 ///    failure).
696 ///  * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
697 ///    relevant updates.
698 ///
699 /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
700 /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
701 /// different route unless you intend to pay twice!
702 ///
703 /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
704 /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
705 /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
706 /// must not contain multiple paths as multi-path payments require a recipient-provided
707 /// payment_secret.
708 /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
709 /// bit set (either as required or as available). If multiple paths are present in the Route,
710 /// we assume the invoice had the basic_mpp feature set.
711 #[must_use]
712 #[no_mangle]
713 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 {
714         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
715         let mut ret = unsafe { &*this_arg.inner }.send_payment(unsafe { &*route.inner }, ::lightning::ln::channelmanager::PaymentHash(payment_hash.data), &local_payment_secret);
716         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() };
717         local_ret
718 }
719
720 /// Call this upon creation of a funding transaction for the given channel.
721 ///
722 /// Note that ALL inputs in the transaction pointed to by funding_txo MUST spend SegWit outputs
723 /// or your counterparty can steal your funds!
724 ///
725 /// Panics if a funding transaction has already been provided for this channel.
726 ///
727 /// May panic if the funding_txo is duplicative with some other channel (note that this should
728 /// be trivially prevented by using unique funding transaction keys per-channel).
729 #[no_mangle]
730 pub extern "C" fn ChannelManager_funding_transaction_generated(this_arg: &ChannelManager, temporary_channel_id: *const [u8; 32], mut funding_txo: crate::chain::transaction::OutPoint) {
731         unsafe { &*this_arg.inner }.funding_transaction_generated(unsafe { &*temporary_channel_id}, *unsafe { Box::from_raw(funding_txo.take_inner()) })
732 }
733
734 /// Generates a signed node_announcement from the given arguments and creates a
735 /// BroadcastNodeAnnouncement event. Note that such messages will be ignored unless peers have
736 /// seen a channel_announcement from us (ie unless we have public channels open).
737 ///
738 /// RGB is a node \"color\" and alias is a printable human-readable string to describe this node
739 /// to humans. They carry no in-protocol meaning.
740 ///
741 /// addresses represent the set (possibly empty) of socket addresses on which this node accepts
742 /// incoming connections. These will be broadcast to the network, publicly tying these
743 /// addresses together. If you wish to preserve user privacy, addresses should likely contain
744 /// only Tor Onion addresses.
745 ///
746 /// Panics if addresses is absurdly large (more than 500).
747 #[no_mangle]
748 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) {
749         let mut local_addresses = Vec::new(); for mut item in addresses.into_rust().drain(..) { local_addresses.push( { item.into_native() }); };
750         unsafe { &*this_arg.inner }.broadcast_node_announcement(rgb.data, alias.data, local_addresses)
751 }
752
753 /// Processes HTLCs which are pending waiting on random forward delay.
754 ///
755 /// Should only really ever be called in response to a PendingHTLCsForwardable event.
756 /// Will likely generate further events.
757 #[no_mangle]
758 pub extern "C" fn ChannelManager_process_pending_htlc_forwards(this_arg: &ChannelManager) {
759         unsafe { &*this_arg.inner }.process_pending_htlc_forwards()
760 }
761
762 /// If a peer is disconnected we mark any channels with that peer as 'disabled'.
763 /// After some time, if channels are still disabled we need to broadcast a ChannelUpdate
764 /// to inform the network about the uselessness of these channels.
765 ///
766 /// This method handles all the details, and must be called roughly once per minute.
767 ///
768 /// Note that in some rare cases this may generate a `chain::Watch::update_channel` call.
769 #[no_mangle]
770 pub extern "C" fn ChannelManager_timer_chan_freshness_every_min(this_arg: &ChannelManager) {
771         unsafe { &*this_arg.inner }.timer_chan_freshness_every_min()
772 }
773
774 /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
775 /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
776 /// along the path (including in our own channel on which we received it).
777 /// Returns false if no payment was found to fail backwards, true if the process of failing the
778 /// HTLC backwards has been started.
779 #[must_use]
780 #[no_mangle]
781 pub extern "C" fn ChannelManager_fail_htlc_backwards(this_arg: &ChannelManager, payment_hash: *const [u8; 32], mut payment_secret: crate::c_types::ThirtyTwoBytes) -> bool {
782         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
783         let mut ret = unsafe { &*this_arg.inner }.fail_htlc_backwards(&::lightning::ln::channelmanager::PaymentHash(unsafe { *payment_hash }), &local_payment_secret);
784         ret
785 }
786
787 /// Provides a payment preimage in response to a PaymentReceived event, returning true and
788 /// generating message events for the net layer to claim the payment, if possible. Thus, you
789 /// should probably kick the net layer to go send messages if this returns true!
790 ///
791 /// You must specify the expected amounts for this HTLC, and we will only claim HTLCs
792 /// available within a few percent of the expected amount. This is critical for several
793 /// reasons : a) it avoids providing senders with `proof-of-payment` (in the form of the
794 /// payment_preimage without having provided the full value and b) it avoids certain
795 /// privacy-breaking recipient-probing attacks which may reveal payment activity to
796 /// motivated attackers.
797 ///
798 /// Note that the privacy concerns in (b) are not relevant in payments with a payment_secret
799 /// set. Thus, for such payments we will claim any payments which do not under-pay.
800 ///
801 /// May panic if called except in response to a PaymentReceived event.
802 #[must_use]
803 #[no_mangle]
804 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 {
805         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
806         let mut ret = unsafe { &*this_arg.inner }.claim_funds(::lightning::ln::channelmanager::PaymentPreimage(payment_preimage.data), &local_payment_secret, expected_amount);
807         ret
808 }
809
810 /// Gets the node_id held by this ChannelManager
811 #[must_use]
812 #[no_mangle]
813 pub extern "C" fn ChannelManager_get_our_node_id(this_arg: &ChannelManager) -> crate::c_types::PublicKey {
814         let mut ret = unsafe { &*this_arg.inner }.get_our_node_id();
815         crate::c_types::PublicKey::from_rust(&ret)
816 }
817
818 /// Restores a single, given channel to normal operation after a
819 /// ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
820 /// operation.
821 ///
822 /// All ChannelMonitor updates up to and including highest_applied_update_id must have been
823 /// fully committed in every copy of the given channels' ChannelMonitors.
824 ///
825 /// Note that there is no effect to calling with a highest_applied_update_id other than the
826 /// current latest ChannelMonitorUpdate and one call to this function after multiple
827 /// ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
828 /// exists largely only to prevent races between this and concurrent update_monitor calls.
829 ///
830 /// Thus, the anticipated use is, at a high level:
831 ///  1) You register a chain::Watch with this ChannelManager,
832 ///  2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
833 ///     said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
834 ///     any time it cannot do so instantly,
835 ///  3) update(s) are applied to each remote copy of a ChannelMonitor,
836 ///  4) once all remote copies are updated, you call this function with the update_id that
837 ///     completed, and once it is the latest the Channel will be re-enabled.
838 #[no_mangle]
839 pub extern "C" fn ChannelManager_channel_monitor_updated(this_arg: &ChannelManager, funding_txo: &crate::chain::transaction::OutPoint, mut highest_applied_update_id: u64) {
840         unsafe { &*this_arg.inner }.channel_monitor_updated(unsafe { &*funding_txo.inner }, highest_applied_update_id)
841 }
842
843 impl From<nativeChannelManager> for crate::util::events::MessageSendEventsProvider {
844         fn from(obj: nativeChannelManager) -> Self {
845                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
846                 let mut ret = ChannelManager_as_MessageSendEventsProvider(&rust_obj);
847                 // 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
848                 rust_obj.inner = std::ptr::null_mut();
849                 ret.free = Some(ChannelManager_free_void);
850                 ret
851         }
852 }
853 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
854 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
855 #[no_mangle]
856 pub extern "C" fn ChannelManager_as_MessageSendEventsProvider(this_arg: &ChannelManager) -> crate::util::events::MessageSendEventsProvider {
857         crate::util::events::MessageSendEventsProvider {
858                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
859                 free: None,
860                 get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
861         }
862 }
863
864 #[must_use]
865 extern "C" fn ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
866         let mut ret = <nativeChannelManager as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
867         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::util::events::MessageSendEvent::native_into(item) }); };
868         local_ret.into()
869 }
870
871 impl From<nativeChannelManager> for crate::util::events::EventsProvider {
872         fn from(obj: nativeChannelManager) -> Self {
873                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
874                 let mut ret = ChannelManager_as_EventsProvider(&rust_obj);
875                 // 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
876                 rust_obj.inner = std::ptr::null_mut();
877                 ret.free = Some(ChannelManager_free_void);
878                 ret
879         }
880 }
881 /// Constructs a new EventsProvider which calls the relevant methods on this_arg.
882 /// This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
883 #[no_mangle]
884 pub extern "C" fn ChannelManager_as_EventsProvider(this_arg: &ChannelManager) -> crate::util::events::EventsProvider {
885         crate::util::events::EventsProvider {
886                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
887                 free: None,
888                 get_and_clear_pending_events: ChannelManager_EventsProvider_get_and_clear_pending_events,
889         }
890 }
891
892 #[must_use]
893 extern "C" fn ChannelManager_EventsProvider_get_and_clear_pending_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_EventZ {
894         let mut ret = <nativeChannelManager as lightning::util::events::EventsProvider<>>::get_and_clear_pending_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
895         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::util::events::Event::native_into(item) }); };
896         local_ret.into()
897 }
898
899 impl From<nativeChannelManager> for crate::chain::Listen {
900         fn from(obj: nativeChannelManager) -> Self {
901                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
902                 let mut ret = ChannelManager_as_Listen(&rust_obj);
903                 // 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
904                 rust_obj.inner = std::ptr::null_mut();
905                 ret.free = Some(ChannelManager_free_void);
906                 ret
907         }
908 }
909 /// Constructs a new Listen which calls the relevant methods on this_arg.
910 /// This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
911 #[no_mangle]
912 pub extern "C" fn ChannelManager_as_Listen(this_arg: &ChannelManager) -> crate::chain::Listen {
913         crate::chain::Listen {
914                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
915                 free: None,
916                 block_connected: ChannelManager_Listen_block_connected,
917                 block_disconnected: ChannelManager_Listen_block_disconnected,
918         }
919 }
920
921 extern "C" fn ChannelManager_Listen_block_connected(this_arg: *const c_void, mut block: crate::c_types::u8slice, mut height: u32) {
922         <nativeChannelManager as lightning::chain::Listen<>>::block_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(block.to_slice()).unwrap(), height)
923 }
924 extern "C" fn ChannelManager_Listen_block_disconnected(this_arg: *const c_void, header: *const [u8; 80], mut _height: u32) {
925         <nativeChannelManager as lightning::chain::Listen<>>::block_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), _height)
926 }
927
928 /// Updates channel state based on transactions seen in a connected block.
929 #[no_mangle]
930 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) {
931         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 }); };
932         unsafe { &*this_arg.inner }.block_connected(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), &local_txdata.iter().map(|(a, b)| (*a, b)).collect::<Vec<_>>()[..], height)
933 }
934
935 /// Updates channel state based on a disconnected block.
936 ///
937 /// If necessary, the channel may be force-closed without letting the counterparty participate
938 /// in the shutdown.
939 #[no_mangle]
940 pub extern "C" fn ChannelManager_block_disconnected(this_arg: &ChannelManager, header: *const [u8; 80]) {
941         unsafe { &*this_arg.inner }.block_disconnected(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap())
942 }
943
944 /// Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
945 /// indicating whether persistence is necessary. Only one listener on
946 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
947 /// up.
948 /// Note that the feature `allow_wallclock_use` must be enabled to use this function.
949 #[must_use]
950 #[no_mangle]
951 pub extern "C" fn ChannelManager_await_persistable_update_timeout(this_arg: &ChannelManager, mut max_wait: u64) -> bool {
952         let mut ret = unsafe { &*this_arg.inner }.await_persistable_update_timeout(std::time::Duration::from_secs(max_wait));
953         ret
954 }
955
956 /// Blocks until ChannelManager needs to be persisted. Only one listener on
957 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
958 /// up.
959 #[no_mangle]
960 pub extern "C" fn ChannelManager_await_persistable_update(this_arg: &ChannelManager) {
961         unsafe { &*this_arg.inner }.await_persistable_update()
962 }
963
964 impl From<nativeChannelManager> for crate::ln::msgs::ChannelMessageHandler {
965         fn from(obj: nativeChannelManager) -> Self {
966                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
967                 let mut ret = ChannelManager_as_ChannelMessageHandler(&rust_obj);
968                 // 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
969                 rust_obj.inner = std::ptr::null_mut();
970                 ret.free = Some(ChannelManager_free_void);
971                 ret
972         }
973 }
974 /// Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
975 /// This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
976 #[no_mangle]
977 pub extern "C" fn ChannelManager_as_ChannelMessageHandler(this_arg: &ChannelManager) -> crate::ln::msgs::ChannelMessageHandler {
978         crate::ln::msgs::ChannelMessageHandler {
979                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
980                 free: None,
981                 handle_open_channel: ChannelManager_ChannelMessageHandler_handle_open_channel,
982                 handle_accept_channel: ChannelManager_ChannelMessageHandler_handle_accept_channel,
983                 handle_funding_created: ChannelManager_ChannelMessageHandler_handle_funding_created,
984                 handle_funding_signed: ChannelManager_ChannelMessageHandler_handle_funding_signed,
985                 handle_funding_locked: ChannelManager_ChannelMessageHandler_handle_funding_locked,
986                 handle_shutdown: ChannelManager_ChannelMessageHandler_handle_shutdown,
987                 handle_closing_signed: ChannelManager_ChannelMessageHandler_handle_closing_signed,
988                 handle_update_add_htlc: ChannelManager_ChannelMessageHandler_handle_update_add_htlc,
989                 handle_update_fulfill_htlc: ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc,
990                 handle_update_fail_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_htlc,
991                 handle_update_fail_malformed_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc,
992                 handle_commitment_signed: ChannelManager_ChannelMessageHandler_handle_commitment_signed,
993                 handle_revoke_and_ack: ChannelManager_ChannelMessageHandler_handle_revoke_and_ack,
994                 handle_update_fee: ChannelManager_ChannelMessageHandler_handle_update_fee,
995                 handle_announcement_signatures: ChannelManager_ChannelMessageHandler_handle_announcement_signatures,
996                 peer_disconnected: ChannelManager_ChannelMessageHandler_peer_disconnected,
997                 peer_connected: ChannelManager_ChannelMessageHandler_peer_connected,
998                 handle_channel_reestablish: ChannelManager_ChannelMessageHandler_handle_channel_reestablish,
999                 handle_channel_update: ChannelManager_ChannelMessageHandler_handle_channel_update,
1000                 handle_error: ChannelManager_ChannelMessageHandler_handle_error,
1001                 MessageSendEventsProvider: crate::util::events::MessageSendEventsProvider {
1002                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
1003                         free: None,
1004                         get_and_clear_pending_msg_events: ChannelManager_ChannelMessageHandler_get_and_clear_pending_msg_events,
1005                 },
1006         }
1007 }
1008
1009 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) {
1010         <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 })
1011 }
1012 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) {
1013         <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 })
1014 }
1015 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) {
1016         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_created(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1017 }
1018 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) {
1019         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1020 }
1021 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) {
1022         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_locked(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1023 }
1024 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) {
1025         <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 })
1026 }
1027 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) {
1028         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_closing_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1029 }
1030 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) {
1031         <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 })
1032 }
1033 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) {
1034         <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 })
1035 }
1036 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) {
1037         <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 })
1038 }
1039 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) {
1040         <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 })
1041 }
1042 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) {
1043         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_commitment_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1044 }
1045 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) {
1046         <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 })
1047 }
1048 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) {
1049         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fee(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1050 }
1051 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) {
1052         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_announcement_signatures(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1053 }
1054 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) {
1055         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1056 }
1057 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) {
1058         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_reestablish(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1059 }
1060 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) {
1061         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), no_connection_possible)
1062 }
1063 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) {
1064         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*init_msg.inner })
1065 }
1066 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) {
1067         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_error(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1068 }
1069 #[must_use]
1070 extern "C" fn ChannelManager_ChannelMessageHandler_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
1071         let mut ret = <nativeChannelManager as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1072         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::util::events::MessageSendEvent::native_into(item) }); };
1073         local_ret.into()
1074 }
1075
1076 #[no_mangle]
1077 /// Serialize the ChannelManager object into a byte array which can be read by ChannelManager_read
1078 pub extern "C" fn ChannelManager_write(obj: &ChannelManager) -> crate::c_types::derived::CVec_u8Z {
1079         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1080 }
1081 #[no_mangle]
1082 pub(crate) extern "C" fn ChannelManager_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1083         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelManager) })
1084 }
1085
1086 use lightning::ln::channelmanager::ChannelManagerReadArgs as nativeChannelManagerReadArgsImport;
1087 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>;
1088
1089 /// Arguments for the creation of a ChannelManager that are not deserialized.
1090 ///
1091 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
1092 /// is:
1093 /// 1) Deserialize all stored ChannelMonitors.
1094 /// 2) Deserialize the ChannelManager by filling in this struct and calling:
1095 ///    <(BlockHash, ChannelManager)>::read(reader, args)
1096 ///    This may result in closing some Channels if the ChannelMonitor is newer than the stored
1097 ///    ChannelManager state to ensure no loss of funds. Thus, transactions may be broadcasted.
1098 /// 3) If you are not fetching full blocks, register all relevant ChannelMonitor outpoints the same
1099 ///    way you would handle a `chain::Filter` call using ChannelMonitor::get_outputs_to_watch() and
1100 ///    ChannelMonitor::get_funding_txo().
1101 /// 4) Reconnect blocks on your ChannelMonitors.
1102 /// 5) Disconnect/connect blocks on the ChannelManager.
1103 /// 6) Move the ChannelMonitors into your local chain::Watch.
1104 ///
1105 /// Note that the ordering of #4-6 is not of importance, however all three must occur before you
1106 /// call any other methods on the newly-deserialized ChannelManager.
1107 ///
1108 /// Note that because some channels may be closed during deserialization, it is critical that you
1109 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
1110 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
1111 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
1112 /// not force-close the same channels but consider them live), you may end up revoking a state for
1113 /// which you've already broadcasted the transaction.
1114 #[must_use]
1115 #[repr(C)]
1116 pub struct ChannelManagerReadArgs {
1117         /// A pointer to the opaque Rust object.
1118
1119         /// Nearly everywhere, inner must be non-null, however in places where
1120         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1121         pub inner: *mut nativeChannelManagerReadArgs,
1122         /// Indicates that this is the only struct which contains the same pointer.
1123
1124         /// Rust functions which take ownership of an object provided via an argument require
1125         /// this to be true and invalidate the object pointed to by inner.
1126         pub is_owned: bool,
1127 }
1128
1129 impl Drop for ChannelManagerReadArgs {
1130         fn drop(&mut self) {
1131                 if self.is_owned && !<*mut nativeChannelManagerReadArgs>::is_null(self.inner) {
1132                         let _ = unsafe { Box::from_raw(self.inner) };
1133                 }
1134         }
1135 }
1136 /// Frees any resources used by the ChannelManagerReadArgs, if is_owned is set and inner is non-NULL.
1137 #[no_mangle]
1138 pub extern "C" fn ChannelManagerReadArgs_free(this_obj: ChannelManagerReadArgs) { }
1139 #[allow(unused)]
1140 /// Used only if an object of this type is returned as a trait impl by a method
1141 extern "C" fn ChannelManagerReadArgs_free_void(this_ptr: *mut c_void) {
1142         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManagerReadArgs); }
1143 }
1144 #[allow(unused)]
1145 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1146 impl ChannelManagerReadArgs {
1147         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManagerReadArgs {
1148                 assert!(self.is_owned);
1149                 let ret = self.inner;
1150                 self.inner = std::ptr::null_mut();
1151                 ret
1152         }
1153 }
1154 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1155 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1156 /// signing data.
1157 #[no_mangle]
1158 pub extern "C" fn ChannelManagerReadArgs_get_keys_manager(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::keysinterface::KeysInterface {
1159         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.keys_manager;
1160         &(*inner_val)
1161 }
1162 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1163 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1164 /// signing data.
1165 #[no_mangle]
1166 pub extern "C" fn ChannelManagerReadArgs_set_keys_manager(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::keysinterface::KeysInterface) {
1167         unsafe { &mut *this_ptr.inner }.keys_manager = val;
1168 }
1169 /// The fee_estimator for use in the ChannelManager in the future.
1170 ///
1171 /// No calls to the FeeEstimator will be made during deserialization.
1172 #[no_mangle]
1173 pub extern "C" fn ChannelManagerReadArgs_get_fee_estimator(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::chaininterface::FeeEstimator {
1174         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_estimator;
1175         &(*inner_val)
1176 }
1177 /// The fee_estimator for use in the ChannelManager in the future.
1178 ///
1179 /// No calls to the FeeEstimator will be made during deserialization.
1180 #[no_mangle]
1181 pub extern "C" fn ChannelManagerReadArgs_set_fee_estimator(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::chaininterface::FeeEstimator) {
1182         unsafe { &mut *this_ptr.inner }.fee_estimator = val;
1183 }
1184 /// The chain::Watch for use in the ChannelManager in the future.
1185 ///
1186 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1187 /// you have deserialized ChannelMonitors separately and will add them to your
1188 /// chain::Watch after deserializing this ChannelManager.
1189 #[no_mangle]
1190 pub extern "C" fn ChannelManagerReadArgs_get_chain_monitor(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::Watch {
1191         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_monitor;
1192         &(*inner_val)
1193 }
1194 /// The chain::Watch for use in the ChannelManager in the future.
1195 ///
1196 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1197 /// you have deserialized ChannelMonitors separately and will add them to your
1198 /// chain::Watch after deserializing this ChannelManager.
1199 #[no_mangle]
1200 pub extern "C" fn ChannelManagerReadArgs_set_chain_monitor(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::Watch) {
1201         unsafe { &mut *this_ptr.inner }.chain_monitor = val;
1202 }
1203 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1204 /// used to broadcast the latest local commitment transactions of channels which must be
1205 /// force-closed during deserialization.
1206 #[no_mangle]
1207 pub extern "C" fn ChannelManagerReadArgs_get_tx_broadcaster(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::chaininterface::BroadcasterInterface {
1208         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.tx_broadcaster;
1209         &(*inner_val)
1210 }
1211 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1212 /// used to broadcast the latest local commitment transactions of channels which must be
1213 /// force-closed during deserialization.
1214 #[no_mangle]
1215 pub extern "C" fn ChannelManagerReadArgs_set_tx_broadcaster(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::chaininterface::BroadcasterInterface) {
1216         unsafe { &mut *this_ptr.inner }.tx_broadcaster = val;
1217 }
1218 /// The Logger for use in the ChannelManager and which may be used to log information during
1219 /// deserialization.
1220 #[no_mangle]
1221 pub extern "C" fn ChannelManagerReadArgs_get_logger(this_ptr: &ChannelManagerReadArgs) -> *const crate::util::logger::Logger {
1222         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.logger;
1223         &(*inner_val)
1224 }
1225 /// The Logger for use in the ChannelManager and which may be used to log information during
1226 /// deserialization.
1227 #[no_mangle]
1228 pub extern "C" fn ChannelManagerReadArgs_set_logger(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::util::logger::Logger) {
1229         unsafe { &mut *this_ptr.inner }.logger = val;
1230 }
1231 /// Default settings used for new channels. Any existing channels will continue to use the
1232 /// runtime settings which were stored when the ChannelManager was serialized.
1233 #[no_mangle]
1234 pub extern "C" fn ChannelManagerReadArgs_get_default_config(this_ptr: &ChannelManagerReadArgs) -> crate::util::config::UserConfig {
1235         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.default_config;
1236         crate::util::config::UserConfig { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
1237 }
1238 /// Default settings used for new channels. Any existing channels will continue to use the
1239 /// runtime settings which were stored when the ChannelManager was serialized.
1240 #[no_mangle]
1241 pub extern "C" fn ChannelManagerReadArgs_set_default_config(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::util::config::UserConfig) {
1242         unsafe { &mut *this_ptr.inner }.default_config = *unsafe { Box::from_raw(val.take_inner()) };
1243 }
1244 /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
1245 /// HashMap for you. This is primarily useful for C bindings where it is not practical to
1246 /// populate a HashMap directly from C.
1247 #[must_use]
1248 #[no_mangle]
1249 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 {
1250         let mut local_channel_monitors = Vec::new(); for mut item in channel_monitors.into_rust().drain(..) { local_channel_monitors.push( { unsafe { &mut *item.inner } }); };
1251         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);
1252         ChannelManagerReadArgs { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1253 }
1254
1255 #[no_mangle]
1256 /// Read a C2Tuple_BlockHashChannelManagerZ from a byte array, created by C2Tuple_BlockHashChannelManagerZ_write
1257 pub extern "C" fn C2Tuple_BlockHashChannelManagerZ_read(ser: crate::c_types::u8slice, arg: crate::ln::channelmanager::ChannelManagerReadArgs) -> crate::c_types::derived::CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ {
1258         let arg_conv = *unsafe { Box::from_raw(arg.take_inner()) };
1259         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);
1260         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() };
1261         local_res
1262 }