Merge pull request #17 from TheBlueMatt/2021-04-upstream-confirm
[ldk-c-bindings] / lightning-c-bindings / src / lightning / ln / peer_handler.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 //! Top level peer message handling and socket handling logic lives here.
10 //!
11 //! Instead of actually servicing sockets ourselves we require that you implement the
12 //! SocketDescriptor interface and use that to receive actions which you should perform on the
13 //! socket, and call into PeerManager with bytes read from the socket. The PeerManager will then
14 //! call into the provided message handlers (probably a ChannelManager and NetGraphmsgHandler) with messages
15 //! they should handle, and encoding/sending response messages.
16
17 use std::ffi::c_void;
18 use bitcoin::hashes::Hash;
19 use crate::c_types::*;
20
21
22 use lightning::ln::peer_handler::IgnoringMessageHandler as nativeIgnoringMessageHandlerImport;
23 type nativeIgnoringMessageHandler = nativeIgnoringMessageHandlerImport;
24
25 /// A dummy struct which implements `RoutingMessageHandler` without storing any routing information
26 /// or doing any processing. You can provide one of these as the route_handler in a MessageHandler.
27 #[must_use]
28 #[repr(C)]
29 pub struct IgnoringMessageHandler {
30         /// A pointer to the opaque Rust object.
31
32         /// Nearly everywhere, inner must be non-null, however in places where
33         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
34         pub inner: *mut nativeIgnoringMessageHandler,
35         /// Indicates that this is the only struct which contains the same pointer.
36
37         /// Rust functions which take ownership of an object provided via an argument require
38         /// this to be true and invalidate the object pointed to by inner.
39         pub is_owned: bool,
40 }
41
42 impl Drop for IgnoringMessageHandler {
43         fn drop(&mut self) {
44                 if self.is_owned && !<*mut nativeIgnoringMessageHandler>::is_null(self.inner) {
45                         let _ = unsafe { Box::from_raw(self.inner) };
46                 }
47         }
48 }
49 /// Frees any resources used by the IgnoringMessageHandler, if is_owned is set and inner is non-NULL.
50 #[no_mangle]
51 pub extern "C" fn IgnoringMessageHandler_free(this_obj: IgnoringMessageHandler) { }
52 #[allow(unused)]
53 /// Used only if an object of this type is returned as a trait impl by a method
54 extern "C" fn IgnoringMessageHandler_free_void(this_ptr: *mut c_void) {
55         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeIgnoringMessageHandler); }
56 }
57 #[allow(unused)]
58 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
59 impl IgnoringMessageHandler {
60         pub(crate) fn take_inner(mut self) -> *mut nativeIgnoringMessageHandler {
61                 assert!(self.is_owned);
62                 let ret = self.inner;
63                 self.inner = std::ptr::null_mut();
64                 ret
65         }
66 }
67 /// Constructs a new IgnoringMessageHandler given each field
68 #[must_use]
69 #[no_mangle]
70 pub extern "C" fn IgnoringMessageHandler_new() -> IgnoringMessageHandler {
71         IgnoringMessageHandler { inner: Box::into_raw(Box::new(nativeIgnoringMessageHandler {
72         })), is_owned: true }
73 }
74 impl From<nativeIgnoringMessageHandler> for crate::lightning::util::events::MessageSendEventsProvider {
75         fn from(obj: nativeIgnoringMessageHandler) -> Self {
76                 let mut rust_obj = IgnoringMessageHandler { inner: Box::into_raw(Box::new(obj)), is_owned: true };
77                 let mut ret = IgnoringMessageHandler_as_MessageSendEventsProvider(&rust_obj);
78                 // 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
79                 rust_obj.inner = std::ptr::null_mut();
80                 ret.free = Some(IgnoringMessageHandler_free_void);
81                 ret
82         }
83 }
84 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
85 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
86 #[no_mangle]
87 pub extern "C" fn IgnoringMessageHandler_as_MessageSendEventsProvider(this_arg: &IgnoringMessageHandler) -> crate::lightning::util::events::MessageSendEventsProvider {
88         crate::lightning::util::events::MessageSendEventsProvider {
89                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
90                 free: None,
91                 get_and_clear_pending_msg_events: IgnoringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
92         }
93 }
94
95 #[must_use]
96 extern "C" fn IgnoringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
97         let mut ret = <nativeIgnoringMessageHandler as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, );
98         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
99         local_ret.into()
100 }
101
102 impl From<nativeIgnoringMessageHandler> for crate::lightning::ln::msgs::RoutingMessageHandler {
103         fn from(obj: nativeIgnoringMessageHandler) -> Self {
104                 let mut rust_obj = IgnoringMessageHandler { inner: Box::into_raw(Box::new(obj)), is_owned: true };
105                 let mut ret = IgnoringMessageHandler_as_RoutingMessageHandler(&rust_obj);
106                 // 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
107                 rust_obj.inner = std::ptr::null_mut();
108                 ret.free = Some(IgnoringMessageHandler_free_void);
109                 ret
110         }
111 }
112 /// Constructs a new RoutingMessageHandler which calls the relevant methods on this_arg.
113 /// This copies the `inner` pointer in this_arg and thus the returned RoutingMessageHandler must be freed before this_arg is
114 #[no_mangle]
115 pub extern "C" fn IgnoringMessageHandler_as_RoutingMessageHandler(this_arg: &IgnoringMessageHandler) -> crate::lightning::ln::msgs::RoutingMessageHandler {
116         crate::lightning::ln::msgs::RoutingMessageHandler {
117                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
118                 free: None,
119                 handle_node_announcement: IgnoringMessageHandler_RoutingMessageHandler_handle_node_announcement,
120                 handle_channel_announcement: IgnoringMessageHandler_RoutingMessageHandler_handle_channel_announcement,
121                 handle_channel_update: IgnoringMessageHandler_RoutingMessageHandler_handle_channel_update,
122                 handle_htlc_fail_channel_update: IgnoringMessageHandler_RoutingMessageHandler_handle_htlc_fail_channel_update,
123                 get_next_channel_announcements: IgnoringMessageHandler_RoutingMessageHandler_get_next_channel_announcements,
124                 get_next_node_announcements: IgnoringMessageHandler_RoutingMessageHandler_get_next_node_announcements,
125                 sync_routing_table: IgnoringMessageHandler_RoutingMessageHandler_sync_routing_table,
126                 handle_reply_channel_range: IgnoringMessageHandler_RoutingMessageHandler_handle_reply_channel_range,
127                 handle_reply_short_channel_ids_end: IgnoringMessageHandler_RoutingMessageHandler_handle_reply_short_channel_ids_end,
128                 handle_query_channel_range: IgnoringMessageHandler_RoutingMessageHandler_handle_query_channel_range,
129                 handle_query_short_channel_ids: IgnoringMessageHandler_RoutingMessageHandler_handle_query_short_channel_ids,
130                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
131                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
132                         free: None,
133                         get_and_clear_pending_msg_events: IgnoringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
134                 },
135         }
136 }
137
138 #[must_use]
139 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_node_announcement(this_arg: *const c_void, _msg: &crate::lightning::ln::msgs::NodeAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ {
140         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_node_announcement(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, unsafe { &*_msg.inner });
141         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: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
142         local_ret
143 }
144 #[must_use]
145 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_channel_announcement(this_arg: *const c_void, _msg: &crate::lightning::ln::msgs::ChannelAnnouncement) -> crate::c_types::derived::CResult_boolLightningErrorZ {
146         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_channel_announcement(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, unsafe { &*_msg.inner });
147         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: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
148         local_ret
149 }
150 #[must_use]
151 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_channel_update(this_arg: *const c_void, _msg: &crate::lightning::ln::msgs::ChannelUpdate) -> crate::c_types::derived::CResult_boolLightningErrorZ {
152         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, unsafe { &*_msg.inner });
153         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: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
154         local_ret
155 }
156 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_handle_htlc_fail_channel_update(this_arg: *const c_void, _update: &crate::lightning::ln::msgs::HTLCFailChannelUpdate) {
157         <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_htlc_fail_channel_update(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_update.to_native())
158 }
159 #[must_use]
160 extern "C" fn IgnoringMessageHandler_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 {
161         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::get_next_channel_announcements(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, _starting_point, _batch_amount);
162         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() { 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::lightning::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::lightning::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 }); };
163         local_ret.into()
164 }
165 #[must_use]
166 extern "C" fn IgnoringMessageHandler_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 {
167         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();
168         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::get_next_node_announcements(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, local__starting_point, _batch_amount);
169         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::ln::msgs::NodeAnnouncement { inner: Box::into_raw(Box::new(item)), is_owned: true } }); };
170         local_ret.into()
171 }
172 extern "C" fn IgnoringMessageHandler_RoutingMessageHandler_sync_routing_table(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, _init: &crate::lightning::ln::msgs::Init) {
173         <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::sync_routing_table(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), unsafe { &*_init.inner })
174 }
175 #[must_use]
176 extern "C" fn IgnoringMessageHandler_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 {
177         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_reply_channel_range(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
178         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::lightning::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
179         local_ret
180 }
181 #[must_use]
182 extern "C" fn IgnoringMessageHandler_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 {
183         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_reply_short_channel_ids_end(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
184         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::lightning::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
185         local_ret
186 }
187 #[must_use]
188 extern "C" fn IgnoringMessageHandler_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 {
189         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_query_channel_range(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
190         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::lightning::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
191         local_ret
192 }
193 #[must_use]
194 extern "C" fn IgnoringMessageHandler_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 {
195         let mut ret = <nativeIgnoringMessageHandler as lightning::ln::msgs::RoutingMessageHandler<>>::handle_query_short_channel_ids(unsafe { &mut *(this_arg as *mut nativeIgnoringMessageHandler) }, &_their_node_id.into_rust(), *unsafe { Box::from_raw(_msg.take_inner()) });
196         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::lightning::ln::msgs::LightningError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
197         local_ret
198 }
199
200
201 use lightning::ln::peer_handler::ErroringMessageHandler as nativeErroringMessageHandlerImport;
202 type nativeErroringMessageHandler = nativeErroringMessageHandlerImport;
203
204 /// A dummy struct which implements `ChannelMessageHandler` without having any channels.
205 /// You can provide one of these as the route_handler in a MessageHandler.
206 #[must_use]
207 #[repr(C)]
208 pub struct ErroringMessageHandler {
209         /// A pointer to the opaque Rust object.
210
211         /// Nearly everywhere, inner must be non-null, however in places where
212         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
213         pub inner: *mut nativeErroringMessageHandler,
214         /// Indicates that this is the only struct which contains the same pointer.
215
216         /// Rust functions which take ownership of an object provided via an argument require
217         /// this to be true and invalidate the object pointed to by inner.
218         pub is_owned: bool,
219 }
220
221 impl Drop for ErroringMessageHandler {
222         fn drop(&mut self) {
223                 if self.is_owned && !<*mut nativeErroringMessageHandler>::is_null(self.inner) {
224                         let _ = unsafe { Box::from_raw(self.inner) };
225                 }
226         }
227 }
228 /// Frees any resources used by the ErroringMessageHandler, if is_owned is set and inner is non-NULL.
229 #[no_mangle]
230 pub extern "C" fn ErroringMessageHandler_free(this_obj: ErroringMessageHandler) { }
231 #[allow(unused)]
232 /// Used only if an object of this type is returned as a trait impl by a method
233 extern "C" fn ErroringMessageHandler_free_void(this_ptr: *mut c_void) {
234         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeErroringMessageHandler); }
235 }
236 #[allow(unused)]
237 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
238 impl ErroringMessageHandler {
239         pub(crate) fn take_inner(mut self) -> *mut nativeErroringMessageHandler {
240                 assert!(self.is_owned);
241                 let ret = self.inner;
242                 self.inner = std::ptr::null_mut();
243                 ret
244         }
245 }
246 /// Constructs a new ErroringMessageHandler
247 #[must_use]
248 #[no_mangle]
249 pub extern "C" fn ErroringMessageHandler_new() -> ErroringMessageHandler {
250         let mut ret = lightning::ln::peer_handler::ErroringMessageHandler::new();
251         ErroringMessageHandler { inner: Box::into_raw(Box::new(ret)), is_owned: true }
252 }
253
254 impl From<nativeErroringMessageHandler> for crate::lightning::util::events::MessageSendEventsProvider {
255         fn from(obj: nativeErroringMessageHandler) -> Self {
256                 let mut rust_obj = ErroringMessageHandler { inner: Box::into_raw(Box::new(obj)), is_owned: true };
257                 let mut ret = ErroringMessageHandler_as_MessageSendEventsProvider(&rust_obj);
258                 // 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
259                 rust_obj.inner = std::ptr::null_mut();
260                 ret.free = Some(ErroringMessageHandler_free_void);
261                 ret
262         }
263 }
264 /// Constructs a new MessageSendEventsProvider which calls the relevant methods on this_arg.
265 /// This copies the `inner` pointer in this_arg and thus the returned MessageSendEventsProvider must be freed before this_arg is
266 #[no_mangle]
267 pub extern "C" fn ErroringMessageHandler_as_MessageSendEventsProvider(this_arg: &ErroringMessageHandler) -> crate::lightning::util::events::MessageSendEventsProvider {
268         crate::lightning::util::events::MessageSendEventsProvider {
269                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
270                 free: None,
271                 get_and_clear_pending_msg_events: ErroringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
272         }
273 }
274
275 #[must_use]
276 extern "C" fn ErroringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: *const c_void) -> crate::c_types::derived::CVec_MessageSendEventZ {
277         let mut ret = <nativeErroringMessageHandler as lightning::util::events::MessageSendEventsProvider<>>::get_and_clear_pending_msg_events(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, );
278         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::lightning::util::events::MessageSendEvent::native_into(item) }); };
279         local_ret.into()
280 }
281
282 impl From<nativeErroringMessageHandler> for crate::lightning::ln::msgs::ChannelMessageHandler {
283         fn from(obj: nativeErroringMessageHandler) -> Self {
284                 let mut rust_obj = ErroringMessageHandler { inner: Box::into_raw(Box::new(obj)), is_owned: true };
285                 let mut ret = ErroringMessageHandler_as_ChannelMessageHandler(&rust_obj);
286                 // 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
287                 rust_obj.inner = std::ptr::null_mut();
288                 ret.free = Some(ErroringMessageHandler_free_void);
289                 ret
290         }
291 }
292 /// Constructs a new ChannelMessageHandler which calls the relevant methods on this_arg.
293 /// This copies the `inner` pointer in this_arg and thus the returned ChannelMessageHandler must be freed before this_arg is
294 #[no_mangle]
295 pub extern "C" fn ErroringMessageHandler_as_ChannelMessageHandler(this_arg: &ErroringMessageHandler) -> crate::lightning::ln::msgs::ChannelMessageHandler {
296         crate::lightning::ln::msgs::ChannelMessageHandler {
297                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
298                 free: None,
299                 handle_open_channel: ErroringMessageHandler_ChannelMessageHandler_handle_open_channel,
300                 handle_accept_channel: ErroringMessageHandler_ChannelMessageHandler_handle_accept_channel,
301                 handle_funding_created: ErroringMessageHandler_ChannelMessageHandler_handle_funding_created,
302                 handle_funding_signed: ErroringMessageHandler_ChannelMessageHandler_handle_funding_signed,
303                 handle_funding_locked: ErroringMessageHandler_ChannelMessageHandler_handle_funding_locked,
304                 handle_shutdown: ErroringMessageHandler_ChannelMessageHandler_handle_shutdown,
305                 handle_closing_signed: ErroringMessageHandler_ChannelMessageHandler_handle_closing_signed,
306                 handle_update_add_htlc: ErroringMessageHandler_ChannelMessageHandler_handle_update_add_htlc,
307                 handle_update_fulfill_htlc: ErroringMessageHandler_ChannelMessageHandler_handle_update_fulfill_htlc,
308                 handle_update_fail_htlc: ErroringMessageHandler_ChannelMessageHandler_handle_update_fail_htlc,
309                 handle_update_fail_malformed_htlc: ErroringMessageHandler_ChannelMessageHandler_handle_update_fail_malformed_htlc,
310                 handle_commitment_signed: ErroringMessageHandler_ChannelMessageHandler_handle_commitment_signed,
311                 handle_revoke_and_ack: ErroringMessageHandler_ChannelMessageHandler_handle_revoke_and_ack,
312                 handle_update_fee: ErroringMessageHandler_ChannelMessageHandler_handle_update_fee,
313                 handle_announcement_signatures: ErroringMessageHandler_ChannelMessageHandler_handle_announcement_signatures,
314                 peer_disconnected: ErroringMessageHandler_ChannelMessageHandler_peer_disconnected,
315                 peer_connected: ErroringMessageHandler_ChannelMessageHandler_peer_connected,
316                 handle_channel_reestablish: ErroringMessageHandler_ChannelMessageHandler_handle_channel_reestablish,
317                 handle_channel_update: ErroringMessageHandler_ChannelMessageHandler_handle_channel_update,
318                 handle_error: ErroringMessageHandler_ChannelMessageHandler_handle_error,
319                 MessageSendEventsProvider: crate::lightning::util::events::MessageSendEventsProvider {
320                         this_arg: unsafe { (*this_arg).inner as *mut c_void },
321                         free: None,
322                         get_and_clear_pending_msg_events: ErroringMessageHandler_MessageSendEventsProvider_get_and_clear_pending_msg_events,
323                 },
324         }
325 }
326
327 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_open_channel(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, mut _their_features: crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::OpenChannel) {
328         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_open_channel(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), *unsafe { Box::from_raw(_their_features.take_inner()) }, unsafe { &*msg.inner })
329 }
330 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_accept_channel(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, mut _their_features: crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::AcceptChannel) {
331         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_accept_channel(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), *unsafe { Box::from_raw(_their_features.take_inner()) }, unsafe { &*msg.inner })
332 }
333 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_funding_created(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingCreated) {
334         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_created(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
335 }
336 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_funding_signed(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingSigned) {
337         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_signed(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
338 }
339 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_funding_locked(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::FundingLocked) {
340         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_funding_locked(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
341 }
342 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_shutdown(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, _their_features: &crate::lightning::ln::features::InitFeatures, msg: &crate::lightning::ln::msgs::Shutdown) {
343         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_shutdown(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*_their_features.inner }, unsafe { &*msg.inner })
344 }
345 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_closing_signed(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ClosingSigned) {
346         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_closing_signed(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
347 }
348 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_add_htlc(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateAddHTLC) {
349         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_add_htlc(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
350 }
351 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_fulfill_htlc(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFulfillHTLC) {
352         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fulfill_htlc(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
353 }
354 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_fail_htlc(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailHTLC) {
355         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_htlc(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
356 }
357 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_fail_malformed_htlc(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFailMalformedHTLC) {
358         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fail_malformed_htlc(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
359 }
360 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_commitment_signed(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::CommitmentSigned) {
361         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_commitment_signed(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
362 }
363 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_revoke_and_ack(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::RevokeAndACK) {
364         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_revoke_and_ack(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
365 }
366 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_update_fee(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::UpdateFee) {
367         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_update_fee(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
368 }
369 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_announcement_signatures(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::AnnouncementSignatures) {
370         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_announcement_signatures(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
371 }
372 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_channel_reestablish(this_arg: *const c_void, mut their_node_id: crate::c_types::PublicKey, msg: &crate::lightning::ln::msgs::ChannelReestablish) {
373         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_reestablish(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &their_node_id.into_rust(), unsafe { &*msg.inner })
374 }
375 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_channel_update(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, _msg: &crate::lightning::ln::msgs::ChannelUpdate) {
376         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_channel_update(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &_their_node_id.into_rust(), unsafe { &*_msg.inner })
377 }
378 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_peer_disconnected(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, mut _no_connection_possible: bool) {
379         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::peer_disconnected(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &_their_node_id.into_rust(), _no_connection_possible)
380 }
381 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_peer_connected(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, _msg: &crate::lightning::ln::msgs::Init) {
382         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::peer_connected(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &_their_node_id.into_rust(), unsafe { &*_msg.inner })
383 }
384 extern "C" fn ErroringMessageHandler_ChannelMessageHandler_handle_error(this_arg: *const c_void, mut _their_node_id: crate::c_types::PublicKey, _msg: &crate::lightning::ln::msgs::ErrorMessage) {
385         <nativeErroringMessageHandler as lightning::ln::msgs::ChannelMessageHandler<>>::handle_error(unsafe { &mut *(this_arg as *mut nativeErroringMessageHandler) }, &_their_node_id.into_rust(), unsafe { &*_msg.inner })
386 }
387
388
389 use lightning::ln::peer_handler::MessageHandler as nativeMessageHandlerImport;
390 type nativeMessageHandler = nativeMessageHandlerImport<crate::lightning::ln::msgs::ChannelMessageHandler, crate::lightning::ln::msgs::RoutingMessageHandler>;
391
392 /// Provides references to trait impls which handle different types of messages.
393 #[must_use]
394 #[repr(C)]
395 pub struct MessageHandler {
396         /// A pointer to the opaque Rust object.
397
398         /// Nearly everywhere, inner must be non-null, however in places where
399         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
400         pub inner: *mut nativeMessageHandler,
401         /// Indicates that this is the only struct which contains the same pointer.
402
403         /// Rust functions which take ownership of an object provided via an argument require
404         /// this to be true and invalidate the object pointed to by inner.
405         pub is_owned: bool,
406 }
407
408 impl Drop for MessageHandler {
409         fn drop(&mut self) {
410                 if self.is_owned && !<*mut nativeMessageHandler>::is_null(self.inner) {
411                         let _ = unsafe { Box::from_raw(self.inner) };
412                 }
413         }
414 }
415 /// Frees any resources used by the MessageHandler, if is_owned is set and inner is non-NULL.
416 #[no_mangle]
417 pub extern "C" fn MessageHandler_free(this_obj: MessageHandler) { }
418 #[allow(unused)]
419 /// Used only if an object of this type is returned as a trait impl by a method
420 extern "C" fn MessageHandler_free_void(this_ptr: *mut c_void) {
421         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeMessageHandler); }
422 }
423 #[allow(unused)]
424 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
425 impl MessageHandler {
426         pub(crate) fn take_inner(mut self) -> *mut nativeMessageHandler {
427                 assert!(self.is_owned);
428                 let ret = self.inner;
429                 self.inner = std::ptr::null_mut();
430                 ret
431         }
432 }
433 /// A message handler which handles messages specific to channels. Usually this is just a
434 /// ChannelManager object or a ErroringMessageHandler.
435 #[no_mangle]
436 pub extern "C" fn MessageHandler_get_chan_handler(this_ptr: &MessageHandler) -> *const crate::lightning::ln::msgs::ChannelMessageHandler {
437         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.chan_handler;
438         inner_val
439 }
440 /// A message handler which handles messages specific to channels. Usually this is just a
441 /// ChannelManager object or a ErroringMessageHandler.
442 #[no_mangle]
443 pub extern "C" fn MessageHandler_set_chan_handler(this_ptr: &mut MessageHandler, mut val: crate::lightning::ln::msgs::ChannelMessageHandler) {
444         unsafe { &mut *this_ptr.inner }.chan_handler = val;
445 }
446 /// A message handler which handles messages updating our knowledge of the network channel
447 /// graph. Usually this is just a NetGraphMsgHandlerMonitor object or an IgnoringMessageHandler.
448 #[no_mangle]
449 pub extern "C" fn MessageHandler_get_route_handler(this_ptr: &MessageHandler) -> *const crate::lightning::ln::msgs::RoutingMessageHandler {
450         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.route_handler;
451         inner_val
452 }
453 /// A message handler which handles messages updating our knowledge of the network channel
454 /// graph. Usually this is just a NetGraphMsgHandlerMonitor object or an IgnoringMessageHandler.
455 #[no_mangle]
456 pub extern "C" fn MessageHandler_set_route_handler(this_ptr: &mut MessageHandler, mut val: crate::lightning::ln::msgs::RoutingMessageHandler) {
457         unsafe { &mut *this_ptr.inner }.route_handler = val;
458 }
459 /// Constructs a new MessageHandler given each field
460 #[must_use]
461 #[no_mangle]
462 pub extern "C" fn MessageHandler_new(mut chan_handler_arg: crate::lightning::ln::msgs::ChannelMessageHandler, mut route_handler_arg: crate::lightning::ln::msgs::RoutingMessageHandler) -> MessageHandler {
463         MessageHandler { inner: Box::into_raw(Box::new(nativeMessageHandler {
464                 chan_handler: chan_handler_arg,
465                 route_handler: route_handler_arg,
466         })), is_owned: true }
467 }
468 /// Provides an object which can be used to send data to and which uniquely identifies a connection
469 /// to a remote host. You will need to be able to generate multiple of these which meet Eq and
470 /// implement Hash to meet the PeerManager API.
471 ///
472 /// For efficiency, Clone should be relatively cheap for this type.
473 ///
474 /// You probably want to just extend an int and put a file descriptor in a struct and implement
475 /// send_data. Note that if you are using a higher-level net library that may call close() itself,
476 /// be careful to ensure you don't have races whereby you might register a new connection with an
477 /// fd which is the same as a previous one which has yet to be removed via
478 /// PeerManager::socket_disconnected().
479 #[repr(C)]
480 pub struct SocketDescriptor {
481         /// An opaque pointer which is passed to your function implementations as an argument.
482         /// This has no meaning in the LDK, and can be NULL or any other value.
483         pub this_arg: *mut c_void,
484         /// Attempts to send some data from the given slice to the peer.
485         ///
486         /// Returns the amount of data which was sent, possibly 0 if the socket has since disconnected.
487         /// Note that in the disconnected case, socket_disconnected must still fire and further write
488         /// attempts may occur until that time.
489         ///
490         /// If the returned size is smaller than data.len(), a write_available event must
491         /// trigger the next time more data can be written. Additionally, until the a send_data event
492         /// completes fully, no further read_events should trigger on the same peer!
493         ///
494         /// If a read_event on this descriptor had previously returned true (indicating that read
495         /// events should be paused to prevent DoS in the send buffer), resume_read may be set
496         /// indicating that read events on this descriptor should resume. A resume_read of false does
497         /// *not* imply that further read events should be paused.
498         #[must_use]
499         pub send_data: extern "C" fn (this_arg: *mut c_void, data: crate::c_types::u8slice, resume_read: bool) -> usize,
500         /// Disconnect the socket pointed to by this SocketDescriptor. Once this function returns, no
501         /// more calls to write_buffer_space_avail, read_event or socket_disconnected may be made with
502         /// this descriptor. No socket_disconnected call should be generated as a result of this call,
503         /// though races may occur whereby disconnect_socket is called after a call to
504         /// socket_disconnected but prior to socket_disconnected returning.
505         pub disconnect_socket: extern "C" fn (this_arg: *mut c_void),
506         /// Checks if two objects are equal given this object's this_arg pointer and another object.
507         pub eq: extern "C" fn (this_arg: *const c_void, other_arg: &SocketDescriptor) -> bool,
508         /// Calculate a succinct non-cryptographic hash for an object given its this_arg pointer.
509         /// This is used, for example, for inclusion of this object in a hash map.
510         pub hash: extern "C" fn (this_arg: *const c_void) -> u64,
511         /// Creates a copy of the object pointed to by this_arg, for a copy of this SocketDescriptor.
512         /// Note that the ultimate copy of the SocketDescriptor will have all function pointers the same as the original.
513         /// May be NULL if no action needs to be taken, the this_arg pointer will be copied into the new SocketDescriptor.
514         pub clone: Option<extern "C" fn (this_arg: *const c_void) -> *mut c_void>,
515         /// Frees any resources associated with this object given its this_arg pointer.
516         /// Does not need to free the outer struct containing function pointers and may be NULL is no resources need to be freed.
517         pub free: Option<extern "C" fn(this_arg: *mut c_void)>,
518 }
519 impl std::cmp::Eq for SocketDescriptor {}
520 impl std::cmp::PartialEq for SocketDescriptor {
521         fn eq(&self, o: &Self) -> bool { (self.eq)(self.this_arg, o) }
522 }
523 impl std::hash::Hash for SocketDescriptor {
524         fn hash<H: std::hash::Hasher>(&self, hasher: &mut H) { hasher.write_u64((self.hash)(self.this_arg)) }
525 }
526 #[no_mangle]
527 /// Creates a copy of a SocketDescriptor
528 pub extern "C" fn SocketDescriptor_clone(orig: &SocketDescriptor) -> SocketDescriptor {
529         SocketDescriptor {
530                 this_arg: if let Some(f) = orig.clone { (f)(orig.this_arg) } else { orig.this_arg },
531                 send_data: Clone::clone(&orig.send_data),
532                 disconnect_socket: Clone::clone(&orig.disconnect_socket),
533                 eq: Clone::clone(&orig.eq),
534                 hash: Clone::clone(&orig.hash),
535                 clone: Clone::clone(&orig.clone),
536                 free: Clone::clone(&orig.free),
537         }
538 }
539 impl Clone for SocketDescriptor {
540         fn clone(&self) -> Self {
541                 SocketDescriptor_clone(self)
542         }
543 }
544
545 use lightning::ln::peer_handler::SocketDescriptor as rustSocketDescriptor;
546 impl rustSocketDescriptor for SocketDescriptor {
547         fn send_data(&mut self, data: &[u8], resume_read: bool) -> usize {
548                 let mut local_data = crate::c_types::u8slice::from_slice(data);
549                 let mut ret = (self.send_data)(self.this_arg, local_data, resume_read);
550                 ret
551         }
552         fn disconnect_socket(&mut self) {
553                 (self.disconnect_socket)(self.this_arg)
554         }
555 }
556
557 // We're essentially a pointer already, or at least a set of pointers, so allow us to be used
558 // directly as a Deref trait in higher-level structs:
559 impl std::ops::Deref for SocketDescriptor {
560         type Target = Self;
561         fn deref(&self) -> &Self {
562                 self
563         }
564 }
565 /// Calls the free function if one is set
566 #[no_mangle]
567 pub extern "C" fn SocketDescriptor_free(this_ptr: SocketDescriptor) { }
568 impl Drop for SocketDescriptor {
569         fn drop(&mut self) {
570                 if let Some(f) = self.free {
571                         f(self.this_arg);
572                 }
573         }
574 }
575
576 use lightning::ln::peer_handler::PeerHandleError as nativePeerHandleErrorImport;
577 type nativePeerHandleError = nativePeerHandleErrorImport;
578
579 /// Error for PeerManager errors. If you get one of these, you must disconnect the socket and
580 /// generate no further read_event/write_buffer_space_avail/socket_disconnected calls for the
581 /// descriptor.
582 #[must_use]
583 #[repr(C)]
584 pub struct PeerHandleError {
585         /// A pointer to the opaque Rust object.
586
587         /// Nearly everywhere, inner must be non-null, however in places where
588         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
589         pub inner: *mut nativePeerHandleError,
590         /// Indicates that this is the only struct which contains the same pointer.
591
592         /// Rust functions which take ownership of an object provided via an argument require
593         /// this to be true and invalidate the object pointed to by inner.
594         pub is_owned: bool,
595 }
596
597 impl Drop for PeerHandleError {
598         fn drop(&mut self) {
599                 if self.is_owned && !<*mut nativePeerHandleError>::is_null(self.inner) {
600                         let _ = unsafe { Box::from_raw(self.inner) };
601                 }
602         }
603 }
604 /// Frees any resources used by the PeerHandleError, if is_owned is set and inner is non-NULL.
605 #[no_mangle]
606 pub extern "C" fn PeerHandleError_free(this_obj: PeerHandleError) { }
607 #[allow(unused)]
608 /// Used only if an object of this type is returned as a trait impl by a method
609 extern "C" fn PeerHandleError_free_void(this_ptr: *mut c_void) {
610         unsafe { let _ = Box::from_raw(this_ptr as *mut nativePeerHandleError); }
611 }
612 #[allow(unused)]
613 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
614 impl PeerHandleError {
615         pub(crate) fn take_inner(mut self) -> *mut nativePeerHandleError {
616                 assert!(self.is_owned);
617                 let ret = self.inner;
618                 self.inner = std::ptr::null_mut();
619                 ret
620         }
621 }
622 /// Used to indicate that we probably can't make any future connections to this peer, implying
623 /// we should go ahead and force-close any channels we have with it.
624 #[no_mangle]
625 pub extern "C" fn PeerHandleError_get_no_connection_possible(this_ptr: &PeerHandleError) -> bool {
626         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.no_connection_possible;
627         *inner_val
628 }
629 /// Used to indicate that we probably can't make any future connections to this peer, implying
630 /// we should go ahead and force-close any channels we have with it.
631 #[no_mangle]
632 pub extern "C" fn PeerHandleError_set_no_connection_possible(this_ptr: &mut PeerHandleError, mut val: bool) {
633         unsafe { &mut *this_ptr.inner }.no_connection_possible = val;
634 }
635 /// Constructs a new PeerHandleError given each field
636 #[must_use]
637 #[no_mangle]
638 pub extern "C" fn PeerHandleError_new(mut no_connection_possible_arg: bool) -> PeerHandleError {
639         PeerHandleError { inner: Box::into_raw(Box::new(nativePeerHandleError {
640                 no_connection_possible: no_connection_possible_arg,
641         })), is_owned: true }
642 }
643 impl Clone for PeerHandleError {
644         fn clone(&self) -> Self {
645                 Self {
646                         inner: if <*mut nativePeerHandleError>::is_null(self.inner) { std::ptr::null_mut() } else {
647                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
648                         is_owned: true,
649                 }
650         }
651 }
652 #[allow(unused)]
653 /// Used only if an object of this type is returned as a trait impl by a method
654 pub(crate) extern "C" fn PeerHandleError_clone_void(this_ptr: *const c_void) -> *mut c_void {
655         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativePeerHandleError)).clone() })) as *mut c_void
656 }
657 #[no_mangle]
658 /// Creates a copy of the PeerHandleError
659 pub extern "C" fn PeerHandleError_clone(orig: &PeerHandleError) -> PeerHandleError {
660         orig.clone()
661 }
662
663 use lightning::ln::peer_handler::PeerManager as nativePeerManagerImport;
664 type nativePeerManager = nativePeerManagerImport<crate::lightning::ln::peer_handler::SocketDescriptor, crate::lightning::ln::msgs::ChannelMessageHandler, crate::lightning::ln::msgs::RoutingMessageHandler, crate::lightning::util::logger::Logger>;
665
666 /// A PeerManager manages a set of peers, described by their SocketDescriptor and marshalls socket
667 /// events into messages which it passes on to its MessageHandlers.
668 ///
669 /// Rather than using a plain PeerManager, it is preferable to use either a SimpleArcPeerManager
670 /// a SimpleRefPeerManager, for conciseness. See their documentation for more details, but
671 /// essentially you should default to using a SimpleRefPeerManager, and use a
672 /// SimpleArcPeerManager when you require a PeerManager with a static lifetime, such as when
673 /// you're using lightning-net-tokio.
674 #[must_use]
675 #[repr(C)]
676 pub struct PeerManager {
677         /// A pointer to the opaque Rust object.
678
679         /// Nearly everywhere, inner must be non-null, however in places where
680         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
681         pub inner: *mut nativePeerManager,
682         /// Indicates that this is the only struct which contains the same pointer.
683
684         /// Rust functions which take ownership of an object provided via an argument require
685         /// this to be true and invalidate the object pointed to by inner.
686         pub is_owned: bool,
687 }
688
689 impl Drop for PeerManager {
690         fn drop(&mut self) {
691                 if self.is_owned && !<*mut nativePeerManager>::is_null(self.inner) {
692                         let _ = unsafe { Box::from_raw(self.inner) };
693                 }
694         }
695 }
696 /// Frees any resources used by the PeerManager, if is_owned is set and inner is non-NULL.
697 #[no_mangle]
698 pub extern "C" fn PeerManager_free(this_obj: PeerManager) { }
699 #[allow(unused)]
700 /// Used only if an object of this type is returned as a trait impl by a method
701 extern "C" fn PeerManager_free_void(this_ptr: *mut c_void) {
702         unsafe { let _ = Box::from_raw(this_ptr as *mut nativePeerManager); }
703 }
704 #[allow(unused)]
705 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
706 impl PeerManager {
707         pub(crate) fn take_inner(mut self) -> *mut nativePeerManager {
708                 assert!(self.is_owned);
709                 let ret = self.inner;
710                 self.inner = std::ptr::null_mut();
711                 ret
712         }
713 }
714 /// Constructs a new PeerManager with the given message handlers and node_id secret key
715 /// ephemeral_random_data is used to derive per-connection ephemeral keys and must be
716 /// cryptographically secure random bytes.
717 #[must_use]
718 #[no_mangle]
719 pub extern "C" fn PeerManager_new(mut message_handler: crate::lightning::ln::peer_handler::MessageHandler, mut our_node_secret: crate::c_types::SecretKey, ephemeral_random_data: *const [u8; 32], mut logger: crate::lightning::util::logger::Logger) -> PeerManager {
720         let mut ret = lightning::ln::peer_handler::PeerManager::new(*unsafe { Box::from_raw(message_handler.take_inner()) }, our_node_secret.into_rust(), unsafe { &*ephemeral_random_data}, logger);
721         PeerManager { inner: Box::into_raw(Box::new(ret)), is_owned: true }
722 }
723
724 /// Get the list of node ids for peers which have completed the initial handshake.
725 ///
726 /// For outbound connections, this will be the same as the their_node_id parameter passed in to
727 /// new_outbound_connection, however entries will only appear once the initial handshake has
728 /// completed and we are sure the remote peer has the private key for the given node_id.
729 #[must_use]
730 #[no_mangle]
731 pub extern "C" fn PeerManager_get_peer_node_ids(this_arg: &PeerManager) -> crate::c_types::derived::CVec_PublicKeyZ {
732         let mut ret = unsafe { &*this_arg.inner }.get_peer_node_ids();
733         let mut local_ret = Vec::new(); for mut item in ret.drain(..) { local_ret.push( { crate::c_types::PublicKey::from_rust(&item) }); };
734         local_ret.into()
735 }
736
737 /// Indicates a new outbound connection has been established to a node with the given node_id.
738 /// Note that if an Err is returned here you MUST NOT call socket_disconnected for the new
739 /// descriptor but must disconnect the connection immediately.
740 ///
741 /// Returns a small number of bytes to send to the remote node (currently always 50).
742 ///
743 /// Panics if descriptor is duplicative with some other descriptor which has not yet had a
744 /// socket_disconnected().
745 #[must_use]
746 #[no_mangle]
747 pub extern "C" fn PeerManager_new_outbound_connection(this_arg: &PeerManager, mut their_node_id: crate::c_types::PublicKey, mut descriptor: crate::lightning::ln::peer_handler::SocketDescriptor) -> crate::c_types::derived::CResult_CVec_u8ZPeerHandleErrorZ {
748         let mut ret = unsafe { &*this_arg.inner }.new_outbound_connection(their_node_id.into_rust(), descriptor);
749         let mut local_ret = match ret { Ok(mut o) => crate::c_types::CResultTempl::ok( { let mut local_ret_0 = Vec::new(); for mut item in o.drain(..) { local_ret_0.push( { item }); }; local_ret_0.into() }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::peer_handler::PeerHandleError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
750         local_ret
751 }
752
753 /// Indicates a new inbound connection has been established.
754 ///
755 /// May refuse the connection by returning an Err, but will never write bytes to the remote end
756 /// (outbound connector always speaks first). Note that if an Err is returned here you MUST NOT
757 /// call socket_disconnected for the new descriptor but must disconnect the connection
758 /// immediately.
759 ///
760 /// Panics if descriptor is duplicative with some other descriptor which has not yet had
761 /// socket_disconnected called.
762 #[must_use]
763 #[no_mangle]
764 pub extern "C" fn PeerManager_new_inbound_connection(this_arg: &PeerManager, mut descriptor: crate::lightning::ln::peer_handler::SocketDescriptor) -> crate::c_types::derived::CResult_NonePeerHandleErrorZ {
765         let mut ret = unsafe { &*this_arg.inner }.new_inbound_connection(descriptor);
766         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::lightning::ln::peer_handler::PeerHandleError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
767         local_ret
768 }
769
770 /// Indicates that there is room to write data to the given socket descriptor.
771 ///
772 /// May return an Err to indicate that the connection should be closed.
773 ///
774 /// Will most likely call send_data on the descriptor passed in (or the descriptor handed into
775 /// new_*\\_connection) before returning. Thus, be very careful with reentrancy issues! The
776 /// invariants around calling write_buffer_space_avail in case a write did not fully complete
777 /// must still hold - be ready to call write_buffer_space_avail again if a write call generated
778 /// here isn't sufficient! Panics if the descriptor was not previously registered in a
779 /// new_\\*_connection event.
780 #[must_use]
781 #[no_mangle]
782 pub extern "C" fn PeerManager_write_buffer_space_avail(this_arg: &PeerManager, descriptor: &mut crate::lightning::ln::peer_handler::SocketDescriptor) -> crate::c_types::derived::CResult_NonePeerHandleErrorZ {
783         let mut ret = unsafe { &*this_arg.inner }.write_buffer_space_avail(descriptor);
784         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::lightning::ln::peer_handler::PeerHandleError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
785         local_ret
786 }
787
788 /// Indicates that data was read from the given socket descriptor.
789 ///
790 /// May return an Err to indicate that the connection should be closed.
791 ///
792 /// Will *not* call back into send_data on any descriptors to avoid reentrancy complexity.
793 /// Thus, however, you almost certainly want to call process_events() after any read_event to
794 /// generate send_data calls to handle responses.
795 ///
796 /// If Ok(true) is returned, further read_events should not be triggered until a send_data call
797 /// on this file descriptor has resume_read set (preventing DoS issues in the send buffer).
798 ///
799 /// Panics if the descriptor was not previously registered in a new_*_connection event.
800 #[must_use]
801 #[no_mangle]
802 pub extern "C" fn PeerManager_read_event(this_arg: &PeerManager, peer_descriptor: &mut crate::lightning::ln::peer_handler::SocketDescriptor, mut data: crate::c_types::u8slice) -> crate::c_types::derived::CResult_boolPeerHandleErrorZ {
803         let mut ret = unsafe { &*this_arg.inner }.read_event(peer_descriptor, data.to_slice());
804         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::peer_handler::PeerHandleError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
805         local_ret
806 }
807
808 /// Checks for any events generated by our handlers and processes them. Includes sending most
809 /// response messages as well as messages generated by calls to handler functions directly (eg
810 /// functions like ChannelManager::process_pending_htlc_forward or send_payment).
811 #[no_mangle]
812 pub extern "C" fn PeerManager_process_events(this_arg: &PeerManager) {
813         unsafe { &*this_arg.inner }.process_events()
814 }
815
816 /// Indicates that the given socket descriptor's connection is now closed.
817 ///
818 /// This must only be called if the socket has been disconnected by the peer or your own
819 /// decision to disconnect it and must NOT be called in any case where other parts of this
820 /// library (eg PeerHandleError, explicit disconnect_socket calls) instruct you to disconnect
821 /// the peer.
822 ///
823 /// Panics if the descriptor was not previously registered in a successful new_*_connection event.
824 #[no_mangle]
825 pub extern "C" fn PeerManager_socket_disconnected(this_arg: &PeerManager, descriptor: &crate::lightning::ln::peer_handler::SocketDescriptor) {
826         unsafe { &*this_arg.inner }.socket_disconnected(descriptor)
827 }
828
829 /// Disconnect a peer given its node id.
830 ///
831 /// Set no_connection_possible to true to prevent any further connection with this peer,
832 /// force-closing any channels we have with it.
833 ///
834 /// If a peer is connected, this will call `disconnect_socket` on the descriptor for the peer,
835 /// so be careful about reentrancy issues.
836 #[no_mangle]
837 pub extern "C" fn PeerManager_disconnect_by_node_id(this_arg: &PeerManager, mut node_id: crate::c_types::PublicKey, mut no_connection_possible: bool) {
838         unsafe { &*this_arg.inner }.disconnect_by_node_id(node_id.into_rust(), no_connection_possible)
839 }
840
841 /// This function should be called roughly once every 30 seconds.
842 /// It will send pings to each peer and disconnect those which did not respond to the last round of pings.
843 /// Will most likely call send_data on all of the registered descriptors, thus, be very careful with reentrancy issues!
844 #[no_mangle]
845 pub extern "C" fn PeerManager_timer_tick_occurred(this_arg: &PeerManager) {
846         unsafe { &*this_arg.inner }.timer_tick_occurred()
847 }
848