Update auto-generated bindings
[rust-lightning] / lightning-c-bindings / src / routing / network_graph.rs
1 //! The top-level network map tracking logic lives here.
2
3 use std::ffi::c_void;
4 use bitcoin::hashes::Hash;
5 use crate::c_types::*;
6
7
8 use lightning::routing::network_graph::NetworkGraph as nativeNetworkGraphImport;
9 type nativeNetworkGraph = nativeNetworkGraphImport;
10
11 /// Represents the network as nodes and channels between them
12 #[must_use]
13 #[repr(C)]
14 pub struct NetworkGraph {
15         /// Nearly everywhere, inner must be non-null, however in places where
16         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
17         pub inner: *mut nativeNetworkGraph,
18         pub is_owned: bool,
19 }
20
21 impl Drop for NetworkGraph {
22         fn drop(&mut self) {
23                 if self.is_owned && !self.inner.is_null() {
24                         let _ = unsafe { Box::from_raw(self.inner) };
25                 }
26         }
27 }
28 #[no_mangle]
29 pub extern "C" fn NetworkGraph_free(this_ptr: NetworkGraph) { }
30 #[allow(unused)]
31 /// Used only if an object of this type is returned as a trait impl by a method
32 extern "C" fn NetworkGraph_free_void(this_ptr: *mut c_void) {
33         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNetworkGraph); }
34 }
35 #[allow(unused)]
36 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
37 impl NetworkGraph {
38         pub(crate) fn take_inner(mut self) -> *mut nativeNetworkGraph {
39                 assert!(self.is_owned);
40                 let ret = self.inner;
41                 self.inner = std::ptr::null_mut();
42                 ret
43         }
44 }
45
46 use lightning::routing::network_graph::LockedNetworkGraph as nativeLockedNetworkGraphImport;
47 type nativeLockedNetworkGraph = nativeLockedNetworkGraphImport<'static>;
48
49 /// A simple newtype for RwLockReadGuard<'a, NetworkGraph>.
50 /// This exists only to make accessing a RwLock<NetworkGraph> possible from
51 /// the C bindings, as it can be done directly in Rust code.
52 #[must_use]
53 #[repr(C)]
54 pub struct LockedNetworkGraph {
55         /// Nearly everywhere, inner must be non-null, however in places where
56         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
57         pub inner: *mut nativeLockedNetworkGraph,
58         pub is_owned: bool,
59 }
60
61 impl Drop for LockedNetworkGraph {
62         fn drop(&mut self) {
63                 if self.is_owned && !self.inner.is_null() {
64                         let _ = unsafe { Box::from_raw(self.inner) };
65                 }
66         }
67 }
68 #[no_mangle]
69 pub extern "C" fn LockedNetworkGraph_free(this_ptr: LockedNetworkGraph) { }
70 #[allow(unused)]
71 /// Used only if an object of this type is returned as a trait impl by a method
72 extern "C" fn LockedNetworkGraph_free_void(this_ptr: *mut c_void) {
73         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeLockedNetworkGraph); }
74 }
75 #[allow(unused)]
76 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
77 impl LockedNetworkGraph {
78         pub(crate) fn take_inner(mut self) -> *mut nativeLockedNetworkGraph {
79                 assert!(self.is_owned);
80                 let ret = self.inner;
81                 self.inner = std::ptr::null_mut();
82                 ret
83         }
84 }
85
86 use lightning::routing::network_graph::NetGraphMsgHandler as nativeNetGraphMsgHandlerImport;
87 type nativeNetGraphMsgHandler = nativeNetGraphMsgHandlerImport<crate::chain::Access, crate::util::logger::Logger>;
88
89 /// Receives and validates network updates from peers,
90 /// stores authentic and relevant data as a network graph.
91 /// This network graph is then used for routing payments.
92 /// Provides interface to help with initial routing sync by
93 /// serving historical announcements.
94 #[must_use]
95 #[repr(C)]
96 pub struct NetGraphMsgHandler {
97         /// Nearly everywhere, inner must be non-null, however in places where
98         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
99         pub inner: *mut nativeNetGraphMsgHandler,
100         pub is_owned: bool,
101 }
102
103 impl Drop for NetGraphMsgHandler {
104         fn drop(&mut self) {
105                 if self.is_owned && !self.inner.is_null() {
106                         let _ = unsafe { Box::from_raw(self.inner) };
107                 }
108         }
109 }
110 #[no_mangle]
111 pub extern "C" fn NetGraphMsgHandler_free(this_ptr: NetGraphMsgHandler) { }
112 #[allow(unused)]
113 /// Used only if an object of this type is returned as a trait impl by a method
114 extern "C" fn NetGraphMsgHandler_free_void(this_ptr: *mut c_void) {
115         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNetGraphMsgHandler); }
116 }
117 #[allow(unused)]
118 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
119 impl NetGraphMsgHandler {
120         pub(crate) fn take_inner(mut self) -> *mut nativeNetGraphMsgHandler {
121                 assert!(self.is_owned);
122                 let ret = self.inner;
123                 self.inner = std::ptr::null_mut();
124                 ret
125         }
126 }
127 /// Creates a new tracker of the actual state of the network of channels and nodes,
128 /// assuming a fresh network graph.
129 /// Chain monitor is used to make sure announced channels exist on-chain,
130 /// channel data is correct, and that the announcement is signed with
131 /// channel owners' keys.
132 #[must_use]
133 #[no_mangle]
134 pub extern "C" fn NetGraphMsgHandler_new(mut genesis_hash: crate::c_types::ThirtyTwoBytes, chain_access: *mut crate::chain::Access, mut logger: crate::util::logger::Logger) -> NetGraphMsgHandler {
135         let mut local_chain_access = if chain_access == std::ptr::null_mut() { None } else { Some( { unsafe { *Box::from_raw(chain_access) } }) };
136         let mut ret = lightning::routing::network_graph::NetGraphMsgHandler::new(::bitcoin::hash_types::BlockHash::from_slice(&genesis_hash.data[..]).unwrap(), local_chain_access, logger);
137         NetGraphMsgHandler { inner: Box::into_raw(Box::new(ret)), is_owned: true }
138 }
139
140 /// Creates a new tracker of the actual state of the network of channels and nodes,
141 /// assuming an existing Network Graph.
142 #[must_use]
143 #[no_mangle]
144 pub extern "C" fn NetGraphMsgHandler_from_net_graph(chain_access: *mut crate::chain::Access, mut logger: crate::util::logger::Logger, mut network_graph: crate::routing::network_graph::NetworkGraph) -> NetGraphMsgHandler {
145         let mut local_chain_access = if chain_access == std::ptr::null_mut() { None } else { Some( { unsafe { *Box::from_raw(chain_access) } }) };
146         let mut ret = lightning::routing::network_graph::NetGraphMsgHandler::from_net_graph(local_chain_access, logger, *unsafe { Box::from_raw(network_graph.take_inner()) });
147         NetGraphMsgHandler { inner: Box::into_raw(Box::new(ret)), is_owned: true }
148 }
149
150 /// Take a read lock on the network_graph and return it in the C-bindings
151 /// newtype helper. This is likely only useful when called via the C
152 /// bindings as you can call `self.network_graph.read().unwrap()` in Rust
153 /// yourself.
154 #[must_use]
155 #[no_mangle]
156 pub extern "C" fn NetGraphMsgHandler_read_locked_graph(this_arg: &NetGraphMsgHandler) -> crate::routing::network_graph::LockedNetworkGraph {
157         let mut ret = unsafe { &*this_arg.inner }.read_locked_graph();
158         crate::routing::network_graph::LockedNetworkGraph { inner: Box::into_raw(Box::new(ret)), is_owned: true }
159 }
160
161 /// Get a reference to the NetworkGraph which this read-lock contains.
162 #[must_use]
163 #[no_mangle]
164 pub extern "C" fn LockedNetworkGraph_graph(this_arg: &LockedNetworkGraph) -> crate::routing::network_graph::NetworkGraph {
165         let mut ret = unsafe { &*this_arg.inner }.graph();
166         crate::routing::network_graph::NetworkGraph { inner: unsafe { ( (&(*ret) as *const _) as *mut _) }, is_owned: false }
167 }
168
169 impl From<nativeNetGraphMsgHandler> for crate::ln::msgs::RoutingMessageHandler {
170         fn from(obj: nativeNetGraphMsgHandler) -> Self {
171                 let mut rust_obj = NetGraphMsgHandler { inner: Box::into_raw(Box::new(obj)), is_owned: true };
172                 let mut ret = NetGraphMsgHandler_as_RoutingMessageHandler(&rust_obj);
173                 // 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
174                 rust_obj.inner = std::ptr::null_mut();
175                 ret.free = Some(NetGraphMsgHandler_free_void);
176                 ret
177         }
178 }
179 #[no_mangle]
180 pub extern "C" fn NetGraphMsgHandler_as_RoutingMessageHandler(this_arg: &NetGraphMsgHandler) -> crate::ln::msgs::RoutingMessageHandler {
181         crate::ln::msgs::RoutingMessageHandler {
182                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
183                 free: None,
184                 handle_node_announcement: NetGraphMsgHandler_RoutingMessageHandler_handle_node_announcement,
185                 handle_channel_announcement: NetGraphMsgHandler_RoutingMessageHandler_handle_channel_announcement,
186                 handle_channel_update: NetGraphMsgHandler_RoutingMessageHandler_handle_channel_update,
187                 handle_htlc_fail_channel_update: NetGraphMsgHandler_RoutingMessageHandler_handle_htlc_fail_channel_update,
188                 get_next_channel_announcements: NetGraphMsgHandler_RoutingMessageHandler_get_next_channel_announcements,
189                 get_next_node_announcements: NetGraphMsgHandler_RoutingMessageHandler_get_next_node_announcements,
190                 sync_routing_table: NetGraphMsgHandler_RoutingMessageHandler_sync_routing_table,
191                 handle_reply_channel_range: NetGraphMsgHandler_RoutingMessageHandler_handle_reply_channel_range,
192                 handle_reply_short_channel_ids_end: NetGraphMsgHandler_RoutingMessageHandler_handle_reply_short_channel_ids_end,
193                 handle_query_channel_range: NetGraphMsgHandler_RoutingMessageHandler_handle_query_channel_range,
194                 handle_query_short_channel_ids: NetGraphMsgHandler_RoutingMessageHandler_handle_query_short_channel_ids,
195                 MessageSendEventsProvider: crate::util::events::MessageSendEventsProvider {
196                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
197                         free: None,
198                         get_and_clear_pending_msg_events: NetGraphMsgHandler_RoutingMessageHandler_get_and_clear_pending_msg_events,
199                 },
200         }
201 }
202 use lightning::ln::msgs::RoutingMessageHandler as RoutingMessageHandlerTraitImport;
203 #[must_use]
204 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_handle_node_announcement(this_arg: *const c_void, msg: &crate::ln::msgs::NodeAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ {
205         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.handle_node_announcement(unsafe { &*msg.inner });
206         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::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
207         local_ret
208 }
209 #[must_use]
210 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_handle_channel_announcement(this_arg: *const c_void, msg: &crate::ln::msgs::ChannelAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ {
211         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.handle_channel_announcement(unsafe { &*msg.inner });
212         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::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
213         local_ret
214 }
215 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_handle_htlc_fail_channel_update(this_arg: *const c_void, update: &crate::ln::msgs::HTLCFailChannelUpdate) {
216         unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.handle_htlc_fail_channel_update(&update.to_native())
217 }
218 #[must_use]
219 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_handle_channel_update(this_arg: *const c_void, msg: &crate::ln::msgs::ChannelUpdate) -> crate::c_types::derived::CResult_boolLightningErrorZ {
220         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.handle_channel_update(unsafe { &*msg.inner });
221         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::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
222         local_ret
223 }
224 #[must_use]
225 extern "C" fn NetGraphMsgHandler_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 {
226         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.get_next_channel_announcements(starting_point, batch_amount);
227         let mut local_ret = Vec::new(); for 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::ln::msgs::ChannelUpdate { inner: if orig_ret_0_1.is_none() { std::ptr::null_mut() } else {  { Box::into_raw(Box::new((orig_ret_0_1.unwrap()))) } }, is_owned: true }; let mut local_orig_ret_0_2 = crate::ln::msgs::ChannelUpdate { inner: if orig_ret_0_2.is_none() { std::ptr::null_mut() } else {  { Box::into_raw(Box::new((orig_ret_0_2.unwrap()))) } }, is_owned: true }; let mut local_ret_0 = (crate::ln::msgs::ChannelAnnouncement { inner: Box::into_raw(Box::new(orig_ret_0_0)), is_owned: true }, local_orig_ret_0_1, local_orig_ret_0_2).into(); local_ret_0 }); };
228         local_ret.into()
229 }
230 #[must_use]
231 extern "C" fn NetGraphMsgHandler_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 {
232         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();
233         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.get_next_node_announcements(local_starting_point, batch_amount);
234         let mut local_ret = Vec::new(); for item in ret.drain(..) { local_ret.push( { crate::ln::msgs::NodeAnnouncement { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
235         local_ret.into()
236 }
237 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_sync_routing_table(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, init_msg: &crate::ln::msgs::Init) {
238         unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.sync_routing_table(&their_node_id.into_rust(), unsafe { &*init_msg.inner })
239 }
240 #[must_use]
241 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_handle_reply_channel_range(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, mut msg: crate::ln::msgs::ReplyChannelRange) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
242         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.handle_reply_channel_range(&their_node_id.into_rust(), *unsafe { Box::from_raw(msg.take_inner()) });
243         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
244         local_ret
245 }
246 #[must_use]
247 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_handle_reply_short_channel_ids_end(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, mut msg: crate::ln::msgs::ReplyShortChannelIdsEnd) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
248         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.handle_reply_short_channel_ids_end(&their_node_id.into_rust(), *unsafe { Box::from_raw(msg.take_inner()) });
249         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
250         local_ret
251 }
252 #[must_use]
253 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_handle_query_channel_range(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::ln::msgs::QueryChannelRange) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
254         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.handle_query_channel_range(&_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
255         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
256         local_ret
257 }
258 #[must_use]
259 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_handle_query_short_channel_ids(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _msg: crate::ln::msgs::QueryShortChannelIds) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
260         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.handle_query_short_channel_ids(&_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
261         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
262         local_ret
263 }
264 use lightning::util::events::MessageSendEventsProvider as nativeMessageSendEventsProviderTrait;
265 #[must_use]
266 extern "C" fn NetGraphMsgHandler_RoutingMessageHandler_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
267         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.get_and_clear_pending_msg_events();
268         let mut local_ret = Vec::new(); for item in ret.drain(..) { local_ret.push( { crate::util::events::MessageSendEvent::native_into(item) }); };
269         local_ret.into()
270 }
271
272 impl From<nativeNetGraphMsgHandler> for crate::util::events::MessageSendEventsProvider {
273         fn from(obj: nativeNetGraphMsgHandler) -> Self {
274                 let mut rust_obj = NetGraphMsgHandler { inner: Box::into_raw(Box::new(obj)), is_owned: true };
275                 let mut ret = NetGraphMsgHandler_as_MessageSendEventsProvider(&rust_obj);
276                 // 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
277                 rust_obj.inner = std::ptr::null_mut();
278                 ret.free = Some(NetGraphMsgHandler_free_void);
279                 ret
280         }
281 }
282 #[no_mangle]
283 pub extern "C" fn NetGraphMsgHandler_as_MessageSendEventsProvider(this_arg: &NetGraphMsgHandler) -> crate::util::events::MessageSendEventsProvider {
284         crate::util::events::MessageSendEventsProvider {
285                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
286                 free: None,
287                 get_and_clear_pending_msg_events: NetGraphMsgHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
288         }
289 }
290 use lightning::util::events::MessageSendEventsProvider as MessageSendEventsProviderTraitImport;
291 #[must_use]
292 extern "C" fn NetGraphMsgHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
293         let mut ret = unsafe { &mut *(this_arg as *mut nativeNetGraphMsgHandler) }.get_and_clear_pending_msg_events();
294         let mut local_ret = Vec::new(); for item in ret.drain(..) { local_ret.push( { crate::util::events::MessageSendEvent::native_into(item) }); };
295         local_ret.into()
296 }
297
298
299 use lightning::routing::network_graph::DirectionalChannelInfo as nativeDirectionalChannelInfoImport;
300 type nativeDirectionalChannelInfo = nativeDirectionalChannelInfoImport;
301
302 /// Details about one direction of a channel. Received
303 /// within a channel update.
304 #[must_use]
305 #[repr(C)]
306 pub struct DirectionalChannelInfo {
307         /// Nearly everywhere, inner must be non-null, however in places where
308         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
309         pub inner: *mut nativeDirectionalChannelInfo,
310         pub is_owned: bool,
311 }
312
313 impl Drop for DirectionalChannelInfo {
314         fn drop(&mut self) {
315                 if self.is_owned && !self.inner.is_null() {
316                         let _ = unsafe { Box::from_raw(self.inner) };
317                 }
318         }
319 }
320 #[no_mangle]
321 pub extern "C" fn DirectionalChannelInfo_free(this_ptr: DirectionalChannelInfo) { }
322 #[allow(unused)]
323 /// Used only if an object of this type is returned as a trait impl by a method
324 extern "C" fn DirectionalChannelInfo_free_void(this_ptr: *mut c_void) {
325         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeDirectionalChannelInfo); }
326 }
327 #[allow(unused)]
328 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
329 impl DirectionalChannelInfo {
330         pub(crate) fn take_inner(mut self) -> *mut nativeDirectionalChannelInfo {
331                 assert!(self.is_owned);
332                 let ret = self.inner;
333                 self.inner = std::ptr::null_mut();
334                 ret
335         }
336 }
337 impl Clone for DirectionalChannelInfo {
338         fn clone(&self) -> Self {
339                 Self {
340                         inner: if self.inner.is_null() { std::ptr::null_mut() } else {
341                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
342                         is_owned: true,
343                 }
344         }
345 }
346 #[allow(unused)]
347 /// Used only if an object of this type is returned as a trait impl by a method
348 pub(crate) extern "C" fn DirectionalChannelInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
349         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeDirectionalChannelInfo)).clone() })) as *mut c_void
350 }
351 #[no_mangle]
352 pub extern "C" fn DirectionalChannelInfo_clone(orig: &DirectionalChannelInfo) -> DirectionalChannelInfo {
353         orig.clone()
354 }
355 /// When the last update to the channel direction was issued.
356 /// Value is opaque, as set in the announcement.
357 #[no_mangle]
358 pub extern "C" fn DirectionalChannelInfo_get_last_update(this_ptr: &DirectionalChannelInfo) -> u32 {
359         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.last_update;
360         (*inner_val)
361 }
362 /// When the last update to the channel direction was issued.
363 /// Value is opaque, as set in the announcement.
364 #[no_mangle]
365 pub extern "C" fn DirectionalChannelInfo_set_last_update(this_ptr: &mut DirectionalChannelInfo, mut val: u32) {
366         unsafe { &mut *this_ptr.inner }.last_update = val;
367 }
368 /// Whether the channel can be currently used for payments (in this one direction).
369 #[no_mangle]
370 pub extern "C" fn DirectionalChannelInfo_get_enabled(this_ptr: &DirectionalChannelInfo) -> bool {
371         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.enabled;
372         (*inner_val)
373 }
374 /// Whether the channel can be currently used for payments (in this one direction).
375 #[no_mangle]
376 pub extern "C" fn DirectionalChannelInfo_set_enabled(this_ptr: &mut DirectionalChannelInfo, mut val: bool) {
377         unsafe { &mut *this_ptr.inner }.enabled = val;
378 }
379 /// The difference in CLTV values that you must have when routing through this channel.
380 #[no_mangle]
381 pub extern "C" fn DirectionalChannelInfo_get_cltv_expiry_delta(this_ptr: &DirectionalChannelInfo) -> u16 {
382         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.cltv_expiry_delta;
383         (*inner_val)
384 }
385 /// The difference in CLTV values that you must have when routing through this channel.
386 #[no_mangle]
387 pub extern "C" fn DirectionalChannelInfo_set_cltv_expiry_delta(this_ptr: &mut DirectionalChannelInfo, mut val: u16) {
388         unsafe { &mut *this_ptr.inner }.cltv_expiry_delta = val;
389 }
390 /// The minimum value, which must be relayed to the next hop via the channel
391 #[no_mangle]
392 pub extern "C" fn DirectionalChannelInfo_get_htlc_minimum_msat(this_ptr: &DirectionalChannelInfo) -> u64 {
393         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.htlc_minimum_msat;
394         (*inner_val)
395 }
396 /// The minimum value, which must be relayed to the next hop via the channel
397 #[no_mangle]
398 pub extern "C" fn DirectionalChannelInfo_set_htlc_minimum_msat(this_ptr: &mut DirectionalChannelInfo, mut val: u64) {
399         unsafe { &mut *this_ptr.inner }.htlc_minimum_msat = val;
400 }
401 /// Fees charged when the channel is used for routing
402 #[no_mangle]
403 pub extern "C" fn DirectionalChannelInfo_get_fees(this_ptr: &DirectionalChannelInfo) -> crate::routing::network_graph::RoutingFees {
404         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.fees;
405         crate::routing::network_graph::RoutingFees { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
406 }
407 /// Fees charged when the channel is used for routing
408 #[no_mangle]
409 pub extern "C" fn DirectionalChannelInfo_set_fees(this_ptr: &mut DirectionalChannelInfo, mut val: crate::routing::network_graph::RoutingFees) {
410         unsafe { &mut *this_ptr.inner }.fees = *unsafe { Box::from_raw(val.take_inner()) };
411 }
412 /// Most recent update for the channel received from the network
413 /// Mostly redundant with the data we store in fields explicitly.
414 /// Everything else is useful only for sending out for initial routing sync.
415 /// Not stored if contains excess data to prevent DoS.
416 #[no_mangle]
417 pub extern "C" fn DirectionalChannelInfo_get_last_update_message(this_ptr: &DirectionalChannelInfo) -> crate::ln::msgs::ChannelUpdate {
418         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.last_update_message;
419         let mut local_inner_val = crate::ln::msgs::ChannelUpdate { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
420         local_inner_val
421 }
422 /// Most recent update for the channel received from the network
423 /// Mostly redundant with the data we store in fields explicitly.
424 /// Everything else is useful only for sending out for initial routing sync.
425 /// Not stored if contains excess data to prevent DoS.
426 #[no_mangle]
427 pub extern "C" fn DirectionalChannelInfo_set_last_update_message(this_ptr: &mut DirectionalChannelInfo, mut val: crate::ln::msgs::ChannelUpdate) {
428         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
429         unsafe { &mut *this_ptr.inner }.last_update_message = local_val;
430 }
431 #[no_mangle]
432 pub extern "C" fn DirectionalChannelInfo_write(obj: &DirectionalChannelInfo) -> crate::c_types::derived::CVec_u8Z {
433         crate::c_types::serialize_obj(unsafe { &(*(*obj).inner) })
434 }
435 #[no_mangle]
436 pub(crate) extern "C" fn DirectionalChannelInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
437         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeDirectionalChannelInfo) })
438 }
439 #[no_mangle]
440 pub extern "C" fn DirectionalChannelInfo_read(ser: crate::c_types::u8slice) -> DirectionalChannelInfo {
441         if let Ok(res) = crate::c_types::deserialize_obj(ser) {
442                 DirectionalChannelInfo { inner: Box::into_raw(Box::new(res)), is_owned: true }
443         } else {
444                 DirectionalChannelInfo { inner: std::ptr::null_mut(), is_owned: true }
445         }
446 }
447
448 use lightning::routing::network_graph::ChannelInfo as nativeChannelInfoImport;
449 type nativeChannelInfo = nativeChannelInfoImport;
450
451 /// Details about a channel (both directions).
452 /// Received within a channel announcement.
453 #[must_use]
454 #[repr(C)]
455 pub struct ChannelInfo {
456         /// Nearly everywhere, inner must be non-null, however in places where
457         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
458         pub inner: *mut nativeChannelInfo,
459         pub is_owned: bool,
460 }
461
462 impl Drop for ChannelInfo {
463         fn drop(&mut self) {
464                 if self.is_owned && !self.inner.is_null() {
465                         let _ = unsafe { Box::from_raw(self.inner) };
466                 }
467         }
468 }
469 #[no_mangle]
470 pub extern "C" fn ChannelInfo_free(this_ptr: ChannelInfo) { }
471 #[allow(unused)]
472 /// Used only if an object of this type is returned as a trait impl by a method
473 extern "C" fn ChannelInfo_free_void(this_ptr: *mut c_void) {
474         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeChannelInfo); }
475 }
476 #[allow(unused)]
477 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
478 impl ChannelInfo {
479         pub(crate) fn take_inner(mut self) -> *mut nativeChannelInfo {
480                 assert!(self.is_owned);
481                 let ret = self.inner;
482                 self.inner = std::ptr::null_mut();
483                 ret
484         }
485 }
486 /// Protocol features of a channel communicated during its announcement
487 #[no_mangle]
488 pub extern "C" fn ChannelInfo_get_features(this_ptr: &ChannelInfo) -> crate::ln::features::ChannelFeatures {
489         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.features;
490         crate::ln::features::ChannelFeatures { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
491 }
492 /// Protocol features of a channel communicated during its announcement
493 #[no_mangle]
494 pub extern "C" fn ChannelInfo_set_features(this_ptr: &mut ChannelInfo, mut val: crate::ln::features::ChannelFeatures) {
495         unsafe { &mut *this_ptr.inner }.features = *unsafe { Box::from_raw(val.take_inner()) };
496 }
497 /// Source node of the first direction of a channel
498 #[no_mangle]
499 pub extern "C" fn ChannelInfo_get_node_one(this_ptr: &ChannelInfo) -> crate::c_types::PublicKey {
500         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_one;
501         crate::c_types::PublicKey::from_rust(&(*inner_val))
502 }
503 /// Source node of the first direction of a channel
504 #[no_mangle]
505 pub extern "C" fn ChannelInfo_set_node_one(this_ptr: &mut ChannelInfo, mut val: crate::c_types::PublicKey) {
506         unsafe { &mut *this_ptr.inner }.node_one = val.into_rust();
507 }
508 /// Details about the first direction of a channel
509 #[no_mangle]
510 pub extern "C" fn ChannelInfo_get_one_to_two(this_ptr: &ChannelInfo) -> crate::routing::network_graph::DirectionalChannelInfo {
511         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.one_to_two;
512         let mut local_inner_val = crate::routing::network_graph::DirectionalChannelInfo { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
513         local_inner_val
514 }
515 /// Details about the first direction of a channel
516 #[no_mangle]
517 pub extern "C" fn ChannelInfo_set_one_to_two(this_ptr: &mut ChannelInfo, mut val: crate::routing::network_graph::DirectionalChannelInfo) {
518         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
519         unsafe { &mut *this_ptr.inner }.one_to_two = local_val;
520 }
521 /// Source node of the second direction of a channel
522 #[no_mangle]
523 pub extern "C" fn ChannelInfo_get_node_two(this_ptr: &ChannelInfo) -> crate::c_types::PublicKey {
524         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.node_two;
525         crate::c_types::PublicKey::from_rust(&(*inner_val))
526 }
527 /// Source node of the second direction of a channel
528 #[no_mangle]
529 pub extern "C" fn ChannelInfo_set_node_two(this_ptr: &mut ChannelInfo, mut val: crate::c_types::PublicKey) {
530         unsafe { &mut *this_ptr.inner }.node_two = val.into_rust();
531 }
532 /// Details about the second direction of a channel
533 #[no_mangle]
534 pub extern "C" fn ChannelInfo_get_two_to_one(this_ptr: &ChannelInfo) -> crate::routing::network_graph::DirectionalChannelInfo {
535         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.two_to_one;
536         let mut local_inner_val = crate::routing::network_graph::DirectionalChannelInfo { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
537         local_inner_val
538 }
539 /// Details about the second direction of a channel
540 #[no_mangle]
541 pub extern "C" fn ChannelInfo_set_two_to_one(this_ptr: &mut ChannelInfo, mut val: crate::routing::network_graph::DirectionalChannelInfo) {
542         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
543         unsafe { &mut *this_ptr.inner }.two_to_one = local_val;
544 }
545 /// An initial announcement of the channel
546 /// Mostly redundant with the data we store in fields explicitly.
547 /// Everything else is useful only for sending out for initial routing sync.
548 /// Not stored if contains excess data to prevent DoS.
549 #[no_mangle]
550 pub extern "C" fn ChannelInfo_get_announcement_message(this_ptr: &ChannelInfo) -> crate::ln::msgs::ChannelAnnouncement {
551         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.announcement_message;
552         let mut local_inner_val = crate::ln::msgs::ChannelAnnouncement { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
553         local_inner_val
554 }
555 /// An initial announcement of the channel
556 /// Mostly redundant with the data we store in fields explicitly.
557 /// Everything else is useful only for sending out for initial routing sync.
558 /// Not stored if contains excess data to prevent DoS.
559 #[no_mangle]
560 pub extern "C" fn ChannelInfo_set_announcement_message(this_ptr: &mut ChannelInfo, mut val: crate::ln::msgs::ChannelAnnouncement) {
561         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
562         unsafe { &mut *this_ptr.inner }.announcement_message = local_val;
563 }
564 #[no_mangle]
565 pub extern "C" fn ChannelInfo_write(obj: &ChannelInfo) -> crate::c_types::derived::CVec_u8Z {
566         crate::c_types::serialize_obj(unsafe { &(*(*obj).inner) })
567 }
568 #[no_mangle]
569 pub(crate) extern "C" fn ChannelInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
570         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeChannelInfo) })
571 }
572 #[no_mangle]
573 pub extern "C" fn ChannelInfo_read(ser: crate::c_types::u8slice) -> ChannelInfo {
574         if let Ok(res) = crate::c_types::deserialize_obj(ser) {
575                 ChannelInfo { inner: Box::into_raw(Box::new(res)), is_owned: true }
576         } else {
577                 ChannelInfo { inner: std::ptr::null_mut(), is_owned: true }
578         }
579 }
580
581 use lightning::routing::network_graph::RoutingFees as nativeRoutingFeesImport;
582 type nativeRoutingFees = nativeRoutingFeesImport;
583
584 /// Fees for routing via a given channel or a node
585 #[must_use]
586 #[repr(C)]
587 pub struct RoutingFees {
588         /// Nearly everywhere, inner must be non-null, however in places where
589         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
590         pub inner: *mut nativeRoutingFees,
591         pub is_owned: bool,
592 }
593
594 impl Drop for RoutingFees {
595         fn drop(&mut self) {
596                 if self.is_owned && !self.inner.is_null() {
597                         let _ = unsafe { Box::from_raw(self.inner) };
598                 }
599         }
600 }
601 #[no_mangle]
602 pub extern "C" fn RoutingFees_free(this_ptr: RoutingFees) { }
603 #[allow(unused)]
604 /// Used only if an object of this type is returned as a trait impl by a method
605 extern "C" fn RoutingFees_free_void(this_ptr: *mut c_void) {
606         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeRoutingFees); }
607 }
608 #[allow(unused)]
609 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
610 impl RoutingFees {
611         pub(crate) fn take_inner(mut self) -> *mut nativeRoutingFees {
612                 assert!(self.is_owned);
613                 let ret = self.inner;
614                 self.inner = std::ptr::null_mut();
615                 ret
616         }
617 }
618 impl Clone for RoutingFees {
619         fn clone(&self) -> Self {
620                 Self {
621                         inner: if self.inner.is_null() { std::ptr::null_mut() } else {
622                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
623                         is_owned: true,
624                 }
625         }
626 }
627 #[allow(unused)]
628 /// Used only if an object of this type is returned as a trait impl by a method
629 pub(crate) extern "C" fn RoutingFees_clone_void(this_ptr: *const c_void) -> *mut c_void {
630         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeRoutingFees)).clone() })) as *mut c_void
631 }
632 #[no_mangle]
633 pub extern "C" fn RoutingFees_clone(orig: &RoutingFees) -> RoutingFees {
634         orig.clone()
635 }
636 /// Flat routing fee in satoshis
637 #[no_mangle]
638 pub extern "C" fn RoutingFees_get_base_msat(this_ptr: &RoutingFees) -> u32 {
639         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.base_msat;
640         (*inner_val)
641 }
642 /// Flat routing fee in satoshis
643 #[no_mangle]
644 pub extern "C" fn RoutingFees_set_base_msat(this_ptr: &mut RoutingFees, mut val: u32) {
645         unsafe { &mut *this_ptr.inner }.base_msat = val;
646 }
647 /// Liquidity-based routing fee in millionths of a routed amount.
648 /// In other words, 10000 is 1%.
649 #[no_mangle]
650 pub extern "C" fn RoutingFees_get_proportional_millionths(this_ptr: &RoutingFees) -> u32 {
651         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.proportional_millionths;
652         (*inner_val)
653 }
654 /// Liquidity-based routing fee in millionths of a routed amount.
655 /// In other words, 10000 is 1%.
656 #[no_mangle]
657 pub extern "C" fn RoutingFees_set_proportional_millionths(this_ptr: &mut RoutingFees, mut val: u32) {
658         unsafe { &mut *this_ptr.inner }.proportional_millionths = val;
659 }
660 #[must_use]
661 #[no_mangle]
662 pub extern "C" fn RoutingFees_new(mut base_msat_arg: u32, mut proportional_millionths_arg: u32) -> RoutingFees {
663         RoutingFees { inner: Box::into_raw(Box::new(nativeRoutingFees {
664                 base_msat: base_msat_arg,
665                 proportional_millionths: proportional_millionths_arg,
666         })), is_owned: true }
667 }
668 #[no_mangle]
669 pub extern "C" fn RoutingFees_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_RoutingFeesDecodeErrorZ {
670         let res = crate::c_types::deserialize_obj(ser);
671         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::routing::network_graph::RoutingFees { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
672         local_res
673 }
674 #[no_mangle]
675 pub extern "C" fn RoutingFees_write(obj: &RoutingFees) -> crate::c_types::derived::CVec_u8Z {
676         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
677 }
678 #[no_mangle]
679 pub(crate) extern "C" fn RoutingFees_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
680         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeRoutingFees) })
681 }
682
683 use lightning::routing::network_graph::NodeAnnouncementInfo as nativeNodeAnnouncementInfoImport;
684 type nativeNodeAnnouncementInfo = nativeNodeAnnouncementInfoImport;
685
686 /// Information received in the latest node_announcement from this node.
687 #[must_use]
688 #[repr(C)]
689 pub struct NodeAnnouncementInfo {
690         /// Nearly everywhere, inner must be non-null, however in places where
691         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
692         pub inner: *mut nativeNodeAnnouncementInfo,
693         pub is_owned: bool,
694 }
695
696 impl Drop for NodeAnnouncementInfo {
697         fn drop(&mut self) {
698                 if self.is_owned && !self.inner.is_null() {
699                         let _ = unsafe { Box::from_raw(self.inner) };
700                 }
701         }
702 }
703 #[no_mangle]
704 pub extern "C" fn NodeAnnouncementInfo_free(this_ptr: NodeAnnouncementInfo) { }
705 #[allow(unused)]
706 /// Used only if an object of this type is returned as a trait impl by a method
707 extern "C" fn NodeAnnouncementInfo_free_void(this_ptr: *mut c_void) {
708         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNodeAnnouncementInfo); }
709 }
710 #[allow(unused)]
711 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
712 impl NodeAnnouncementInfo {
713         pub(crate) fn take_inner(mut self) -> *mut nativeNodeAnnouncementInfo {
714                 assert!(self.is_owned);
715                 let ret = self.inner;
716                 self.inner = std::ptr::null_mut();
717                 ret
718         }
719 }
720 impl Clone for NodeAnnouncementInfo {
721         fn clone(&self) -> Self {
722                 Self {
723                         inner: if self.inner.is_null() { std::ptr::null_mut() } else {
724                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
725                         is_owned: true,
726                 }
727         }
728 }
729 #[allow(unused)]
730 /// Used only if an object of this type is returned as a trait impl by a method
731 pub(crate) extern "C" fn NodeAnnouncementInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
732         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeNodeAnnouncementInfo)).clone() })) as *mut c_void
733 }
734 #[no_mangle]
735 pub extern "C" fn NodeAnnouncementInfo_clone(orig: &NodeAnnouncementInfo) -> NodeAnnouncementInfo {
736         orig.clone()
737 }
738 /// Protocol features the node announced support for
739 #[no_mangle]
740 pub extern "C" fn NodeAnnouncementInfo_get_features(this_ptr: &NodeAnnouncementInfo) -> crate::ln::features::NodeFeatures {
741         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.features;
742         crate::ln::features::NodeFeatures { inner: unsafe { ( (&((*inner_val)) as *const _) as *mut _) }, is_owned: false }
743 }
744 /// Protocol features the node announced support for
745 #[no_mangle]
746 pub extern "C" fn NodeAnnouncementInfo_set_features(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::ln::features::NodeFeatures) {
747         unsafe { &mut *this_ptr.inner }.features = *unsafe { Box::from_raw(val.take_inner()) };
748 }
749 /// When the last known update to the node state was issued.
750 /// Value is opaque, as set in the announcement.
751 #[no_mangle]
752 pub extern "C" fn NodeAnnouncementInfo_get_last_update(this_ptr: &NodeAnnouncementInfo) -> u32 {
753         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.last_update;
754         (*inner_val)
755 }
756 /// When the last known update to the node state was issued.
757 /// Value is opaque, as set in the announcement.
758 #[no_mangle]
759 pub extern "C" fn NodeAnnouncementInfo_set_last_update(this_ptr: &mut NodeAnnouncementInfo, mut val: u32) {
760         unsafe { &mut *this_ptr.inner }.last_update = val;
761 }
762 /// Color assigned to the node
763 #[no_mangle]
764 pub extern "C" fn NodeAnnouncementInfo_get_rgb(this_ptr: &NodeAnnouncementInfo) -> *const [u8; 3] {
765         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.rgb;
766         &(*inner_val)
767 }
768 /// Color assigned to the node
769 #[no_mangle]
770 pub extern "C" fn NodeAnnouncementInfo_set_rgb(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::c_types::ThreeBytes) {
771         unsafe { &mut *this_ptr.inner }.rgb = val.data;
772 }
773 /// Moniker assigned to the node.
774 /// May be invalid or malicious (eg control chars),
775 /// should not be exposed to the user.
776 #[no_mangle]
777 pub extern "C" fn NodeAnnouncementInfo_get_alias(this_ptr: &NodeAnnouncementInfo) -> *const [u8; 32] {
778         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.alias;
779         &(*inner_val)
780 }
781 /// Moniker assigned to the node.
782 /// May be invalid or malicious (eg control chars),
783 /// should not be exposed to the user.
784 #[no_mangle]
785 pub extern "C" fn NodeAnnouncementInfo_set_alias(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::c_types::ThirtyTwoBytes) {
786         unsafe { &mut *this_ptr.inner }.alias = val.data;
787 }
788 /// Internet-level addresses via which one can connect to the node
789 #[no_mangle]
790 pub extern "C" fn NodeAnnouncementInfo_set_addresses(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::c_types::derived::CVec_NetAddressZ) {
791         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item.into_native() }); };
792         unsafe { &mut *this_ptr.inner }.addresses = local_val;
793 }
794 /// An initial announcement of the node
795 /// Mostly redundant with the data we store in fields explicitly.
796 /// Everything else is useful only for sending out for initial routing sync.
797 /// Not stored if contains excess data to prevent DoS.
798 #[no_mangle]
799 pub extern "C" fn NodeAnnouncementInfo_get_announcement_message(this_ptr: &NodeAnnouncementInfo) -> crate::ln::msgs::NodeAnnouncement {
800         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.announcement_message;
801         let mut local_inner_val = crate::ln::msgs::NodeAnnouncement { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
802         local_inner_val
803 }
804 /// An initial announcement of the node
805 /// Mostly redundant with the data we store in fields explicitly.
806 /// Everything else is useful only for sending out for initial routing sync.
807 /// Not stored if contains excess data to prevent DoS.
808 #[no_mangle]
809 pub extern "C" fn NodeAnnouncementInfo_set_announcement_message(this_ptr: &mut NodeAnnouncementInfo, mut val: crate::ln::msgs::NodeAnnouncement) {
810         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
811         unsafe { &mut *this_ptr.inner }.announcement_message = local_val;
812 }
813 #[must_use]
814 #[no_mangle]
815 pub extern "C" fn NodeAnnouncementInfo_new(mut features_arg: crate::ln::features::NodeFeatures, mut last_update_arg: u32, mut rgb_arg: crate::c_types::ThreeBytes, mut alias_arg: crate::c_types::ThirtyTwoBytes, mut addresses_arg: crate::c_types::derived::CVec_NetAddressZ, mut announcement_message_arg: crate::ln::msgs::NodeAnnouncement) -> NodeAnnouncementInfo {
816         let mut local_addresses_arg = Vec::new(); for mut item in addresses_arg.into_rust().drain(..) { local_addresses_arg.push( { item.into_native() }); };
817         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()) } }) };
818         NodeAnnouncementInfo { inner: Box::into_raw(Box::new(nativeNodeAnnouncementInfo {
819                 features: *unsafe { Box::from_raw(features_arg.take_inner()) },
820                 last_update: last_update_arg,
821                 rgb: rgb_arg.data,
822                 alias: alias_arg.data,
823                 addresses: local_addresses_arg,
824                 announcement_message: local_announcement_message_arg,
825         })), is_owned: true }
826 }
827 #[no_mangle]
828 pub extern "C" fn NodeAnnouncementInfo_write(obj: &NodeAnnouncementInfo) -> crate::c_types::derived::CVec_u8Z {
829         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
830 }
831 #[no_mangle]
832 pub(crate) extern "C" fn NodeAnnouncementInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
833         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNodeAnnouncementInfo) })
834 }
835 #[no_mangle]
836 pub extern "C" fn NodeAnnouncementInfo_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_NodeAnnouncementInfoDecodeErrorZ {
837         let res = crate::c_types::deserialize_obj(ser);
838         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::routing::network_graph::NodeAnnouncementInfo { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
839         local_res
840 }
841
842 use lightning::routing::network_graph::NodeInfo as nativeNodeInfoImport;
843 type nativeNodeInfo = nativeNodeInfoImport;
844
845 /// Details about a node in the network, known from the network announcement.
846 #[must_use]
847 #[repr(C)]
848 pub struct NodeInfo {
849         /// Nearly everywhere, inner must be non-null, however in places where
850         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
851         pub inner: *mut nativeNodeInfo,
852         pub is_owned: bool,
853 }
854
855 impl Drop for NodeInfo {
856         fn drop(&mut self) {
857                 if self.is_owned && !self.inner.is_null() {
858                         let _ = unsafe { Box::from_raw(self.inner) };
859                 }
860         }
861 }
862 #[no_mangle]
863 pub extern "C" fn NodeInfo_free(this_ptr: NodeInfo) { }
864 #[allow(unused)]
865 /// Used only if an object of this type is returned as a trait impl by a method
866 extern "C" fn NodeInfo_free_void(this_ptr: *mut c_void) {
867         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeNodeInfo); }
868 }
869 #[allow(unused)]
870 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
871 impl NodeInfo {
872         pub(crate) fn take_inner(mut self) -> *mut nativeNodeInfo {
873                 assert!(self.is_owned);
874                 let ret = self.inner;
875                 self.inner = std::ptr::null_mut();
876                 ret
877         }
878 }
879 impl Clone for NodeInfo {
880         fn clone(&self) -> Self {
881                 Self {
882                         inner: if self.inner.is_null() { std::ptr::null_mut() } else {
883                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
884                         is_owned: true,
885                 }
886         }
887 }
888 #[allow(unused)]
889 /// Used only if an object of this type is returned as a trait impl by a method
890 pub(crate) extern "C" fn NodeInfo_clone_void(this_ptr: *const c_void) -> *mut c_void {
891         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeNodeInfo)).clone() })) as *mut c_void
892 }
893 #[no_mangle]
894 pub extern "C" fn NodeInfo_clone(orig: &NodeInfo) -> NodeInfo {
895         orig.clone()
896 }
897 /// All valid channels a node has announced
898 #[no_mangle]
899 pub extern "C" fn NodeInfo_set_channels(this_ptr: &mut NodeInfo, mut val: crate::c_types::derived::CVec_u64Z) {
900         let mut local_val = Vec::new(); for mut item in val.into_rust().drain(..) { local_val.push( { item }); };
901         unsafe { &mut *this_ptr.inner }.channels = local_val;
902 }
903 /// Lowest fees enabling routing via any of the enabled, known channels to a node.
904 /// The two fields (flat and proportional fee) are independent,
905 /// meaning they don't have to refer to the same channel.
906 #[no_mangle]
907 pub extern "C" fn NodeInfo_get_lowest_inbound_channel_fees(this_ptr: &NodeInfo) -> crate::routing::network_graph::RoutingFees {
908         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.lowest_inbound_channel_fees;
909         let mut local_inner_val = crate::routing::network_graph::RoutingFees { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
910         local_inner_val
911 }
912 /// Lowest fees enabling routing via any of the enabled, known channels to a node.
913 /// The two fields (flat and proportional fee) are independent,
914 /// meaning they don't have to refer to the same channel.
915 #[no_mangle]
916 pub extern "C" fn NodeInfo_set_lowest_inbound_channel_fees(this_ptr: &mut NodeInfo, mut val: crate::routing::network_graph::RoutingFees) {
917         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
918         unsafe { &mut *this_ptr.inner }.lowest_inbound_channel_fees = local_val;
919 }
920 /// More information about a node from node_announcement.
921 /// Optional because we store a Node entry after learning about it from
922 /// a channel announcement, but before receiving a node announcement.
923 #[no_mangle]
924 pub extern "C" fn NodeInfo_get_announcement_info(this_ptr: &NodeInfo) -> crate::routing::network_graph::NodeAnnouncementInfo {
925         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.announcement_info;
926         let mut local_inner_val = crate::routing::network_graph::NodeAnnouncementInfo { inner: unsafe { (if inner_val.is_none() { std::ptr::null() } else {  { (inner_val.as_ref().unwrap()) } } as *const _) as *mut _ }, is_owned: false };
927         local_inner_val
928 }
929 /// More information about a node from node_announcement.
930 /// Optional because we store a Node entry after learning about it from
931 /// a channel announcement, but before receiving a node announcement.
932 #[no_mangle]
933 pub extern "C" fn NodeInfo_set_announcement_info(this_ptr: &mut NodeInfo, mut val: crate::routing::network_graph::NodeAnnouncementInfo) {
934         let mut local_val = if val.inner.is_null() { None } else { Some( { *unsafe { Box::from_raw(val.take_inner()) } }) };
935         unsafe { &mut *this_ptr.inner }.announcement_info = local_val;
936 }
937 #[must_use]
938 #[no_mangle]
939 pub extern "C" fn NodeInfo_new(mut channels_arg: crate::c_types::derived::CVec_u64Z, mut lowest_inbound_channel_fees_arg: crate::routing::network_graph::RoutingFees, mut announcement_info_arg: crate::routing::network_graph::NodeAnnouncementInfo) -> NodeInfo {
940         let mut local_channels_arg = Vec::new(); for mut item in channels_arg.into_rust().drain(..) { local_channels_arg.push( { item }); };
941         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()) } }) };
942         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()) } }) };
943         NodeInfo { inner: Box::into_raw(Box::new(nativeNodeInfo {
944                 channels: local_channels_arg,
945                 lowest_inbound_channel_fees: local_lowest_inbound_channel_fees_arg,
946                 announcement_info: local_announcement_info_arg,
947         })), is_owned: true }
948 }
949 #[no_mangle]
950 pub extern "C" fn NodeInfo_write(obj: &NodeInfo) -> crate::c_types::derived::CVec_u8Z {
951         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
952 }
953 #[no_mangle]
954 pub(crate) extern "C" fn NodeInfo_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
955         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNodeInfo) })
956 }
957 #[no_mangle]
958 pub extern "C" fn NodeInfo_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_NodeInfoDecodeErrorZ {
959         let res = crate::c_types::deserialize_obj(ser);
960         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::routing::network_graph::NodeInfo { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
961         local_res
962 }
963 #[no_mangle]
964 pub extern "C" fn NetworkGraph_write(obj: &NetworkGraph) -> crate::c_types::derived::CVec_u8Z {
965         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
966 }
967 #[no_mangle]
968 pub(crate) extern "C" fn NetworkGraph_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
969         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeNetworkGraph) })
970 }
971 #[no_mangle]
972 pub extern "C" fn NetworkGraph_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_NetworkGraphDecodeErrorZ {
973         let res = crate::c_types::deserialize_obj(ser);
974         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::routing::network_graph::NetworkGraph { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
975         local_res
976 }
977 /// Creates a new, empty, network graph.
978 #[must_use]
979 #[no_mangle]
980 pub extern "C" fn NetworkGraph_new(mut genesis_hash: crate::c_types::ThirtyTwoBytes) -> crate::routing::network_graph::NetworkGraph {
981         let mut ret = lightning::routing::network_graph::NetworkGraph::new(::bitcoin::hash_types::BlockHash::from_slice(&genesis_hash.data[..]).unwrap());
982         crate::routing::network_graph::NetworkGraph { inner: Box::into_raw(Box::new(ret)), is_owned: true }
983 }
984
985 /// For an already known node (from channel announcements), update its stored properties from a
986 /// given node announcement.
987 ///
988 /// You probably don't want to call this directly, instead relying on a NetGraphMsgHandler's
989 /// RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
990 /// routing messages from a source using a protocol other than the lightning P2P protocol.
991 #[must_use]
992 #[no_mangle]
993 pub extern "C" fn NetworkGraph_update_node_from_announcement(this_arg: &mut NetworkGraph, msg: &crate::ln::msgs::NodeAnnouncement) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
994         let mut ret = unsafe { &mut (*(this_arg.inner as *mut nativeNetworkGraph)) }.update_node_from_announcement(unsafe { &*msg.inner }, &bitcoin::secp256k1::Secp256k1::new());
995         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
996         local_ret
997 }
998
999 /// For an already known node (from channel announcements), update its stored properties from a
1000 /// given node announcement without verifying the associated signatures. Because we aren't
1001 /// given the associated signatures here we cannot relay the node announcement to any of our
1002 /// peers.
1003 #[must_use]
1004 #[no_mangle]
1005 pub extern "C" fn NetworkGraph_update_node_from_unsigned_announcement(this_arg: &mut NetworkGraph, msg: &crate::ln::msgs::UnsignedNodeAnnouncement) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
1006         let mut ret = unsafe { &mut (*(this_arg.inner as *mut nativeNetworkGraph)) }.update_node_from_unsigned_announcement(unsafe { &*msg.inner });
1007         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1008         local_ret
1009 }
1010
1011 /// Store or update channel info from a channel announcement.
1012 ///
1013 /// You probably don't want to call this directly, instead relying on a NetGraphMsgHandler's
1014 /// RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
1015 /// routing messages from a source using a protocol other than the lightning P2P protocol.
1016 ///
1017 /// If a `chain::Access` object is provided via `chain_access`, it will be called to verify
1018 /// the corresponding UTXO exists on chain and is correctly-formatted.
1019 #[must_use]
1020 #[no_mangle]
1021 pub extern "C" fn NetworkGraph_update_channel_from_announcement(this_arg: &mut NetworkGraph, msg: &crate::ln::msgs::ChannelAnnouncement, chain_access: *mut crate::chain::Access) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
1022         let mut local_chain_access = if chain_access == std::ptr::null_mut() { None } else { Some( { unsafe { *Box::from_raw(chain_access) } }) };
1023         let mut ret = unsafe { &mut (*(this_arg.inner as *mut nativeNetworkGraph)) }.update_channel_from_announcement(unsafe { &*msg.inner }, &local_chain_access, &bitcoin::secp256k1::Secp256k1::new());
1024         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1025         local_ret
1026 }
1027
1028 /// Store or update channel info from a channel announcement without verifying the associated
1029 /// signatures. Because we aren't given the associated signatures here we cannot relay the
1030 /// channel announcement to any of our peers.
1031 ///
1032 /// If a `chain::Access` object is provided via `chain_access`, it will be called to verify
1033 /// the corresponding UTXO exists on chain and is correctly-formatted.
1034 #[must_use]
1035 #[no_mangle]
1036 pub extern "C" fn NetworkGraph_update_channel_from_unsigned_announcement(this_arg: &mut NetworkGraph, msg: &crate::ln::msgs::UnsignedChannelAnnouncement, chain_access: *mut crate::chain::Access) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
1037         let mut local_chain_access = if chain_access == std::ptr::null_mut() { None } else { Some( { unsafe { *Box::from_raw(chain_access) } }) };
1038         let mut ret = unsafe { &mut (*(this_arg.inner as *mut nativeNetworkGraph)) }.update_channel_from_unsigned_announcement(unsafe { &*msg.inner }, &local_chain_access);
1039         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1040         local_ret
1041 }
1042
1043 /// Close a channel if a corresponding HTLC fail was sent.
1044 /// If permanent, removes a channel from the local storage.
1045 /// May cause the removal of nodes too, if this was their last channel.
1046 /// If not permanent, makes channels unavailable for routing.
1047 #[no_mangle]
1048 pub extern "C" fn NetworkGraph_close_channel_from_update(this_arg: &mut NetworkGraph, mut short_channel_id: u64, mut is_permanent: bool) {
1049         unsafe { &mut (*(this_arg.inner as *mut nativeNetworkGraph)) }.close_channel_from_update(short_channel_id, is_permanent)
1050 }
1051
1052 /// For an already known (from announcement) channel, update info about one of the directions
1053 /// of the channel.
1054 ///
1055 /// You probably don't want to call this directly, instead relying on a NetGraphMsgHandler's
1056 /// RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
1057 /// routing messages from a source using a protocol other than the lightning P2P protocol.
1058 #[must_use]
1059 #[no_mangle]
1060 pub extern "C" fn NetworkGraph_update_channel(this_arg: &mut NetworkGraph, msg: &crate::ln::msgs::ChannelUpdate) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
1061         let mut ret = unsafe { &mut (*(this_arg.inner as *mut nativeNetworkGraph)) }.update_channel(unsafe { &*msg.inner }, &bitcoin::secp256k1::Secp256k1::new());
1062         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1063         local_ret
1064 }
1065
1066 /// For an already known (from announcement) channel, update info about one of the directions
1067 /// of the channel without verifying the associated signatures. Because we aren't given the
1068 /// associated signatures here we cannot relay the channel update to any of our peers.
1069 #[must_use]
1070 #[no_mangle]
1071 pub extern "C" fn NetworkGraph_update_channel_unsigned(this_arg: &mut NetworkGraph, msg: &crate::ln::msgs::UnsignedChannelUpdate) -> crate::c_types::derived::CResult_NoneLightningErrorZ {
1072         let mut ret = unsafe { &mut (*(this_arg.inner as *mut nativeNetworkGraph)) }.update_channel_unsigned(unsafe { &*msg.inner });
1073         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { 0u8 /*o*/ }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
1074         local_ret
1075 }
1076