Merge pull request #38 from TheBlueMatt/main
[ldk-c-bindings] / lightning-c-bindings / src / lightning / 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::str::FromStr;
21 use std::ffi::c_void;
22 use bitcoin::hashes::Hash;
23 use crate::c_types::*;
24
25
26 use lightning::ln::channelmanager::ChannelManager as nativeChannelManagerImport;
27 type nativeChannelManager = nativeChannelManagerImport<crate::lightning::chain::keysinterface::Sign, crate::lightning::chain::Watch, crate::lightning::chain::chaininterface::BroadcasterInterface, crate::lightning::chain::keysinterface::KeysInterface, crate::lightning::chain::chaininterface::FeeEstimator, crate::lightning::util::logger::Logger>;
28
29 /// Manager which keeps track of a number of channels and sends messages to the appropriate
30 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
31 ///
32 /// Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
33 /// to individual Channels.
34 ///
35 /// Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
36 /// all peers during write/read (though does not modify this instance, only the instance being
37 /// serialized). This will result in any channels which have not yet exchanged funding_created (ie
38 /// called funding_transaction_generated for outbound channels).
39 ///
40 /// Note that you can be a bit lazier about writing out ChannelManager than you can be with
41 /// ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
42 /// returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
43 /// happens out-of-band (and will prevent any other ChannelManager operations from occurring during
44 /// the serialization process). If the deserialized version is out-of-date compared to the
45 /// ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
46 /// ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
47 ///
48 /// Note that the deserializer is only implemented for (BlockHash, ChannelManager), which
49 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
50 /// the \"reorg path\" (ie call block_disconnected() until you get to a common block and then call
51 /// block_connected() to step towards your best block) upon deserialization before using the
52 /// object!
53 ///
54 /// Note that ChannelManager is responsible for tracking liveness of its channels and generating
55 /// ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
56 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
57 /// offline for a full minute. In order to track this, you must call
58 /// timer_tick_occurred roughly once per minute, though it doesn't have to be perfect.
59 ///
60 /// Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
61 /// a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
62 /// essentially you should default to using a SimpleRefChannelManager, and use a
63 /// SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
64 /// you're using lightning-net-tokio.
65 #[must_use]
66 #[repr(C)]
67 pub struct ChannelManager {
68         /// A pointer to the opaque Rust object.
69
70         /// Nearly everywhere, inner must be non-null, however in places where
71         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
72         pub inner: *mut nativeChannelManager,
73         /// Indicates that this is the only struct which contains the same pointer.
74
75         /// Rust functions which take ownership of an object provided via an argument require
76         /// this to be true and invalidate the object pointed to by inner.
77         pub is_owned: bool,
78 }
79
80 impl Drop for ChannelManager {
81         fn drop(&mut self) {
82                 if self.is_owned && !<*mut nativeChannelManager>::is_null(self.inner) {
83                         let _ = unsafe { Box::from_raw(self.inner) };
84                 }
85         }
86 }
87 /// Frees any resources used by the ChannelManager, if is_owned is set and inner is non-NULL.
88 #[no_mangle]
89 pub extern "C" fn ChannelManager_free(this_obj: ChannelManager) { }
90 #[allow(unused)]
91 /// Used only if an object of this type is returned as a trait impl by a method
92 extern "C" fn ChannelManager_free_void(this_ptr: *mut c_void) {
93         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManager); }
94 }
95 #[allow(unused)]
96 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
97 impl ChannelManager {
98         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManager {
99                 assert!(self.is_owned);
100                 let ret = self.inner;
101                 self.inner = std::ptr::null_mut();
102                 ret
103         }
104 }
105
106 use lightning::ln::channelmanager::ChainParameters as nativeChainParametersImport;
107 type nativeChainParameters = nativeChainParametersImport;
108
109 /// Chain-related parameters used to construct a new `ChannelManager`.
110 ///
111 /// Typically, the block-specific parameters are derived from the best block hash for the network,
112 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
113 /// are not needed when deserializing a previously constructed `ChannelManager`.
114 #[must_use]
115 #[repr(C)]
116 pub struct ChainParameters {
117         /// A pointer to the opaque Rust object.
118
119         /// Nearly everywhere, inner must be non-null, however in places where
120         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
121         pub inner: *mut nativeChainParameters,
122         /// Indicates that this is the only struct which contains the same pointer.
123
124         /// Rust functions which take ownership of an object provided via an argument require
125         /// this to be true and invalidate the object pointed to by inner.
126         pub is_owned: bool,
127 }
128
129 impl Drop for ChainParameters {
130         fn drop(&mut self) {
131                 if self.is_owned && !<*mut nativeChainParameters>::is_null(self.inner) {
132                         let _ = unsafe { Box::from_raw(self.inner) };
133                 }
134         }
135 }
136 /// Frees any resources used by the ChainParameters, if is_owned is set and inner is non-NULL.
137 #[no_mangle]
138 pub extern "C" fn ChainParameters_free(this_obj: ChainParameters) { }
139 #[allow(unused)]
140 /// Used only if an object of this type is returned as a trait impl by a method
141 extern "C" fn ChainParameters_free_void(this_ptr: *mut c_void) {
142         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChainParameters); }
143 }
144 #[allow(unused)]
145 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
146 impl ChainParameters {
147         pub(crate) fn take_inner(mut self) -> *mut nativeChainParameters {
148                 assert!(self.is_owned);
149                 let ret = self.inner;
150                 self.inner = std::ptr::null_mut();
151                 ret
152         }
153 }
154 /// The network for determining the `chain_hash` in Lightning messages.
155 #[no_mangle]
156 pub extern "C" fn ChainParameters_get_network(this_ptr: &ChainParameters) -> crate::bitcoin::network::Network {
157         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.network;
158         crate::bitcoin::network::Network::from_bitcoin(inner_val)
159 }
160 /// The network for determining the `chain_hash` in Lightning messages.
161 #[no_mangle]
162 pub extern "C" fn ChainParameters_set_network(this_ptr: &mut ChainParameters, mut val: crate::bitcoin::network::Network) {
163         unsafe { &mut *this_ptr.inner }.network = val.into_bitcoin();
164 }
165 /// The hash and height of the latest block successfully connected.
166 ///
167 /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
168 #[no_mangle]
169 pub extern "C" fn ChainParameters_get_best_block(this_ptr: &ChainParameters) -> crate::lightning::chain::BestBlock {
170         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.best_block;
171         crate::lightning::chain::BestBlock { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
172 }
173 /// The hash and height of the latest block successfully connected.
174 ///
175 /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
176 #[no_mangle]
177 pub extern "C" fn ChainParameters_set_best_block(this_ptr: &mut ChainParameters, mut val: crate::lightning::chain::BestBlock) {
178         unsafe { &mut *this_ptr.inner }.best_block = *unsafe { Box::from_raw(val.take_inner()) };
179 }
180 /// Constructs a new ChainParameters given each field
181 #[must_use]
182 #[no_mangle]
183 pub extern "C" fn ChainParameters_new(mut network_arg: crate::bitcoin::network::Network, mut best_block_arg: crate::lightning::chain::BestBlock) -> ChainParameters {
184         ChainParameters { inner: Box::into_raw(Box::new(nativeChainParameters {
185                 network: network_arg.into_bitcoin(),
186                 best_block: *unsafe { Box::from_raw(best_block_arg.take_inner()) },
187         })), is_owned: true }
188 }
189 impl Clone for ChainParameters {
190         fn clone(&self) -> Self {
191                 Self {
192                         inner: if <*mut nativeChainParameters>::is_null(self.inner) { std::ptr::null_mut() } else {
193                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
194                         is_owned: true,
195                 }
196         }
197 }
198 #[allow(unused)]
199 /// Used only if an object of this type is returned as a trait impl by a method
200 pub(crate) extern "C" fn ChainParameters_clone_void(this_ptr: *const c_void) -> *mut c_void {
201         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChainParameters)).clone() })) as *mut c_void
202 }
203 #[no_mangle]
204 /// Creates a copy of the ChainParameters
205 pub extern "C" fn ChainParameters_clone(orig: &ChainParameters) -> ChainParameters {
206         orig.clone()
207 }
208 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
209 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
210 ///
211 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
212 ///
213 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
214
215 #[no_mangle]
216 pub static BREAKDOWN_TIMEOUT: u16 = lightning::ln::channelmanager::BREAKDOWN_TIMEOUT;
217 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
218 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
219 ///
220 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
221 ///
222 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
223
224 #[no_mangle]
225 pub static MIN_CLTV_EXPIRY_DELTA: u16 = lightning::ln::channelmanager::MIN_CLTV_EXPIRY_DELTA;
226 /// Minimum CLTV difference between the current block height and received inbound payments.
227 /// Invoices generated for payment to us must set their `min_final_cltv_expiry` field to at least
228 /// this value.
229
230 #[no_mangle]
231 pub static MIN_FINAL_CLTV_EXPIRY: u32 = lightning::ln::channelmanager::MIN_FINAL_CLTV_EXPIRY;
232
233 use lightning::ln::channelmanager::ChannelCounterparty as nativeChannelCounterpartyImport;
234 type nativeChannelCounterparty = nativeChannelCounterpartyImport;
235
236 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
237 /// to better separate parameters.
238 #[must_use]
239 #[repr(C)]
240 pub struct ChannelCounterparty {
241         /// A pointer to the opaque Rust object.
242
243         /// Nearly everywhere, inner must be non-null, however in places where
244         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
245         pub inner: *mut nativeChannelCounterparty,
246         /// Indicates that this is the only struct which contains the same pointer.
247
248         /// Rust functions which take ownership of an object provided via an argument require
249         /// this to be true and invalidate the object pointed to by inner.
250         pub is_owned: bool,
251 }
252
253 impl Drop for ChannelCounterparty {
254         fn drop(&mut self) {
255                 if self.is_owned && !<*mut nativeChannelCounterparty>::is_null(self.inner) {
256                         let _ = unsafe { Box::from_raw(self.inner) };
257                 }
258         }
259 }
260 /// Frees any resources used by the ChannelCounterparty, if is_owned is set and inner is non-NULL.
261 #[no_mangle]
262 pub extern "C" fn ChannelCounterparty_free(this_obj: ChannelCounterparty) { }
263 #[allow(unused)]
264 /// Used only if an object of this type is returned as a trait impl by a method
265 extern "C" fn ChannelCounterparty_free_void(this_ptr: *mut c_void) {
266         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelCounterparty); }
267 }
268 #[allow(unused)]
269 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
270 impl ChannelCounterparty {
271         pub(crate) fn take_inner(mut self) -> *mut nativeChannelCounterparty {
272                 assert!(self.is_owned);
273                 let ret = self.inner;
274                 self.inner = std::ptr::null_mut();
275                 ret
276         }
277 }
278 /// The node_id of our counterparty
279 #[no_mangle]
280 pub extern "C" fn ChannelCounterparty_get_node_id(this_ptr: &ChannelCounterparty) -> crate::c_types::PublicKey {
281         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_id;
282         crate::c_types::PublicKey::from_rust(&inner_val)
283 }
284 /// The node_id of our counterparty
285 #[no_mangle]
286 pub extern "C" fn ChannelCounterparty_set_node_id(this_ptr: &mut ChannelCounterparty, mut val: crate::c_types::PublicKey) {
287         unsafe { &mut *this_ptr.inner }.node_id = val.into_rust();
288 }
289 /// The Features the channel counterparty provided upon last connection.
290 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
291 /// many routing-relevant features are present in the init context.
292 #[no_mangle]
293 pub extern "C" fn ChannelCounterparty_get_features(this_ptr: &ChannelCounterparty) -> crate::lightning::ln::features::InitFeatures {
294         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.features;
295         crate::lightning::ln::features::InitFeatures { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
296 }
297 /// The Features the channel counterparty provided upon last connection.
298 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
299 /// many routing-relevant features are present in the init context.
300 #[no_mangle]
301 pub extern "C" fn ChannelCounterparty_set_features(this_ptr: &mut ChannelCounterparty, mut val: crate::lightning::ln::features::InitFeatures) {
302         unsafe { &mut *this_ptr.inner }.features = *unsafe { Box::from_raw(val.take_inner()) };
303 }
304 /// The value, in satoshis, that must always be held in the channel for our counterparty. This
305 /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
306 /// claiming at least this value on chain.
307 ///
308 /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
309 ///
310 /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
311 #[no_mangle]
312 pub extern "C" fn ChannelCounterparty_get_unspendable_punishment_reserve(this_ptr: &ChannelCounterparty) -> u64 {
313         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.unspendable_punishment_reserve;
314         *inner_val
315 }
316 /// The value, in satoshis, that must always be held in the channel for our counterparty. This
317 /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
318 /// claiming at least this value on chain.
319 ///
320 /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
321 ///
322 /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
323 #[no_mangle]
324 pub extern "C" fn ChannelCounterparty_set_unspendable_punishment_reserve(this_ptr: &mut ChannelCounterparty, mut val: u64) {
325         unsafe { &mut *this_ptr.inner }.unspendable_punishment_reserve = val;
326 }
327 impl Clone for ChannelCounterparty {
328         fn clone(&self) -> Self {
329                 Self {
330                         inner: if <*mut nativeChannelCounterparty>::is_null(self.inner) { std::ptr::null_mut() } else {
331                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
332                         is_owned: true,
333                 }
334         }
335 }
336 #[allow(unused)]
337 /// Used only if an object of this type is returned as a trait impl by a method
338 pub(crate) extern "C" fn ChannelCounterparty_clone_void(this_ptr: *const c_void) -> *mut c_void {
339         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelCounterparty)).clone() })) as *mut c_void
340 }
341 #[no_mangle]
342 /// Creates a copy of the ChannelCounterparty
343 pub extern "C" fn ChannelCounterparty_clone(orig: &ChannelCounterparty) -> ChannelCounterparty {
344         orig.clone()
345 }
346
347 use lightning::ln::channelmanager::ChannelDetails as nativeChannelDetailsImport;
348 type nativeChannelDetails = nativeChannelDetailsImport;
349
350 /// Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
351 #[must_use]
352 #[repr(C)]
353 pub struct ChannelDetails {
354         /// A pointer to the opaque Rust object.
355
356         /// Nearly everywhere, inner must be non-null, however in places where
357         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
358         pub inner: *mut nativeChannelDetails,
359         /// Indicates that this is the only struct which contains the same pointer.
360
361         /// Rust functions which take ownership of an object provided via an argument require
362         /// this to be true and invalidate the object pointed to by inner.
363         pub is_owned: bool,
364 }
365
366 impl Drop for ChannelDetails {
367         fn drop(&mut self) {
368                 if self.is_owned && !<*mut nativeChannelDetails>::is_null(self.inner) {
369                         let _ = unsafe { Box::from_raw(self.inner) };
370                 }
371         }
372 }
373 /// Frees any resources used by the ChannelDetails, if is_owned is set and inner is non-NULL.
374 #[no_mangle]
375 pub extern "C" fn ChannelDetails_free(this_obj: ChannelDetails) { }
376 #[allow(unused)]
377 /// Used only if an object of this type is returned as a trait impl by a method
378 extern "C" fn ChannelDetails_free_void(this_ptr: *mut c_void) {
379         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelDetails); }
380 }
381 #[allow(unused)]
382 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
383 impl ChannelDetails {
384         pub(crate) fn take_inner(mut self) -> *mut nativeChannelDetails {
385                 assert!(self.is_owned);
386                 let ret = self.inner;
387                 self.inner = std::ptr::null_mut();
388                 ret
389         }
390 }
391 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
392 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
393 /// Note that this means this value is *not* persistent - it can change once during the
394 /// lifetime of the channel.
395 #[no_mangle]
396 pub extern "C" fn ChannelDetails_get_channel_id(this_ptr: &ChannelDetails) -> *const [u8; 32] {
397         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
398         inner_val
399 }
400 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
401 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
402 /// Note that this means this value is *not* persistent - it can change once during the
403 /// lifetime of the channel.
404 #[no_mangle]
405 pub extern "C" fn ChannelDetails_set_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::ThirtyTwoBytes) {
406         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
407 }
408 /// Parameters which apply to our counterparty. See individual fields for more information.
409 #[no_mangle]
410 pub extern "C" fn ChannelDetails_get_counterparty(this_ptr: &ChannelDetails) -> crate::lightning::ln::channelmanager::ChannelCounterparty {
411         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.counterparty;
412         crate::lightning::ln::channelmanager::ChannelCounterparty { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
413 }
414 /// Parameters which apply to our counterparty. See individual fields for more information.
415 #[no_mangle]
416 pub extern "C" fn ChannelDetails_set_counterparty(this_ptr: &mut ChannelDetails, mut val: crate::lightning::ln::channelmanager::ChannelCounterparty) {
417         unsafe { &mut *this_ptr.inner }.counterparty = *unsafe { Box::from_raw(val.take_inner()) };
418 }
419 /// The Channel's funding transaction output, if we've negotiated the funding transaction with
420 /// our counterparty already.
421 ///
422 /// Note that, if this has been set, `channel_id` will be equivalent to
423 /// `funding_txo.unwrap().to_channel_id()`.
424 ///
425 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
426 #[no_mangle]
427 pub extern "C" fn ChannelDetails_get_funding_txo(this_ptr: &ChannelDetails) -> crate::lightning::chain::transaction::OutPoint {
428         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.funding_txo;
429         let mut local_inner_val = crate::lightning::chain::transaction::OutPoint { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
430         local_inner_val
431 }
432 /// The Channel's funding transaction output, if we've negotiated the funding transaction with
433 /// our counterparty already.
434 ///
435 /// Note that, if this has been set, `channel_id` will be equivalent to
436 /// `funding_txo.unwrap().to_channel_id()`.
437 ///
438 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
439 #[no_mangle]
440 pub extern "C" fn ChannelDetails_set_funding_txo(this_ptr: &mut ChannelDetails, mut val: crate::lightning::chain::transaction::OutPoint) {
441         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
442         unsafe { &mut *this_ptr.inner }.funding_txo = local_val;
443 }
444 /// The position of the funding transaction in the chain. None if the funding transaction has
445 /// not yet been confirmed and the channel fully opened.
446 #[no_mangle]
447 pub extern "C" fn ChannelDetails_get_short_channel_id(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u64Z {
448         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.short_channel_id;
449         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()) } };
450         local_inner_val
451 }
452 /// The position of the funding transaction in the chain. None if the funding transaction has
453 /// not yet been confirmed and the channel fully opened.
454 #[no_mangle]
455 pub extern "C" fn ChannelDetails_set_short_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u64Z) {
456         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
457         unsafe { &mut *this_ptr.inner }.short_channel_id = local_val;
458 }
459 /// The value, in satoshis, of this channel as appears in the funding output
460 #[no_mangle]
461 pub extern "C" fn ChannelDetails_get_channel_value_satoshis(this_ptr: &ChannelDetails) -> u64 {
462         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_value_satoshis;
463         *inner_val
464 }
465 /// The value, in satoshis, of this channel as appears in the funding output
466 #[no_mangle]
467 pub extern "C" fn ChannelDetails_set_channel_value_satoshis(this_ptr: &mut ChannelDetails, mut val: u64) {
468         unsafe { &mut *this_ptr.inner }.channel_value_satoshis = val;
469 }
470 /// The value, in satoshis, that must always be held in the channel for us. This value ensures
471 /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
472 /// this value on chain.
473 ///
474 /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
475 ///
476 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
477 ///
478 /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
479 #[no_mangle]
480 pub extern "C" fn ChannelDetails_get_unspendable_punishment_reserve(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u64Z {
481         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.unspendable_punishment_reserve;
482         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()) } };
483         local_inner_val
484 }
485 /// The value, in satoshis, that must always be held in the channel for us. This value ensures
486 /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
487 /// this value on chain.
488 ///
489 /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
490 ///
491 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
492 ///
493 /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
494 #[no_mangle]
495 pub extern "C" fn ChannelDetails_set_unspendable_punishment_reserve(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u64Z) {
496         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
497         unsafe { &mut *this_ptr.inner }.unspendable_punishment_reserve = local_val;
498 }
499 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
500 #[no_mangle]
501 pub extern "C" fn ChannelDetails_get_user_id(this_ptr: &ChannelDetails) -> u64 {
502         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.user_id;
503         *inner_val
504 }
505 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
506 #[no_mangle]
507 pub extern "C" fn ChannelDetails_set_user_id(this_ptr: &mut ChannelDetails, mut val: u64) {
508         unsafe { &mut *this_ptr.inner }.user_id = val;
509 }
510 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
511 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
512 /// available for inclusion in new outbound HTLCs). This further does not include any pending
513 /// outgoing HTLCs which are awaiting some other resolution to be sent.
514 ///
515 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
516 /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
517 /// should be able to spend nearly this amount.
518 #[no_mangle]
519 pub extern "C" fn ChannelDetails_get_outbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
520         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.outbound_capacity_msat;
521         *inner_val
522 }
523 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
524 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
525 /// available for inclusion in new outbound HTLCs). This further does not include any pending
526 /// outgoing HTLCs which are awaiting some other resolution to be sent.
527 ///
528 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
529 /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
530 /// should be able to spend nearly this amount.
531 #[no_mangle]
532 pub extern "C" fn ChannelDetails_set_outbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
533         unsafe { &mut *this_ptr.inner }.outbound_capacity_msat = val;
534 }
535 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
536 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
537 /// available for inclusion in new inbound HTLCs).
538 /// Note that there are some corner cases not fully handled here, so the actual available
539 /// inbound capacity may be slightly higher than this.
540 ///
541 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
542 /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
543 /// However, our counterparty should be able to spend nearly this amount.
544 #[no_mangle]
545 pub extern "C" fn ChannelDetails_get_inbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
546         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.inbound_capacity_msat;
547         *inner_val
548 }
549 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
550 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
551 /// available for inclusion in new inbound HTLCs).
552 /// Note that there are some corner cases not fully handled here, so the actual available
553 /// inbound capacity may be slightly higher than this.
554 ///
555 /// This value is not exact. Due to various in-flight changes, feerate changes, and our
556 /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
557 /// However, our counterparty should be able to spend nearly this amount.
558 #[no_mangle]
559 pub extern "C" fn ChannelDetails_set_inbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
560         unsafe { &mut *this_ptr.inner }.inbound_capacity_msat = val;
561 }
562 /// The number of required confirmations on the funding transaction before the funding will be
563 /// considered \"locked\". This number is selected by the channel fundee (i.e. us if
564 /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
565 /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
566 /// [`ChannelHandshakeLimits::max_minimum_depth`].
567 ///
568 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
569 ///
570 /// [`is_outbound`]: ChannelDetails::is_outbound
571 /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
572 /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
573 #[no_mangle]
574 pub extern "C" fn ChannelDetails_get_confirmations_required(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u32Z {
575         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.confirmations_required;
576         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_u32Z::None } else {  { crate::c_types::derived::COption_u32Z::Some(inner_val.unwrap()) } };
577         local_inner_val
578 }
579 /// The number of required confirmations on the funding transaction before the funding will be
580 /// considered \"locked\". This number is selected by the channel fundee (i.e. us if
581 /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
582 /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
583 /// [`ChannelHandshakeLimits::max_minimum_depth`].
584 ///
585 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
586 ///
587 /// [`is_outbound`]: ChannelDetails::is_outbound
588 /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
589 /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
590 #[no_mangle]
591 pub extern "C" fn ChannelDetails_set_confirmations_required(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u32Z) {
592         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
593         unsafe { &mut *this_ptr.inner }.confirmations_required = local_val;
594 }
595 /// The number of blocks (after our commitment transaction confirms) that we will need to wait
596 /// until we can claim our funds after we force-close the channel. During this time our
597 /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
598 /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
599 /// time to claim our non-HTLC-encumbered funds.
600 ///
601 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
602 #[no_mangle]
603 pub extern "C" fn ChannelDetails_get_force_close_spend_delay(this_ptr: &ChannelDetails) -> crate::c_types::derived::COption_u16Z {
604         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.force_close_spend_delay;
605         let mut local_inner_val = if inner_val.is_none() { crate::c_types::derived::COption_u16Z::None } else {  { crate::c_types::derived::COption_u16Z::Some(inner_val.unwrap()) } };
606         local_inner_val
607 }
608 /// The number of blocks (after our commitment transaction confirms) that we will need to wait
609 /// until we can claim our funds after we force-close the channel. During this time our
610 /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
611 /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
612 /// time to claim our non-HTLC-encumbered funds.
613 ///
614 /// This value will be `None` for outbound channels until the counterparty accepts the channel.
615 #[no_mangle]
616 pub extern "C" fn ChannelDetails_set_force_close_spend_delay(this_ptr: &mut ChannelDetails, mut val: crate::c_types::derived::COption_u16Z) {
617         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
618         unsafe { &mut *this_ptr.inner }.force_close_spend_delay = local_val;
619 }
620 /// True if the channel was initiated (and thus funded) by us.
621 #[no_mangle]
622 pub extern "C" fn ChannelDetails_get_is_outbound(this_ptr: &ChannelDetails) -> bool {
623         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_outbound;
624         *inner_val
625 }
626 /// True if the channel was initiated (and thus funded) by us.
627 #[no_mangle]
628 pub extern "C" fn ChannelDetails_set_is_outbound(this_ptr: &mut ChannelDetails, mut val: bool) {
629         unsafe { &mut *this_ptr.inner }.is_outbound = val;
630 }
631 /// True if the channel is confirmed, funding_locked messages have been exchanged, and the
632 /// channel is not currently being shut down. `funding_locked` message exchange implies the
633 /// required confirmation count has been reached (and we were connected to the peer at some
634 /// point after the funding transaction received enough confirmations). The required
635 /// confirmation count is provided in [`confirmations_required`].
636 ///
637 /// [`confirmations_required`]: ChannelDetails::confirmations_required
638 #[no_mangle]
639 pub extern "C" fn ChannelDetails_get_is_funding_locked(this_ptr: &ChannelDetails) -> bool {
640         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_funding_locked;
641         *inner_val
642 }
643 /// True if the channel is confirmed, funding_locked messages have been exchanged, and the
644 /// channel is not currently being shut down. `funding_locked` message exchange implies the
645 /// required confirmation count has been reached (and we were connected to the peer at some
646 /// point after the funding transaction received enough confirmations). The required
647 /// confirmation count is provided in [`confirmations_required`].
648 ///
649 /// [`confirmations_required`]: ChannelDetails::confirmations_required
650 #[no_mangle]
651 pub extern "C" fn ChannelDetails_set_is_funding_locked(this_ptr: &mut ChannelDetails, mut val: bool) {
652         unsafe { &mut *this_ptr.inner }.is_funding_locked = val;
653 }
654 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
655 /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
656 ///
657 /// This is a strict superset of `is_funding_locked`.
658 #[no_mangle]
659 pub extern "C" fn ChannelDetails_get_is_usable(this_ptr: &ChannelDetails) -> bool {
660         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_usable;
661         *inner_val
662 }
663 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
664 /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
665 ///
666 /// This is a strict superset of `is_funding_locked`.
667 #[no_mangle]
668 pub extern "C" fn ChannelDetails_set_is_usable(this_ptr: &mut ChannelDetails, mut val: bool) {
669         unsafe { &mut *this_ptr.inner }.is_usable = val;
670 }
671 /// True if this channel is (or will be) publicly-announced.
672 #[no_mangle]
673 pub extern "C" fn ChannelDetails_get_is_public(this_ptr: &ChannelDetails) -> bool {
674         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_public;
675         *inner_val
676 }
677 /// True if this channel is (or will be) publicly-announced.
678 #[no_mangle]
679 pub extern "C" fn ChannelDetails_set_is_public(this_ptr: &mut ChannelDetails, mut val: bool) {
680         unsafe { &mut *this_ptr.inner }.is_public = val;
681 }
682 /// Constructs a new ChannelDetails given each field
683 #[must_use]
684 #[no_mangle]
685 pub extern "C" fn ChannelDetails_new(mut channel_id_arg: crate::c_types::ThirtyTwoBytes, mut counterparty_arg: crate::lightning::ln::channelmanager::ChannelCounterparty, mut funding_txo_arg: crate::lightning::chain::transaction::OutPoint, mut short_channel_id_arg: crate::c_types::derived::COption_u64Z, mut channel_value_satoshis_arg: u64, mut unspendable_punishment_reserve_arg: crate::c_types::derived::COption_u64Z, mut user_id_arg: u64, mut outbound_capacity_msat_arg: u64, mut inbound_capacity_msat_arg: u64, mut confirmations_required_arg: crate::c_types::derived::COption_u32Z, mut force_close_spend_delay_arg: crate::c_types::derived::COption_u16Z, mut is_outbound_arg: bool, mut is_funding_locked_arg: bool, mut is_usable_arg: bool, mut is_public_arg: bool) -> ChannelDetails {
686         let mut local_funding_txo_arg = if funding_txo_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(funding_txo_arg.take_inner()) } }) };
687         let mut local_short_channel_id_arg = if short_channel_id_arg.is_some() { Some( { short_channel_id_arg.take() }) } else { None };
688         let mut local_unspendable_punishment_reserve_arg = if unspendable_punishment_reserve_arg.is_some() { Some( { unspendable_punishment_reserve_arg.take() }) } else { None };
689         let mut local_confirmations_required_arg = if confirmations_required_arg.is_some() { Some( { confirmations_required_arg.take() }) } else { None };
690         let mut local_force_close_spend_delay_arg = if force_close_spend_delay_arg.is_some() { Some( { force_close_spend_delay_arg.take() }) } else { None };
691         ChannelDetails { inner: Box::into_raw(Box::new(nativeChannelDetails {
692                 channel_id: channel_id_arg.data,
693                 counterparty: *unsafe { Box::from_raw(counterparty_arg.take_inner()) },
694                 funding_txo: local_funding_txo_arg,
695                 short_channel_id: local_short_channel_id_arg,
696                 channel_value_satoshis: channel_value_satoshis_arg,
697                 unspendable_punishment_reserve: local_unspendable_punishment_reserve_arg,
698                 user_id: user_id_arg,
699                 outbound_capacity_msat: outbound_capacity_msat_arg,
700                 inbound_capacity_msat: inbound_capacity_msat_arg,
701                 confirmations_required: local_confirmations_required_arg,
702                 force_close_spend_delay: local_force_close_spend_delay_arg,
703                 is_outbound: is_outbound_arg,
704                 is_funding_locked: is_funding_locked_arg,
705                 is_usable: is_usable_arg,
706                 is_public: is_public_arg,
707         })), is_owned: true }
708 }
709 impl Clone for ChannelDetails {
710         fn clone(&self) -> Self {
711                 Self {
712                         inner: if <*mut nativeChannelDetails>::is_null(self.inner) { std::ptr::null_mut() } else {
713                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
714                         is_owned: true,
715                 }
716         }
717 }
718 #[allow(unused)]
719 /// Used only if an object of this type is returned as a trait impl by a method
720 pub(crate) extern "C" fn ChannelDetails_clone_void(this_ptr: *const c_void) -> *mut c_void {
721         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelDetails)).clone() })) as *mut c_void
722 }
723 #[no_mangle]
724 /// Creates a copy of the ChannelDetails
725 pub extern "C" fn ChannelDetails_clone(orig: &ChannelDetails) -> ChannelDetails {
726         orig.clone()
727 }
728 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
729 /// Err() type describing which state the payment is in, see the description of individual enum
730 /// states for more.
731 #[must_use]
732 #[derive(Clone)]
733 #[repr(C)]
734 pub enum PaymentSendFailure {
735         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
736         /// send the payment at all. No channel state has been changed or messages sent to peers, and
737         /// once you've changed the parameter at error, you can freely retry the payment in full.
738         ParameterError(crate::lightning::util::errors::APIError),
739         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
740         /// from attempting to send the payment at all. No channel state has been changed or messages
741         /// sent to peers, and once you've changed the parameter at error, you can freely retry the
742         /// payment in full.
743         ///
744         /// The results here are ordered the same as the paths in the route object which was passed to
745         /// send_payment.
746         PathParameterError(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
747         /// All paths which were attempted failed to send, with no channel state change taking place.
748         /// You can freely retry the payment in full (though you probably want to do so over different
749         /// paths than the ones selected).
750         AllFailedRetrySafe(crate::c_types::derived::CVec_APIErrorZ),
751         /// Some paths which were attempted failed to send, though possibly not all. At least some
752         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
753         /// in over-/re-payment.
754         ///
755         /// The results here are ordered the same as the paths in the route object which was passed to
756         /// send_payment, and any Errs which are not APIError::MonitorUpdateFailed can be safely
757         /// retried (though there is currently no API with which to do so).
758         ///
759         /// Any entries which contain Err(APIError::MonitorUpdateFailed) or Ok(()) MUST NOT be retried
760         /// as they will result in over-/re-payment. These HTLCs all either successfully sent (in the
761         /// case of Ok(())) or will send once channel_monitor_updated is called on the next-hop channel
762         /// with the latest update_id.
763         PartialFailure(crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ),
764 }
765 use lightning::ln::channelmanager::PaymentSendFailure as nativePaymentSendFailure;
766 impl PaymentSendFailure {
767         #[allow(unused)]
768         pub(crate) fn to_native(&self) -> nativePaymentSendFailure {
769                 match self {
770                         PaymentSendFailure::ParameterError (ref a, ) => {
771                                 let mut a_nonref = (*a).clone();
772                                 nativePaymentSendFailure::ParameterError (
773                                         a_nonref.into_native(),
774                                 )
775                         },
776                         PaymentSendFailure::PathParameterError (ref a, ) => {
777                                 let mut a_nonref = (*a).clone();
778                                 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 }); };
779                                 nativePaymentSendFailure::PathParameterError (
780                                         local_a_nonref,
781                                 )
782                         },
783                         PaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
784                                 let mut a_nonref = (*a).clone();
785                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.into_rust().drain(..) { local_a_nonref.push( { item.into_native() }); };
786                                 nativePaymentSendFailure::AllFailedRetrySafe (
787                                         local_a_nonref,
788                                 )
789                         },
790                         PaymentSendFailure::PartialFailure (ref a, ) => {
791                                 let mut a_nonref = (*a).clone();
792                                 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 }); };
793                                 nativePaymentSendFailure::PartialFailure (
794                                         local_a_nonref,
795                                 )
796                         },
797                 }
798         }
799         #[allow(unused)]
800         pub(crate) fn into_native(self) -> nativePaymentSendFailure {
801                 match self {
802                         PaymentSendFailure::ParameterError (mut a, ) => {
803                                 nativePaymentSendFailure::ParameterError (
804                                         a.into_native(),
805                                 )
806                         },
807                         PaymentSendFailure::PathParameterError (mut a, ) => {
808                                 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 }); };
809                                 nativePaymentSendFailure::PathParameterError (
810                                         local_a,
811                                 )
812                         },
813                         PaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
814                                 let mut local_a = Vec::new(); for mut item in a.into_rust().drain(..) { local_a.push( { item.into_native() }); };
815                                 nativePaymentSendFailure::AllFailedRetrySafe (
816                                         local_a,
817                                 )
818                         },
819                         PaymentSendFailure::PartialFailure (mut a, ) => {
820                                 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 }); };
821                                 nativePaymentSendFailure::PartialFailure (
822                                         local_a,
823                                 )
824                         },
825                 }
826         }
827         #[allow(unused)]
828         pub(crate) fn from_native(native: &nativePaymentSendFailure) -> Self {
829                 match native {
830                         nativePaymentSendFailure::ParameterError (ref a, ) => {
831                                 let mut a_nonref = (*a).clone();
832                                 PaymentSendFailure::ParameterError (
833                                         crate::lightning::util::errors::APIError::native_into(a_nonref),
834                                 )
835                         },
836                         nativePaymentSendFailure::PathParameterError (ref a, ) => {
837                                 let mut a_nonref = (*a).clone();
838                                 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( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() }; local_a_nonref_0 }); };
839                                 PaymentSendFailure::PathParameterError (
840                                         local_a_nonref.into(),
841                                 )
842                         },
843                         nativePaymentSendFailure::AllFailedRetrySafe (ref a, ) => {
844                                 let mut a_nonref = (*a).clone();
845                                 let mut local_a_nonref = Vec::new(); for mut item in a_nonref.drain(..) { local_a_nonref.push( { crate::lightning::util::errors::APIError::native_into(item) }); };
846                                 PaymentSendFailure::AllFailedRetrySafe (
847                                         local_a_nonref.into(),
848                                 )
849                         },
850                         nativePaymentSendFailure::PartialFailure (ref a, ) => {
851                                 let mut a_nonref = (*a).clone();
852                                 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( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() }; local_a_nonref_0 }); };
853                                 PaymentSendFailure::PartialFailure (
854                                         local_a_nonref.into(),
855                                 )
856                         },
857                 }
858         }
859         #[allow(unused)]
860         pub(crate) fn native_into(native: nativePaymentSendFailure) -> Self {
861                 match native {
862                         nativePaymentSendFailure::ParameterError (mut a, ) => {
863                                 PaymentSendFailure::ParameterError (
864                                         crate::lightning::util::errors::APIError::native_into(a),
865                                 )
866                         },
867                         nativePaymentSendFailure::PathParameterError (mut a, ) => {
868                                 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( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() }; local_a_0 }); };
869                                 PaymentSendFailure::PathParameterError (
870                                         local_a.into(),
871                                 )
872                         },
873                         nativePaymentSendFailure::AllFailedRetrySafe (mut a, ) => {
874                                 let mut local_a = Vec::new(); for mut item in a.drain(..) { local_a.push( { crate::lightning::util::errors::APIError::native_into(item) }); };
875                                 PaymentSendFailure::AllFailedRetrySafe (
876                                         local_a.into(),
877                                 )
878                         },
879                         nativePaymentSendFailure::PartialFailure (mut a, ) => {
880                                 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( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() }; local_a_0 }); };
881                                 PaymentSendFailure::PartialFailure (
882                                         local_a.into(),
883                                 )
884                         },
885                 }
886         }
887 }
888 /// Frees any resources used by the PaymentSendFailure
889 #[no_mangle]
890 pub extern "C" fn PaymentSendFailure_free(this_ptr: PaymentSendFailure) { }
891 /// Creates a copy of the PaymentSendFailure
892 #[no_mangle]
893 pub extern "C" fn PaymentSendFailure_clone(orig: &PaymentSendFailure) -> PaymentSendFailure {
894         orig.clone()
895 }
896 #[no_mangle]
897 /// Utility method to constructs a new ParameterError-variant PaymentSendFailure
898 pub extern "C" fn PaymentSendFailure_parameter_error(a: crate::lightning::util::errors::APIError) -> PaymentSendFailure {
899         PaymentSendFailure::ParameterError(a, )
900 }
901 #[no_mangle]
902 /// Utility method to constructs a new PathParameterError-variant PaymentSendFailure
903 pub extern "C" fn PaymentSendFailure_path_parameter_error(a: crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ) -> PaymentSendFailure {
904         PaymentSendFailure::PathParameterError(a, )
905 }
906 #[no_mangle]
907 /// Utility method to constructs a new AllFailedRetrySafe-variant PaymentSendFailure
908 pub extern "C" fn PaymentSendFailure_all_failed_retry_safe(a: crate::c_types::derived::CVec_APIErrorZ) -> PaymentSendFailure {
909         PaymentSendFailure::AllFailedRetrySafe(a, )
910 }
911 #[no_mangle]
912 /// Utility method to constructs a new PartialFailure-variant PaymentSendFailure
913 pub extern "C" fn PaymentSendFailure_partial_failure(a: crate::c_types::derived::CVec_CResult_NoneAPIErrorZZ) -> PaymentSendFailure {
914         PaymentSendFailure::PartialFailure(a, )
915 }
916 /// Constructs a new ChannelManager to hold several channels and route between them.
917 ///
918 /// This is the main \"logic hub\" for all channel-related actions, and implements
919 /// ChannelMessageHandler.
920 ///
921 /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
922 ///
923 /// panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
924 ///
925 /// Users need to notify the new ChannelManager when a new block is connected or
926 /// disconnected using its `block_connected` and `block_disconnected` methods, starting
927 /// from after `params.latest_hash`.
928 #[must_use]
929 #[no_mangle]
930 pub extern "C" fn ChannelManager_new(mut fee_est: crate::lightning::chain::chaininterface::FeeEstimator, mut chain_monitor: crate::lightning::chain::Watch, mut tx_broadcaster: crate::lightning::chain::chaininterface::BroadcasterInterface, mut logger: crate::lightning::util::logger::Logger, mut keys_manager: crate::lightning::chain::keysinterface::KeysInterface, mut config: crate::lightning::util::config::UserConfig, mut params: crate::lightning::ln::channelmanager::ChainParameters) -> ChannelManager {
931         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()) });
932         ChannelManager { inner: Box::into_raw(Box::new(ret)), is_owned: true }
933 }
934
935 /// Gets the current configuration applied to all new channels,  as
936 #[must_use]
937 #[no_mangle]
938 pub extern "C" fn ChannelManager_get_current_default_configuration(this_arg: &ChannelManager) -> crate::lightning::util::config::UserConfig {
939         let mut ret = unsafe { &*this_arg.inner }.get_current_default_configuration();
940         crate::lightning::util::config::UserConfig { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
941 }
942
943 /// Creates a new outbound channel to the given remote node and with the given value.
944 ///
945 /// user_id will be provided back as user_channel_id in FundingGenerationReady events to allow
946 /// tracking of which events correspond with which create_channel call. Note that the
947 /// user_channel_id defaults to 0 for inbound channels, so you may wish to avoid using 0 for
948 /// user_id here. user_id has no meaning inside of LDK, it is simply copied to events and
949 /// otherwise ignored.
950 ///
951 /// If successful, will generate a SendOpenChannel message event, so you should probably poll
952 /// PeerManager::process_events afterwards.
953 ///
954 /// Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat is
955 /// greater than channel_value_satoshis * 1k or channel_value_satoshis is < 1000.
956 ///
957 /// Note that we do not check if you are currently connected to the given peer. If no
958 /// connection is available, the outbound `open_channel` message may fail to send, resulting in
959 /// the channel eventually being silently forgotten.
960 ///
961 /// Note that override_config (or a relevant inner pointer) may be NULL or all-0s to represent None
962 #[must_use]
963 #[no_mangle]
964 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::lightning::util::config::UserConfig) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
965         let mut local_override_config = if override_config.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(override_config.take_inner()) } }) };
966         let mut ret = unsafe { &*this_arg.inner }.create_channel(their_network_key.into_rust(), channel_value_satoshis, push_msat, user_id, local_override_config);
967         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
968         local_ret
969 }
970
971 /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
972 /// more information.
973 #[must_use]
974 #[no_mangle]
975 pub extern "C" fn ChannelManager_list_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
976         let mut ret = unsafe { &*this_arg.inner }.list_channels();
977         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::channelmanager::ChannelDetails { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
978         local_ret.into()
979 }
980
981 /// Gets the list of usable channels, in random order. Useful as an argument to
982 /// get_route to ensure non-announced channels are used.
983 ///
984 /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
985 /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
986 /// are.
987 #[must_use]
988 #[no_mangle]
989 pub extern "C" fn ChannelManager_list_usable_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
990         let mut ret = unsafe { &*this_arg.inner }.list_usable_channels();
991         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::channelmanager::ChannelDetails { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
992         local_ret.into()
993 }
994
995 /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
996 /// will be accepted on the given channel, and after additional timeout/the closing of all
997 /// pending HTLCs, the channel will be closed on chain.
998 ///
999 /// May generate a SendShutdown message event on success, which should be relayed.
1000 #[must_use]
1001 #[no_mangle]
1002 pub extern "C" fn ChannelManager_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
1003         let mut ret = unsafe { &*this_arg.inner }.close_channel(unsafe { &*channel_id});
1004         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
1005         local_ret
1006 }
1007
1008 /// Force closes a channel, immediately broadcasting the latest local commitment transaction to
1009 /// the chain and rejecting new HTLCs on the given channel. Fails if channel_id is unknown to the manager.
1010 #[must_use]
1011 #[no_mangle]
1012 pub extern "C" fn ChannelManager_force_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
1013         let mut ret = unsafe { &*this_arg.inner }.force_close_channel(unsafe { &*channel_id});
1014         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
1015         local_ret
1016 }
1017
1018 /// Force close all channels, immediately broadcasting the latest local commitment transaction
1019 /// for each to the chain and rejecting new HTLCs on each.
1020 #[no_mangle]
1021 pub extern "C" fn ChannelManager_force_close_all_channels(this_arg: &ChannelManager) {
1022         unsafe { &*this_arg.inner }.force_close_all_channels()
1023 }
1024
1025 /// Sends a payment along a given route.
1026 ///
1027 /// Value parameters are provided via the last hop in route, see documentation for RouteHop
1028 /// fields for more info.
1029 ///
1030 /// Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
1031 /// payment), we don't do anything to stop you! We always try to ensure that if the provided
1032 /// next hop knows the preimage to payment_hash they can claim an additional amount as
1033 /// specified in the last hop in the route! Thus, you should probably do your own
1034 /// payment_preimage tracking (which you should already be doing as they represent \"proof of
1035 /// payment\") and prevent double-sends yourself.
1036 ///
1037 /// May generate SendHTLCs message(s) event on success, which should be relayed.
1038 ///
1039 /// Each path may have a different return value, and PaymentSendValue may return a Vec with
1040 /// each entry matching the corresponding-index entry in the route paths, see
1041 /// PaymentSendFailure for more info.
1042 ///
1043 /// In general, a path may raise:
1044 ///  * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
1045 ///    node public key) is specified.
1046 ///  * APIError::ChannelUnavailable if the next-hop channel is not available for updates
1047 ///    (including due to previous monitor update failure or new permanent monitor update
1048 ///    failure).
1049 ///  * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
1050 ///    relevant updates.
1051 ///
1052 /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
1053 /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
1054 /// different route unless you intend to pay twice!
1055 ///
1056 /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
1057 /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
1058 /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
1059 /// must not contain multiple paths as multi-path payments require a recipient-provided
1060 /// payment_secret.
1061 /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
1062 /// bit set (either as required or as available). If multiple paths are present in the Route,
1063 /// we assume the invoice had the basic_mpp feature set.
1064 ///
1065 /// Note that payment_secret (or a relevant inner pointer) may be NULL or all-0s to represent None
1066 #[must_use]
1067 #[no_mangle]
1068 pub extern "C" fn ChannelManager_send_payment(this_arg: &ChannelManager, route: &crate::lightning::routing::router::Route, mut payment_hash: crate::c_types::ThirtyTwoBytes, mut payment_secret: crate::c_types::ThirtyTwoBytes) -> crate::c_types::derived::CResult_NonePaymentSendFailureZ {
1069         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::PaymentSecret(payment_secret.data) }) };
1070         let mut ret = unsafe { &*this_arg.inner }.send_payment(unsafe { &*route.inner }, ::lightning::ln::PaymentHash(payment_hash.data), &local_payment_secret);
1071         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::channelmanager::PaymentSendFailure::native_into(e) }).into() };
1072         local_ret
1073 }
1074
1075 /// Send a spontaneous payment, which is a payment that does not require the recipient to have
1076 /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
1077 /// the preimage, it must be a cryptographically secure random value that no intermediate node
1078 /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
1079 /// never reach the recipient.
1080 ///
1081 /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
1082 /// [`send_payment`] for more information about the risks of duplicate preimage usage.
1083 ///
1084 /// [`send_payment`]: Self::send_payment
1085 ///
1086 /// Note that payment_preimage (or a relevant inner pointer) may be NULL or all-0s to represent None
1087 #[must_use]
1088 #[no_mangle]
1089 pub extern "C" fn ChannelManager_send_spontaneous_payment(this_arg: &ChannelManager, route: &crate::lightning::routing::router::Route, mut payment_preimage: crate::c_types::ThirtyTwoBytes) -> crate::c_types::derived::CResult_PaymentHashPaymentSendFailureZ {
1090         let mut local_payment_preimage = if payment_preimage.data == [0; 32] { None } else { Some( { ::lightning::ln::PaymentPreimage(payment_preimage.data) }) };
1091         let mut ret = unsafe { &*this_arg.inner }.send_spontaneous_payment(unsafe { &*route.inner }, local_payment_preimage);
1092         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::ThirtyTwoBytes { data: o.0 } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::channelmanager::PaymentSendFailure::native_into(e) }).into() };
1093         local_ret
1094 }
1095
1096 /// Call this upon creation of a funding transaction for the given channel.
1097 ///
1098 /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
1099 /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
1100 ///
1101 /// Panics if a funding transaction has already been provided for this channel.
1102 ///
1103 /// May panic if the output found in the funding transaction is duplicative with some other
1104 /// channel (note that this should be trivially prevented by using unique funding transaction
1105 /// keys per-channel).
1106 ///
1107 /// Do NOT broadcast the funding transaction yourself. When we have safely received our
1108 /// counterparty's signature the funding transaction will automatically be broadcast via the
1109 /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
1110 ///
1111 /// Note that this includes RBF or similar transaction replacement strategies - lightning does
1112 /// not currently support replacing a funding transaction on an existing channel. Instead,
1113 /// create a new channel with a conflicting funding transaction.
1114 ///
1115 /// [`Event::FundingGenerationReady`]: crate::util::events::Event::FundingGenerationReady
1116 #[must_use]
1117 #[no_mangle]
1118 pub extern "C" fn ChannelManager_funding_transaction_generated(this_arg: &ChannelManager, temporary_channel_id: *const [u8; 32], mut funding_transaction: crate::c_types::Transaction) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
1119         let mut ret = unsafe { &*this_arg.inner }.funding_transaction_generated(unsafe { &*temporary_channel_id}, funding_transaction.into_bitcoin());
1120         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { () /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
1121         local_ret
1122 }
1123
1124 /// Regenerates channel_announcements and generates a signed node_announcement from the given
1125 /// arguments, providing them in corresponding events via
1126 /// [`get_and_clear_pending_msg_events`], if at least one public channel has been confirmed
1127 /// on-chain. This effectively re-broadcasts all channel announcements and sends our node
1128 /// announcement to ensure that the lightning P2P network is aware of the channels we have and
1129 /// our network addresses.
1130 ///
1131 /// `rgb` is a node \"color\" and `alias` is a printable human-readable string to describe this
1132 /// node to humans. They carry no in-protocol meaning.
1133 ///
1134 /// `addresses` represent the set (possibly empty) of socket addresses on which this node
1135 /// accepts incoming connections. These will be included in the node_announcement, publicly
1136 /// tying these addresses together and to this node. If you wish to preserve user privacy,
1137 /// addresses should likely contain only Tor Onion addresses.
1138 ///
1139 /// Panics if `addresses` is absurdly large (more than 500).
1140 ///
1141 /// [`get_and_clear_pending_msg_events`]: MessageSendEventsProvider::get_and_clear_pending_msg_events
1142 #[no_mangle]
1143 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) {
1144         let mut local_addresses = Vec::new(); for mut item in addresses.into_rust().drain(..) { local_addresses.push( { item.into_native() }); };
1145         unsafe { &*this_arg.inner }.broadcast_node_announcement(rgb.data, alias.data, local_addresses)
1146 }
1147
1148 /// Processes HTLCs which are pending waiting on random forward delay.
1149 ///
1150 /// Should only really ever be called in response to a PendingHTLCsForwardable event.
1151 /// Will likely generate further events.
1152 #[no_mangle]
1153 pub extern "C" fn ChannelManager_process_pending_htlc_forwards(this_arg: &ChannelManager) {
1154         unsafe { &*this_arg.inner }.process_pending_htlc_forwards()
1155 }
1156
1157 /// If a peer is disconnected we mark any channels with that peer as 'disabled'.
1158 /// After some time, if channels are still disabled we need to broadcast a ChannelUpdate
1159 /// to inform the network about the uselessness of these channels.
1160 ///
1161 /// This method handles all the details, and must be called roughly once per minute.
1162 ///
1163 /// Note that in some rare cases this may generate a `chain::Watch::update_channel` call.
1164 #[no_mangle]
1165 pub extern "C" fn ChannelManager_timer_tick_occurred(this_arg: &ChannelManager) {
1166         unsafe { &*this_arg.inner }.timer_tick_occurred()
1167 }
1168
1169 /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
1170 /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
1171 /// along the path (including in our own channel on which we received it).
1172 /// Returns false if no payment was found to fail backwards, true if the process of failing the
1173 /// HTLC backwards has been started.
1174 #[must_use]
1175 #[no_mangle]
1176 pub extern "C" fn ChannelManager_fail_htlc_backwards(this_arg: &ChannelManager, payment_hash: *const [u8; 32]) -> bool {
1177         let mut ret = unsafe { &*this_arg.inner }.fail_htlc_backwards(&::lightning::ln::PaymentHash(unsafe { *payment_hash }));
1178         ret
1179 }
1180
1181 /// Provides a payment preimage in response to a PaymentReceived event, returning true and
1182 /// generating message events for the net layer to claim the payment, if possible. Thus, you
1183 /// should probably kick the net layer to go send messages if this returns true!
1184 ///
1185 /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
1186 /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentReceived`
1187 /// event matches your expectation. If you fail to do so and call this method, you may provide
1188 /// the sender \"proof-of-payment\" when they did not fulfill the full expected payment.
1189 ///
1190 /// May panic if called except in response to a PaymentReceived event.
1191 ///
1192 /// [`create_inbound_payment`]: Self::create_inbound_payment
1193 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1194 #[must_use]
1195 #[no_mangle]
1196 pub extern "C" fn ChannelManager_claim_funds(this_arg: &ChannelManager, mut payment_preimage: crate::c_types::ThirtyTwoBytes) -> bool {
1197         let mut ret = unsafe { &*this_arg.inner }.claim_funds(::lightning::ln::PaymentPreimage(payment_preimage.data));
1198         ret
1199 }
1200
1201 /// Gets the node_id held by this ChannelManager
1202 #[must_use]
1203 #[no_mangle]
1204 pub extern "C" fn ChannelManager_get_our_node_id(this_arg: &ChannelManager) -> crate::c_types::PublicKey {
1205         let mut ret = unsafe { &*this_arg.inner }.get_our_node_id();
1206         crate::c_types::PublicKey::from_rust(&ret)
1207 }
1208
1209 /// Restores a single, given channel to normal operation after a
1210 /// ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
1211 /// operation.
1212 ///
1213 /// All ChannelMonitor updates up to and including highest_applied_update_id must have been
1214 /// fully committed in every copy of the given channels' ChannelMonitors.
1215 ///
1216 /// Note that there is no effect to calling with a highest_applied_update_id other than the
1217 /// current latest ChannelMonitorUpdate and one call to this function after multiple
1218 /// ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
1219 /// exists largely only to prevent races between this and concurrent update_monitor calls.
1220 ///
1221 /// Thus, the anticipated use is, at a high level:
1222 ///  1) You register a chain::Watch with this ChannelManager,
1223 ///  2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
1224 ///     said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
1225 ///     any time it cannot do so instantly,
1226 ///  3) update(s) are applied to each remote copy of a ChannelMonitor,
1227 ///  4) once all remote copies are updated, you call this function with the update_id that
1228 ///     completed, and once it is the latest the Channel will be re-enabled.
1229 #[no_mangle]
1230 pub extern "C" fn ChannelManager_channel_monitor_updated(this_arg: &ChannelManager, funding_txo: &crate::lightning::chain::transaction::OutPoint, mut highest_applied_update_id: u64) {
1231         unsafe { &*this_arg.inner }.channel_monitor_updated(unsafe { &*funding_txo.inner }, highest_applied_update_id)
1232 }
1233
1234 /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
1235 /// to pay us.
1236 ///
1237 /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
1238 /// [`PaymentHash`] and [`PaymentPreimage`] for you, returning the first and storing the second.
1239 ///
1240 /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentReceived`], which
1241 /// will have the [`PaymentReceived::payment_preimage`] field filled in. That should then be
1242 /// passed directly to [`claim_funds`].
1243 ///
1244 /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
1245 ///
1246 /// [`claim_funds`]: Self::claim_funds
1247 /// [`PaymentReceived`]: events::Event::PaymentReceived
1248 /// [`PaymentReceived::payment_preimage`]: events::Event::PaymentReceived::payment_preimage
1249 /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
1250 #[must_use]
1251 #[no_mangle]
1252 pub extern "C" fn ChannelManager_create_inbound_payment(this_arg: &ChannelManager, mut min_value_msat: crate::c_types::derived::COption_u64Z, mut invoice_expiry_delta_secs: u32, mut user_payment_id: u64) -> crate::c_types::derived::C2Tuple_PaymentHashPaymentSecretZ {
1253         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1254         let mut ret = unsafe { &*this_arg.inner }.create_inbound_payment(local_min_value_msat, invoice_expiry_delta_secs, user_payment_id);
1255         let (mut orig_ret_0, mut orig_ret_1) = ret; let mut local_ret = (crate::c_types::ThirtyTwoBytes { data: orig_ret_0.0 }, crate::c_types::ThirtyTwoBytes { data: orig_ret_1.0 }).into();
1256         local_ret
1257 }
1258
1259 /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
1260 /// stored external to LDK.
1261 ///
1262 /// A [`PaymentReceived`] event will only be generated if the [`PaymentSecret`] matches a
1263 /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
1264 /// the `min_value_msat` provided here, if one is provided.
1265 ///
1266 /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) must be globally unique. This
1267 /// method may return an Err if another payment with the same payment_hash is still pending.
1268 ///
1269 /// `user_payment_id` will be provided back in [`PaymentPurpose::InvoicePayment::user_payment_id`] events to
1270 /// allow tracking of which events correspond with which calls to this and
1271 /// [`create_inbound_payment`]. `user_payment_id` has no meaning inside of LDK, it is simply
1272 /// copied to events and otherwise ignored. It may be used to correlate PaymentReceived events
1273 /// with invoice metadata stored elsewhere.
1274 ///
1275 /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
1276 /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
1277 /// before a [`PaymentReceived`] event will be generated, ensuring that we do not provide the
1278 /// sender \"proof-of-payment\" unless they have paid the required amount.
1279 ///
1280 /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
1281 /// in excess of the current time. This should roughly match the expiry time set in the invoice.
1282 /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
1283 /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
1284 /// invoices when no timeout is set.
1285 ///
1286 /// Note that we use block header time to time-out pending inbound payments (with some margin
1287 /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
1288 /// accept a payment and generate a [`PaymentReceived`] event for some time after the expiry.
1289 /// If you need exact expiry semantics, you should enforce them upon receipt of
1290 /// [`PaymentReceived`].
1291 ///
1292 /// Pending inbound payments are stored in memory and in serialized versions of this
1293 /// [`ChannelManager`]. If potentially unbounded numbers of inbound payments may exist and
1294 /// space is limited, you may wish to rate-limit inbound payment creation.
1295 ///
1296 /// May panic if `invoice_expiry_delta_secs` is greater than one year.
1297 ///
1298 /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry`
1299 /// set to at least [`MIN_FINAL_CLTV_EXPIRY`].
1300 ///
1301 /// [`create_inbound_payment`]: Self::create_inbound_payment
1302 /// [`PaymentReceived`]: events::Event::PaymentReceived
1303 /// [`PaymentPurpose::InvoicePayment::user_payment_id`]: events::PaymentPurpose::InvoicePayment::user_payment_id
1304 #[must_use]
1305 #[no_mangle]
1306 pub extern "C" fn ChannelManager_create_inbound_payment_for_hash(this_arg: &ChannelManager, mut payment_hash: crate::c_types::ThirtyTwoBytes, mut min_value_msat: crate::c_types::derived::COption_u64Z, mut invoice_expiry_delta_secs: u32, mut user_payment_id: u64) -> crate::c_types::derived::CResult_PaymentSecretAPIErrorZ {
1307         let mut local_min_value_msat = if min_value_msat.is_some() { Some( { min_value_msat.take() }) } else { None };
1308         let mut ret = unsafe { &*this_arg.inner }.create_inbound_payment_for_hash(::lightning::ln::PaymentHash(payment_hash.data), local_min_value_msat, invoice_expiry_delta_secs, user_payment_id);
1309         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::c_types::ThirtyTwoBytes { data: o.0 } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::util::errors::APIError::native_into(e) }).into() };
1310         local_ret
1311 }
1312
1313 impl From<nativeChannelManager> for crate::lightning::util::events::MessageSendEventsProvider {
1314         fn from(obj: nativeChannelManager) -> Self {
1315                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1316                 let mut ret = ChannelManager_as_MessageSendEventsProvider(&rust_obj);
1317                 // 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
1318                 rust_obj.inner = std::ptr::null_mut();
1319                 ret.free = Some(ChannelManager_free_void);
1320                 ret
1321         }
1322 }
1323 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
1324 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
1325 #[no_mangle]
1326 pub extern "C" fn ChannelManager_as_MessageSendEventsProvider(this_arg: &ChannelManager) -> crate::lightning::util::events::MessageSendEventsProvider {
1327         crate::lightning::util::events::MessageSendEventsProvider {
1328                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1329                 free: None,
1330                 get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
1331         }
1332 }
1333
1334 #[must_use]
1335 extern "C" fn ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
1336         let mut ret = <nativeChannelManager as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1337         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
1338         local_ret.into()
1339 }
1340
1341 impl From<nativeChannelManager> for crate::lightning::util::events::EventsProvider {
1342         fn from(obj: nativeChannelManager) -> Self {
1343                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1344                 let mut ret = ChannelManager_as_EventsProvider(&rust_obj);
1345                 // 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
1346                 rust_obj.inner = std::ptr::null_mut();
1347                 ret.free = Some(ChannelManager_free_void);
1348                 ret
1349         }
1350 }
1351 /// Constructs a new EventsProvider which calls the relevant methods on this_arg.
1352 /// This copies the `inner` pointer in this_arg and thus the returned EventsProvider must be freed before this_arg is
1353 #[no_mangle]
1354 pub extern "C" fn ChannelManager_as_EventsProvider(this_arg: &ChannelManager) -> crate::lightning::util::events::EventsProvider {
1355         crate::lightning::util::events::EventsProvider {
1356                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1357                 free: None,
1358                 process_pending_events: ChannelManager_EventsProvider_process_pending_events,
1359         }
1360 }
1361
1362 extern "C" fn ChannelManager_EventsProvider_process_pending_events(this_arg: *const c_void, mut handler: crate::lightning::util::events::EventHandler) {
1363         <nativeChannelManager as lightning::util::events::EventsProvider<>>::process_pending_events(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, handler)
1364 }
1365
1366 impl From<nativeChannelManager> for crate::lightning::chain::Listen {
1367         fn from(obj: nativeChannelManager) -> Self {
1368                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1369                 let mut ret = ChannelManager_as_Listen(&rust_obj);
1370                 // 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
1371                 rust_obj.inner = std::ptr::null_mut();
1372                 ret.free = Some(ChannelManager_free_void);
1373                 ret
1374         }
1375 }
1376 /// Constructs a new Listen which calls the relevant methods on this_arg.
1377 /// This copies the `inner` pointer in this_arg and thus the returned Listen must be freed before this_arg is
1378 #[no_mangle]
1379 pub extern "C" fn ChannelManager_as_Listen(this_arg: &ChannelManager) -> crate::lightning::chain::Listen {
1380         crate::lightning::chain::Listen {
1381                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1382                 free: None,
1383                 block_connected: ChannelManager_Listen_block_connected,
1384                 block_disconnected: ChannelManager_Listen_block_disconnected,
1385         }
1386 }
1387
1388 extern "C" fn ChannelManager_Listen_block_connected(this_arg: *const c_void, mut block: crate::c_types::u8slice, mut height: u32) {
1389         <nativeChannelManager as lightning::chain::Listen<>>::block_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(block.to_slice()).unwrap(), height)
1390 }
1391 extern "C" fn ChannelManager_Listen_block_disconnected(this_arg: *const c_void, header: *const [u8; 80], mut height: u32) {
1392         <nativeChannelManager as lightning::chain::Listen<>>::block_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
1393 }
1394
1395 impl From<nativeChannelManager> for crate::lightning::chain::Confirm {
1396         fn from(obj: nativeChannelManager) -> Self {
1397                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1398                 let mut ret = ChannelManager_as_Confirm(&rust_obj);
1399                 // 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
1400                 rust_obj.inner = std::ptr::null_mut();
1401                 ret.free = Some(ChannelManager_free_void);
1402                 ret
1403         }
1404 }
1405 /// Constructs a new Confirm which calls the relevant methods on this_arg.
1406 /// This copies the `inner` pointer in this_arg and thus the returned Confirm must be freed before this_arg is
1407 #[no_mangle]
1408 pub extern "C" fn ChannelManager_as_Confirm(this_arg: &ChannelManager) -> crate::lightning::chain::Confirm {
1409         crate::lightning::chain::Confirm {
1410                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1411                 free: None,
1412                 transactions_confirmed: ChannelManager_Confirm_transactions_confirmed,
1413                 transaction_unconfirmed: ChannelManager_Confirm_transaction_unconfirmed,
1414                 best_block_updated: ChannelManager_Confirm_best_block_updated,
1415                 get_relevant_txids: ChannelManager_Confirm_get_relevant_txids,
1416         }
1417 }
1418
1419 extern "C" fn ChannelManager_Confirm_transactions_confirmed(this_arg: *const c_void, header: *const [u8; 80], mut txdata: crate::c_types::derived::CVec_C2Tuple_usizeTransactionZZ, mut height: u32) {
1420         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 }); };
1421         <nativeChannelManager as lightning::chain::Confirm<>>::transactions_confirmed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), &local_txdata.iter().map(|(a, b)| (*a, b)).collect::<Vec<_>>()[..], height)
1422 }
1423 extern "C" fn ChannelManager_Confirm_best_block_updated(this_arg: *const c_void, header: *const [u8; 80], mut height: u32) {
1424         <nativeChannelManager as lightning::chain::Confirm<>>::best_block_updated(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), height)
1425 }
1426 #[must_use]
1427 extern "C" fn ChannelManager_Confirm_get_relevant_txids(this_arg: *const c_void) -> crate::c_types::derived::CVec_TxidZ {
1428         let mut ret = <nativeChannelManager as lightning::chain::Confirm<>>::get_relevant_txids(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, );
1429         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::c_types::ThirtyTwoBytes { data: item.into_inner() } }); };
1430         local_ret.into()
1431 }
1432 extern "C" fn ChannelManager_Confirm_transaction_unconfirmed(this_arg: *const c_void, txid: *const [u8; 32]) {
1433         <nativeChannelManager as lightning::chain::Confirm<>>::transaction_unconfirmed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &::bitcoin::hash_types::Txid::from_slice(&unsafe { &*txid }[..]).unwrap())
1434 }
1435
1436 /// Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
1437 /// indicating whether persistence is necessary. Only one listener on
1438 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
1439 /// up.
1440 /// Note that the feature `allow_wallclock_use` must be enabled to use this function.
1441 #[must_use]
1442 #[no_mangle]
1443 pub extern "C" fn ChannelManager_await_persistable_update_timeout(this_arg: &ChannelManager, mut max_wait: u64) -> bool {
1444         let mut ret = unsafe { &*this_arg.inner }.await_persistable_update_timeout(std::time::Duration::from_secs(max_wait));
1445         ret
1446 }
1447
1448 /// Blocks until ChannelManager needs to be persisted. Only one listener on
1449 /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
1450 /// up.
1451 #[no_mangle]
1452 pub extern "C" fn ChannelManager_await_persistable_update(this_arg: &ChannelManager) {
1453         unsafe { &*this_arg.inner }.await_persistable_update()
1454 }
1455
1456 /// Gets the latest best block which was connected either via the [`chain::Listen`] or
1457 /// [`chain::Confirm`] interfaces.
1458 #[must_use]
1459 #[no_mangle]
1460 pub extern "C" fn ChannelManager_current_best_block(this_arg: &ChannelManager) -> crate::lightning::chain::BestBlock {
1461         let mut ret = unsafe { &*this_arg.inner }.current_best_block();
1462         crate::lightning::chain::BestBlock { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1463 }
1464
1465 impl From<nativeChannelManager> for crate::lightning::ln::msgs::ChannelMessageHandler {
1466         fn from(obj: nativeChannelManager) -> Self {
1467                 let mut rust_obj = ChannelManager { inner: Box::into_raw(Box::new(obj)), is_owned: true };
1468                 let mut ret = ChannelManager_as_ChannelMessageHandler(&rust_obj);
1469                 // 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
1470                 rust_obj.inner = std::ptr::null_mut();
1471                 ret.free = Some(ChannelManager_free_void);
1472                 ret
1473         }
1474 }
1475 /// Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
1476 /// This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
1477 #[no_mangle]
1478 pub extern "C" fn ChannelManager_as_ChannelMessageHandler(this_arg: &ChannelManager) -> crate::lightning::ln::msgs::ChannelMessageHandler {
1479         crate::lightning::ln::msgs::ChannelMessageHandler {
1480                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
1481                 free: None,
1482                 handle_open_channel: ChannelManager_ChannelMessageHandler_handle_open_channel,
1483                 handle_accept_channel: ChannelManager_ChannelMessageHandler_handle_accept_channel,
1484                 handle_funding_created: ChannelManager_ChannelMessageHandler_handle_funding_created,
1485                 handle_funding_signed: ChannelManager_ChannelMessageHandler_handle_funding_signed,
1486                 handle_funding_locked: ChannelManager_ChannelMessageHandler_handle_funding_locked,
1487                 handle_shutdown: ChannelManager_ChannelMessageHandler_handle_shutdown,
1488                 handle_closing_signed: ChannelManager_ChannelMessageHandler_handle_closing_signed,
1489                 handle_update_add_htlc: ChannelManager_ChannelMessageHandler_handle_update_add_htlc,
1490                 handle_update_fulfill_htlc: ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc,
1491                 handle_update_fail_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_htlc,
1492                 handle_update_fail_malformed_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc,
1493                 handle_commitment_signed: ChannelManager_ChannelMessageHandler_handle_commitment_signed,
1494                 handle_revoke_and_ack: ChannelManager_ChannelMessageHandler_handle_revoke_and_ack,
1495                 handle_update_fee: ChannelManager_ChannelMessageHandler_handle_update_fee,
1496                 handle_announcement_signatures: ChannelManager_ChannelMessageHandler_handle_announcement_signatures,
1497                 peer_disconnected: ChannelManager_ChannelMessageHandler_peer_disconnected,
1498                 peer_connected: ChannelManager_ChannelMessageHandler_peer_connected,
1499                 handle_channel_reestablish: ChannelManager_ChannelMessageHandler_handle_channel_reestablish,
1500                 handle_channel_update: ChannelManager_ChannelMessageHandler_handle_channel_update,
1501                 handle_error: ChannelManager_ChannelMessageHandler_handle_error,
1502                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
1503                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
1504                         free: None,
1505                         get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
1506                 },
1507         }
1508 }
1509
1510 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::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::OpenChannel) {
1511         <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 })
1512 }
1513 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::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::AcceptChannel) {
1514         <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 })
1515 }
1516 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_created(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingCreated) {
1517         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_created(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1518 }
1519 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingSigned) {
1520         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1521 }
1522 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_locked(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingLocked) {
1523         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_locked(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1524 }
1525 extern "C" fn ChannelManager_ChannelMessageHandler_handle_shutdown(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, their_features: &crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::Shutdown) {
1526         <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 })
1527 }
1528 extern "C" fn ChannelManager_ChannelMessageHandler_handle_closing_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ClosingSigned) {
1529         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_closing_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1530 }
1531 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_add_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateAddHTLC) {
1532         <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 })
1533 }
1534 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFulfillHTLC) {
1535         <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 })
1536 }
1537 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fail_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailHTLC) {
1538         <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 })
1539 }
1540 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::lightning::ln::msgs::UpdateFailMalformedHTLC) {
1541         <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 })
1542 }
1543 extern "C" fn ChannelManager_ChannelMessageHandler_handle_commitment_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::CommitmentSigned) {
1544         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_commitment_signed(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1545 }
1546 extern "C" fn ChannelManager_ChannelMessageHandler_handle_revoke_and_ack(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::RevokeAndACK) {
1547         <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 })
1548 }
1549 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fee(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFee) {
1550         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fee(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1551 }
1552 extern "C" fn ChannelManager_ChannelMessageHandler_handle_announcement_signatures(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::AnnouncementSignatures) {
1553         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_announcement_signatures(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1554 }
1555 extern "C" fn ChannelManager_ChannelMessageHandler_handle_channel_update(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ChannelUpdate) {
1556         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1557 }
1558 extern "C" fn ChannelManager_ChannelMessageHandler_handle_channel_reestablish(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ChannelReestablish) {
1559         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_reestablish(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1560 }
1561 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) {
1562         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_disconnected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), no_connection_possible)
1563 }
1564 extern "C" fn ChannelManager_ChannelMessageHandler_peer_connected(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, init_msg: &crate::lightning::ln::msgs::Init) {
1565         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*init_msg.inner })
1566 }
1567 extern "C" fn ChannelManager_ChannelMessageHandler_handle_error(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ErrorMessage) {
1568         <nativeChannelManager as lightning::ln::msgs::ChannelMessageHandler<>>::handle_error(unsafe { &mut *(this_arg as *mut nativeChannelManager) }, &counterparty_node_id.into_rust(), unsafe { &*msg.inner })
1569 }
1570
1571 #[no_mangle]
1572 /// Serialize the ChannelManager object into a byte array which can be read by ChannelManager_read
1573 pub extern "C" fn ChannelManager_write(obj: &ChannelManager) -> crate::c_types::derived::CVec_u8Z {
1574         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
1575 }
1576 #[no_mangle]
1577 pub(crate) extern "C" fn ChannelManager_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1578         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelManager) })
1579 }
1580
1581 use lightning::ln::channelmanager::ChannelManagerReadArgs as nativeChannelManagerReadArgsImport;
1582 type nativeChannelManagerReadArgs = nativeChannelManagerReadArgsImport<'static, crate::lightning::chain::keysinterface::Sign, crate::lightning::chain::Watch, crate::lightning::chain::chaininterface::BroadcasterInterface, crate::lightning::chain::keysinterface::KeysInterface, crate::lightning::chain::chaininterface::FeeEstimator, crate::lightning::util::logger::Logger>;
1583
1584 /// Arguments for the creation of a ChannelManager that are not deserialized.
1585 ///
1586 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
1587 /// is:
1588 /// 1) Deserialize all stored ChannelMonitors.
1589 /// 2) Deserialize the ChannelManager by filling in this struct and calling:
1590 ///    <(BlockHash, ChannelManager)>::read(reader, args)
1591 ///    This may result in closing some Channels if the ChannelMonitor is newer than the stored
1592 ///    ChannelManager state to ensure no loss of funds. Thus, transactions may be broadcasted.
1593 /// 3) If you are not fetching full blocks, register all relevant ChannelMonitor outpoints the same
1594 ///    way you would handle a `chain::Filter` call using ChannelMonitor::get_outputs_to_watch() and
1595 ///    ChannelMonitor::get_funding_txo().
1596 /// 4) Reconnect blocks on your ChannelMonitors.
1597 /// 5) Disconnect/connect blocks on the ChannelManager.
1598 /// 6) Move the ChannelMonitors into your local chain::Watch.
1599 ///
1600 /// Note that the ordering of #4-6 is not of importance, however all three must occur before you
1601 /// call any other methods on the newly-deserialized ChannelManager.
1602 ///
1603 /// Note that because some channels may be closed during deserialization, it is critical that you
1604 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
1605 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
1606 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
1607 /// not force-close the same channels but consider them live), you may end up revoking a state for
1608 /// which you've already broadcasted the transaction.
1609 #[must_use]
1610 #[repr(C)]
1611 pub struct ChannelManagerReadArgs {
1612         /// A pointer to the opaque Rust object.
1613
1614         /// Nearly everywhere, inner must be non-null, however in places where
1615         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1616         pub inner: *mut nativeChannelManagerReadArgs,
1617         /// Indicates that this is the only struct which contains the same pointer.
1618
1619         /// Rust functions which take ownership of an object provided via an argument require
1620         /// this to be true and invalidate the object pointed to by inner.
1621         pub is_owned: bool,
1622 }
1623
1624 impl Drop for ChannelManagerReadArgs {
1625         fn drop(&mut self) {
1626                 if self.is_owned && !<*mut nativeChannelManagerReadArgs>::is_null(self.inner) {
1627                         let _ = unsafe { Box::from_raw(self.inner) };
1628                 }
1629         }
1630 }
1631 /// Frees any resources used by the ChannelManagerReadArgs, if is_owned is set and inner is non-NULL.
1632 #[no_mangle]
1633 pub extern "C" fn ChannelManagerReadArgs_free(this_obj: ChannelManagerReadArgs) { }
1634 #[allow(unused)]
1635 /// Used only if an object of this type is returned as a trait impl by a method
1636 extern "C" fn ChannelManagerReadArgs_free_void(this_ptr: *mut c_void) {
1637         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManagerReadArgs); }
1638 }
1639 #[allow(unused)]
1640 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1641 impl ChannelManagerReadArgs {
1642         pub(crate) fn take_inner(mut self) -> *mut nativeChannelManagerReadArgs {
1643                 assert!(self.is_owned);
1644                 let ret = self.inner;
1645                 self.inner = std::ptr::null_mut();
1646                 ret
1647         }
1648 }
1649 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1650 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1651 /// signing data.
1652 #[no_mangle]
1653 pub extern "C" fn ChannelManagerReadArgs_get_keys_manager(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::keysinterface::KeysInterface {
1654         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.keys_manager;
1655         inner_val
1656 }
1657 /// The keys provider which will give us relevant keys. Some keys will be loaded during
1658 /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
1659 /// signing data.
1660 #[no_mangle]
1661 pub extern "C" fn ChannelManagerReadArgs_set_keys_manager(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::keysinterface::KeysInterface) {
1662         unsafe { &mut *this_ptr.inner }.keys_manager = val;
1663 }
1664 /// The fee_estimator for use in the ChannelManager in the future.
1665 ///
1666 /// No calls to the FeeEstimator will be made during deserialization.
1667 #[no_mangle]
1668 pub extern "C" fn ChannelManagerReadArgs_get_fee_estimator(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::chaininterface::FeeEstimator {
1669         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_estimator;
1670         inner_val
1671 }
1672 /// The fee_estimator for use in the ChannelManager in the future.
1673 ///
1674 /// No calls to the FeeEstimator will be made during deserialization.
1675 #[no_mangle]
1676 pub extern "C" fn ChannelManagerReadArgs_set_fee_estimator(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::chaininterface::FeeEstimator) {
1677         unsafe { &mut *this_ptr.inner }.fee_estimator = val;
1678 }
1679 /// The chain::Watch for use in the ChannelManager in the future.
1680 ///
1681 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1682 /// you have deserialized ChannelMonitors separately and will add them to your
1683 /// chain::Watch after deserializing this ChannelManager.
1684 #[no_mangle]
1685 pub extern "C" fn ChannelManagerReadArgs_get_chain_monitor(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::Watch {
1686         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_monitor;
1687         inner_val
1688 }
1689 /// The chain::Watch for use in the ChannelManager in the future.
1690 ///
1691 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
1692 /// you have deserialized ChannelMonitors separately and will add them to your
1693 /// chain::Watch after deserializing this ChannelManager.
1694 #[no_mangle]
1695 pub extern "C" fn ChannelManagerReadArgs_set_chain_monitor(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::Watch) {
1696         unsafe { &mut *this_ptr.inner }.chain_monitor = val;
1697 }
1698 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1699 /// used to broadcast the latest local commitment transactions of channels which must be
1700 /// force-closed during deserialization.
1701 #[no_mangle]
1702 pub extern "C" fn ChannelManagerReadArgs_get_tx_broadcaster(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::chain::chaininterface::BroadcasterInterface {
1703         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.tx_broadcaster;
1704         inner_val
1705 }
1706 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
1707 /// used to broadcast the latest local commitment transactions of channels which must be
1708 /// force-closed during deserialization.
1709 #[no_mangle]
1710 pub extern "C" fn ChannelManagerReadArgs_set_tx_broadcaster(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::chain::chaininterface::BroadcasterInterface) {
1711         unsafe { &mut *this_ptr.inner }.tx_broadcaster = val;
1712 }
1713 /// The Logger for use in the ChannelManager and which may be used to log information during
1714 /// deserialization.
1715 #[no_mangle]
1716 pub extern "C" fn ChannelManagerReadArgs_get_logger(this_ptr: &ChannelManagerReadArgs) -> *const crate::lightning::util::logger::Logger {
1717         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.logger;
1718         inner_val
1719 }
1720 /// The Logger for use in the ChannelManager and which may be used to log information during
1721 /// deserialization.
1722 #[no_mangle]
1723 pub extern "C" fn ChannelManagerReadArgs_set_logger(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::util::logger::Logger) {
1724         unsafe { &mut *this_ptr.inner }.logger = val;
1725 }
1726 /// Default settings used for new channels. Any existing channels will continue to use the
1727 /// runtime settings which were stored when the ChannelManager was serialized.
1728 #[no_mangle]
1729 pub extern "C" fn ChannelManagerReadArgs_get_default_config(this_ptr: &ChannelManagerReadArgs) -> crate::lightning::util::config::UserConfig {
1730         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.default_config;
1731         crate::lightning::util::config::UserConfig { inner: unsafe { ( (&(*inner_val) as *const _) as *mut _) }, is_owned: false }
1732 }
1733 /// Default settings used for new channels. Any existing channels will continue to use the
1734 /// runtime settings which were stored when the ChannelManager was serialized.
1735 #[no_mangle]
1736 pub extern "C" fn ChannelManagerReadArgs_set_default_config(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::lightning::util::config::UserConfig) {
1737         unsafe { &mut *this_ptr.inner }.default_config = *unsafe { Box::from_raw(val.take_inner()) };
1738 }
1739 /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
1740 /// HashMap for you. This is primarily useful for C bindings where it is not practical to
1741 /// populate a HashMap directly from C.
1742 #[must_use]
1743 #[no_mangle]
1744 pub extern "C" fn ChannelManagerReadArgs_new(mut keys_manager: crate::lightning::chain::keysinterface::KeysInterface, mut fee_estimator: crate::lightning::chain::chaininterface::FeeEstimator, mut chain_monitor: crate::lightning::chain::Watch, mut tx_broadcaster: crate::lightning::chain::chaininterface::BroadcasterInterface, mut logger: crate::lightning::util::logger::Logger, mut default_config: crate::lightning::util::config::UserConfig, mut channel_monitors: crate::c_types::derived::CVec_ChannelMonitorZ) -> ChannelManagerReadArgs {
1745         let mut local_channel_monitors = Vec::new(); for mut item in channel_monitors.into_rust().drain(..) { local_channel_monitors.push( { unsafe { &mut *item.inner } }); };
1746         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);
1747         ChannelManagerReadArgs { inner: Box::into_raw(Box::new(ret)), is_owned: true }
1748 }
1749
1750 #[no_mangle]
1751 /// Read a C2Tuple_BlockHashChannelManagerZ from a byte array, created by C2Tuple_BlockHashChannelManagerZ_write
1752 pub extern "C" fn C2Tuple_BlockHashChannelManagerZ_read(ser: crate::c_types::u8slice, arg: crate::lightning::ln::channelmanager::ChannelManagerReadArgs) -> crate::c_types::derived::CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ {
1753         let arg_conv = *unsafe { Box::from_raw(arg.take_inner()) };
1754         let res: Result<(bitcoin::hash_types::BlockHash, lightning::ln::channelmanager::ChannelManager<crate::lightning::chain::keysinterface::Sign, crate::lightning::chain::Watch, crate::lightning::chain::chaininterface::BroadcasterInterface, crate::lightning::chain::keysinterface::KeysInterface, crate::lightning::chain::chaininterface::FeeEstimator, crate::lightning::util::logger::Logger>), lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj_arg(ser, arg_conv);
1755         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::lightning::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::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1756         local_res
1757 }