6b67812cd32f26a0f82b5afc6a85bfb056c717b5
[ldk-c-bindings] / lightning-c-bindings / src / lightning / routing / gossip.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 network map tracking logic lives here.
10
11 use alloc::str::FromStr;
12 use core::ffi::c_void;
13 use core::convert::Infallible;
14 use bitcoin::hashes::Hash;
15 use crate::c_types::*;
16 #[cfg(feature="no-std")]
17 use alloc::{vec::Vec, boxed::Box};
18
19
20 use lightning::routing::gossip::NodeId as nativeNodeIdImport;
21 pub(crate) type nativeNodeId = nativeNodeIdImport;
22
23 /// Represents the compressed public key of a node
24 #[must_use]
25 #[repr(C)]
26 pub struct NodeId {
27         /// A pointer to the opaque Rust object.
28
29         /// Nearly everywhere, inner must be non-null, however in places where
30         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
31         pub inner: *mut nativeNodeId,
32         /// Indicates that this is the only struct which contains the same pointer.
33
34         /// Rust functions which take ownership of an object provided via an argument require
35         /// this to be true and invalidate the object pointed to by inner.
36         pub is_owned: bool,
37 }
38
39 impl Drop for NodeId {
40         fn drop(&mut self) {
41                 if self.is_owned && !<*mut nativeNodeId>::is_null(self.inner) {
42                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
43                 }
44         }
45 }
46 /// Frees any resources used by the NodeId, if is_owned is set and inner is non-NULL.
47 #[no_mangle]
48 pub extern "C" fn NodeId_free(this_obj: NodeId) { }
49 #[allow(unused)]
50 /// Used only if an object of this type is returned as a trait impl by a method
51 pub(crate) extern "C" fn NodeId_free_void(this_ptr: *mut c_void) {
52         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNodeId); }
53 }
54 #[allow(unused)]
55 impl NodeId {
56         pub(crate) fn get_native_ref(&self) -> &'static nativeNodeId {
57                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
58         }
59         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeNodeId {
60                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
61         }
62         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
63         pub(crate) fn take_inner(mut self) -> *mut nativeNodeId {
64                 assert!(self.is_owned);
65                 let ret = ObjOps::untweak_ptr(self.inner);
66                 self.inner = core::ptr::null_mut();
67                 ret
68         }
69 }
70 impl Clone for NodeId {
71         fn clone(&self) -> Self {
72                 Self {
73                         inner: if <*mut nativeNodeId>::is_null(self.inner) { core::ptr::null_mut() } else {
74                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
75                         is_owned: true,
76                 }
77         }
78 }
79 #[allow(unused)]
80 /// Used only if an object of this type is returned as a trait impl by a method
81 pub(crate) extern "C" fn NodeId_clone_void(this_ptr: *const c_void) -> *mut c_void {
82         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeNodeId)).clone() })) as *mut c_void
83 }
84 #[no_mangle]
85 /// Creates a copy of the NodeId
86 pub extern "C" fn NodeId_clone(orig: &NodeId) -> NodeId {
87         orig.clone()
88 }
89 /// Create a new NodeId from a public key
90 #[must_use]
91 #[no_mangle]
92 pub extern "C" fn NodeId_from_pubkey(mut pubkey: crate::c_types::PublicKey) -> crate::lightning::routing::gossip::NodeId {
93         let mut ret = lightning::routing::gossip::NodeId::from_pubkey(&pubkey.into_rust());
94         crate::lightning::routing::gossip::NodeId { inner: ObjOps::heap_alloc(ret), is_owned: true }
95 }
96
97 /// Get the public key slice from this NodeId
98 #[must_use]
99 #[no_mangle]
100 pub extern "C" fn NodeId_as_slice(this_arg: &crate::lightning::routing::gossip::NodeId) -> crate::c_types::u8slice {
101         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.as_slice();
102         let mut local_ret = crate::c_types::u8slice::from_slice(ret);
103         local_ret
104 }
105
106 /// Checks if two NodeIds contain equal inner contents.
107 #[no_mangle]
108 pub extern "C" fn NodeId_hash(o: &NodeId) -> u64 {
109         if o.inner.is_null() { return 0; }
110         // Note that we'd love to use alloc::collections::hash_map::DefaultHasher but it's not in core
111         #[allow(deprecated)]
112         let mut hasher = core::hash::SipHasher::new();
113         core::hash::Hash::hash(o.get_native_ref(), &mut hasher);
114         core::hash::Hasher::finish(&hasher)
115 }
116 #[no_mangle]
117 /// Serialize the NodeId object into a byte array which can be read by NodeId_read
118 pub extern "C" fn NodeId_write(obj: &crate::lightning::routing::gossip::NodeId) -> crate::c_types::derived::CVec_u8Z {
119         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
120 }
121 #[no_mangle]
122 pub(crate) extern "C" fn NodeId_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
123         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNodeId) })
124 }
125 #[no_mangle]
126 /// Read a NodeId from a byte array, created by NodeId_write
127 pub extern "C" fn NodeId_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_NodeIdDecodeErrorZ {
128         let res: Result<lightning::routing::gossip::NodeId, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
129         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::routing::gossip::NodeId { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
130         local_res
131 }
132
133 use lightning::routing::gossip::NetworkGraph as nativeNetworkGraphImport;
134 pub(crate) type nativeNetworkGraph = nativeNetworkGraphImport<crate::lightning::util::logger::Logger>;
135
136 /// Represents the network as nodes and channels between them
137 #[must_use]
138 #[repr(C)]
139 pub struct NetworkGraph {
140         /// A pointer to the opaque Rust object.
141
142         /// Nearly everywhere, inner must be non-null, however in places where
143         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
144         pub inner: *mut nativeNetworkGraph,
145         /// Indicates that this is the only struct which contains the same pointer.
146
147         /// Rust functions which take ownership of an object provided via an argument require
148         /// this to be true and invalidate the object pointed to by inner.
149         pub is_owned: bool,
150 }
151
152 impl Drop for NetworkGraph {
153         fn drop(&mut self) {
154                 if self.is_owned && !<*mut nativeNetworkGraph>::is_null(self.inner) {
155                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
156                 }
157         }
158 }
159 /// Frees any resources used by the NetworkGraph, if is_owned is set and inner is non-NULL.
160 #[no_mangle]
161 pub extern "C" fn NetworkGraph_free(this_obj: NetworkGraph) { }
162 #[allow(unused)]
163 /// Used only if an object of this type is returned as a trait impl by a method
164 pub(crate) extern "C" fn NetworkGraph_free_void(this_ptr: *mut c_void) {
165         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNetworkGraph); }
166 }
167 #[allow(unused)]
168 impl NetworkGraph {
169         pub(crate) fn get_native_ref(&self) -> &'static nativeNetworkGraph {
170                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
171         }
172         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeNetworkGraph {
173                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
174         }
175         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
176         pub(crate) fn take_inner(mut self) -> *mut nativeNetworkGraph {
177                 assert!(self.is_owned);
178                 let ret = ObjOps::untweak_ptr(self.inner);
179                 self.inner = core::ptr::null_mut();
180                 ret
181         }
182 }
183
184 use lightning::routing::gossip::ReadOnlyNetworkGraph as nativeReadOnlyNetworkGraphImport;
185 pub(crate) type nativeReadOnlyNetworkGraph = nativeReadOnlyNetworkGraphImport<'static>;
186
187 /// A read-only view of [`NetworkGraph`].
188 #[must_use]
189 #[repr(C)]
190 pub struct ReadOnlyNetworkGraph {
191         /// A pointer to the opaque Rust object.
192
193         /// Nearly everywhere, inner must be non-null, however in places where
194         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
195         pub inner: *mut nativeReadOnlyNetworkGraph,
196         /// Indicates that this is the only struct which contains the same pointer.
197
198         /// Rust functions which take ownership of an object provided via an argument require
199         /// this to be true and invalidate the object pointed to by inner.
200         pub is_owned: bool,
201 }
202
203 impl Drop for ReadOnlyNetworkGraph {
204         fn drop(&mut self) {
205                 if self.is_owned && !<*mut nativeReadOnlyNetworkGraph>::is_null(self.inner) {
206                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
207                 }
208         }
209 }
210 /// Frees any resources used by the ReadOnlyNetworkGraph, if is_owned is set and inner is non-NULL.
211 #[no_mangle]
212 pub extern "C" fn ReadOnlyNetworkGraph_free(this_obj: ReadOnlyNetworkGraph) { }
213 #[allow(unused)]
214 /// Used only if an object of this type is returned as a trait impl by a method
215 pub(crate) extern "C" fn ReadOnlyNetworkGraph_free_void(this_ptr: *mut c_void) {
216         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeReadOnlyNetworkGraph); }
217 }
218 #[allow(unused)]
219 impl ReadOnlyNetworkGraph {
220         pub(crate) fn get_native_ref(&self) -> &'static nativeReadOnlyNetworkGraph {
221                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
222         }
223         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeReadOnlyNetworkGraph {
224                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
225         }
226         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
227         pub(crate) fn take_inner(mut self) -> *mut nativeReadOnlyNetworkGraph {
228                 assert!(self.is_owned);
229                 let ret = ObjOps::untweak_ptr(self.inner);
230                 self.inner = core::ptr::null_mut();
231                 ret
232         }
233 }
234 /// Update to the [`NetworkGraph`] based on payment failure information conveyed via the Onion
235 /// return packet by a node along the route. See [BOLT #4] for details.
236 ///
237 /// [BOLT #4]: https://github.com/lightning/bolts/blob/master/04-onion-routing.md
238 #[derive(Clone)]
239 #[must_use]
240 #[repr(C)]
241 pub enum NetworkUpdate {
242         /// An error indicating a `channel_update` messages should be applied via
243         /// [`NetworkGraph::update_channel`].
244         ChannelUpdateMessage {
245                 /// The update to apply via [`NetworkGraph::update_channel`].
246                 msg: crate::lightning::ln::msgs::ChannelUpdate,
247         },
248         /// An error indicating that a channel failed to route a payment, which should be applied via
249         /// [`NetworkGraph::channel_failed`].
250         ChannelFailure {
251                 /// The short channel id of the closed channel.
252                 short_channel_id: u64,
253                 /// Whether the channel should be permanently removed or temporarily disabled until a new
254                 /// `channel_update` message is received.
255                 is_permanent: bool,
256         },
257         /// An error indicating that a node failed to route a payment, which should be applied via
258         /// [`NetworkGraph::node_failed`].
259         NodeFailure {
260                 /// The node id of the failed node.
261                 node_id: crate::c_types::PublicKey,
262                 /// Whether the node should be permanently removed from consideration or can be restored
263                 /// when a new `channel_update` message is received.
264                 is_permanent: bool,
265         },
266 }
267 use lightning::routing::gossip::NetworkUpdate as NetworkUpdateImport;
268 pub(crate) type nativeNetworkUpdate = NetworkUpdateImport;
269
270 impl NetworkUpdate {
271         #[allow(unused)]
272         pub(crate) fn to_native(&self) -> nativeNetworkUpdate {
273                 match self {
274                         NetworkUpdate::ChannelUpdateMessage {ref msg, } => {
275                                 let mut msg_nonref = (*msg).clone();
276                                 nativeNetworkUpdate::ChannelUpdateMessage {
277                                         msg: *unsafe { Box::from_raw(msg_nonref.take_inner()) },
278                                 }
279                         },
280                         NetworkUpdate::ChannelFailure {ref short_channel_id, ref is_permanent, } => {
281                                 let mut short_channel_id_nonref = (*short_channel_id).clone();
282                                 let mut is_permanent_nonref = (*is_permanent).clone();
283                                 nativeNetworkUpdate::ChannelFailure {
284                                         short_channel_id: short_channel_id_nonref,
285                                         is_permanent: is_permanent_nonref,
286                                 }
287                         },
288                         NetworkUpdate::NodeFailure {ref node_id, ref is_permanent, } => {
289                                 let mut node_id_nonref = (*node_id).clone();
290                                 let mut is_permanent_nonref = (*is_permanent).clone();
291                                 nativeNetworkUpdate::NodeFailure {
292                                         node_id: node_id_nonref.into_rust(),
293                                         is_permanent: is_permanent_nonref,
294                                 }
295                         },
296                 }
297         }
298         #[allow(unused)]
299         pub(crate) fn into_native(self) -> nativeNetworkUpdate {
300                 match self {
301                         NetworkUpdate::ChannelUpdateMessage {mut msg, } => {
302                                 nativeNetworkUpdate::ChannelUpdateMessage {
303                                         msg: *unsafe { Box::from_raw(msg.take_inner()) },
304                                 }
305                         },
306                         NetworkUpdate::ChannelFailure {mut short_channel_id, mut is_permanent, } => {
307                                 nativeNetworkUpdate::ChannelFailure {
308                                         short_channel_id: short_channel_id,
309                                         is_permanent: is_permanent,
310                                 }
311                         },
312                         NetworkUpdate::NodeFailure {mut node_id, mut is_permanent, } => {
313                                 nativeNetworkUpdate::NodeFailure {
314                                         node_id: node_id.into_rust(),
315                                         is_permanent: is_permanent,
316                                 }
317                         },
318                 }
319         }
320         #[allow(unused)]
321         pub(crate) fn from_native(native: &nativeNetworkUpdate) -> Self {
322                 match native {
323                         nativeNetworkUpdate::ChannelUpdateMessage {ref msg, } => {
324                                 let mut msg_nonref = (*msg).clone();
325                                 NetworkUpdate::ChannelUpdateMessage {
326                                         msg: crate::lightning::ln::msgs::ChannelUpdate { inner: ObjOps::heap_alloc(msg_nonref), is_owned: true },
327                                 }
328                         },
329                         nativeNetworkUpdate::ChannelFailure {ref short_channel_id, ref is_permanent, } => {
330                                 let mut short_channel_id_nonref = (*short_channel_id).clone();
331                                 let mut is_permanent_nonref = (*is_permanent).clone();
332                                 NetworkUpdate::ChannelFailure {
333                                         short_channel_id: short_channel_id_nonref,
334                                         is_permanent: is_permanent_nonref,
335                                 }
336                         },
337                         nativeNetworkUpdate::NodeFailure {ref node_id, ref is_permanent, } => {
338                                 let mut node_id_nonref = (*node_id).clone();
339                                 let mut is_permanent_nonref = (*is_permanent).clone();
340                                 NetworkUpdate::NodeFailure {
341                                         node_id: crate::c_types::PublicKey::from_rust(&node_id_nonref),
342                                         is_permanent: is_permanent_nonref,
343                                 }
344                         },
345                 }
346         }
347         #[allow(unused)]
348         pub(crate) fn native_into(native: nativeNetworkUpdate) -> Self {
349                 match native {
350                         nativeNetworkUpdate::ChannelUpdateMessage {mut msg, } => {
351                                 NetworkUpdate::ChannelUpdateMessage {
352                                         msg: crate::lightning::ln::msgs::ChannelUpdate { inner: ObjOps::heap_alloc(msg), is_owned: true },
353                                 }
354                         },
355                         nativeNetworkUpdate::ChannelFailure {mut short_channel_id, mut is_permanent, } => {
356                                 NetworkUpdate::ChannelFailure {
357                                         short_channel_id: short_channel_id,
358                                         is_permanent: is_permanent,
359                                 }
360                         },
361                         nativeNetworkUpdate::NodeFailure {mut node_id, mut is_permanent, } => {
362                                 NetworkUpdate::NodeFailure {
363                                         node_id: crate::c_types::PublicKey::from_rust(&node_id),
364                                         is_permanent: is_permanent,
365                                 }
366                         },
367                 }
368         }
369 }
370 /// Frees any resources used by the NetworkUpdate
371 #[no_mangle]
372 pub extern "C" fn NetworkUpdate_free(this_ptr: NetworkUpdate) { }
373 /// Creates a copy of the NetworkUpdate
374 #[no_mangle]
375 pub extern "C" fn NetworkUpdate_clone(orig: &NetworkUpdate) -> NetworkUpdate {
376         orig.clone()
377 }
378 #[no_mangle]
379 /// Utility method to constructs a new ChannelUpdateMessage-variant NetworkUpdate
380 pub extern "C" fn NetworkUpdate_channel_update_message(msg: crate::lightning::ln::msgs::ChannelUpdate) -> NetworkUpdate {
381         NetworkUpdate::ChannelUpdateMessage {
382                 msg,
383         }
384 }
385 #[no_mangle]
386 /// Utility method to constructs a new ChannelFailure-variant NetworkUpdate
387 pub extern "C" fn NetworkUpdate_channel_failure(short_channel_id: u64, is_permanent: bool) -> NetworkUpdate {
388         NetworkUpdate::ChannelFailure {
389                 short_channel_id,
390                 is_permanent,
391         }
392 }
393 #[no_mangle]
394 /// Utility method to constructs a new NodeFailure-variant NetworkUpdate
395 pub extern "C" fn NetworkUpdate_node_failure(node_id: crate::c_types::PublicKey, is_permanent: bool) -> NetworkUpdate {
396         NetworkUpdate::NodeFailure {
397                 node_id,
398                 is_permanent,
399         }
400 }
401 #[no_mangle]
402 /// Serialize the NetworkUpdate object into a byte array which can be read by NetworkUpdate_read
403 pub extern "C" fn NetworkUpdate_write(obj: &crate::lightning::routing::gossip::NetworkUpdate) -> crate::c_types::derived::CVec_u8Z {
404         crate::c_types::serialize_obj(&unsafe { &*obj }.to_native())
405 }
406 #[no_mangle]
407 /// Read a NetworkUpdate from a byte array, created by NetworkUpdate_write
408 pub extern "C" fn NetworkUpdate_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_COption_NetworkUpdateZDecodeErrorZ {
409         let res: Result<Option<lightning::routing::gossip::NetworkUpdate>, lightning::ln::msgs::DecodeError> = crate::c_types::maybe_deserialize_obj(ser);
410         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_res_0 = if o.is_none() { crate::c_types::derived::COption_NetworkUpdateZ::None } else { crate::c_types::derived::COption_NetworkUpdateZ::Some( { crate::lightning::routing::gossip::NetworkUpdate::native_into(o.unwrap()) }) }; local_res_0 }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
411         local_res
412 }
413
414 use lightning::routing::gossip::P2PGossipSync as nativeP2PGossipSyncImport;
415 pub(crate) type nativeP2PGossipSync = nativeP2PGossipSyncImport<&'static lightning::routing::gossip::NetworkGraph<crate::lightning::util::logger::Logger>, crate::lightning::chain::Access, crate::lightning::util::logger::Logger>;
416
417 /// Receives and validates network updates from peers,
418 /// stores authentic and relevant data as a network graph.
419 /// This network graph is then used for routing payments.
420 /// Provides interface to help with initial routing sync by
421 /// serving historical announcements.
422 ///
423 /// Serves as an [`EventHandler`] for applying updates from [`Event::PaymentPathFailed`] to the
424 /// [`NetworkGraph`].
425 #[must_use]
426 #[repr(C)]
427 pub struct P2PGossipSync {
428         /// A pointer to the opaque Rust object.
429
430         /// Nearly everywhere, inner must be non-null, however in places where
431         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
432         pub inner: *mut nativeP2PGossipSync,
433         /// Indicates that this is the only struct which contains the same pointer.
434
435         /// Rust functions which take ownership of an object provided via an argument require
436         /// this to be true and invalidate the object pointed to by inner.
437         pub is_owned: bool,
438 }
439
440 impl Drop for P2PGossipSync {
441         fn drop(&mut self) {
442                 if self.is_owned && !<*mut nativeP2PGossipSync>::is_null(self.inner) {
443                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
444                 }
445         }
446 }
447 /// Frees any resources used by the P2PGossipSync, if is_owned is set and inner is non-NULL.
448 #[no_mangle]
449 pub extern "C" fn P2PGossipSync_free(this_obj: P2PGossipSync) { }
450 #[allow(unused)]
451 /// Used only if an object of this type is returned as a trait impl by a method
452 pub(crate) extern "C" fn P2PGossipSync_free_void(this_ptr: *mut c_void) {
453         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeP2PGossipSync); }
454 }
455 #[allow(unused)]
456 impl P2PGossipSync {
457         pub(crate) fn get_native_ref(&self) -> &'static nativeP2PGossipSync {
458                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
459         }
460         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeP2PGossipSync {
461                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
462         }
463         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
464         pub(crate) fn take_inner(mut self) -> *mut nativeP2PGossipSync {
465                 assert!(self.is_owned);
466                 let ret = ObjOps::untweak_ptr(self.inner);
467                 self.inner = core::ptr::null_mut();
468                 ret
469         }
470 }
471 /// Creates a new tracker of the actual state of the network of channels and nodes,
472 /// assuming an existing Network Graph.
473 /// Chain monitor is used to make sure announced channels exist on-chain,
474 /// channel data is correct, and that the announcement is signed with
475 /// channel owners' keys.
476 #[must_use]
477 #[no_mangle]
478 pub extern "C" fn P2PGossipSync_new(network_graph: &crate::lightning::routing::gossip::NetworkGraph, mut chain_access: crate::c_types::derived::COption_AccessZ, mut logger: crate::lightning::util::logger::Logger) -> crate::lightning::routing::gossip::P2PGossipSync {
479         let mut local_chain_access = { /* chain_access*/ let chain_access_opt = chain_access; { } if chain_access_opt.is_none() { None } else { Some({ chain_access_opt.take() }) } };
480         let mut ret = lightning::routing::gossip::P2PGossipSync::new(network_graph.get_native_ref(), local_chain_access, logger);
481         crate::lightning::routing::gossip::P2PGossipSync { inner: ObjOps::heap_alloc(ret), is_owned: true }
482 }
483
484 /// Adds a provider used to check new announcements. Does not affect
485 /// existing announcements unless they are updated.
486 /// Add, update or remove the provider would replace the current one.
487 #[no_mangle]
488 pub extern "C" fn P2PGossipSync_add_chain_access(this_arg: &mut crate::lightning::routing::gossip::P2PGossipSync, mut chain_access: crate::c_types::derived::COption_AccessZ) {
489         let mut local_chain_access = { /* chain_access*/ let chain_access_opt = chain_access; { } if chain_access_opt.is_none() { None } else { Some({ chain_access_opt.take() }) } };
490         unsafe { &mut (*ObjOps::untweak_ptr(this_arg.inner as *mut crate::lightning::routing::gossip::nativeP2PGossipSync)) }.add_chain_access(local_chain_access)
491 }
492
493 impl From<nativeNetworkGraph> for crate::lightning::util::events::EventHandler {
494         fn from(obj: nativeNetworkGraph) -> Self {
495                 let mut rust_obj = NetworkGraph { inner: ObjOps::heap_alloc(obj), is_owned: true };
496                 let mut ret = NetworkGraph_as_EventHandler(&rust_obj);
497                 // 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
498                 rust_obj.inner = core::ptr::null_mut();
499                 ret.free = Some(NetworkGraph_free_void);
500                 ret
501         }
502 }
503 /// Constructs a new EventHandler which calls the relevant methods on this_arg.
504 /// This copies the `inner` pointer in this_arg and thus the returned EventHandler must be freed before this_arg is
505 #[no_mangle]
506 pub extern "C" fn NetworkGraph_as_EventHandler(this_arg: &NetworkGraph) -> crate::lightning::util::events::EventHandler {
507         crate::lightning::util::events::EventHandler {
508                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
509                 free: None,
510                 handle_event: NetworkGraph_EventHandler_handle_event,
511         }
512 }
513
514 extern "C" fn NetworkGraph_EventHandler_handle_event(this_arg: *const c_void, event: &crate::lightning::util::events::Event) {
515         <nativeNetworkGraph as lightning::util::events::EventHandler<>>::handle_event(unsafe { &mut *(this_arg as *mut nativeNetworkGraph) }, &event.to_native())
516 }
517
518 impl From<nativeP2PGossipSync> for crate::lightning::ln::msgs::RoutingMessageHandler {
519         fn from(obj: nativeP2PGossipSync) -> Self {
520                 let mut rust_obj = P2PGossipSync { inner: ObjOps::heap_alloc(obj), is_owned: true };
521                 let mut ret = P2PGossipSync_as_RoutingMessageHandler(&rust_obj);
522                 // 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
523                 rust_obj.inner = core::ptr::null_mut();
524                 ret.free = Some(P2PGossipSync_free_void);
525                 ret
526         }
527 }
528 /// Constructs a new RoutingMessageHandler which calls the relevant methods on this_arg.
529 /// This copies the `inner` pointer in this_arg and thus the returned RoutingMessageHandler must be freed before this_arg is
530 #[no_mangle]
531 pub extern "C" fn P2PGossipSync_as_RoutingMessageHandler(this_arg: &P2PGossipSync) -> crate::lightning::ln::msgs::RoutingMessageHandler {
532         crate::lightning::ln::msgs::RoutingMessageHandler {
533                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
534                 free: None,
535                 handle_node_announcement: P2PGossipSync_RoutingMessageHandler_handle_node_announcement,
536                 handle_channel_announcement: P2PGossipSync_RoutingMessageHandler_handle_channel_announcement,
537                 handle_channel_update: P2PGossipSync_RoutingMessageHandler_handle_channel_update,
538                 get_next_channel_announcements: P2PGossipSync_RoutingMessageHandler_get_next_channel_announcements,
539                 get_next_node_announcements: P2PGossipSync_RoutingMessageHandler_get_next_node_announcements,
540                 peer_connected: P2PGossipSync_RoutingMessageHandler_peer_connected,
541                 handle_reply_channel_range: P2PGossipSync_RoutingMessageHandler_handle_reply_channel_range,
542                 handle_reply_short_channel_ids_end: P2PGossipSync_RoutingMessageHandler_handle_reply_short_channel_ids_end,
543                 handle_query_channel_range: P2PGossipSync_RoutingMessageHandler_handle_query_channel_range,
544                 handle_query_short_channel_ids: P2PGossipSync_RoutingMessageHandler_handle_query_short_channel_ids,
545                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
546                         this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
547                         free: None,
548                         get_and_clear_pending_msg_events: P2PGossipSync_MessageSendEventsProvider_get_and_clear_pending_msg_events,
549                 },
550         }
551 }
552
553 #[must_use]
554 extern "C" fn P2PGossipSync_RoutingMessageHandler_handle_node_announcement(this_arg: *const c_void, msg: &crate::lightning::ln::msgs::NodeAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ {
555         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::handle_node_announcement(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, msg.get_native_ref());
556         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
557         local_ret
558 }
559 #[must_use]
560 extern "C" fn P2PGossipSync_RoutingMessageHandler_handle_channel_announcement(this_arg: *const c_void, msg: &crate::lightning::ln::msgs::ChannelAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ {
561         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::handle_channel_announcement(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, msg.get_native_ref());
562         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
563         local_ret
564 }
565 #[must_use]
566 extern "C" fn P2PGossipSync_RoutingMessageHandler_handle_channel_update(this_arg: *const c_void, msg: &crate::lightning::ln::msgs::ChannelUpdate) -> crate::c_types::derived::CResult_boolLightningErrorZ {
567         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, msg.get_native_ref());
568         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
569         local_ret
570 }
571 #[must_use]
572 extern "C" fn P2PGossipSync_RoutingMessageHandler_get_next_channel_announcements(this_arg: *const c_void, mut starting_point: u64, mut batch_amount: u8) -> crate::c_types::derived::CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ {
573         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::get_next_channel_announcements(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, starting_point, batch_amount);
574         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { let (mut orig_ret_0_0, mut orig_ret_0_1, mut orig_ret_0_2) = item; let mut local_orig_ret_0_1 = crate::lightning::ln::msgs::ChannelUpdate { inner: if orig_ret_0_1.is_none() { core::ptr::null_mut() } else {  { ObjOps::heap_alloc((orig_ret_0_1.unwrap())) } }, is_owned: true }; let mut local_orig_ret_0_2 = crate::lightning::ln::msgs::ChannelUpdate { inner: if orig_ret_0_2.is_none() { core::ptr::null_mut() } else {  { ObjOps::heap_alloc((orig_ret_0_2.unwrap())) } }, is_owned: true }; let mut local_ret_0 = (crate::lightning::ln::msgs::ChannelAnnouncement { inner: ObjOps::heap_alloc(orig_ret_0_0), is_owned: true }, local_orig_ret_0_1, local_orig_ret_0_2).into(); local_ret_0 }); };
575         local_ret.into()
576 }
577 #[must_use]
578 extern "C" fn P2PGossipSync_RoutingMessageHandler_get_next_node_announcements(this_arg: *const c_void, mut starting_point: crate::c_types::PublicKey, mut batch_amount: u8) -> crate::c_types::derived::CVec_NodeAnnouncementZ {
579         let mut local_starting_point_base = if starting_point.is_null() { None } else { Some( { starting_point.into_rust() }) }; let mut local_starting_point = local_starting_point_base.as_ref();
580         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::get_next_node_announcements(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, local_starting_point, batch_amount);
581         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::msgs::NodeAnnouncement { inner: ObjOps::heap_alloc(item), is_owned: true } }); };
582         local_ret.into()
583 }
584 extern "C" fn P2PGossipSync_RoutingMessageHandler_peer_connected(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, init_msg: &crate::lightning::ln::msgs::Init) {
585         <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, &their_node_id.into_rust(), init_msg.get_native_ref())
586 }
587 #[must_use]
588 extern "C" fn P2PGossipSync_RoutingMessageHandler_handle_reply_channel_range(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::lightning::ln::msgs::ReplyChannelRange) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
589         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::handle_reply_channel_range(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
590         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
591         local_ret
592 }
593 #[must_use]
594 extern "C" fn P2PGossipSync_RoutingMessageHandler_handle_reply_short_channel_ids_end(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::lightning::ln::msgs::ReplyShortChannelIdsEnd) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
595         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::handle_reply_short_channel_ids_end(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
596         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
597         local_ret
598 }
599 #[must_use]
600 extern "C" fn P2PGossipSync_RoutingMessageHandler_handle_query_channel_range(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, mut msg: crate::lightning::ln::msgs::QueryChannelRange) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
601         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::handle_query_channel_range(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, &their_node_id.into_rust(), *unsafe { Box::from_raw(msg.take_inner()) });
602         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
603         local_ret
604 }
605 #[must_use]
606 extern "C" fn P2PGossipSync_RoutingMessageHandler_handle_query_short_channel_ids(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::lightning::ln::msgs::QueryShortChannelIds) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
607         let mut ret = <nativeP2PGossipSync as lightning::ln::msgs::RoutingMessageHandler<>>::handle_query_short_channel_ids(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
608         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
609         local_ret
610 }
611
612 impl From<nativeP2PGossipSync> for crate::lightning::util::events::MessageSendEventsProvider {
613         fn from(obj: nativeP2PGossipSync) -> Self {
614                 let mut rust_obj = P2PGossipSync { inner: ObjOps::heap_alloc(obj), is_owned: true };
615                 let mut ret = P2PGossipSync_as_MessageSendEventsProvider(&rust_obj);
616                 // 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
617                 rust_obj.inner = core::ptr::null_mut();
618                 ret.free = Some(P2PGossipSync_free_void);
619                 ret
620         }
621 }
622 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
623 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
624 #[no_mangle]
625 pub extern "C" fn P2PGossipSync_as_MessageSendEventsProvider(this_arg: &P2PGossipSync) -> crate::lightning::util::events::MessageSendEventsProvider {
626         crate::lightning::util::events::MessageSendEventsProvider {
627                 this_arg: unsafe { ObjOps::untweak_ptr((*this_arg).inner) as *mut c_void },
628                 free: None,
629                 get_and_clear_pending_msg_events: P2PGossipSync_MessageSendEventsProvider_get_and_clear_pending_msg_events,
630         }
631 }
632
633 #[must_use]
634 extern "C" fn P2PGossipSync_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
635         let mut ret = <nativeP2PGossipSync as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeP2PGossipSync) }, );
636         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
637         local_ret.into()
638 }
639
640
641 use lightning::routing::gossip::ChannelUpdateInfo as nativeChannelUpdateInfoImport;
642 pub(crate) type nativeChannelUpdateInfo = nativeChannelUpdateInfoImport;
643
644 /// Details about one direction of a channel as received within a [`ChannelUpdate`].
645 #[must_use]
646 #[repr(C)]
647 pub struct ChannelUpdateInfo {
648         /// A pointer to the opaque Rust object.
649
650         /// Nearly everywhere, inner must be non-null, however in places where
651         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
652         pub inner: *mut nativeChannelUpdateInfo,
653         /// Indicates that this is the only struct which contains the same pointer.
654
655         /// Rust functions which take ownership of an object provided via an argument require
656         /// this to be true and invalidate the object pointed to by inner.
657         pub is_owned: bool,
658 }
659
660 impl Drop for ChannelUpdateInfo {
661         fn drop(&mut self) {
662                 if self.is_owned && !<*mut nativeChannelUpdateInfo>::is_null(self.inner) {
663                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
664                 }
665         }
666 }
667 /// Frees any resources used by the ChannelUpdateInfo, if is_owned is set and inner is non-NULL.
668 #[no_mangle]
669 pub extern "C" fn ChannelUpdateInfo_free(this_obj: ChannelUpdateInfo) { }
670 #[allow(unused)]
671 /// Used only if an object of this type is returned as a trait impl by a method
672 pub(crate) extern "C" fn ChannelUpdateInfo_free_void(this_ptr: *mut c_void) {
673         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelUpdateInfo); }
674 }
675 #[allow(unused)]
676 impl ChannelUpdateInfo {
677         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelUpdateInfo {
678                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
679         }
680         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelUpdateInfo {
681                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
682         }
683         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
684         pub(crate) fn take_inner(mut self) -> *mut nativeChannelUpdateInfo {
685                 assert!(self.is_owned);
686                 let ret = ObjOps::untweak_ptr(self.inner);
687                 self.inner = core::ptr::null_mut();
688                 ret
689         }
690 }
691 /// When the last update to the channel direction was issued.
692 /// Value is opaque, as set in the announcement.
693 #[no_mangle]
694 pub extern "C" fn ChannelUpdateInfo_get_last_update(this_ptr: &ChannelUpdateInfo) -> u32 {
695         let mut inner_val = &mut this_ptr.get_native_mut_ref().last_update;
696         *inner_val
697 }
698 /// When the last update to the channel direction was issued.
699 /// Value is opaque, as set in the announcement.
700 #[no_mangle]
701 pub extern "C" fn ChannelUpdateInfo_set_last_update(this_ptr: &mut ChannelUpdateInfo, mut val: u32) {
702         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.last_update = val;
703 }
704 /// Whether the channel can be currently used for payments (in this one direction).
705 #[no_mangle]
706 pub extern "C" fn ChannelUpdateInfo_get_enabled(this_ptr: &ChannelUpdateInfo) -> bool {
707         let mut inner_val = &mut this_ptr.get_native_mut_ref().enabled;
708         *inner_val
709 }
710 /// Whether the channel can be currently used for payments (in this one direction).
711 #[no_mangle]
712 pub extern "C" fn ChannelUpdateInfo_set_enabled(this_ptr: &mut ChannelUpdateInfo, mut val: bool) {
713         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.enabled = val;
714 }
715 /// The difference in CLTV values that you must have when routing through this channel.
716 #[no_mangle]
717 pub extern "C" fn ChannelUpdateInfo_get_cltv_expiry_delta(this_ptr: &ChannelUpdateInfo) -> u16 {
718         let mut inner_val = &mut this_ptr.get_native_mut_ref().cltv_expiry_delta;
719         *inner_val
720 }
721 /// The difference in CLTV values that you must have when routing through this channel.
722 #[no_mangle]
723 pub extern "C" fn ChannelUpdateInfo_set_cltv_expiry_delta(this_ptr: &mut ChannelUpdateInfo, mut val: u16) {
724         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.cltv_expiry_delta = val;
725 }
726 /// The minimum value, which must be relayed to the next hop via the channel
727 #[no_mangle]
728 pub extern "C" fn ChannelUpdateInfo_get_htlc_minimum_msat(this_ptr: &ChannelUpdateInfo) -> u64 {
729         let mut inner_val = &mut this_ptr.get_native_mut_ref().htlc_minimum_msat;
730         *inner_val
731 }
732 /// The minimum value, which must be relayed to the next hop via the channel
733 #[no_mangle]
734 pub extern "C" fn ChannelUpdateInfo_set_htlc_minimum_msat(this_ptr: &mut ChannelUpdateInfo, mut val: u64) {
735         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.htlc_minimum_msat = val;
736 }
737 /// The maximum value which may be relayed to the next hop via the channel.
738 #[no_mangle]
739 pub extern "C" fn ChannelUpdateInfo_get_htlc_maximum_msat(this_ptr: &ChannelUpdateInfo) -> crate::c_types::derived::COption_u64Z {
740         let mut inner_val = &mut this_ptr.get_native_mut_ref().htlc_maximum_msat;
741         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() }) };
742         local_inner_val
743 }
744 /// The maximum value which may be relayed to the next hop via the channel.
745 #[no_mangle]
746 pub extern "C" fn ChannelUpdateInfo_set_htlc_maximum_msat(this_ptr: &mut ChannelUpdateInfo, mut val: crate::c_types::derived::COption_u64Z) {
747         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
748         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.htlc_maximum_msat = local_val;
749 }
750 /// Fees charged when the channel is used for routing
751 #[no_mangle]
752 pub extern "C" fn ChannelUpdateInfo_get_fees(this_ptr: &ChannelUpdateInfo) -> crate::lightning::routing::gossip::RoutingFees {
753         let mut inner_val = &mut this_ptr.get_native_mut_ref().fees;
754         crate::lightning::routing::gossip::RoutingFees { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::routing::gossip::RoutingFees<>) as *mut _) }, is_owned: false }
755 }
756 /// Fees charged when the channel is used for routing
757 #[no_mangle]
758 pub extern "C" fn ChannelUpdateInfo_set_fees(this_ptr: &mut ChannelUpdateInfo, mut val: crate::lightning::routing::gossip::RoutingFees) {
759         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.fees = *unsafe { Box::from_raw(val.take_inner()) };
760 }
761 /// Most recent update for the channel received from the network
762 /// Mostly redundant with the data we store in fields explicitly.
763 /// Everything else is useful only for sending out for initial routing sync.
764 /// Not stored if contains excess data to prevent DoS.
765 ///
766 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
767 #[no_mangle]
768 pub extern "C" fn ChannelUpdateInfo_get_last_update_message(this_ptr: &ChannelUpdateInfo) -> crate::lightning::ln::msgs::ChannelUpdate {
769         let mut inner_val = &mut this_ptr.get_native_mut_ref().last_update_message;
770         let mut local_inner_val = crate::lightning::ln::msgs::ChannelUpdate { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::ln::msgs::ChannelUpdate<>) as *mut _ }, is_owned: false };
771         local_inner_val
772 }
773 /// Most recent update for the channel received from the network
774 /// Mostly redundant with the data we store in fields explicitly.
775 /// Everything else is useful only for sending out for initial routing sync.
776 /// Not stored if contains excess data to prevent DoS.
777 ///
778 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
779 #[no_mangle]
780 pub extern "C" fn ChannelUpdateInfo_set_last_update_message(this_ptr: &mut ChannelUpdateInfo, mut val: crate::lightning::ln::msgs::ChannelUpdate) {
781         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
782         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.last_update_message = local_val;
783 }
784 /// Constructs a new ChannelUpdateInfo given each field
785 #[must_use]
786 #[no_mangle]
787 pub extern "C" fn ChannelUpdateInfo_new(mut last_update_arg: u32, mut enabled_arg: bool, mut cltv_expiry_delta_arg: u16, mut htlc_minimum_msat_arg: u64, mut htlc_maximum_msat_arg: crate::c_types::derived::COption_u64Z, mut fees_arg: crate::lightning::routing::gossip::RoutingFees, mut last_update_message_arg: crate::lightning::ln::msgs::ChannelUpdate) -> ChannelUpdateInfo {
788         let mut local_htlc_maximum_msat_arg = if htlc_maximum_msat_arg.is_some() { Some( { htlc_maximum_msat_arg.take() }) } else { None };
789         let mut local_last_update_message_arg = if last_update_message_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(last_update_message_arg.take_inner()) } }) };
790         ChannelUpdateInfo { inner: ObjOps::heap_alloc(nativeChannelUpdateInfo {
791                 last_update: last_update_arg,
792                 enabled: enabled_arg,
793                 cltv_expiry_delta: cltv_expiry_delta_arg,
794                 htlc_minimum_msat: htlc_minimum_msat_arg,
795                 htlc_maximum_msat: local_htlc_maximum_msat_arg,
796                 fees: *unsafe { Box::from_raw(fees_arg.take_inner()) },
797                 last_update_message: local_last_update_message_arg,
798         }), is_owned: true }
799 }
800 impl Clone for ChannelUpdateInfo {
801         fn clone(&self) -> Self {
802                 Self {
803                         inner: if <*mut nativeChannelUpdateInfo>::is_null(self.inner) { core::ptr::null_mut() } else {
804                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
805                         is_owned: true,
806                 }
807         }
808 }
809 #[allow(unused)]
810 /// Used only if an object of this type is returned as a trait impl by a method
811 pub(crate) extern "C" fn ChannelUpdateInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
812         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelUpdateInfo)).clone() })) as *mut c_void
813 }
814 #[no_mangle]
815 /// Creates a copy of the ChannelUpdateInfo
816 pub extern "C" fn ChannelUpdateInfo_clone(orig: &ChannelUpdateInfo) -> ChannelUpdateInfo {
817         orig.clone()
818 }
819 #[no_mangle]
820 /// Serialize the ChannelUpdateInfo object into a byte array which can be read by ChannelUpdateInfo_read
821 pub extern "C" fn ChannelUpdateInfo_write(obj: &crate::lightning::routing::gossip::ChannelUpdateInfo) -> crate::c_types::derived::CVec_u8Z {
822         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
823 }
824 #[no_mangle]
825 pub(crate) extern "C" fn ChannelUpdateInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
826         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelUpdateInfo) })
827 }
828 #[no_mangle]
829 /// Read a ChannelUpdateInfo from a byte array, created by ChannelUpdateInfo_write
830 pub extern "C" fn ChannelUpdateInfo_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelUpdateInfoDecodeErrorZ {
831         let res: Result<lightning::routing::gossip::ChannelUpdateInfo, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
832         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::routing::gossip::ChannelUpdateInfo { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
833         local_res
834 }
835
836 use lightning::routing::gossip::ChannelInfo as nativeChannelInfoImport;
837 pub(crate) type nativeChannelInfo = nativeChannelInfoImport;
838
839 /// Details about a channel (both directions).
840 /// Received within a channel announcement.
841 #[must_use]
842 #[repr(C)]
843 pub struct ChannelInfo {
844         /// A pointer to the opaque Rust object.
845
846         /// Nearly everywhere, inner must be non-null, however in places where
847         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
848         pub inner: *mut nativeChannelInfo,
849         /// Indicates that this is the only struct which contains the same pointer.
850
851         /// Rust functions which take ownership of an object provided via an argument require
852         /// this to be true and invalidate the object pointed to by inner.
853         pub is_owned: bool,
854 }
855
856 impl Drop for ChannelInfo {
857         fn drop(&mut self) {
858                 if self.is_owned && !<*mut nativeChannelInfo>::is_null(self.inner) {
859                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
860                 }
861         }
862 }
863 /// Frees any resources used by the ChannelInfo, if is_owned is set and inner is non-NULL.
864 #[no_mangle]
865 pub extern "C" fn ChannelInfo_free(this_obj: ChannelInfo) { }
866 #[allow(unused)]
867 /// Used only if an object of this type is returned as a trait impl by a method
868 pub(crate) extern "C" fn ChannelInfo_free_void(this_ptr: *mut c_void) {
869         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelInfo); }
870 }
871 #[allow(unused)]
872 impl ChannelInfo {
873         pub(crate) fn get_native_ref(&self) -> &'static nativeChannelInfo {
874                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
875         }
876         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeChannelInfo {
877                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
878         }
879         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
880         pub(crate) fn take_inner(mut self) -> *mut nativeChannelInfo {
881                 assert!(self.is_owned);
882                 let ret = ObjOps::untweak_ptr(self.inner);
883                 self.inner = core::ptr::null_mut();
884                 ret
885         }
886 }
887 /// Protocol features of a channel communicated during its announcement
888 #[no_mangle]
889 pub extern "C" fn ChannelInfo_get_features(this_ptr: &ChannelInfo) -> crate::lightning::ln::features::ChannelFeatures {
890         let mut inner_val = &mut this_ptr.get_native_mut_ref().features;
891         crate::lightning::ln::features::ChannelFeatures { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::ln::features::ChannelFeatures<>) as *mut _) }, is_owned: false }
892 }
893 /// Protocol features of a channel communicated during its announcement
894 #[no_mangle]
895 pub extern "C" fn ChannelInfo_set_features(this_ptr: &mut ChannelInfo, mut val: crate::lightning::ln::features::ChannelFeatures) {
896         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.features = *unsafe { Box::from_raw(val.take_inner()) };
897 }
898 /// Source node of the first direction of a channel
899 #[no_mangle]
900 pub extern "C" fn ChannelInfo_get_node_one(this_ptr: &ChannelInfo) -> crate::lightning::routing::gossip::NodeId {
901         let mut inner_val = &mut this_ptr.get_native_mut_ref().node_one;
902         crate::lightning::routing::gossip::NodeId { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::routing::gossip::NodeId<>) as *mut _) }, is_owned: false }
903 }
904 /// Source node of the first direction of a channel
905 #[no_mangle]
906 pub extern "C" fn ChannelInfo_set_node_one(this_ptr: &mut ChannelInfo, mut val: crate::lightning::routing::gossip::NodeId) {
907         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.node_one = *unsafe { Box::from_raw(val.take_inner()) };
908 }
909 /// Details about the first direction of a channel
910 ///
911 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
912 #[no_mangle]
913 pub extern "C" fn ChannelInfo_get_one_to_two(this_ptr: &ChannelInfo) -> crate::lightning::routing::gossip::ChannelUpdateInfo {
914         let mut inner_val = &mut this_ptr.get_native_mut_ref().one_to_two;
915         let mut local_inner_val = crate::lightning::routing::gossip::ChannelUpdateInfo { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::routing::gossip::ChannelUpdateInfo<>) as *mut _ }, is_owned: false };
916         local_inner_val
917 }
918 /// Details about the first direction of a channel
919 ///
920 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
921 #[no_mangle]
922 pub extern "C" fn ChannelInfo_set_one_to_two(this_ptr: &mut ChannelInfo, mut val: crate::lightning::routing::gossip::ChannelUpdateInfo) {
923         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
924         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.one_to_two = local_val;
925 }
926 /// Source node of the second direction of a channel
927 #[no_mangle]
928 pub extern "C" fn ChannelInfo_get_node_two(this_ptr: &ChannelInfo) -> crate::lightning::routing::gossip::NodeId {
929         let mut inner_val = &mut this_ptr.get_native_mut_ref().node_two;
930         crate::lightning::routing::gossip::NodeId { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::routing::gossip::NodeId<>) as *mut _) }, is_owned: false }
931 }
932 /// Source node of the second direction of a channel
933 #[no_mangle]
934 pub extern "C" fn ChannelInfo_set_node_two(this_ptr: &mut ChannelInfo, mut val: crate::lightning::routing::gossip::NodeId) {
935         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.node_two = *unsafe { Box::from_raw(val.take_inner()) };
936 }
937 /// Details about the second direction of a channel
938 ///
939 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
940 #[no_mangle]
941 pub extern "C" fn ChannelInfo_get_two_to_one(this_ptr: &ChannelInfo) -> crate::lightning::routing::gossip::ChannelUpdateInfo {
942         let mut inner_val = &mut this_ptr.get_native_mut_ref().two_to_one;
943         let mut local_inner_val = crate::lightning::routing::gossip::ChannelUpdateInfo { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::routing::gossip::ChannelUpdateInfo<>) as *mut _ }, is_owned: false };
944         local_inner_val
945 }
946 /// Details about the second direction of a channel
947 ///
948 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
949 #[no_mangle]
950 pub extern "C" fn ChannelInfo_set_two_to_one(this_ptr: &mut ChannelInfo, mut val: crate::lightning::routing::gossip::ChannelUpdateInfo) {
951         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
952         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.two_to_one = local_val;
953 }
954 /// The channel capacity as seen on-chain, if chain lookup is available.
955 #[no_mangle]
956 pub extern "C" fn ChannelInfo_get_capacity_sats(this_ptr: &ChannelInfo) -> crate::c_types::derived::COption_u64Z {
957         let mut inner_val = &mut this_ptr.get_native_mut_ref().capacity_sats;
958         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() }) };
959         local_inner_val
960 }
961 /// The channel capacity as seen on-chain, if chain lookup is available.
962 #[no_mangle]
963 pub extern "C" fn ChannelInfo_set_capacity_sats(this_ptr: &mut ChannelInfo, mut val: crate::c_types::derived::COption_u64Z) {
964         let mut local_val = if val.is_some() { Some( { val.take() }) } else { None };
965         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.capacity_sats = local_val;
966 }
967 /// An initial announcement of the channel
968 /// Mostly redundant with the data we store in fields explicitly.
969 /// Everything else is useful only for sending out for initial routing sync.
970 /// Not stored if contains excess data to prevent DoS.
971 ///
972 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
973 #[no_mangle]
974 pub extern "C" fn ChannelInfo_get_announcement_message(this_ptr: &ChannelInfo) -> crate::lightning::ln::msgs::ChannelAnnouncement {
975         let mut inner_val = &mut this_ptr.get_native_mut_ref().announcement_message;
976         let mut local_inner_val = crate::lightning::ln::msgs::ChannelAnnouncement { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::ln::msgs::ChannelAnnouncement<>) as *mut _ }, is_owned: false };
977         local_inner_val
978 }
979 /// An initial announcement of the channel
980 /// Mostly redundant with the data we store in fields explicitly.
981 /// Everything else is useful only for sending out for initial routing sync.
982 /// Not stored if contains excess data to prevent DoS.
983 ///
984 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
985 #[no_mangle]
986 pub extern "C" fn ChannelInfo_set_announcement_message(this_ptr: &mut ChannelInfo, mut val: crate::lightning::ln::msgs::ChannelAnnouncement) {
987         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
988         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.announcement_message = local_val;
989 }
990 impl Clone for ChannelInfo {
991         fn clone(&self) -> Self {
992                 Self {
993                         inner: if <*mut nativeChannelInfo>::is_null(self.inner) { core::ptr::null_mut() } else {
994                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
995                         is_owned: true,
996                 }
997         }
998 }
999 #[allow(unused)]
1000 /// Used only if an object of this type is returned as a trait impl by a method
1001 pub(crate) extern "C" fn ChannelInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
1002         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeChannelInfo)).clone() })) as *mut c_void
1003 }
1004 #[no_mangle]
1005 /// Creates a copy of the ChannelInfo
1006 pub extern "C" fn ChannelInfo_clone(orig: &ChannelInfo) -> ChannelInfo {
1007         orig.clone()
1008 }
1009 /// Returns a [`ChannelUpdateInfo`] based on the direction implied by the channel_flag.
1010 ///
1011 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
1012 #[must_use]
1013 #[no_mangle]
1014 pub extern "C" fn ChannelInfo_get_directional_info(this_arg: &crate::lightning::routing::gossip::ChannelInfo, mut channel_flags: u8) -> crate::lightning::routing::gossip::ChannelUpdateInfo {
1015         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_directional_info(channel_flags);
1016         let mut local_ret = crate::lightning::routing::gossip::ChannelUpdateInfo { inner: unsafe { (if ret.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (ret.unwrap()) }) } as *const lightning::routing::gossip::ChannelUpdateInfo<>) as *mut _ }, is_owned: false };
1017         local_ret
1018 }
1019
1020 #[no_mangle]
1021 /// Serialize the ChannelInfo object into a byte array which can be read by ChannelInfo_read
1022 pub extern "C" fn ChannelInfo_write(obj: &crate::lightning::routing::gossip::ChannelInfo) -> crate::c_types::derived::CVec_u8Z {
1023         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
1024 }
1025 #[no_mangle]
1026 pub(crate) extern "C" fn ChannelInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1027         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelInfo) })
1028 }
1029 #[no_mangle]
1030 /// Read a ChannelInfo from a byte array, created by ChannelInfo_write
1031 pub extern "C" fn ChannelInfo_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_ChannelInfoDecodeErrorZ {
1032         let res: Result<lightning::routing::gossip::ChannelInfo, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
1033         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::routing::gossip::ChannelInfo { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1034         local_res
1035 }
1036
1037 use lightning::routing::gossip::DirectedChannelInfo as nativeDirectedChannelInfoImport;
1038 pub(crate) type nativeDirectedChannelInfo = nativeDirectedChannelInfoImport<'static>;
1039
1040 /// A wrapper around [`ChannelInfo`] representing information about the channel as directed from a
1041 /// source node to a target node.
1042 #[must_use]
1043 #[repr(C)]
1044 pub struct DirectedChannelInfo {
1045         /// A pointer to the opaque Rust object.
1046
1047         /// Nearly everywhere, inner must be non-null, however in places where
1048         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1049         pub inner: *mut nativeDirectedChannelInfo,
1050         /// Indicates that this is the only struct which contains the same pointer.
1051
1052         /// Rust functions which take ownership of an object provided via an argument require
1053         /// this to be true and invalidate the object pointed to by inner.
1054         pub is_owned: bool,
1055 }
1056
1057 impl Drop for DirectedChannelInfo {
1058         fn drop(&mut self) {
1059                 if self.is_owned && !<*mut nativeDirectedChannelInfo>::is_null(self.inner) {
1060                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1061                 }
1062         }
1063 }
1064 /// Frees any resources used by the DirectedChannelInfo, if is_owned is set and inner is non-NULL.
1065 #[no_mangle]
1066 pub extern "C" fn DirectedChannelInfo_free(this_obj: DirectedChannelInfo) { }
1067 #[allow(unused)]
1068 /// Used only if an object of this type is returned as a trait impl by a method
1069 pub(crate) extern "C" fn DirectedChannelInfo_free_void(this_ptr: *mut c_void) {
1070         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeDirectedChannelInfo); }
1071 }
1072 #[allow(unused)]
1073 impl DirectedChannelInfo {
1074         pub(crate) fn get_native_ref(&self) -> &'static nativeDirectedChannelInfo {
1075                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1076         }
1077         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeDirectedChannelInfo {
1078                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1079         }
1080         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1081         pub(crate) fn take_inner(mut self) -> *mut nativeDirectedChannelInfo {
1082                 assert!(self.is_owned);
1083                 let ret = ObjOps::untweak_ptr(self.inner);
1084                 self.inner = core::ptr::null_mut();
1085                 ret
1086         }
1087 }
1088 impl Clone for DirectedChannelInfo {
1089         fn clone(&self) -> Self {
1090                 Self {
1091                         inner: if <*mut nativeDirectedChannelInfo>::is_null(self.inner) { core::ptr::null_mut() } else {
1092                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
1093                         is_owned: true,
1094                 }
1095         }
1096 }
1097 #[allow(unused)]
1098 /// Used only if an object of this type is returned as a trait impl by a method
1099 pub(crate) extern "C" fn DirectedChannelInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
1100         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeDirectedChannelInfo)).clone() })) as *mut c_void
1101 }
1102 #[no_mangle]
1103 /// Creates a copy of the DirectedChannelInfo
1104 pub extern "C" fn DirectedChannelInfo_clone(orig: &DirectedChannelInfo) -> DirectedChannelInfo {
1105         orig.clone()
1106 }
1107 /// Returns information for the channel.
1108 #[must_use]
1109 #[no_mangle]
1110 pub extern "C" fn DirectedChannelInfo_channel(this_arg: &crate::lightning::routing::gossip::DirectedChannelInfo) -> crate::lightning::routing::gossip::ChannelInfo {
1111         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.channel();
1112         crate::lightning::routing::gossip::ChannelInfo { inner: unsafe { ObjOps::nonnull_ptr_to_inner((ret as *const lightning::routing::gossip::ChannelInfo<>) as *mut _) }, is_owned: false }
1113 }
1114
1115 /// Returns information for the direction.
1116 ///
1117 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
1118 #[must_use]
1119 #[no_mangle]
1120 pub extern "C" fn DirectedChannelInfo_direction(this_arg: &crate::lightning::routing::gossip::DirectedChannelInfo) -> crate::lightning::routing::gossip::ChannelUpdateInfo {
1121         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.direction();
1122         let mut local_ret = crate::lightning::routing::gossip::ChannelUpdateInfo { inner: unsafe { (if ret.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (ret.unwrap()) }) } as *const lightning::routing::gossip::ChannelUpdateInfo<>) as *mut _ }, is_owned: false };
1123         local_ret
1124 }
1125
1126 /// Returns the maximum HTLC amount allowed over the channel in the direction.
1127 #[must_use]
1128 #[no_mangle]
1129 pub extern "C" fn DirectedChannelInfo_htlc_maximum_msat(this_arg: &crate::lightning::routing::gossip::DirectedChannelInfo) -> u64 {
1130         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.htlc_maximum_msat();
1131         ret
1132 }
1133
1134 /// Returns the [`EffectiveCapacity`] of the channel in the direction.
1135 ///
1136 /// This is either the total capacity from the funding transaction, if known, or the
1137 /// `htlc_maximum_msat` for the direction as advertised by the gossip network, if known,
1138 /// otherwise.
1139 #[must_use]
1140 #[no_mangle]
1141 pub extern "C" fn DirectedChannelInfo_effective_capacity(this_arg: &crate::lightning::routing::gossip::DirectedChannelInfo) -> crate::lightning::routing::gossip::EffectiveCapacity {
1142         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.effective_capacity();
1143         crate::lightning::routing::gossip::EffectiveCapacity::native_into(ret)
1144 }
1145
1146 /// The effective capacity of a channel for routing purposes.
1147 ///
1148 /// While this may be smaller than the actual channel capacity, amounts greater than
1149 /// [`Self::as_msat`] should not be routed through the channel.
1150 #[derive(Clone)]
1151 #[must_use]
1152 #[repr(C)]
1153 pub enum EffectiveCapacity {
1154         /// The available liquidity in the channel known from being a channel counterparty, and thus a
1155         /// direct hop.
1156         ExactLiquidity {
1157                 /// Either the inbound or outbound liquidity depending on the direction, denominated in
1158                 /// millisatoshi.
1159                 liquidity_msat: u64,
1160         },
1161         /// The maximum HTLC amount in one direction as advertised on the gossip network.
1162         MaximumHTLC {
1163                 /// The maximum HTLC amount denominated in millisatoshi.
1164                 amount_msat: u64,
1165         },
1166         /// The total capacity of the channel as determined by the funding transaction.
1167         Total {
1168                 /// The funding amount denominated in millisatoshi.
1169                 capacity_msat: u64,
1170                 /// The maximum HTLC amount denominated in millisatoshi.
1171                 htlc_maximum_msat: crate::c_types::derived::COption_u64Z,
1172         },
1173         /// A capacity sufficient to route any payment, typically used for private channels provided by
1174         /// an invoice.
1175         Infinite,
1176         /// A capacity that is unknown possibly because either the chain state is unavailable to know
1177         /// the total capacity or the `htlc_maximum_msat` was not advertised on the gossip network.
1178         Unknown,
1179 }
1180 use lightning::routing::gossip::EffectiveCapacity as EffectiveCapacityImport;
1181 pub(crate) type nativeEffectiveCapacity = EffectiveCapacityImport;
1182
1183 impl EffectiveCapacity {
1184         #[allow(unused)]
1185         pub(crate) fn to_native(&self) -> nativeEffectiveCapacity {
1186                 match self {
1187                         EffectiveCapacity::ExactLiquidity {ref liquidity_msat, } => {
1188                                 let mut liquidity_msat_nonref = (*liquidity_msat).clone();
1189                                 nativeEffectiveCapacity::ExactLiquidity {
1190                                         liquidity_msat: liquidity_msat_nonref,
1191                                 }
1192                         },
1193                         EffectiveCapacity::MaximumHTLC {ref amount_msat, } => {
1194                                 let mut amount_msat_nonref = (*amount_msat).clone();
1195                                 nativeEffectiveCapacity::MaximumHTLC {
1196                                         amount_msat: amount_msat_nonref,
1197                                 }
1198                         },
1199                         EffectiveCapacity::Total {ref capacity_msat, ref htlc_maximum_msat, } => {
1200                                 let mut capacity_msat_nonref = (*capacity_msat).clone();
1201                                 let mut htlc_maximum_msat_nonref = (*htlc_maximum_msat).clone();
1202                                 let mut local_htlc_maximum_msat_nonref = if htlc_maximum_msat_nonref.is_some() { Some( { htlc_maximum_msat_nonref.take() }) } else { None };
1203                                 nativeEffectiveCapacity::Total {
1204                                         capacity_msat: capacity_msat_nonref,
1205                                         htlc_maximum_msat: local_htlc_maximum_msat_nonref,
1206                                 }
1207                         },
1208                         EffectiveCapacity::Infinite => nativeEffectiveCapacity::Infinite,
1209                         EffectiveCapacity::Unknown => nativeEffectiveCapacity::Unknown,
1210                 }
1211         }
1212         #[allow(unused)]
1213         pub(crate) fn into_native(self) -> nativeEffectiveCapacity {
1214                 match self {
1215                         EffectiveCapacity::ExactLiquidity {mut liquidity_msat, } => {
1216                                 nativeEffectiveCapacity::ExactLiquidity {
1217                                         liquidity_msat: liquidity_msat,
1218                                 }
1219                         },
1220                         EffectiveCapacity::MaximumHTLC {mut amount_msat, } => {
1221                                 nativeEffectiveCapacity::MaximumHTLC {
1222                                         amount_msat: amount_msat,
1223                                 }
1224                         },
1225                         EffectiveCapacity::Total {mut capacity_msat, mut htlc_maximum_msat, } => {
1226                                 let mut local_htlc_maximum_msat = if htlc_maximum_msat.is_some() { Some( { htlc_maximum_msat.take() }) } else { None };
1227                                 nativeEffectiveCapacity::Total {
1228                                         capacity_msat: capacity_msat,
1229                                         htlc_maximum_msat: local_htlc_maximum_msat,
1230                                 }
1231                         },
1232                         EffectiveCapacity::Infinite => nativeEffectiveCapacity::Infinite,
1233                         EffectiveCapacity::Unknown => nativeEffectiveCapacity::Unknown,
1234                 }
1235         }
1236         #[allow(unused)]
1237         pub(crate) fn from_native(native: &nativeEffectiveCapacity) -> Self {
1238                 match native {
1239                         nativeEffectiveCapacity::ExactLiquidity {ref liquidity_msat, } => {
1240                                 let mut liquidity_msat_nonref = (*liquidity_msat).clone();
1241                                 EffectiveCapacity::ExactLiquidity {
1242                                         liquidity_msat: liquidity_msat_nonref,
1243                                 }
1244                         },
1245                         nativeEffectiveCapacity::MaximumHTLC {ref amount_msat, } => {
1246                                 let mut amount_msat_nonref = (*amount_msat).clone();
1247                                 EffectiveCapacity::MaximumHTLC {
1248                                         amount_msat: amount_msat_nonref,
1249                                 }
1250                         },
1251                         nativeEffectiveCapacity::Total {ref capacity_msat, ref htlc_maximum_msat, } => {
1252                                 let mut capacity_msat_nonref = (*capacity_msat).clone();
1253                                 let mut htlc_maximum_msat_nonref = (*htlc_maximum_msat).clone();
1254                                 let mut local_htlc_maximum_msat_nonref = if htlc_maximum_msat_nonref.is_none() { crate::c_types::derived::COption_u64Z::None } else { crate::c_types::derived::COption_u64Z::Some( { htlc_maximum_msat_nonref.unwrap() }) };
1255                                 EffectiveCapacity::Total {
1256                                         capacity_msat: capacity_msat_nonref,
1257                                         htlc_maximum_msat: local_htlc_maximum_msat_nonref,
1258                                 }
1259                         },
1260                         nativeEffectiveCapacity::Infinite => EffectiveCapacity::Infinite,
1261                         nativeEffectiveCapacity::Unknown => EffectiveCapacity::Unknown,
1262                 }
1263         }
1264         #[allow(unused)]
1265         pub(crate) fn native_into(native: nativeEffectiveCapacity) -> Self {
1266                 match native {
1267                         nativeEffectiveCapacity::ExactLiquidity {mut liquidity_msat, } => {
1268                                 EffectiveCapacity::ExactLiquidity {
1269                                         liquidity_msat: liquidity_msat,
1270                                 }
1271                         },
1272                         nativeEffectiveCapacity::MaximumHTLC {mut amount_msat, } => {
1273                                 EffectiveCapacity::MaximumHTLC {
1274                                         amount_msat: amount_msat,
1275                                 }
1276                         },
1277                         nativeEffectiveCapacity::Total {mut capacity_msat, mut htlc_maximum_msat, } => {
1278                                 let mut local_htlc_maximum_msat = if htlc_maximum_msat.is_none() { crate::c_types::derived::COption_u64Z::None } else { crate::c_types::derived::COption_u64Z::Some( { htlc_maximum_msat.unwrap() }) };
1279                                 EffectiveCapacity::Total {
1280                                         capacity_msat: capacity_msat,
1281                                         htlc_maximum_msat: local_htlc_maximum_msat,
1282                                 }
1283                         },
1284                         nativeEffectiveCapacity::Infinite => EffectiveCapacity::Infinite,
1285                         nativeEffectiveCapacity::Unknown => EffectiveCapacity::Unknown,
1286                 }
1287         }
1288 }
1289 /// Frees any resources used by the EffectiveCapacity
1290 #[no_mangle]
1291 pub extern "C" fn EffectiveCapacity_free(this_ptr: EffectiveCapacity) { }
1292 /// Creates a copy of the EffectiveCapacity
1293 #[no_mangle]
1294 pub extern "C" fn EffectiveCapacity_clone(orig: &EffectiveCapacity) -> EffectiveCapacity {
1295         orig.clone()
1296 }
1297 #[no_mangle]
1298 /// Utility method to constructs a new ExactLiquidity-variant EffectiveCapacity
1299 pub extern "C" fn EffectiveCapacity_exact_liquidity(liquidity_msat: u64) -> EffectiveCapacity {
1300         EffectiveCapacity::ExactLiquidity {
1301                 liquidity_msat,
1302         }
1303 }
1304 #[no_mangle]
1305 /// Utility method to constructs a new MaximumHTLC-variant EffectiveCapacity
1306 pub extern "C" fn EffectiveCapacity_maximum_htlc(amount_msat: u64) -> EffectiveCapacity {
1307         EffectiveCapacity::MaximumHTLC {
1308                 amount_msat,
1309         }
1310 }
1311 #[no_mangle]
1312 /// Utility method to constructs a new Total-variant EffectiveCapacity
1313 pub extern "C" fn EffectiveCapacity_total(capacity_msat: u64, htlc_maximum_msat: crate::c_types::derived::COption_u64Z) -> EffectiveCapacity {
1314         EffectiveCapacity::Total {
1315                 capacity_msat,
1316                 htlc_maximum_msat,
1317         }
1318 }
1319 #[no_mangle]
1320 /// Utility method to constructs a new Infinite-variant EffectiveCapacity
1321 pub extern "C" fn EffectiveCapacity_infinite() -> EffectiveCapacity {
1322         EffectiveCapacity::Infinite}
1323 #[no_mangle]
1324 /// Utility method to constructs a new Unknown-variant EffectiveCapacity
1325 pub extern "C" fn EffectiveCapacity_unknown() -> EffectiveCapacity {
1326         EffectiveCapacity::Unknown}
1327 /// The presumed channel capacity denominated in millisatoshi for [`EffectiveCapacity::Unknown`] to
1328 /// use when making routing decisions.
1329
1330 #[no_mangle]
1331 pub static UNKNOWN_CHANNEL_CAPACITY_MSAT: u64 = lightning::routing::gossip::UNKNOWN_CHANNEL_CAPACITY_MSAT;
1332 /// Returns the effective capacity denominated in millisatoshi.
1333 #[must_use]
1334 #[no_mangle]
1335 pub extern "C" fn EffectiveCapacity_as_msat(this_arg: &crate::lightning::routing::gossip::EffectiveCapacity) -> u64 {
1336         let mut ret = this_arg.to_native().as_msat();
1337         ret
1338 }
1339
1340
1341 use lightning::routing::gossip::RoutingFees as nativeRoutingFeesImport;
1342 pub(crate) type nativeRoutingFees = nativeRoutingFeesImport;
1343
1344 /// Fees for routing via a given channel or a node
1345 #[must_use]
1346 #[repr(C)]
1347 pub struct RoutingFees {
1348         /// A pointer to the opaque Rust object.
1349
1350         /// Nearly everywhere, inner must be non-null, however in places where
1351         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1352         pub inner: *mut nativeRoutingFees,
1353         /// Indicates that this is the only struct which contains the same pointer.
1354
1355         /// Rust functions which take ownership of an object provided via an argument require
1356         /// this to be true and invalidate the object pointed to by inner.
1357         pub is_owned: bool,
1358 }
1359
1360 impl Drop for RoutingFees {
1361         fn drop(&mut self) {
1362                 if self.is_owned && !<*mut nativeRoutingFees>::is_null(self.inner) {
1363                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1364                 }
1365         }
1366 }
1367 /// Frees any resources used by the RoutingFees, if is_owned is set and inner is non-NULL.
1368 #[no_mangle]
1369 pub extern "C" fn RoutingFees_free(this_obj: RoutingFees) { }
1370 #[allow(unused)]
1371 /// Used only if an object of this type is returned as a trait impl by a method
1372 pub(crate) extern "C" fn RoutingFees_free_void(this_ptr: *mut c_void) {
1373         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeRoutingFees); }
1374 }
1375 #[allow(unused)]
1376 impl RoutingFees {
1377         pub(crate) fn get_native_ref(&self) -> &'static nativeRoutingFees {
1378                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1379         }
1380         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeRoutingFees {
1381                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1382         }
1383         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1384         pub(crate) fn take_inner(mut self) -> *mut nativeRoutingFees {
1385                 assert!(self.is_owned);
1386                 let ret = ObjOps::untweak_ptr(self.inner);
1387                 self.inner = core::ptr::null_mut();
1388                 ret
1389         }
1390 }
1391 /// Flat routing fee in satoshis
1392 #[no_mangle]
1393 pub extern "C" fn RoutingFees_get_base_msat(this_ptr: &RoutingFees) -> u32 {
1394         let mut inner_val = &mut this_ptr.get_native_mut_ref().base_msat;
1395         *inner_val
1396 }
1397 /// Flat routing fee in satoshis
1398 #[no_mangle]
1399 pub extern "C" fn RoutingFees_set_base_msat(this_ptr: &mut RoutingFees, mut val: u32) {
1400         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.base_msat = val;
1401 }
1402 /// Liquidity-based routing fee in millionths of a routed amount.
1403 /// In other words, 10000 is 1%.
1404 #[no_mangle]
1405 pub extern "C" fn RoutingFees_get_proportional_millionths(this_ptr: &RoutingFees) -> u32 {
1406         let mut inner_val = &mut this_ptr.get_native_mut_ref().proportional_millionths;
1407         *inner_val
1408 }
1409 /// Liquidity-based routing fee in millionths of a routed amount.
1410 /// In other words, 10000 is 1%.
1411 #[no_mangle]
1412 pub extern "C" fn RoutingFees_set_proportional_millionths(this_ptr: &mut RoutingFees, mut val: u32) {
1413         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.proportional_millionths = val;
1414 }
1415 /// Constructs a new RoutingFees given each field
1416 #[must_use]
1417 #[no_mangle]
1418 pub extern "C" fn RoutingFees_new(mut base_msat_arg: u32, mut proportional_millionths_arg: u32) -> RoutingFees {
1419         RoutingFees { inner: ObjOps::heap_alloc(nativeRoutingFees {
1420                 base_msat: base_msat_arg,
1421                 proportional_millionths: proportional_millionths_arg,
1422         }), is_owned: true }
1423 }
1424 /// Checks if two RoutingFeess contain equal inner contents.
1425 /// This ignores pointers and is_owned flags and looks at the values in fields.
1426 /// Two objects with NULL inner values will be considered "equal" here.
1427 #[no_mangle]
1428 pub extern "C" fn RoutingFees_eq(a: &RoutingFees, b: &RoutingFees) -> bool {
1429         if a.inner == b.inner { return true; }
1430         if a.inner.is_null() || b.inner.is_null() { return false; }
1431         if a.get_native_ref() == b.get_native_ref() { true } else { false }
1432 }
1433 impl Clone for RoutingFees {
1434         fn clone(&self) -> Self {
1435                 Self {
1436                         inner: if <*mut nativeRoutingFees>::is_null(self.inner) { core::ptr::null_mut() } else {
1437                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
1438                         is_owned: true,
1439                 }
1440         }
1441 }
1442 #[allow(unused)]
1443 /// Used only if an object of this type is returned as a trait impl by a method
1444 pub(crate) extern "C" fn RoutingFees_clone_void(this_ptr: *const c_void) -> *mut c_void {
1445         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeRoutingFees)).clone() })) as *mut c_void
1446 }
1447 #[no_mangle]
1448 /// Creates a copy of the RoutingFees
1449 pub extern "C" fn RoutingFees_clone(orig: &RoutingFees) -> RoutingFees {
1450         orig.clone()
1451 }
1452 /// Checks if two RoutingFeess contain equal inner contents.
1453 #[no_mangle]
1454 pub extern "C" fn RoutingFees_hash(o: &RoutingFees) -> u64 {
1455         if o.inner.is_null() { return 0; }
1456         // Note that we'd love to use alloc::collections::hash_map::DefaultHasher but it's not in core
1457         #[allow(deprecated)]
1458         let mut hasher = core::hash::SipHasher::new();
1459         core::hash::Hash::hash(o.get_native_ref(), &mut hasher);
1460         core::hash::Hasher::finish(&hasher)
1461 }
1462 #[no_mangle]
1463 /// Serialize the RoutingFees object into a byte array which can be read by RoutingFees_read
1464 pub extern "C" fn RoutingFees_write(obj: &crate::lightning::routing::gossip::RoutingFees) -> crate::c_types::derived::CVec_u8Z {
1465         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
1466 }
1467 #[no_mangle]
1468 pub(crate) extern "C" fn RoutingFees_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1469         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeRoutingFees) })
1470 }
1471 #[no_mangle]
1472 /// Read a RoutingFees from a byte array, created by RoutingFees_write
1473 pub extern "C" fn RoutingFees_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_RoutingFeesDecodeErrorZ {
1474         let res: Result<lightning::routing::gossip::RoutingFees, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
1475         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::routing::gossip::RoutingFees { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1476         local_res
1477 }
1478
1479 use lightning::routing::gossip::NodeAnnouncementInfo as nativeNodeAnnouncementInfoImport;
1480 pub(crate) type nativeNodeAnnouncementInfo = nativeNodeAnnouncementInfoImport;
1481
1482 /// Information received in the latest node_announcement from this node.
1483 #[must_use]
1484 #[repr(C)]
1485 pub struct NodeAnnouncementInfo {
1486         /// A pointer to the opaque Rust object.
1487
1488         /// Nearly everywhere, inner must be non-null, however in places where
1489         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1490         pub inner: *mut nativeNodeAnnouncementInfo,
1491         /// Indicates that this is the only struct which contains the same pointer.
1492
1493         /// Rust functions which take ownership of an object provided via an argument require
1494         /// this to be true and invalidate the object pointed to by inner.
1495         pub is_owned: bool,
1496 }
1497
1498 impl Drop for NodeAnnouncementInfo {
1499         fn drop(&mut self) {
1500                 if self.is_owned && !<*mut nativeNodeAnnouncementInfo>::is_null(self.inner) {
1501                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1502                 }
1503         }
1504 }
1505 /// Frees any resources used by the NodeAnnouncementInfo, if is_owned is set and inner is non-NULL.
1506 #[no_mangle]
1507 pub extern "C" fn NodeAnnouncementInfo_free(this_obj: NodeAnnouncementInfo) { }
1508 #[allow(unused)]
1509 /// Used only if an object of this type is returned as a trait impl by a method
1510 pub(crate) extern "C" fn NodeAnnouncementInfo_free_void(this_ptr: *mut c_void) {
1511         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNodeAnnouncementInfo); }
1512 }
1513 #[allow(unused)]
1514 impl NodeAnnouncementInfo {
1515         pub(crate) fn get_native_ref(&self) -> &'static nativeNodeAnnouncementInfo {
1516                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1517         }
1518         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeNodeAnnouncementInfo {
1519                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1520         }
1521         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1522         pub(crate) fn take_inner(mut self) -> *mut nativeNodeAnnouncementInfo {
1523                 assert!(self.is_owned);
1524                 let ret = ObjOps::untweak_ptr(self.inner);
1525                 self.inner = core::ptr::null_mut();
1526                 ret
1527         }
1528 }
1529 /// Protocol features the node announced support for
1530 #[no_mangle]
1531 pub extern "C" fn NodeAnnouncementInfo_get_features(this_ptr: &NodeAnnouncementInfo) -> crate::lightning::ln::features::NodeFeatures {
1532         let mut inner_val = &mut this_ptr.get_native_mut_ref().features;
1533         crate::lightning::ln::features::NodeFeatures { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::ln::features::NodeFeatures<>) as *mut _) }, is_owned: false }
1534 }
1535 /// Protocol features the node announced support for
1536 #[no_mangle]
1537 pub extern "C" fn NodeAnnouncementInfo_set_features(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::lightning::ln::features::NodeFeatures) {
1538         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.features = *unsafe { Box::from_raw(val.take_inner()) };
1539 }
1540 /// When the last known update to the node state was issued.
1541 /// Value is opaque, as set in the announcement.
1542 #[no_mangle]
1543 pub extern "C" fn NodeAnnouncementInfo_get_last_update(this_ptr: &NodeAnnouncementInfo) -> u32 {
1544         let mut inner_val = &mut this_ptr.get_native_mut_ref().last_update;
1545         *inner_val
1546 }
1547 /// When the last known update to the node state was issued.
1548 /// Value is opaque, as set in the announcement.
1549 #[no_mangle]
1550 pub extern "C" fn NodeAnnouncementInfo_set_last_update(this_ptr: &mut NodeAnnouncementInfo, mut val: u32) {
1551         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.last_update = val;
1552 }
1553 /// Color assigned to the node
1554 #[no_mangle]
1555 pub extern "C" fn NodeAnnouncementInfo_get_rgb(this_ptr: &NodeAnnouncementInfo) -> *const [u8; 3] {
1556         let mut inner_val = &mut this_ptr.get_native_mut_ref().rgb;
1557         inner_val
1558 }
1559 /// Color assigned to the node
1560 #[no_mangle]
1561 pub extern "C" fn NodeAnnouncementInfo_set_rgb(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::c_types::ThreeBytes) {
1562         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.rgb = val.data;
1563 }
1564 /// Moniker assigned to the node.
1565 /// May be invalid or malicious (eg control chars),
1566 /// should not be exposed to the user.
1567 #[no_mangle]
1568 pub extern "C" fn NodeAnnouncementInfo_get_alias(this_ptr: &NodeAnnouncementInfo) -> crate::lightning::routing::gossip::NodeAlias {
1569         let mut inner_val = &mut this_ptr.get_native_mut_ref().alias;
1570         crate::lightning::routing::gossip::NodeAlias { inner: unsafe { ObjOps::nonnull_ptr_to_inner((inner_val as *const lightning::routing::gossip::NodeAlias<>) as *mut _) }, is_owned: false }
1571 }
1572 /// Moniker assigned to the node.
1573 /// May be invalid or malicious (eg control chars),
1574 /// should not be exposed to the user.
1575 #[no_mangle]
1576 pub extern "C" fn NodeAnnouncementInfo_set_alias(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::lightning::routing::gossip::NodeAlias) {
1577         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.alias = *unsafe { Box::from_raw(val.take_inner()) };
1578 }
1579 /// Internet-level addresses via which one can connect to the node
1580 #[no_mangle]
1581 pub extern "C" fn NodeAnnouncementInfo_set_addresses(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::c_types::derived::CVec_NetAddressZ) {
1582         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item.into_native() }); };
1583         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.addresses = local_val;
1584 }
1585 /// An initial announcement of the node
1586 /// Mostly redundant with the data we store in fields explicitly.
1587 /// Everything else is useful only for sending out for initial routing sync.
1588 /// Not stored if contains excess data to prevent DoS.
1589 ///
1590 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
1591 #[no_mangle]
1592 pub extern "C" fn NodeAnnouncementInfo_get_announcement_message(this_ptr: &NodeAnnouncementInfo) -> crate::lightning::ln::msgs::NodeAnnouncement {
1593         let mut inner_val = &mut this_ptr.get_native_mut_ref().announcement_message;
1594         let mut local_inner_val = crate::lightning::ln::msgs::NodeAnnouncement { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::ln::msgs::NodeAnnouncement<>) as *mut _ }, is_owned: false };
1595         local_inner_val
1596 }
1597 /// An initial announcement of the node
1598 /// Mostly redundant with the data we store in fields explicitly.
1599 /// Everything else is useful only for sending out for initial routing sync.
1600 /// Not stored if contains excess data to prevent DoS.
1601 ///
1602 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
1603 #[no_mangle]
1604 pub extern "C" fn NodeAnnouncementInfo_set_announcement_message(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::lightning::ln::msgs::NodeAnnouncement) {
1605         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
1606         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.announcement_message = local_val;
1607 }
1608 /// Constructs a new NodeAnnouncementInfo given each field
1609 #[must_use]
1610 #[no_mangle]
1611 pub extern "C" fn NodeAnnouncementInfo_new(mut features_arg: crate::lightning::ln::features::NodeFeatures, mut last_update_arg: u32, mut rgb_arg: crate::c_types::ThreeBytes, mut alias_arg: crate::lightning::routing::gossip::NodeAlias, mut addresses_arg: crate::c_types::derived::CVec_NetAddressZ, mut announcement_message_arg: crate::lightning::ln::msgs::NodeAnnouncement) -> NodeAnnouncementInfo {
1612         let mut local_addresses_arg = Vec::new(); for mut item in addresses_arg.into_rust().drain(..) { local_addresses_arg.push( { item.into_native() }); };
1613         let mut local_announcement_message_arg = if announcement_message_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(announcement_message_arg.take_inner()) } }) };
1614         NodeAnnouncementInfo { inner: ObjOps::heap_alloc(nativeNodeAnnouncementInfo {
1615                 features: *unsafe { Box::from_raw(features_arg.take_inner()) },
1616                 last_update: last_update_arg,
1617                 rgb: rgb_arg.data,
1618                 alias: *unsafe { Box::from_raw(alias_arg.take_inner()) },
1619                 addresses: local_addresses_arg,
1620                 announcement_message: local_announcement_message_arg,
1621         }), is_owned: true }
1622 }
1623 impl Clone for NodeAnnouncementInfo {
1624         fn clone(&self) -> Self {
1625                 Self {
1626                         inner: if <*mut nativeNodeAnnouncementInfo>::is_null(self.inner) { core::ptr::null_mut() } else {
1627                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
1628                         is_owned: true,
1629                 }
1630         }
1631 }
1632 #[allow(unused)]
1633 /// Used only if an object of this type is returned as a trait impl by a method
1634 pub(crate) extern "C" fn NodeAnnouncementInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
1635         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeNodeAnnouncementInfo)).clone() })) as *mut c_void
1636 }
1637 #[no_mangle]
1638 /// Creates a copy of the NodeAnnouncementInfo
1639 pub extern "C" fn NodeAnnouncementInfo_clone(orig: &NodeAnnouncementInfo) -> NodeAnnouncementInfo {
1640         orig.clone()
1641 }
1642 #[no_mangle]
1643 /// Serialize the NodeAnnouncementInfo object into a byte array which can be read by NodeAnnouncementInfo_read
1644 pub extern "C" fn NodeAnnouncementInfo_write(obj: &crate::lightning::routing::gossip::NodeAnnouncementInfo) -> crate::c_types::derived::CVec_u8Z {
1645         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
1646 }
1647 #[no_mangle]
1648 pub(crate) extern "C" fn NodeAnnouncementInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1649         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNodeAnnouncementInfo) })
1650 }
1651 #[no_mangle]
1652 /// Read a NodeAnnouncementInfo from a byte array, created by NodeAnnouncementInfo_write
1653 pub extern "C" fn NodeAnnouncementInfo_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_NodeAnnouncementInfoDecodeErrorZ {
1654         let res: Result<lightning::routing::gossip::NodeAnnouncementInfo, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
1655         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::routing::gossip::NodeAnnouncementInfo { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1656         local_res
1657 }
1658
1659 use lightning::routing::gossip::NodeAlias as nativeNodeAliasImport;
1660 pub(crate) type nativeNodeAlias = nativeNodeAliasImport;
1661
1662 /// A user-defined name for a node, which may be used when displaying the node in a graph.
1663 ///
1664 /// Since node aliases are provided by third parties, they are a potential avenue for injection
1665 /// attacks. Care must be taken when processing.
1666 #[must_use]
1667 #[repr(C)]
1668 pub struct NodeAlias {
1669         /// A pointer to the opaque Rust object.
1670
1671         /// Nearly everywhere, inner must be non-null, however in places where
1672         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1673         pub inner: *mut nativeNodeAlias,
1674         /// Indicates that this is the only struct which contains the same pointer.
1675
1676         /// Rust functions which take ownership of an object provided via an argument require
1677         /// this to be true and invalidate the object pointed to by inner.
1678         pub is_owned: bool,
1679 }
1680
1681 impl Drop for NodeAlias {
1682         fn drop(&mut self) {
1683                 if self.is_owned && !<*mut nativeNodeAlias>::is_null(self.inner) {
1684                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1685                 }
1686         }
1687 }
1688 /// Frees any resources used by the NodeAlias, if is_owned is set and inner is non-NULL.
1689 #[no_mangle]
1690 pub extern "C" fn NodeAlias_free(this_obj: NodeAlias) { }
1691 #[allow(unused)]
1692 /// Used only if an object of this type is returned as a trait impl by a method
1693 pub(crate) extern "C" fn NodeAlias_free_void(this_ptr: *mut c_void) {
1694         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNodeAlias); }
1695 }
1696 #[allow(unused)]
1697 impl NodeAlias {
1698         pub(crate) fn get_native_ref(&self) -> &'static nativeNodeAlias {
1699                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1700         }
1701         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeNodeAlias {
1702                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1703         }
1704         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1705         pub(crate) fn take_inner(mut self) -> *mut nativeNodeAlias {
1706                 assert!(self.is_owned);
1707                 let ret = ObjOps::untweak_ptr(self.inner);
1708                 self.inner = core::ptr::null_mut();
1709                 ret
1710         }
1711 }
1712 #[no_mangle]
1713 pub extern "C" fn NodeAlias_get_a(this_ptr: &NodeAlias) -> *const [u8; 32] {
1714         let mut inner_val = &mut this_ptr.get_native_mut_ref().0;
1715         inner_val
1716 }
1717 #[no_mangle]
1718 pub extern "C" fn NodeAlias_set_a(this_ptr: &mut NodeAlias, mut val: crate::c_types::ThirtyTwoBytes) {
1719         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.0 = val.data;
1720 }
1721 /// Constructs a new NodeAlias given each field
1722 #[must_use]
1723 #[no_mangle]
1724 pub extern "C" fn NodeAlias_new(mut a_arg: crate::c_types::ThirtyTwoBytes) -> NodeAlias {
1725         NodeAlias { inner: ObjOps::heap_alloc(lightning::routing::gossip::NodeAlias (
1726                 a_arg.data,
1727         )), is_owned: true }
1728 }
1729 impl Clone for NodeAlias {
1730         fn clone(&self) -> Self {
1731                 Self {
1732                         inner: if <*mut nativeNodeAlias>::is_null(self.inner) { core::ptr::null_mut() } else {
1733                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
1734                         is_owned: true,
1735                 }
1736         }
1737 }
1738 #[allow(unused)]
1739 /// Used only if an object of this type is returned as a trait impl by a method
1740 pub(crate) extern "C" fn NodeAlias_clone_void(this_ptr: *const c_void) -> *mut c_void {
1741         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeNodeAlias)).clone() })) as *mut c_void
1742 }
1743 #[no_mangle]
1744 /// Creates a copy of the NodeAlias
1745 pub extern "C" fn NodeAlias_clone(orig: &NodeAlias) -> NodeAlias {
1746         orig.clone()
1747 }
1748 #[no_mangle]
1749 /// Serialize the NodeAlias object into a byte array which can be read by NodeAlias_read
1750 pub extern "C" fn NodeAlias_write(obj: &crate::lightning::routing::gossip::NodeAlias) -> crate::c_types::derived::CVec_u8Z {
1751         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
1752 }
1753 #[no_mangle]
1754 pub(crate) extern "C" fn NodeAlias_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1755         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNodeAlias) })
1756 }
1757 #[no_mangle]
1758 /// Read a NodeAlias from a byte array, created by NodeAlias_write
1759 pub extern "C" fn NodeAlias_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_NodeAliasDecodeErrorZ {
1760         let res: Result<lightning::routing::gossip::NodeAlias, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
1761         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::routing::gossip::NodeAlias { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1762         local_res
1763 }
1764
1765 use lightning::routing::gossip::NodeInfo as nativeNodeInfoImport;
1766 pub(crate) type nativeNodeInfo = nativeNodeInfoImport;
1767
1768 /// Details about a node in the network, known from the network announcement.
1769 #[must_use]
1770 #[repr(C)]
1771 pub struct NodeInfo {
1772         /// A pointer to the opaque Rust object.
1773
1774         /// Nearly everywhere, inner must be non-null, however in places where
1775         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
1776         pub inner: *mut nativeNodeInfo,
1777         /// Indicates that this is the only struct which contains the same pointer.
1778
1779         /// Rust functions which take ownership of an object provided via an argument require
1780         /// this to be true and invalidate the object pointed to by inner.
1781         pub is_owned: bool,
1782 }
1783
1784 impl Drop for NodeInfo {
1785         fn drop(&mut self) {
1786                 if self.is_owned && !<*mut nativeNodeInfo>::is_null(self.inner) {
1787                         let _ = unsafe { Box::from_raw(ObjOps::untweak_ptr(self.inner)) };
1788                 }
1789         }
1790 }
1791 /// Frees any resources used by the NodeInfo, if is_owned is set and inner is non-NULL.
1792 #[no_mangle]
1793 pub extern "C" fn NodeInfo_free(this_obj: NodeInfo) { }
1794 #[allow(unused)]
1795 /// Used only if an object of this type is returned as a trait impl by a method
1796 pub(crate) extern "C" fn NodeInfo_free_void(this_ptr: *mut c_void) {
1797         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNodeInfo); }
1798 }
1799 #[allow(unused)]
1800 impl NodeInfo {
1801         pub(crate) fn get_native_ref(&self) -> &'static nativeNodeInfo {
1802                 unsafe { &*ObjOps::untweak_ptr(self.inner) }
1803         }
1804         pub(crate) fn get_native_mut_ref(&self) -> &'static mut nativeNodeInfo {
1805                 unsafe { &mut *ObjOps::untweak_ptr(self.inner) }
1806         }
1807         /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
1808         pub(crate) fn take_inner(mut self) -> *mut nativeNodeInfo {
1809                 assert!(self.is_owned);
1810                 let ret = ObjOps::untweak_ptr(self.inner);
1811                 self.inner = core::ptr::null_mut();
1812                 ret
1813         }
1814 }
1815 /// All valid channels a node has announced
1816 #[no_mangle]
1817 pub extern "C" fn NodeInfo_set_channels(this_ptr: &mut NodeInfo, mut val: crate::c_types::derived::CVec_u64Z) {
1818         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item }); };
1819         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.channels = local_val;
1820 }
1821 /// Lowest fees enabling routing via any of the enabled, known channels to a node.
1822 /// The two fields (flat and proportional fee) are independent,
1823 /// meaning they don't have to refer to the same channel.
1824 ///
1825 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
1826 #[no_mangle]
1827 pub extern "C" fn NodeInfo_get_lowest_inbound_channel_fees(this_ptr: &NodeInfo) -> crate::lightning::routing::gossip::RoutingFees {
1828         let mut inner_val = &mut this_ptr.get_native_mut_ref().lowest_inbound_channel_fees;
1829         let mut local_inner_val = crate::lightning::routing::gossip::RoutingFees { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::routing::gossip::RoutingFees<>) as *mut _ }, is_owned: false };
1830         local_inner_val
1831 }
1832 /// Lowest fees enabling routing via any of the enabled, known channels to a node.
1833 /// The two fields (flat and proportional fee) are independent,
1834 /// meaning they don't have to refer to the same channel.
1835 ///
1836 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
1837 #[no_mangle]
1838 pub extern "C" fn NodeInfo_set_lowest_inbound_channel_fees(this_ptr: &mut NodeInfo, mut val: crate::lightning::routing::gossip::RoutingFees) {
1839         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
1840         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.lowest_inbound_channel_fees = local_val;
1841 }
1842 /// More information about a node from node_announcement.
1843 /// Optional because we store a Node entry after learning about it from
1844 /// a channel announcement, but before receiving a node announcement.
1845 ///
1846 /// Note that the return value (or a relevant inner pointer) may be NULL or all-0s to represent None
1847 #[no_mangle]
1848 pub extern "C" fn NodeInfo_get_announcement_info(this_ptr: &NodeInfo) -> crate::lightning::routing::gossip::NodeAnnouncementInfo {
1849         let mut inner_val = &mut this_ptr.get_native_mut_ref().announcement_info;
1850         let mut local_inner_val = crate::lightning::routing::gossip::NodeAnnouncementInfo { inner: unsafe { (if inner_val.is_none() { core::ptr::null() } else { ObjOps::nonnull_ptr_to_inner( { (inner_val.as_ref().unwrap()) }) } as *const lightning::routing::gossip::NodeAnnouncementInfo<>) as *mut _ }, is_owned: false };
1851         local_inner_val
1852 }
1853 /// More information about a node from node_announcement.
1854 /// Optional because we store a Node entry after learning about it from
1855 /// a channel announcement, but before receiving a node announcement.
1856 ///
1857 /// Note that val (or a relevant inner pointer) may be NULL or all-0s to represent None
1858 #[no_mangle]
1859 pub extern "C" fn NodeInfo_set_announcement_info(this_ptr: &mut NodeInfo, mut val: crate::lightning::routing::gossip::NodeAnnouncementInfo) {
1860         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
1861         unsafe { &mut *ObjOps::untweak_ptr(this_ptr.inner) }.announcement_info = local_val;
1862 }
1863 /// Constructs a new NodeInfo given each field
1864 #[must_use]
1865 #[no_mangle]
1866 pub extern "C" fn NodeInfo_new(mut channels_arg: crate::c_types::derived::CVec_u64Z, mut lowest_inbound_channel_fees_arg: crate::lightning::routing::gossip::RoutingFees, mut announcement_info_arg: crate::lightning::routing::gossip::NodeAnnouncementInfo) -> NodeInfo {
1867         let mut local_channels_arg = Vec::new(); for mut item in channels_arg.into_rust().drain(..) { local_channels_arg.push( { item }); };
1868         let mut local_lowest_inbound_channel_fees_arg = if lowest_inbound_channel_fees_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(lowest_inbound_channel_fees_arg.take_inner()) } }) };
1869         let mut local_announcement_info_arg = if announcement_info_arg.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(announcement_info_arg.take_inner()) } }) };
1870         NodeInfo { inner: ObjOps::heap_alloc(nativeNodeInfo {
1871                 channels: local_channels_arg,
1872                 lowest_inbound_channel_fees: local_lowest_inbound_channel_fees_arg,
1873                 announcement_info: local_announcement_info_arg,
1874         }), is_owned: true }
1875 }
1876 impl Clone for NodeInfo {
1877         fn clone(&self) -> Self {
1878                 Self {
1879                         inner: if <*mut nativeNodeInfo>::is_null(self.inner) { core::ptr::null_mut() } else {
1880                                 ObjOps::heap_alloc(unsafe { &*ObjOps::untweak_ptr(self.inner) }.clone()) },
1881                         is_owned: true,
1882                 }
1883         }
1884 }
1885 #[allow(unused)]
1886 /// Used only if an object of this type is returned as a trait impl by a method
1887 pub(crate) extern "C" fn NodeInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
1888         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeNodeInfo)).clone() })) as *mut c_void
1889 }
1890 #[no_mangle]
1891 /// Creates a copy of the NodeInfo
1892 pub extern "C" fn NodeInfo_clone(orig: &NodeInfo) -> NodeInfo {
1893         orig.clone()
1894 }
1895 #[no_mangle]
1896 /// Serialize the NodeInfo object into a byte array which can be read by NodeInfo_read
1897 pub extern "C" fn NodeInfo_write(obj: &crate::lightning::routing::gossip::NodeInfo) -> crate::c_types::derived::CVec_u8Z {
1898         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
1899 }
1900 #[no_mangle]
1901 pub(crate) extern "C" fn NodeInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1902         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNodeInfo) })
1903 }
1904 #[no_mangle]
1905 /// Read a NodeInfo from a byte array, created by NodeInfo_write
1906 pub extern "C" fn NodeInfo_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_NodeInfoDecodeErrorZ {
1907         let res: Result<lightning::routing::gossip::NodeInfo, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj(ser);
1908         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::routing::gossip::NodeInfo { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1909         local_res
1910 }
1911 #[no_mangle]
1912 /// Serialize the NetworkGraph object into a byte array which can be read by NetworkGraph_read
1913 pub extern "C" fn NetworkGraph_write(obj: &crate::lightning::routing::gossip::NetworkGraph) -> crate::c_types::derived::CVec_u8Z {
1914         crate::c_types::serialize_obj(unsafe { &*obj }.get_native_ref())
1915 }
1916 #[no_mangle]
1917 pub(crate) extern "C" fn NetworkGraph_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
1918         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNetworkGraph) })
1919 }
1920 #[no_mangle]
1921 /// Read a NetworkGraph from a byte array, created by NetworkGraph_write
1922 pub extern "C" fn NetworkGraph_read(ser: crate::c_types::u8slice, arg: crate::lightning::util::logger::Logger) -> crate::c_types::derived::CResult_NetworkGraphDecodeErrorZ {
1923         let arg_conv = arg;
1924         let res: Result<lightning::routing::gossip::NetworkGraph<crate::lightning::util::logger::Logger>, lightning::ln::msgs::DecodeError> = crate::c_types::deserialize_obj_arg(ser, arg_conv);
1925         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::routing::gossip::NetworkGraph { inner: ObjOps::heap_alloc(o), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1926         local_res
1927 }
1928 /// Creates a new, empty, network graph.
1929 #[must_use]
1930 #[no_mangle]
1931 pub extern "C" fn NetworkGraph_new(mut genesis_hash: crate::c_types::ThirtyTwoBytes, mut logger: crate::lightning::util::logger::Logger) -> crate::lightning::routing::gossip::NetworkGraph {
1932         let mut ret = lightning::routing::gossip::NetworkGraph::new(::bitcoin::hash_types::BlockHash::from_slice(&genesis_hash.data[..]).unwrap(), logger);
1933         crate::lightning::routing::gossip::NetworkGraph { inner: ObjOps::heap_alloc(ret), is_owned: true }
1934 }
1935
1936 /// Returns a read-only view of the network graph.
1937 #[must_use]
1938 #[no_mangle]
1939 pub extern "C" fn NetworkGraph_read_only(this_arg: &crate::lightning::routing::gossip::NetworkGraph) -> crate::lightning::routing::gossip::ReadOnlyNetworkGraph {
1940         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.read_only();
1941         crate::lightning::routing::gossip::ReadOnlyNetworkGraph { inner: ObjOps::heap_alloc(ret), is_owned: true }
1942 }
1943
1944 /// The unix timestamp provided by the most recent rapid gossip sync.
1945 /// It will be set by the rapid sync process after every sync completion.
1946 #[must_use]
1947 #[no_mangle]
1948 pub extern "C" fn NetworkGraph_get_last_rapid_gossip_sync_timestamp(this_arg: &crate::lightning::routing::gossip::NetworkGraph) -> crate::c_types::derived::COption_u32Z {
1949         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_last_rapid_gossip_sync_timestamp();
1950         let mut local_ret = if ret.is_none() { crate::c_types::derived::COption_u32Z::None } else { crate::c_types::derived::COption_u32Z::Some( { ret.unwrap() }) };
1951         local_ret
1952 }
1953
1954 /// Update the unix timestamp provided by the most recent rapid gossip sync.
1955 /// This should be done automatically by the rapid sync process after every sync completion.
1956 #[no_mangle]
1957 pub extern "C" fn NetworkGraph_set_last_rapid_gossip_sync_timestamp(this_arg: &crate::lightning::routing::gossip::NetworkGraph, mut last_rapid_gossip_sync_timestamp: u32) {
1958         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.set_last_rapid_gossip_sync_timestamp(last_rapid_gossip_sync_timestamp)
1959 }
1960
1961 /// For an already known node (from channel announcements), update its stored properties from a
1962 /// given node announcement.
1963 ///
1964 /// You probably don't want to call this directly, instead relying on a P2PGossipSync's
1965 /// RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
1966 /// routing messages from a source using a protocol other than the lightning P2P protocol.
1967 #[must_use]
1968 #[no_mangle]
1969 pub extern "C" fn NetworkGraph_update_node_from_announcement(this_arg: &crate::lightning::routing::gossip::NetworkGraph, msg: &crate::lightning::ln::msgs::NodeAnnouncement) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
1970         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.update_node_from_announcement(msg.get_native_ref());
1971         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1972         local_ret
1973 }
1974
1975 /// For an already known node (from channel announcements), update its stored properties from a
1976 /// given node announcement without verifying the associated signatures. Because we aren't
1977 /// given the associated signatures here we cannot relay the node announcement to any of our
1978 /// peers.
1979 #[must_use]
1980 #[no_mangle]
1981 pub extern "C" fn NetworkGraph_update_node_from_unsigned_announcement(this_arg: &crate::lightning::routing::gossip::NetworkGraph, msg: &crate::lightning::ln::msgs::UnsignedNodeAnnouncement) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
1982         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.update_node_from_unsigned_announcement(msg.get_native_ref());
1983         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
1984         local_ret
1985 }
1986
1987 /// Store or update channel info from a channel announcement.
1988 ///
1989 /// You probably don't want to call this directly, instead relying on a P2PGossipSync's
1990 /// RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
1991 /// routing messages from a source using a protocol other than the lightning P2P protocol.
1992 ///
1993 /// If a `chain::Access` object is provided via `chain_access`, it will be called to verify
1994 /// the corresponding UTXO exists on chain and is correctly-formatted.
1995 #[must_use]
1996 #[no_mangle]
1997 pub extern "C" fn NetworkGraph_update_channel_from_announcement(this_arg: &crate::lightning::routing::gossip::NetworkGraph, msg: &crate::lightning::ln::msgs::ChannelAnnouncement, mut chain_access: crate::c_types::derived::COption_AccessZ) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
1998         let mut local_chain_access = { /* chain_access*/ let chain_access_opt = chain_access; { } if chain_access_opt.is_none() { None } else { Some({ chain_access_opt.take() }) } };
1999         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.update_channel_from_announcement(msg.get_native_ref(), &local_chain_access);
2000         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2001         local_ret
2002 }
2003
2004 /// Store or update channel info from a channel announcement without verifying the associated
2005 /// signatures. Because we aren't given the associated signatures here we cannot relay the
2006 /// channel announcement to any of our peers.
2007 ///
2008 /// If a `chain::Access` object is provided via `chain_access`, it will be called to verify
2009 /// the corresponding UTXO exists on chain and is correctly-formatted.
2010 #[must_use]
2011 #[no_mangle]
2012 pub extern "C" fn NetworkGraph_update_channel_from_unsigned_announcement(this_arg: &crate::lightning::routing::gossip::NetworkGraph, msg: &crate::lightning::ln::msgs::UnsignedChannelAnnouncement, mut chain_access: crate::c_types::derived::COption_AccessZ) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
2013         let mut local_chain_access = { /* chain_access*/ let chain_access_opt = chain_access; { } if chain_access_opt.is_none() { None } else { Some({ chain_access_opt.take() }) } };
2014         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.update_channel_from_unsigned_announcement(msg.get_native_ref(), &local_chain_access);
2015         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2016         local_ret
2017 }
2018
2019 /// Update channel from partial announcement data received via rapid gossip sync
2020 ///
2021 /// `timestamp: u64`: Timestamp emulating the backdated original announcement receipt (by the
2022 /// rapid gossip sync server)
2023 ///
2024 /// All other parameters as used in [`msgs::UnsignedChannelAnnouncement`] fields.
2025 #[must_use]
2026 #[no_mangle]
2027 pub extern "C" fn NetworkGraph_add_channel_from_partial_announcement(this_arg: &crate::lightning::routing::gossip::NetworkGraph, mut short_channel_id: u64, mut timestamp: u64, mut features: crate::lightning::ln::features::ChannelFeatures, mut node_id_1: crate::c_types::PublicKey, mut node_id_2: crate::c_types::PublicKey) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
2028         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.add_channel_from_partial_announcement(short_channel_id, timestamp, *unsafe { Box::from_raw(features.take_inner()) }, node_id_1.into_rust(), node_id_2.into_rust());
2029         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2030         local_ret
2031 }
2032
2033 /// Marks a channel in the graph as failed if a corresponding HTLC fail was sent.
2034 /// If permanent, removes a channel from the local storage.
2035 /// May cause the removal of nodes too, if this was their last channel.
2036 /// If not permanent, makes channels unavailable for routing.
2037 #[no_mangle]
2038 pub extern "C" fn NetworkGraph_channel_failed(this_arg: &crate::lightning::routing::gossip::NetworkGraph, mut short_channel_id: u64, mut is_permanent: bool) {
2039         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.channel_failed(short_channel_id, is_permanent)
2040 }
2041
2042 /// Marks a node in the graph as failed.
2043 #[no_mangle]
2044 pub extern "C" fn NetworkGraph_node_failed(this_arg: &crate::lightning::routing::gossip::NetworkGraph, mut _node_id: crate::c_types::PublicKey, mut is_permanent: bool) {
2045         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.node_failed(&_node_id.into_rust(), is_permanent)
2046 }
2047
2048 /// Removes information about channels that we haven't heard any updates about in some time.
2049 /// This can be used regularly to prune the network graph of channels that likely no longer
2050 /// exist.
2051 ///
2052 /// While there is no formal requirement that nodes regularly re-broadcast their channel
2053 /// updates every two weeks, the non-normative section of BOLT 7 currently suggests that
2054 /// pruning occur for updates which are at least two weeks old, which we implement here.
2055 ///
2056 /// Note that for users of the `lightning-background-processor` crate this method may be
2057 /// automatically called regularly for you.
2058 ///
2059 /// This method is only available with the `std` feature. See
2060 /// [`NetworkGraph::remove_stale_channels_with_time`] for `no-std` use.
2061 #[no_mangle]
2062 pub extern "C" fn NetworkGraph_remove_stale_channels(this_arg: &crate::lightning::routing::gossip::NetworkGraph) {
2063         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.remove_stale_channels()
2064 }
2065
2066 /// Removes information about channels that we haven't heard any updates about in some time.
2067 /// This can be used regularly to prune the network graph of channels that likely no longer
2068 /// exist.
2069 ///
2070 /// While there is no formal requirement that nodes regularly re-broadcast their channel
2071 /// updates every two weeks, the non-normative section of BOLT 7 currently suggests that
2072 /// pruning occur for updates which are at least two weeks old, which we implement here.
2073 ///
2074 /// This function takes the current unix time as an argument. For users with the `std` feature
2075 /// enabled, [`NetworkGraph::remove_stale_channels`] may be preferable.
2076 #[no_mangle]
2077 pub extern "C" fn NetworkGraph_remove_stale_channels_with_time(this_arg: &crate::lightning::routing::gossip::NetworkGraph, mut current_time_unix: u64) {
2078         unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.remove_stale_channels_with_time(current_time_unix)
2079 }
2080
2081 /// For an already known (from announcement) channel, update info about one of the directions
2082 /// of the channel.
2083 ///
2084 /// You probably don't want to call this directly, instead relying on a P2PGossipSync's
2085 /// RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
2086 /// routing messages from a source using a protocol other than the lightning P2P protocol.
2087 ///
2088 /// If built with `no-std`, any updates with a timestamp more than two weeks in the past or
2089 /// materially in the future will be rejected.
2090 #[must_use]
2091 #[no_mangle]
2092 pub extern "C" fn NetworkGraph_update_channel(this_arg: &crate::lightning::routing::gossip::NetworkGraph, msg: &crate::lightning::ln::msgs::ChannelUpdate) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
2093         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.update_channel(msg.get_native_ref());
2094         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2095         local_ret
2096 }
2097
2098 /// For an already known (from announcement) channel, update info about one of the directions
2099 /// of the channel without verifying the associated signatures. Because we aren't given the
2100 /// associated signatures here we cannot relay the channel update to any of our peers.
2101 ///
2102 /// If built with `no-std`, any updates with a timestamp more than two weeks in the past or
2103 /// materially in the future will be rejected.
2104 #[must_use]
2105 #[no_mangle]
2106 pub extern "C" fn NetworkGraph_update_channel_unsigned(this_arg: &crate::lightning::routing::gossip::NetworkGraph, msg: &crate::lightning::ln::msgs::UnsignedChannelUpdate) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
2107         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.update_channel_unsigned(msg.get_native_ref());
2108         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::msgs::LightningError { inner: ObjOps::heap_alloc(e), is_owned: true } }).into() };
2109         local_ret
2110 }
2111
2112 /// Get network addresses by node id.
2113 /// Returns None if the requested node is completely unknown,
2114 /// or if node announcement for the node was never received.
2115 #[must_use]
2116 #[no_mangle]
2117 pub extern "C" fn ReadOnlyNetworkGraph_get_addresses(this_arg: &crate::lightning::routing::gossip::ReadOnlyNetworkGraph, mut pubkey: crate::c_types::PublicKey) -> crate::c_types::derived::COption_CVec_NetAddressZZ {
2118         let mut ret = unsafe { &*ObjOps::untweak_ptr(this_arg.inner) }.get_addresses(&pubkey.into_rust());
2119         let mut local_ret = if ret.is_none() { crate::c_types::derived::COption_CVec_NetAddressZZ::None } else { crate::c_types::derived::COption_CVec_NetAddressZZ::Some( { let mut local_ret_0 = Vec::new(); for mut item in ret.unwrap().drain(..) { local_ret_0.push( { crate::lightning::ln::msgs::NetAddress::native_into(item) }); }; local_ret_0.into() }) };
2120         local_ret
2121 }
2122