7d9028a572586b66fbb62d2535d44d3ae9dc7f88
[rust-lightning] / lightning-c-bindings / src / ln / channelmanager.rs
1 //! The top-level channel management and payment tracking stuff lives here.
2 //!
3 //! The ChannelManager is the main chunk of logic implementing the lightning protocol and is
4 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
5 //! upon reconnect to the relevant peer(s).
6 //!
7 //! It does not manage routing logic (see routing::router::get_route for that) nor does it manage constructing
8 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
9 //! imply it needs to fail HTLCs/payments/channels it manages).
10 //!
11
12 use std::ffi::c_void;
13 use bitcoin::hashes::Hash;
14 use crate::c_types::*;
15
16
17 use lightning::ln::channelmanager::ChannelManager as nativeChannelManagerImport;
18 type nativeChannelManager = nativeChannelManagerImport<crate::chain::keysinterface::ChannelKeys, crate::chain::Watch, crate::chain::chaininterface::BroadcasterInterface, crate::chain::keysinterface::KeysInterface, crate::chain::chaininterface::FeeEstimator, crate::util::logger::Logger>;
19
20 /// Manager which keeps track of a number of channels and sends messages to the appropriate
21 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
22 ///
23 /// Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
24 /// to individual Channels.
25 ///
26 /// Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
27 /// all peers during write/read (though does not modify this instance, only the instance being
28 /// serialized). This will result in any channels which have not yet exchanged funding_created (ie
29 /// called funding_transaction_generated for outbound channels).
30 ///
31 /// Note that you can be a bit lazier about writing out ChannelManager than you can be with
32 /// ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
33 /// returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
34 /// happens out-of-band (and will prevent any other ChannelManager operations from occurring during
35 /// the serialization process). If the deserialized version is out-of-date compared to the
36 /// ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
37 /// ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
38 ///
39 /// Note that the deserializer is only implemented for (Sha256dHash, ChannelManager), which
40 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
41 /// the \"reorg path\" (ie call block_disconnected() until you get to a common block and then call
42 /// block_connected() to step towards your best block) upon deserialization before using the
43 /// object!
44 ///
45 /// Note that ChannelManager is responsible for tracking liveness of its channels and generating
46 /// ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
47 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
48 /// offline for a full minute. In order to track this, you must call
49 /// timer_chan_freshness_every_min roughly once per minute, though it doesn't have to be perfect.
50 ///
51 /// Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
52 /// a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
53 /// essentially you should default to using a SimpleRefChannelManager, and use a
54 /// SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
55 /// you're using lightning-net-tokio.
56 #[must_use]
57 #[repr(C)]
58 pub struct ChannelManager {
59         /// Nearly everywhere, inner must be non-null, however in places where
60         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
61         pub inner: *mut nativeChannelManager,
62         pub is_owned: bool,
63 }
64
65 impl Drop for ChannelManager {
66         fn drop(&mut self) {
67                 if self.is_owned && !self.inner.is_null() {
68                         let _ = unsafe { Box::from_raw(self.inner) };
69                 }
70         }
71 }
72 #[no_mangle]
73 pub extern "C" fn ChannelManager_free(this_ptr: ChannelManager) { }
74 #[allow(unused)]
75 /// Used only if an object of this type is returned as a trait impl by a method
76 extern "C" fn ChannelManager_free_void(this_ptr: *mut c_void) {
77         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManager); }
78 }
79 #[allow(unused)]
80 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
81 impl ChannelManager {
82         pub(crate) fn take_ptr(mut self) -> *mut nativeChannelManager {
83                 assert!(self.is_owned);
84                 let ret = self.inner;
85                 self.inner = std::ptr::null_mut();
86                 ret
87         }
88 }
89
90 use lightning::ln::channelmanager::ChannelDetails as nativeChannelDetailsImport;
91 type nativeChannelDetails = nativeChannelDetailsImport;
92
93 /// Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
94 #[must_use]
95 #[repr(C)]
96 pub struct ChannelDetails {
97         /// Nearly everywhere, inner must be non-null, however in places where
98         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
99         pub inner: *mut nativeChannelDetails,
100         pub is_owned: bool,
101 }
102
103 impl Drop for ChannelDetails {
104         fn drop(&mut self) {
105                 if self.is_owned && !self.inner.is_null() {
106                         let _ = unsafe { Box::from_raw(self.inner) };
107                 }
108         }
109 }
110 #[no_mangle]
111 pub extern "C" fn ChannelDetails_free(this_ptr: ChannelDetails) { }
112 #[allow(unused)]
113 /// Used only if an object of this type is returned as a trait impl by a method
114 extern "C" fn ChannelDetails_free_void(this_ptr: *mut c_void) {
115         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelDetails); }
116 }
117 #[allow(unused)]
118 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
119 impl ChannelDetails {
120         pub(crate) fn take_ptr(mut self) -> *mut nativeChannelDetails {
121                 assert!(self.is_owned);
122                 let ret = self.inner;
123                 self.inner = std::ptr::null_mut();
124                 ret
125         }
126 }
127 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
128 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
129 /// Note that this means this value is *not* persistent - it can change once during the
130 /// lifetime of the channel.
131 #[no_mangle]
132 pub extern "C" fn ChannelDetails_get_channel_id(this_ptr: &ChannelDetails) -> *const [u8; 32] {
133         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_id;
134         &(*inner_val)
135 }
136 /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
137 /// thereafter this is the txid of the funding transaction xor the funding transaction output).
138 /// Note that this means this value is *not* persistent - it can change once during the
139 /// lifetime of the channel.
140 #[no_mangle]
141 pub extern "C" fn ChannelDetails_set_channel_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::ThirtyTwoBytes) {
142         unsafe { &mut *this_ptr.inner }.channel_id = val.data;
143 }
144 /// The node_id of our counterparty
145 #[no_mangle]
146 pub extern "C" fn ChannelDetails_get_remote_network_id(this_ptr: &ChannelDetails) -> crate::c_types::PublicKey {
147         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.remote_network_id;
148         crate::c_types::PublicKey::from_rust(&(*inner_val))
149 }
150 /// The node_id of our counterparty
151 #[no_mangle]
152 pub extern "C" fn ChannelDetails_set_remote_network_id(this_ptr: &mut ChannelDetails, mut val: crate::c_types::PublicKey) {
153         unsafe { &mut *this_ptr.inner }.remote_network_id = val.into_rust();
154 }
155 /// The Features the channel counterparty provided upon last connection.
156 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
157 /// many routing-relevant features are present in the init context.
158 #[no_mangle]
159 pub extern "C" fn ChannelDetails_get_counterparty_features(this_ptr: &ChannelDetails) -> crate::ln::features::InitFeatures {
160         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.counterparty_features;
161         crate::ln::features::InitFeatures { inner: &mut (*inner_val), is_owned: false }
162 }
163 /// The Features the channel counterparty provided upon last connection.
164 /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
165 /// many routing-relevant features are present in the init context.
166 #[no_mangle]
167 pub extern "C" fn ChannelDetails_set_counterparty_features(this_ptr: &mut ChannelDetails, mut val: crate::ln::features::InitFeatures) {
168         unsafe { &mut *this_ptr.inner }.counterparty_features = *unsafe { Box::from_raw(val.take_ptr()) };
169 }
170 /// The value, in satoshis, of this channel as appears in the funding output
171 #[no_mangle]
172 pub extern "C" fn ChannelDetails_get_channel_value_satoshis(this_ptr: &ChannelDetails) -> u64 {
173         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.channel_value_satoshis;
174         (*inner_val)
175 }
176 /// The value, in satoshis, of this channel as appears in the funding output
177 #[no_mangle]
178 pub extern "C" fn ChannelDetails_set_channel_value_satoshis(this_ptr: &mut ChannelDetails, mut val: u64) {
179         unsafe { &mut *this_ptr.inner }.channel_value_satoshis = val;
180 }
181 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
182 #[no_mangle]
183 pub extern "C" fn ChannelDetails_get_user_id(this_ptr: &ChannelDetails) -> u64 {
184         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.user_id;
185         (*inner_val)
186 }
187 /// The user_id passed in to create_channel, or 0 if the channel was inbound.
188 #[no_mangle]
189 pub extern "C" fn ChannelDetails_set_user_id(this_ptr: &mut ChannelDetails, mut val: u64) {
190         unsafe { &mut *this_ptr.inner }.user_id = val;
191 }
192 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
193 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
194 /// available for inclusion in new outbound HTLCs). This further does not include any pending
195 /// outgoing HTLCs which are awaiting some other resolution to be sent.
196 #[no_mangle]
197 pub extern "C" fn ChannelDetails_get_outbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
198         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.outbound_capacity_msat;
199         (*inner_val)
200 }
201 /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
202 /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
203 /// available for inclusion in new outbound HTLCs). This further does not include any pending
204 /// outgoing HTLCs which are awaiting some other resolution to be sent.
205 #[no_mangle]
206 pub extern "C" fn ChannelDetails_set_outbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
207         unsafe { &mut *this_ptr.inner }.outbound_capacity_msat = val;
208 }
209 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
210 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
211 /// available for inclusion in new inbound HTLCs).
212 /// Note that there are some corner cases not fully handled here, so the actual available
213 /// inbound capacity may be slightly higher than this.
214 #[no_mangle]
215 pub extern "C" fn ChannelDetails_get_inbound_capacity_msat(this_ptr: &ChannelDetails) -> u64 {
216         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.inbound_capacity_msat;
217         (*inner_val)
218 }
219 /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
220 /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
221 /// available for inclusion in new inbound HTLCs).
222 /// Note that there are some corner cases not fully handled here, so the actual available
223 /// inbound capacity may be slightly higher than this.
224 #[no_mangle]
225 pub extern "C" fn ChannelDetails_set_inbound_capacity_msat(this_ptr: &mut ChannelDetails, mut val: u64) {
226         unsafe { &mut *this_ptr.inner }.inbound_capacity_msat = val;
227 }
228 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
229 /// the peer is connected, and (c) no monitor update failure is pending resolution.
230 #[no_mangle]
231 pub extern "C" fn ChannelDetails_get_is_live(this_ptr: &ChannelDetails) -> bool {
232         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.is_live;
233         (*inner_val)
234 }
235 /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
236 /// the peer is connected, and (c) no monitor update failure is pending resolution.
237 #[no_mangle]
238 pub extern "C" fn ChannelDetails_set_is_live(this_ptr: &mut ChannelDetails, mut val: bool) {
239         unsafe { &mut *this_ptr.inner }.is_live = val;
240 }
241
242 use lightning::ln::channelmanager::PaymentSendFailure as nativePaymentSendFailureImport;
243 type nativePaymentSendFailure = nativePaymentSendFailureImport;
244
245 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
246 /// Err() type describing which state the payment is in, see the description of individual enum
247 /// states for more.
248 #[must_use]
249 #[repr(C)]
250 pub struct PaymentSendFailure {
251         /// Nearly everywhere, inner must be non-null, however in places where
252         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
253         pub inner: *mut nativePaymentSendFailure,
254         pub is_owned: bool,
255 }
256
257 impl Drop for PaymentSendFailure {
258         fn drop(&mut self) {
259                 if self.is_owned && !self.inner.is_null() {
260                         let _ = unsafe { Box::from_raw(self.inner) };
261                 }
262         }
263 }
264 #[no_mangle]
265 pub extern "C" fn PaymentSendFailure_free(this_ptr: PaymentSendFailure) { }
266 #[allow(unused)]
267 /// Used only if an object of this type is returned as a trait impl by a method
268 extern "C" fn PaymentSendFailure_free_void(this_ptr: *mut c_void) {
269         unsafe { let _ = Box::from_raw(this_ptr as *mut nativePaymentSendFailure); }
270 }
271 #[allow(unused)]
272 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
273 impl PaymentSendFailure {
274         pub(crate) fn take_ptr(mut self) -> *mut nativePaymentSendFailure {
275                 assert!(self.is_owned);
276                 let ret = self.inner;
277                 self.inner = std::ptr::null_mut();
278                 ret
279         }
280 }
281 /// Constructs a new ChannelManager to hold several channels and route between them.
282 ///
283 /// This is the main \"logic hub\" for all channel-related actions, and implements
284 /// ChannelMessageHandler.
285 ///
286 /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
287 ///
288 /// panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
289 ///
290 /// Users must provide the current blockchain height from which to track onchain channel
291 /// funding outpoints and send payments with reliable timelocks.
292 ///
293 /// Users need to notify the new ChannelManager when a new block is connected or
294 /// disconnected using its `block_connected` and `block_disconnected` methods.
295 #[must_use]
296 #[no_mangle]
297 pub extern "C" fn ChannelManager_new(mut network: crate::bitcoin::network::Network, mut fee_est: crate::chain::chaininterface::FeeEstimator, mut chain_monitor: crate::chain::Watch, mut tx_broadcaster: crate::chain::chaininterface::BroadcasterInterface, mut logger: crate::util::logger::Logger, mut keys_manager: crate::chain::keysinterface::KeysInterface, mut config: crate::util::config::UserConfig, mut current_blockchain_height: usize) -> ChannelManager {
298         let mut ret = lightning::ln::channelmanager::ChannelManager::new(network.into_bitcoin(), fee_est, chain_monitor, tx_broadcaster, logger, keys_manager, *unsafe { Box::from_raw(config.take_ptr()) }, current_blockchain_height);
299         ChannelManager { inner: Box::into_raw(Box::new(ret)), is_owned: true }
300 }
301
302 /// Creates a new outbound channel to the given remote node and with the given value.
303 ///
304 /// user_id will be provided back as user_channel_id in FundingGenerationReady and
305 /// FundingBroadcastSafe events to allow tracking of which events correspond with which
306 /// create_channel call. Note that user_channel_id defaults to 0 for inbound channels, so you
307 /// may wish to avoid using 0 for user_id here.
308 ///
309 /// If successful, will generate a SendOpenChannel message event, so you should probably poll
310 /// PeerManager::process_events afterwards.
311 ///
312 /// Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat is
313 /// greater than channel_value_satoshis * 1k or channel_value_satoshis is < 1000.
314 #[must_use]
315 #[no_mangle]
316 pub extern "C" fn ChannelManager_create_channel(this_arg: &ChannelManager, mut their_network_key: crate::c_types::PublicKey, mut channel_value_satoshis: u64, mut push_msat: u64, mut user_id: u64, mut override_config: crate::util::config::UserConfig) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
317         let mut local_override_config = if override_config.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(override_config.take_ptr()) } }) };
318         let mut ret = unsafe { &*this_arg.inner }.create_channel(their_network_key.into_rust(), channel_value_satoshis, push_msat, user_id, local_override_config);
319         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }), Err(mut e) => crate::c_types::CResultTempl::err( { crate::util::errors::APIError::native_into(e) }) };
320         local_ret
321 }
322
323 /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
324 /// more information.
325 #[must_use]
326 #[no_mangle]
327 pub extern "C" fn ChannelManager_list_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
328         let mut ret = unsafe { &*this_arg.inner }.list_channels();
329         let mut local_ret = Vec::new(); for item in ret.drain(..) { local_ret.push( { crate::ln::channelmanager::ChannelDetails { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
330         local_ret.into()
331 }
332
333 /// Gets the list of usable channels, in random order. Useful as an argument to
334 /// get_route to ensure non-announced channels are used.
335 ///
336 /// These are guaranteed to have their is_live value set to true, see the documentation for
337 /// ChannelDetails::is_live for more info on exactly what the criteria are.
338 #[must_use]
339 #[no_mangle]
340 pub extern "C" fn ChannelManager_list_usable_channels(this_arg: &ChannelManager) -> crate::c_types::derived::CVec_ChannelDetailsZ {
341         let mut ret = unsafe { &*this_arg.inner }.list_usable_channels();
342         let mut local_ret = Vec::new(); for item in ret.drain(..) { local_ret.push( { crate::ln::channelmanager::ChannelDetails { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
343         local_ret.into()
344 }
345
346 /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
347 /// will be accepted on the given channel, and after additional timeout/the closing of all
348 /// pending HTLCs, the channel will be closed on chain.
349 ///
350 /// May generate a SendShutdown message event on success, which should be relayed.
351 #[must_use]
352 #[no_mangle]
353 pub extern "C" fn ChannelManager_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) -> crate::c_types::derived::CResult_NoneAPIErrorZ {
354         let mut ret = unsafe { &*this_arg.inner }.close_channel(unsafe { &*channel_id});
355         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }), Err(mut e) => crate::c_types::CResultTempl::err( { crate::util::errors::APIError::native_into(e) }) };
356         local_ret
357 }
358
359 /// Force closes a channel, immediately broadcasting the latest local commitment transaction to
360 /// the chain and rejecting new HTLCs on the given channel.
361 #[no_mangle]
362 pub extern "C" fn ChannelManager_force_close_channel(this_arg: &ChannelManager, channel_id: *const [u8; 32]) {
363         unsafe { &*this_arg.inner }.force_close_channel(unsafe { &*channel_id})
364 }
365
366 /// Force close all channels, immediately broadcasting the latest local commitment transaction
367 /// for each to the chain and rejecting new HTLCs on each.
368 #[no_mangle]
369 pub extern "C" fn ChannelManager_force_close_all_channels(this_arg: &ChannelManager) {
370         unsafe { &*this_arg.inner }.force_close_all_channels()
371 }
372
373 /// Sends a payment along a given route.
374 ///
375 /// Value parameters are provided via the last hop in route, see documentation for RouteHop
376 /// fields for more info.
377 ///
378 /// Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
379 /// payment), we don't do anything to stop you! We always try to ensure that if the provided
380 /// next hop knows the preimage to payment_hash they can claim an additional amount as
381 /// specified in the last hop in the route! Thus, you should probably do your own
382 /// payment_preimage tracking (which you should already be doing as they represent \"proof of
383 /// payment\") and prevent double-sends yourself.
384 ///
385 /// May generate SendHTLCs message(s) event on success, which should be relayed.
386 ///
387 /// Each path may have a different return value, and PaymentSendValue may return a Vec with
388 /// each entry matching the corresponding-index entry in the route paths, see
389 /// PaymentSendFailure for more info.
390 ///
391 /// In general, a path may raise:
392 ///  * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
393 ///    node public key) is specified.
394 ///  * APIError::ChannelUnavailable if the next-hop channel is not available for updates
395 ///    (including due to previous monitor update failure or new permanent monitor update
396 ///    failure).
397 ///  * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
398 ///    relevant updates.
399 ///
400 /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
401 /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
402 /// different route unless you intend to pay twice!
403 ///
404 /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
405 /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
406 /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
407 /// must not contain multiple paths as multi-path payments require a recipient-provided
408 /// payment_secret.
409 /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
410 /// bit set (either as required or as available). If multiple paths are present in the Route,
411 /// we assume the invoice had the basic_mpp feature set.
412 #[must_use]
413 #[no_mangle]
414 pub extern "C" fn ChannelManager_send_payment(this_arg: &ChannelManager, route: &crate::routing::router::Route, mut payment_hash: crate::c_types::ThirtyTwoBytes, mut payment_secret: crate::c_types::ThirtyTwoBytes) -> crate::c_types::derived::CResult_NonePaymentSendFailureZ {
415         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
416         let mut ret = unsafe { &*this_arg.inner }.send_payment(unsafe { &*route.inner }, ::lightning::ln::channelmanager::PaymentHash(payment_hash.data), &local_payment_secret);
417         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::channelmanager::PaymentSendFailure { inner: Box::into_raw(Box::new(e)), is_owned: true } }) };
418         local_ret
419 }
420
421 /// Call this upon creation of a funding transaction for the given channel.
422 ///
423 /// Note that ALL inputs in the transaction pointed to by funding_txo MUST spend SegWit outputs
424 /// or your counterparty can steal your funds!
425 ///
426 /// Panics if a funding transaction has already been provided for this channel.
427 ///
428 /// May panic if the funding_txo is duplicative with some other channel (note that this should
429 /// be trivially prevented by using unique funding transaction keys per-channel).
430 #[no_mangle]
431 pub extern "C" fn ChannelManager_funding_transaction_generated(this_arg: &ChannelManager, temporary_channel_id: *const [u8; 32], mut funding_txo: crate::chain::transaction::OutPoint) {
432         unsafe { &*this_arg.inner }.funding_transaction_generated(unsafe { &*temporary_channel_id}, *unsafe { Box::from_raw(funding_txo.take_ptr()) })
433 }
434
435 /// Generates a signed node_announcement from the given arguments and creates a
436 /// BroadcastNodeAnnouncement event. Note that such messages will be ignored unless peers have
437 /// seen a channel_announcement from us (ie unless we have public channels open).
438 ///
439 /// RGB is a node \"color\" and alias is a printable human-readable string to describe this node
440 /// to humans. They carry no in-protocol meaning.
441 ///
442 /// addresses represent the set (possibly empty) of socket addresses on which this node accepts
443 /// incoming connections. These will be broadcast to the network, publicly tying these
444 /// addresses together. If you wish to preserve user privacy, addresses should likely contain
445 /// only Tor Onion addresses.
446 ///
447 /// Panics if addresses is absurdly large (more than 500).
448 #[no_mangle]
449 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) {
450         let mut local_addresses = Vec::new(); for mut item in addresses.into_rust().drain(..) { local_addresses.push( { item.into_native() }); };
451         unsafe { &*this_arg.inner }.broadcast_node_announcement(rgb.data, alias.data, local_addresses)
452 }
453
454 /// Processes HTLCs which are pending waiting on random forward delay.
455 ///
456 /// Should only really ever be called in response to a PendingHTLCsForwardable event.
457 /// Will likely generate further events.
458 #[no_mangle]
459 pub extern "C" fn ChannelManager_process_pending_htlc_forwards(this_arg: &ChannelManager) {
460         unsafe { &*this_arg.inner }.process_pending_htlc_forwards()
461 }
462
463 /// If a peer is disconnected we mark any channels with that peer as 'disabled'.
464 /// After some time, if channels are still disabled we need to broadcast a ChannelUpdate
465 /// to inform the network about the uselessness of these channels.
466 ///
467 /// This method handles all the details, and must be called roughly once per minute.
468 #[no_mangle]
469 pub extern "C" fn ChannelManager_timer_chan_freshness_every_min(this_arg: &ChannelManager) {
470         unsafe { &*this_arg.inner }.timer_chan_freshness_every_min()
471 }
472
473 /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
474 /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
475 /// along the path (including in our own channel on which we received it).
476 /// Returns false if no payment was found to fail backwards, true if the process of failing the
477 /// HTLC backwards has been started.
478 #[must_use]
479 #[no_mangle]
480 pub extern "C" fn ChannelManager_fail_htlc_backwards(this_arg: &ChannelManager, payment_hash: *const [u8; 32], mut payment_secret: crate::c_types::ThirtyTwoBytes) -> bool {
481         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
482         let mut ret = unsafe { &*this_arg.inner }.fail_htlc_backwards(&::lightning::ln::channelmanager::PaymentHash(unsafe { *payment_hash }), &local_payment_secret);
483         ret
484 }
485
486 /// Provides a payment preimage in response to a PaymentReceived event, returning true and
487 /// generating message events for the net layer to claim the payment, if possible. Thus, you
488 /// should probably kick the net layer to go send messages if this returns true!
489 ///
490 /// You must specify the expected amounts for this HTLC, and we will only claim HTLCs
491 /// available within a few percent of the expected amount. This is critical for several
492 /// reasons : a) it avoids providing senders with `proof-of-payment` (in the form of the
493 /// payment_preimage without having provided the full value and b) it avoids certain
494 /// privacy-breaking recipient-probing attacks which may reveal payment activity to
495 /// motivated attackers.
496 ///
497 /// Note that the privacy concerns in (b) are not relevant in payments with a payment_secret
498 /// set. Thus, for such payments we will claim any payments which do not under-pay.
499 ///
500 /// May panic if called except in response to a PaymentReceived event.
501 #[must_use]
502 #[no_mangle]
503 pub extern "C" fn ChannelManager_claim_funds(this_arg: &ChannelManager, mut payment_preimage: crate::c_types::ThirtyTwoBytes, mut payment_secret: crate::c_types::ThirtyTwoBytes, mut expected_amount: u64) -> bool {
504         let mut local_payment_secret = if payment_secret.data == [0; 32] { None } else { Some( { ::lightning::ln::channelmanager::PaymentSecret(payment_secret.data) }) };
505         let mut ret = unsafe { &*this_arg.inner }.claim_funds(::lightning::ln::channelmanager::PaymentPreimage(payment_preimage.data), &local_payment_secret, expected_amount);
506         ret
507 }
508
509 /// Gets the node_id held by this ChannelManager
510 #[must_use]
511 #[no_mangle]
512 pub extern "C" fn ChannelManager_get_our_node_id(this_arg: &ChannelManager) -> crate::c_types::PublicKey {
513         let mut ret = unsafe { &*this_arg.inner }.get_our_node_id();
514         crate::c_types::PublicKey::from_rust(&ret)
515 }
516
517 /// Restores a single, given channel to normal operation after a
518 /// ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
519 /// operation.
520 ///
521 /// All ChannelMonitor updates up to and including highest_applied_update_id must have been
522 /// fully committed in every copy of the given channels' ChannelMonitors.
523 ///
524 /// Note that there is no effect to calling with a highest_applied_update_id other than the
525 /// current latest ChannelMonitorUpdate and one call to this function after multiple
526 /// ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
527 /// exists largely only to prevent races between this and concurrent update_monitor calls.
528 ///
529 /// Thus, the anticipated use is, at a high level:
530 ///  1) You register a chain::Watch with this ChannelManager,
531 ///  2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
532 ///     said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
533 ///     any time it cannot do so instantly,
534 ///  3) update(s) are applied to each remote copy of a ChannelMonitor,
535 ///  4) once all remote copies are updated, you call this function with the update_id that
536 ///     completed, and once it is the latest the Channel will be re-enabled.
537 #[no_mangle]
538 pub extern "C" fn ChannelManager_channel_monitor_updated(this_arg: &ChannelManager, funding_txo: &crate::chain::transaction::OutPoint, mut highest_applied_update_id: u64) {
539         unsafe { &*this_arg.inner }.channel_monitor_updated(unsafe { &*funding_txo.inner }, highest_applied_update_id)
540 }
541
542 #[no_mangle]
543 pub extern "C" fn ChannelManager_as_MessageSendEventsProvider(this_arg: *const ChannelManager) -> crate::util::events::MessageSendEventsProvider {
544         crate::util::events::MessageSendEventsProvider {
545                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
546                 free: None,
547                 get_and_clear_pending_msg_events: ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events,
548         }
549 }
550 use lightning::util::events::MessageSendEventsProvider as MessageSendEventsProviderTraitImport;
551 #[must_use]
552 extern "C" fn ChannelManager_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
553         let mut ret = unsafe { &mut *(this_arg as *mut nativeChannelManager) }.get_and_clear_pending_msg_events();
554         let mut local_ret = Vec::new(); for item in ret.drain(..) { local_ret.push( { crate::util::events::MessageSendEvent::native_into(item) }); };
555         local_ret.into()
556 }
557
558 #[no_mangle]
559 pub extern "C" fn ChannelManager_as_EventsProvider(this_arg: *const ChannelManager) -> crate::util::events::EventsProvider {
560         crate::util::events::EventsProvider {
561                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
562                 free: None,
563                 get_and_clear_pending_events: ChannelManager_EventsProvider_get_and_clear_pending_events,
564         }
565 }
566 use lightning::util::events::EventsProvider as EventsProviderTraitImport;
567 #[must_use]
568 extern "C" fn ChannelManager_EventsProvider_get_and_clear_pending_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_EventZ {
569         let mut ret = unsafe { &mut *(this_arg as *mut nativeChannelManager) }.get_and_clear_pending_events();
570         let mut local_ret = Vec::new(); for item in ret.drain(..) { local_ret.push( { crate::util::events::Event::native_into(item) }); };
571         local_ret.into()
572 }
573
574 /// Updates channel state based on transactions seen in a connected block.
575 #[no_mangle]
576 pub extern "C" fn ChannelManager_block_connected(this_arg: &ChannelManager, header: *const [u8; 80], mut txdata: crate::c_types::derived::CVec_C2Tuple_usizeTransactionZZ, mut height: u32) {
577         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 }); };
578         unsafe { &*this_arg.inner }.block_connected(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap(), &local_txdata.iter().map(|(a, b)| (*a, b)).collect::<Vec<_>>()[..], height)
579 }
580
581 /// Updates channel state based on a disconnected block.
582 ///
583 /// If necessary, the channel may be force-closed without letting the counterparty participate
584 /// in the shutdown.
585 #[no_mangle]
586 pub extern "C" fn ChannelManager_block_disconnected(this_arg: &ChannelManager, header: *const [u8; 80]) {
587         unsafe { &*this_arg.inner }.block_disconnected(&::bitcoin::consensus::encode::deserialize(unsafe { &*header }).unwrap())
588 }
589
590 #[no_mangle]
591 pub extern "C" fn ChannelManager_as_ChannelMessageHandler(this_arg: *const ChannelManager) -> crate::ln::msgs::ChannelMessageHandler {
592         crate::ln::msgs::ChannelMessageHandler {
593                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
594                 free: None,
595                 handle_open_channel: ChannelManager_ChannelMessageHandler_handle_open_channel,
596                 handle_accept_channel: ChannelManager_ChannelMessageHandler_handle_accept_channel,
597                 handle_funding_created: ChannelManager_ChannelMessageHandler_handle_funding_created,
598                 handle_funding_signed: ChannelManager_ChannelMessageHandler_handle_funding_signed,
599                 handle_funding_locked: ChannelManager_ChannelMessageHandler_handle_funding_locked,
600                 handle_shutdown: ChannelManager_ChannelMessageHandler_handle_shutdown,
601                 handle_closing_signed: ChannelManager_ChannelMessageHandler_handle_closing_signed,
602                 handle_update_add_htlc: ChannelManager_ChannelMessageHandler_handle_update_add_htlc,
603                 handle_update_fulfill_htlc: ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc,
604                 handle_update_fail_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_htlc,
605                 handle_update_fail_malformed_htlc: ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc,
606                 handle_commitment_signed: ChannelManager_ChannelMessageHandler_handle_commitment_signed,
607                 handle_revoke_and_ack: ChannelManager_ChannelMessageHandler_handle_revoke_and_ack,
608                 handle_update_fee: ChannelManager_ChannelMessageHandler_handle_update_fee,
609                 handle_announcement_signatures: ChannelManager_ChannelMessageHandler_handle_announcement_signatures,
610                 peer_disconnected: ChannelManager_ChannelMessageHandler_peer_disconnected,
611                 peer_connected: ChannelManager_ChannelMessageHandler_peer_connected,
612                 handle_channel_reestablish: ChannelManager_ChannelMessageHandler_handle_channel_reestablish,
613                 handle_error: ChannelManager_ChannelMessageHandler_handle_error,
614                 MessageSendEventsProvider: crate::util::events::MessageSendEventsProvider {
615                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
616                         free: None,
617                         get_and_clear_pending_msg_events: ChannelManager_ChannelMessageHandler_get_and_clear_pending_msg_events,
618                 },
619         }
620 }
621 use lightning::ln::msgs::ChannelMessageHandler as ChannelMessageHandlerTraitImport;
622 extern "C" fn ChannelManager_ChannelMessageHandler_handle_open_channel(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, mut their_features: crate::ln::features::InitFeatures, msg: &crate::ln::msgs::OpenChannel) {
623         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_open_channel(&counterparty_node_id.into_rust(), *unsafe { Box::from_raw(their_features.take_ptr()) }, unsafe { &*msg.inner })
624 }
625 extern "C" fn ChannelManager_ChannelMessageHandler_handle_accept_channel(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, mut their_features: crate::ln::features::InitFeatures, msg: &crate::ln::msgs::AcceptChannel) {
626         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_accept_channel(&counterparty_node_id.into_rust(), *unsafe { Box::from_raw(their_features.take_ptr()) }, unsafe { &*msg.inner })
627 }
628 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_created(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::FundingCreated) {
629         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_funding_created(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
630 }
631 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::FundingSigned) {
632         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_funding_signed(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
633 }
634 extern "C" fn ChannelManager_ChannelMessageHandler_handle_funding_locked(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::FundingLocked) {
635         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_funding_locked(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
636 }
637 extern "C" fn ChannelManager_ChannelMessageHandler_handle_shutdown(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::Shutdown) {
638         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_shutdown(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
639 }
640 extern "C" fn ChannelManager_ChannelMessageHandler_handle_closing_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::ClosingSigned) {
641         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_closing_signed(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
642 }
643 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_add_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateAddHTLC) {
644         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_update_add_htlc(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
645 }
646 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fulfill_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateFulfillHTLC) {
647         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_update_fulfill_htlc(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
648 }
649 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fail_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateFailHTLC) {
650         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_update_fail_htlc(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
651 }
652 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fail_malformed_htlc(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateFailMalformedHTLC) {
653         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_update_fail_malformed_htlc(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
654 }
655 extern "C" fn ChannelManager_ChannelMessageHandler_handle_commitment_signed(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::CommitmentSigned) {
656         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_commitment_signed(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
657 }
658 extern "C" fn ChannelManager_ChannelMessageHandler_handle_revoke_and_ack(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::RevokeAndACK) {
659         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_revoke_and_ack(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
660 }
661 extern "C" fn ChannelManager_ChannelMessageHandler_handle_update_fee(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::UpdateFee) {
662         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_update_fee(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
663 }
664 extern "C" fn ChannelManager_ChannelMessageHandler_handle_announcement_signatures(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::AnnouncementSignatures) {
665         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_announcement_signatures(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
666 }
667 extern "C" fn ChannelManager_ChannelMessageHandler_handle_channel_reestablish(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::ChannelReestablish) {
668         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_channel_reestablish(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
669 }
670 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) {
671         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.peer_disconnected(&counterparty_node_id.into_rust(), no_connection_possible)
672 }
673 extern "C" fn ChannelManager_ChannelMessageHandler_peer_connected(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, init_msg: &crate::ln::msgs::Init) {
674         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.peer_connected(&counterparty_node_id.into_rust(), unsafe { &*init_msg.inner })
675 }
676 extern "C" fn ChannelManager_ChannelMessageHandler_handle_error(this_arg: *const c_void, mut counterparty_node_id: crate::c_types::PublicKey, msg: &crate::ln::msgs::ErrorMessage) {
677         unsafe { &mut *(this_arg as *mut nativeChannelManager) }.handle_error(&counterparty_node_id.into_rust(), unsafe { &*msg.inner })
678 }
679 use lightning::util::events::MessageSendEventsProvider as nativeMessageSendEventsProviderTrait;
680 #[must_use]
681 extern "C" fn ChannelManager_ChannelMessageHandler_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
682         let mut ret = unsafe { &mut *(this_arg as *mut nativeChannelManager) }.get_and_clear_pending_msg_events();
683         let mut local_ret = Vec::new(); for item in ret.drain(..) { local_ret.push( { crate::util::events::MessageSendEvent::native_into(item) }); };
684         local_ret.into()
685 }
686
687
688 use lightning::ln::channelmanager::ChannelManagerReadArgs as nativeChannelManagerReadArgsImport;
689 type nativeChannelManagerReadArgs = nativeChannelManagerReadArgsImport<'static, crate::chain::keysinterface::ChannelKeys, crate::chain::Watch, crate::chain::chaininterface::BroadcasterInterface, crate::chain::keysinterface::KeysInterface, crate::chain::chaininterface::FeeEstimator, crate::util::logger::Logger>;
690
691 /// Arguments for the creation of a ChannelManager that are not deserialized.
692 ///
693 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
694 /// is:
695 /// 1) Deserialize all stored ChannelMonitors.
696 /// 2) Deserialize the ChannelManager by filling in this struct and calling <(Sha256dHash,
697 ///    ChannelManager)>::read(reader, args).
698 ///    This may result in closing some Channels if the ChannelMonitor is newer than the stored
699 ///    ChannelManager state to ensure no loss of funds. Thus, transactions may be broadcasted.
700 /// 3) Register all relevant ChannelMonitor outpoints with your chain watch mechanism using
701 ///    ChannelMonitor::get_outputs_to_watch() and ChannelMonitor::get_funding_txo().
702 /// 4) Reconnect blocks on your ChannelMonitors.
703 /// 5) Move the ChannelMonitors into your local chain::Watch.
704 /// 6) Disconnect/connect blocks on the ChannelManager.
705 #[must_use]
706 #[repr(C)]
707 pub struct ChannelManagerReadArgs {
708         /// Nearly everywhere, inner must be non-null, however in places where
709         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
710         pub inner: *mut nativeChannelManagerReadArgs,
711         pub is_owned: bool,
712 }
713
714 impl Drop for ChannelManagerReadArgs {
715         fn drop(&mut self) {
716                 if self.is_owned && !self.inner.is_null() {
717                         let _ = unsafe { Box::from_raw(self.inner) };
718                 }
719         }
720 }
721 #[no_mangle]
722 pub extern "C" fn ChannelManagerReadArgs_free(this_ptr: ChannelManagerReadArgs) { }
723 #[allow(unused)]
724 /// Used only if an object of this type is returned as a trait impl by a method
725 extern "C" fn ChannelManagerReadArgs_free_void(this_ptr: *mut c_void) {
726         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelManagerReadArgs); }
727 }
728 #[allow(unused)]
729 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
730 impl ChannelManagerReadArgs {
731         pub(crate) fn take_ptr(mut self) -> *mut nativeChannelManagerReadArgs {
732                 assert!(self.is_owned);
733                 let ret = self.inner;
734                 self.inner = std::ptr::null_mut();
735                 ret
736         }
737 }
738 /// The keys provider which will give us relevant keys. Some keys will be loaded during
739 /// deserialization.
740 #[no_mangle]
741 pub extern "C" fn ChannelManagerReadArgs_get_keys_manager(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::keysinterface::KeysInterface {
742         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.keys_manager;
743         &(*inner_val)
744 }
745 /// The keys provider which will give us relevant keys. Some keys will be loaded during
746 /// deserialization.
747 #[no_mangle]
748 pub extern "C" fn ChannelManagerReadArgs_set_keys_manager(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::keysinterface::KeysInterface) {
749         unsafe { &mut *this_ptr.inner }.keys_manager = val;
750 }
751 /// The fee_estimator for use in the ChannelManager in the future.
752 ///
753 /// No calls to the FeeEstimator will be made during deserialization.
754 #[no_mangle]
755 pub extern "C" fn ChannelManagerReadArgs_get_fee_estimator(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::chaininterface::FeeEstimator {
756         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fee_estimator;
757         &(*inner_val)
758 }
759 /// The fee_estimator for use in the ChannelManager in the future.
760 ///
761 /// No calls to the FeeEstimator will be made during deserialization.
762 #[no_mangle]
763 pub extern "C" fn ChannelManagerReadArgs_set_fee_estimator(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::chaininterface::FeeEstimator) {
764         unsafe { &mut *this_ptr.inner }.fee_estimator = val;
765 }
766 /// The chain::Watch for use in the ChannelManager in the future.
767 ///
768 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
769 /// you have deserialized ChannelMonitors separately and will add them to your
770 /// chain::Watch after deserializing this ChannelManager.
771 #[no_mangle]
772 pub extern "C" fn ChannelManagerReadArgs_get_chain_monitor(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::Watch {
773         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chain_monitor;
774         &(*inner_val)
775 }
776 /// The chain::Watch for use in the ChannelManager in the future.
777 ///
778 /// No calls to the chain::Watch will be made during deserialization. It is assumed that
779 /// you have deserialized ChannelMonitors separately and will add them to your
780 /// chain::Watch after deserializing this ChannelManager.
781 #[no_mangle]
782 pub extern "C" fn ChannelManagerReadArgs_set_chain_monitor(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::Watch) {
783         unsafe { &mut *this_ptr.inner }.chain_monitor = val;
784 }
785 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
786 /// used to broadcast the latest local commitment transactions of channels which must be
787 /// force-closed during deserialization.
788 #[no_mangle]
789 pub extern "C" fn ChannelManagerReadArgs_get_tx_broadcaster(this_ptr: &ChannelManagerReadArgs) -> *const crate::chain::chaininterface::BroadcasterInterface {
790         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.tx_broadcaster;
791         &(*inner_val)
792 }
793 /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
794 /// used to broadcast the latest local commitment transactions of channels which must be
795 /// force-closed during deserialization.
796 #[no_mangle]
797 pub extern "C" fn ChannelManagerReadArgs_set_tx_broadcaster(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::chain::chaininterface::BroadcasterInterface) {
798         unsafe { &mut *this_ptr.inner }.tx_broadcaster = val;
799 }
800 /// The Logger for use in the ChannelManager and which may be used to log information during
801 /// deserialization.
802 #[no_mangle]
803 pub extern "C" fn ChannelManagerReadArgs_get_logger(this_ptr: &ChannelManagerReadArgs) -> *const crate::util::logger::Logger {
804         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.logger;
805         &(*inner_val)
806 }
807 /// The Logger for use in the ChannelManager and which may be used to log information during
808 /// deserialization.
809 #[no_mangle]
810 pub extern "C" fn ChannelManagerReadArgs_set_logger(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::util::logger::Logger) {
811         unsafe { &mut *this_ptr.inner }.logger = val;
812 }
813 /// Default settings used for new channels. Any existing channels will continue to use the
814 /// runtime settings which were stored when the ChannelManager was serialized.
815 #[no_mangle]
816 pub extern "C" fn ChannelManagerReadArgs_get_default_config(this_ptr: &ChannelManagerReadArgs) -> crate::util::config::UserConfig {
817         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.default_config;
818         crate::util::config::UserConfig { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
819 }
820 /// Default settings used for new channels. Any existing channels will continue to use the
821 /// runtime settings which were stored when the ChannelManager was serialized.
822 #[no_mangle]
823 pub extern "C" fn ChannelManagerReadArgs_set_default_config(this_ptr: &mut ChannelManagerReadArgs, mut val: crate::util::config::UserConfig) {
824         unsafe { &mut *this_ptr.inner }.default_config = *unsafe { Box::from_raw(val.take_ptr()) };
825 }
826 /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
827 /// HashMap for you. This is primarily useful for C bindings where it is not practical to
828 /// populate a HashMap directly from C.
829 #[must_use]
830 #[no_mangle]
831 pub extern "C" fn ChannelManagerReadArgs_new(mut keys_manager: crate::chain::keysinterface::KeysInterface, mut fee_estimator: crate::chain::chaininterface::FeeEstimator, mut chain_monitor: crate::chain::Watch, mut tx_broadcaster: crate::chain::chaininterface::BroadcasterInterface, mut logger: crate::util::logger::Logger, mut default_config: crate::util::config::UserConfig, mut channel_monitors: crate::c_types::derived::CVec_ChannelMonitorZ) -> ChannelManagerReadArgs {
832         let mut local_channel_monitors = Vec::new(); for mut item in channel_monitors.into_rust().drain(..) { local_channel_monitors.push( { unsafe { &mut *item.inner } }); };
833         let mut ret = lightning::ln::channelmanager::ChannelManagerReadArgs::new(keys_manager, fee_estimator, chain_monitor, tx_broadcaster, logger, *unsafe { Box::from_raw(default_config.take_ptr()) }, local_channel_monitors);
834         ChannelManagerReadArgs { inner: Box::into_raw(Box::new(ret)), is_owned: true }
835 }
836