Merge pull request #18 from TheBlueMatt/2021-04-invoice-incl
[ldk-c-bindings] / lightning-c-bindings / src / lightning_persister.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 //! Utilities that handle persisting Rust-Lightning data to disk via standard filesystem APIs.
10
11 use std::str::FromStr;
12 use std::ffi::c_void;
13 use bitcoin::hashes::Hash;
14 use crate::c_types::*;
15
16 mod util {
17
18 use std::str::FromStr;
19 use std::ffi::c_void;
20 use bitcoin::hashes::Hash;
21 use crate::c_types::*;
22
23 }
24
25 use lightning_persister::FilesystemPersister as nativeFilesystemPersisterImport;
26 type nativeFilesystemPersister = nativeFilesystemPersisterImport;
27
28 /// FilesystemPersister persists channel data on disk, where each channel's
29 /// data is stored in a file named after its funding outpoint.
30 ///
31 /// Warning: this module does the best it can with calls to persist data, but it
32 /// can only guarantee that the data is passed to the drive. It is up to the
33 /// drive manufacturers to do the actual persistence properly, which they often
34 /// don't (especially on consumer-grade hardware). Therefore, it is up to the
35 /// user to validate their entire storage stack, to ensure the writes are
36 /// persistent.
37 /// Corollary: especially when dealing with larger amounts of money, it is best
38 /// practice to have multiple channel data backups and not rely only on one
39 /// FilesystemPersister.
40 #[must_use]
41 #[repr(C)]
42 pub struct FilesystemPersister {
43         /// A pointer to the opaque Rust object.
44
45         /// Nearly everywhere, inner must be non-null, however in places where
46         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
47         pub inner: *mut nativeFilesystemPersister,
48         /// Indicates that this is the only struct which contains the same pointer.
49
50         /// Rust functions which take ownership of an object provided via an argument require
51         /// this to be true and invalidate the object pointed to by inner.
52         pub is_owned: bool,
53 }
54
55 impl Drop for FilesystemPersister {
56         fn drop(&mut self) {
57                 if self.is_owned && !<*mut nativeFilesystemPersister>::is_null(self.inner) {
58                         let _ = unsafe { Box::from_raw(self.inner) };
59                 }
60         }
61 }
62 /// Frees any resources used by the FilesystemPersister, if is_owned is set and inner is non-NULL.
63 #[no_mangle]
64 pub extern "C" fn FilesystemPersister_free(this_obj: FilesystemPersister) { }
65 #[allow(unused)]
66 /// Used only if an object of this type is returned as a trait impl by a method
67 extern "C" fn FilesystemPersister_free_void(this_ptr: *mut c_void) {
68         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeFilesystemPersister); }
69 }
70 #[allow(unused)]
71 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
72 impl FilesystemPersister {
73         pub(crate) fn take_inner(mut self) -> *mut nativeFilesystemPersister {
74                 assert!(self.is_owned);
75                 let ret = self.inner;
76                 self.inner = std::ptr::null_mut();
77                 ret
78         }
79 }
80 /// Initialize a new FilesystemPersister and set the path to the individual channels'
81 /// files.
82 #[must_use]
83 #[no_mangle]
84 pub extern "C" fn FilesystemPersister_new(mut path_to_channel_data: crate::c_types::derived::CVec_u8Z) -> FilesystemPersister {
85         let mut ret = lightning_persister::FilesystemPersister::new(String::from_utf8(path_to_channel_data.into_rust()).unwrap());
86         FilesystemPersister { inner: Box::into_raw(Box::new(ret)), is_owned: true }
87 }
88
89 /// Get the directory which was provided when this persister was initialized.
90 #[must_use]
91 #[no_mangle]
92 pub extern "C" fn FilesystemPersister_get_data_dir(this_arg: &FilesystemPersister) -> crate::c_types::derived::CVec_u8Z {
93         let mut ret = unsafe { &*this_arg.inner }.get_data_dir();
94         ret.into_bytes().into()
95 }
96
97 /// Writes the provided `ChannelManager` to the path provided at `FilesystemPersister`
98 /// initialization, within a file called \"manager\".
99 #[must_use]
100 #[no_mangle]
101 pub extern "C" fn FilesystemPersister_persist_manager(mut data_dir: crate::c_types::derived::CVec_u8Z, manager: &crate::lightning::ln::channelmanager::ChannelManager) -> crate::c_types::derived::CResult_NoneErrorZ {
102         let mut ret = lightning_persister::FilesystemPersister::persist_manager(String::from_utf8(data_dir.into_rust()).unwrap(), unsafe { &*manager.inner });
103         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::c_types::IOError::from_rust(e) }).into() };
104         local_ret
105 }
106
107 /// Read `ChannelMonitor`s from disk.
108 #[must_use]
109 #[no_mangle]
110 pub extern "C" fn FilesystemPersister_read_channelmonitors(this_arg: &FilesystemPersister, mut keys_manager: crate::lightning::chain::keysinterface::KeysInterface) -> crate::c_types::derived::CResult_CVec_C2Tuple_BlockHashChannelMonitorZZErrorZ {
111         let mut ret = unsafe { &*this_arg.inner }.read_channelmonitors(keys_manager);
112         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( { let (mut orig_ret_0_0_0, mut orig_ret_0_0_1) = item; let mut local_ret_0_0 = (crate::c_types::ThirtyTwoBytes { data: orig_ret_0_0_0.into_inner() }, crate::lightning::chain::channelmonitor::ChannelMonitor { inner: Box::into_raw(Box::new(orig_ret_0_0_1)), is_owned: true }).into(); local_ret_0_0 }); }; local_ret_0.into() }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::c_types::IOError::from_rust(e) }).into() };
113         local_ret
114 }
115
116 impl From<nativeFilesystemPersister> for crate::lightning::chain::channelmonitor::Persist {
117         fn from(obj: nativeFilesystemPersister) -> Self {
118                 let mut rust_obj = FilesystemPersister { inner: Box::into_raw(Box::new(obj)), is_owned: true };
119                 let mut ret = FilesystemPersister_as_Persist(&rust_obj);
120                 // 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
121                 rust_obj.inner = std::ptr::null_mut();
122                 ret.free = Some(FilesystemPersister_free_void);
123                 ret
124         }
125 }
126 /// Constructs a new Persist which calls the relevant methods on this_arg.
127 /// This copies the `inner` pointer in this_arg and thus the returned Persist must be freed before this_arg is
128 #[no_mangle]
129 pub extern "C" fn FilesystemPersister_as_Persist(this_arg: &FilesystemPersister) -> crate::lightning::chain::channelmonitor::Persist {
130         crate::lightning::chain::channelmonitor::Persist {
131                 this_arg: unsafe { (*this_arg).inner as *mut c_void },
132                 free: None,
133                 persist_new_channel: FilesystemPersister_Persist_persist_new_channel,
134                 update_persisted_channel: FilesystemPersister_Persist_update_persisted_channel,
135         }
136 }
137
138 #[must_use]
139 extern "C" fn FilesystemPersister_Persist_persist_new_channel(this_arg: *const c_void, mut funding_txo: crate::lightning::chain::transaction::OutPoint, monitor: &crate::lightning::chain::channelmonitor::ChannelMonitor) -> crate::c_types::derived::CResult_NoneChannelMonitorUpdateErrZ {
140         let mut ret = <nativeFilesystemPersister as lightning::chain::channelmonitor::Persist<_>>::persist_new_channel(unsafe { &mut *(this_arg as *mut nativeFilesystemPersister) }, *unsafe { Box::from_raw(funding_txo.take_inner()) }, unsafe { &*monitor.inner });
141         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::chain::channelmonitor::ChannelMonitorUpdateErr::native_into(e) }).into() };
142         local_ret
143 }
144 #[must_use]
145 extern "C" fn FilesystemPersister_Persist_update_persisted_channel(this_arg: *const c_void, mut funding_txo: crate::lightning::chain::transaction::OutPoint, _update: &crate::lightning::chain::channelmonitor::ChannelMonitorUpdate, monitor: &crate::lightning::chain::channelmonitor::ChannelMonitor) -> crate::c_types::derived::CResult_NoneChannelMonitorUpdateErrZ {
146         let mut ret = <nativeFilesystemPersister as lightning::chain::channelmonitor::Persist<_>>::update_persisted_channel(unsafe { &mut *(this_arg as *mut nativeFilesystemPersister) }, *unsafe { Box::from_raw(funding_txo.take_inner()) }, unsafe { &*_update.inner }, unsafe { &*monitor.inner });
147         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::chain::channelmonitor::ChannelMonitorUpdateErr::native_into(e) }).into() };
148         local_ret
149 }
150