Update auto-generated bindings with lightning-invoice
[ldk-c-bindings] / lightning-c-bindings / src / lightning / chain / transaction.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 //! Types describing on-chain transactions.
10
11 use std::str::FromStr;
12 use std::ffi::c_void;
13 use bitcoin::hashes::Hash;
14 use crate::c_types::*;
15
16
17 use lightning::chain::transaction::OutPoint as nativeOutPointImport;
18 type nativeOutPoint = nativeOutPointImport;
19
20 /// A reference to a transaction output.
21 ///
22 /// Differs from bitcoin::blockdata::transaction::OutPoint as the index is a u16 instead of u32
23 /// due to LN's restrictions on index values. Should reduce (possibly) unsafe conversions this way.
24 #[must_use]
25 #[repr(C)]
26 pub struct OutPoint {
27         /// A pointer to the opaque Rust object.
28
29         /// Nearly everywhere, inner must be non-null, however in places where
30         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
31         pub inner: *mut nativeOutPoint,
32         /// Indicates that this is the only struct which contains the same pointer.
33
34         /// Rust functions which take ownership of an object provided via an argument require
35         /// this to be true and invalidate the object pointed to by inner.
36         pub is_owned: bool,
37 }
38
39 impl Drop for OutPoint {
40         fn drop(&mut self) {
41                 if self.is_owned && !<*mut nativeOutPoint>::is_null(self.inner) {
42                         let _ = unsafe { Box::from_raw(self.inner) };
43                 }
44         }
45 }
46 /// Frees any resources used by the OutPoint, if is_owned is set and inner is non-NULL.
47 #[no_mangle]
48 pub extern "C" fn OutPoint_free(this_obj: OutPoint) { }
49 #[allow(unused)]
50 /// Used only if an object of this type is returned as a trait impl by a method
51 extern "C" fn OutPoint_free_void(this_ptr: *mut c_void) {
52         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeOutPoint); }
53 }
54 #[allow(unused)]
55 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
56 impl OutPoint {
57         pub(crate) fn take_inner(mut self) -> *mut nativeOutPoint {
58                 assert!(self.is_owned);
59                 let ret = self.inner;
60                 self.inner = std::ptr::null_mut();
61                 ret
62         }
63 }
64 /// The referenced transaction's txid.
65 #[no_mangle]
66 pub extern "C" fn OutPoint_get_txid(this_ptr: &OutPoint) -> *const [u8; 32] {
67         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.txid;
68         inner_val.as_inner()
69 }
70 /// The referenced transaction's txid.
71 #[no_mangle]
72 pub extern "C" fn OutPoint_set_txid(this_ptr: &mut OutPoint, mut val: crate::c_types::ThirtyTwoBytes) {
73         unsafe { &mut *this_ptr.inner }.txid = ::bitcoin::hash_types::Txid::from_slice(&val.data[..]).unwrap();
74 }
75 /// The index of the referenced output in its transaction's vout.
76 #[no_mangle]
77 pub extern "C" fn OutPoint_get_index(this_ptr: &OutPoint) -> u16 {
78         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.index;
79         *inner_val
80 }
81 /// The index of the referenced output in its transaction's vout.
82 #[no_mangle]
83 pub extern "C" fn OutPoint_set_index(this_ptr: &mut OutPoint, mut val: u16) {
84         unsafe { &mut *this_ptr.inner }.index = val;
85 }
86 /// Constructs a new OutPoint given each field
87 #[must_use]
88 #[no_mangle]
89 pub extern "C" fn OutPoint_new(mut txid_arg: crate::c_types::ThirtyTwoBytes, mut index_arg: u16) -> OutPoint {
90         OutPoint { inner: Box::into_raw(Box::new(nativeOutPoint {
91                 txid: ::bitcoin::hash_types::Txid::from_slice(&txid_arg.data[..]).unwrap(),
92                 index: index_arg,
93         })), is_owned: true }
94 }
95 impl Clone for OutPoint {
96         fn clone(&self) -> Self {
97                 Self {
98                         inner: if <*mut nativeOutPoint>::is_null(self.inner) { std::ptr::null_mut() } else {
99                                 Box::into_raw(Box::new(unsafe { &*self.inner }.clone())) },
100                         is_owned: true,
101                 }
102         }
103 }
104 #[allow(unused)]
105 /// Used only if an object of this type is returned as a trait impl by a method
106 pub(crate) extern "C" fn OutPoint_clone_void(this_ptr: *const c_void) -> *mut c_void {
107         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeOutPoint)).clone() })) as *mut c_void
108 }
109 #[no_mangle]
110 /// Creates a copy of the OutPoint
111 pub extern "C" fn OutPoint_clone(orig: &OutPoint) -> OutPoint {
112         orig.clone()
113 }
114 /// Convert an `OutPoint` to a lightning channel id.
115 #[must_use]
116 #[no_mangle]
117 pub extern "C" fn OutPoint_to_channel_id(this_arg: &OutPoint) -> crate::c_types::ThirtyTwoBytes {
118         let mut ret = unsafe { &*this_arg.inner }.to_channel_id();
119         crate::c_types::ThirtyTwoBytes { data: ret }
120 }
121
122 #[no_mangle]
123 /// Serialize the OutPoint object into a byte array which can be read by OutPoint_read
124 pub extern "C" fn OutPoint_write(obj: &OutPoint) -> crate::c_types::derived::CVec_u8Z {
125         crate::c_types::serialize_obj(unsafe { &*unsafe { &*obj }.inner })
126 }
127 #[no_mangle]
128 pub(crate) extern "C" fn OutPoint_write_void(obj: *const c_void) -> crate::c_types::derived::CVec_u8Z {
129         crate::c_types::serialize_obj(unsafe { &*(obj as *const nativeOutPoint) })
130 }
131 #[no_mangle]
132 /// Read a OutPoint from a byte array, created by OutPoint_write
133 pub extern "C" fn OutPoint_read(ser: crate::c_types::u8slice) -> crate::c_types::derived::CResult_OutPointDecodeErrorZ {
134         let res = crate::c_types::deserialize_obj(ser);
135         let mut local_res = match res { Ok(mut o) => crate::c_types::CResultTempl::ok( { crate::lightning::chain::transaction::OutPoint { inner: Box::into_raw(Box::new(o)), is_owned: true } }).into(), Err(mut e) => crate::c_types::CResultTempl::err( { crate::lightning::ln::msgs::DecodeError { inner: Box::into_raw(Box::new(e)), is_owned: true } }).into() };
136         local_res
137 }