Update bindings to latest upstream code
[rust-lightning] / lightning-c-bindings / src / chain / transaction.rs
1 //! Types describing on-chain transactions.
2
3 use std::ffi::c_void;
4 use bitcoin::hashes::Hash;
5 use crate::c_types::*;
6
7
8 use lightning::chain::transaction::OutPoint as nativeOutPointImport;
9 type nativeOutPoint = nativeOutPointImport;
10
11 /// A reference to a transaction output.
12 ///
13 /// Differs from bitcoin::blockdata::transaction::OutPoint as the index is a u16 instead of u32
14 /// due to LN's restrictions on index values. Should reduce (possibly) unsafe conversions this way.
15 #[must_use]
16 #[repr(C)]
17 pub struct OutPoint {
18         /// Nearly everyhwere, inner must be non-null, however in places where
19         /// the Rust equivalent takes an Option, it may be set to null to indicate None.
20         pub inner: *mut nativeOutPoint,
21         pub is_owned: bool,
22 }
23
24 impl Drop for OutPoint {
25         fn drop(&mut self) {
26                 if self.is_owned && !self.inner.is_null() {
27                         let _ = unsafe { Box::from_raw(self.inner) };
28                 }
29         }
30 }
31 #[no_mangle]
32 pub extern "C" fn OutPoint_free(this_ptr: OutPoint) { }
33 #[allow(unused)]
34 /// Used only if an object of this type is returned as a trait impl by a method
35 extern "C" fn OutPoint_free_void(this_ptr: *mut c_void) {
36         unsafe { let _ = Box::from_raw(this_ptr as *mut nativeOutPoint); }
37 }
38 #[allow(unused)]
39 /// When moving out of the pointer, we have to ensure we aren't a reference, this makes that easy
40 impl OutPoint {
41         pub(crate) fn take_ptr(mut self) -> *mut nativeOutPoint {
42                 assert!(self.is_owned);
43                 let ret = self.inner;
44                 self.inner = std::ptr::null_mut();
45                 ret
46         }
47 }
48 impl Clone for OutPoint {
49         fn clone(&self) -> Self {
50                 Self {
51                         inner: Box::into_raw(Box::new(unsafe { &*self.inner }.clone())),
52                         is_owned: true,
53                 }
54         }
55 }
56 #[allow(unused)]
57 /// Used only if an object of this type is returned as a trait impl by a method
58 pub(crate) extern "C" fn OutPoint_clone_void(this_ptr: *const c_void) -> *mut c_void {
59         Box::into_raw(Box::new(unsafe { (*(this_ptr as *mut nativeOutPoint)).clone() })) as *mut c_void
60 }
61 /// The referenced transaction's txid.
62 #[no_mangle]
63 pub extern "C" fn OutPoint_get_txid(this_ptr: &OutPoint) -> *const [u8; 32] {
64         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.txid;
65         (*inner_val).as_inner()
66 }
67 /// The referenced transaction's txid.
68 #[no_mangle]
69 pub extern "C" fn OutPoint_set_txid(this_ptr: &mut OutPoint, mut val: crate::c_types::ThirtyTwoBytes) {
70         unsafe { &mut *this_ptr.inner }.txid = ::bitcoin::hash_types::Txid::from_slice(&val.data[..]).unwrap();
71 }
72 /// The index of the referenced output in its transaction's vout.
73 #[no_mangle]
74 pub extern "C" fn OutPoint_get_index(this_ptr: &OutPoint) -> u16 {
75         let mut inner_val = &mut unsafe { &mut *this_ptr.inner }.index;
76         (*inner_val)
77 }
78 /// The index of the referenced output in its transaction's vout.
79 #[no_mangle]
80 pub extern "C" fn OutPoint_set_index(this_ptr: &mut OutPoint, mut val: u16) {
81         unsafe { &mut *this_ptr.inner }.index = val;
82 }
83 #[must_use]
84 #[no_mangle]
85 pub extern "C" fn OutPoint_new(mut txid_arg: crate::c_types::ThirtyTwoBytes, mut index_arg: u16) -> OutPoint {
86         OutPoint { inner: Box::into_raw(Box::new(nativeOutPoint {
87                 txid: ::bitcoin::hash_types::Txid::from_slice(&txid_arg.data[..]).unwrap(),
88                 index: index_arg,
89         })), is_owned: true }
90 }
91 /// Convert an `OutPoint` to a lightning channel id.
92 #[must_use]
93 #[no_mangle]
94 pub extern "C" fn OutPoint_to_channel_id(this_arg: &OutPoint) -> crate::c_types::ThirtyTwoBytes {
95         let mut ret = unsafe { &*this_arg.inner }.to_channel_id();
96         crate::c_types::ThirtyTwoBytes { data: ret }
97 }
98
99 #[no_mangle]
100 pub extern "C" fn OutPoint_write(obj: *const OutPoint) -> crate::c_types::derived::CVec_u8Z {
101         crate::c_types::serialize_obj(unsafe { &(*(*obj).inner) })
102 }
103 #[no_mangle]
104 pub extern "C" fn OutPoint_read(ser: crate::c_types::u8slice) -> OutPoint {
105         if let Ok(res) = crate::c_types::deserialize_obj(ser) {
106                 OutPoint { inner: Box::into_raw(Box::new(res)), is_owned: true }
107         } else {
108                 OutPoint { inner: std::ptr::null_mut(), is_owned: true }
109         }
110 }