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