2018-09-09 10:34:29 +00:00
|
|
|
// Rust Bitcoin Library
|
|
|
|
// Written by
|
|
|
|
// The Rust Bitcoin developers
|
|
|
|
//
|
|
|
|
// To the extent possible under law, the author(s) have dedicated all
|
|
|
|
// copyright and related and neighboring rights to this software to
|
|
|
|
// the public domain worldwide. This software is distributed without
|
|
|
|
// any warranty.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the CC0 Public Domain Dedication
|
|
|
|
// along with this software.
|
|
|
|
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
//
|
|
|
|
|
2018-08-10 20:34:35 +00:00
|
|
|
#[allow(unused_macros)]
|
|
|
|
macro_rules! hex_psbt {
|
2021-06-09 10:34:44 +00:00
|
|
|
($s:expr) => { $crate::consensus::deserialize::<$crate::util::psbt::PartiallySignedTransaction>(&<$crate::prelude::Vec<u8> as $crate::hashes::hex::FromHex>::from_hex($s).unwrap()) };
|
2018-08-10 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
2022-02-22 13:41:20 +00:00
|
|
|
macro_rules! combine {
|
2018-09-09 04:20:29 +00:00
|
|
|
($thing:ident, $slf:ident, $other:ident) => {
|
|
|
|
if let (&None, Some($thing)) = (&$slf.$thing, $other.$thing) {
|
|
|
|
$slf.$thing = Some($thing);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-09-09 04:07:07 +00:00
|
|
|
macro_rules! impl_psbt_de_serialize {
|
|
|
|
($thing:ty) => {
|
|
|
|
impl_psbt_serialize!($thing);
|
|
|
|
impl_psbt_deserialize!($thing);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_psbt_deserialize {
|
|
|
|
($thing:ty) => {
|
2020-01-25 04:21:57 +00:00
|
|
|
impl $crate::util::psbt::serialize::Deserialize for $thing {
|
|
|
|
fn deserialize(bytes: &[u8]) -> Result<Self, $crate::consensus::encode::Error> {
|
|
|
|
$crate::consensus::deserialize(&bytes[..])
|
2018-09-09 04:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_psbt_serialize {
|
|
|
|
($thing:ty) => {
|
2020-01-25 04:21:57 +00:00
|
|
|
impl $crate::util::psbt::serialize::Serialize for $thing {
|
2021-06-09 10:34:44 +00:00
|
|
|
fn serialize(&self) -> $crate::prelude::Vec<u8> {
|
2020-01-25 04:21:57 +00:00
|
|
|
$crate::consensus::serialize(self)
|
2018-09-09 04:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_psbtmap_consensus_encoding {
|
|
|
|
($thing:ty) => {
|
2020-01-25 04:21:57 +00:00
|
|
|
impl $crate::consensus::Encodable for $thing {
|
2021-06-09 10:40:41 +00:00
|
|
|
fn consensus_encode<S: $crate::io::Write>(
|
2019-07-11 14:56:37 +00:00
|
|
|
&self,
|
2021-09-15 05:35:07 +00:00
|
|
|
s: S,
|
2021-06-09 10:40:41 +00:00
|
|
|
) -> Result<usize, $crate::io::Error> {
|
2021-09-15 05:35:07 +00:00
|
|
|
self.consensus_encode_map(s)
|
2018-09-09 04:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2018-09-09 04:20:29 +00:00
|
|
|
|
|
|
|
macro_rules! impl_psbtmap_consensus_decoding {
|
|
|
|
($thing:ty) => {
|
2020-01-25 04:21:57 +00:00
|
|
|
impl $crate::consensus::Decodable for $thing {
|
2021-06-09 10:40:41 +00:00
|
|
|
fn consensus_decode<D: $crate::io::Read>(
|
2019-07-11 17:06:42 +00:00
|
|
|
mut d: D,
|
2020-01-25 04:21:57 +00:00
|
|
|
) -> Result<Self, $crate::consensus::encode::Error> {
|
2021-06-09 10:40:41 +00:00
|
|
|
let mut rv: Self = ::core::default::Default::default();
|
2018-09-09 04:20:29 +00:00
|
|
|
|
|
|
|
loop {
|
2020-01-25 04:21:57 +00:00
|
|
|
match $crate::consensus::Decodable::consensus_decode(&mut d) {
|
2022-01-05 03:37:39 +00:00
|
|
|
Ok(pair) => rv.insert_pair(pair)?,
|
2020-01-25 04:21:57 +00:00
|
|
|
Err($crate::consensus::encode::Error::Psbt($crate::util::psbt::Error::NoMorePairs)) => return Ok(rv),
|
2018-09-09 04:20:29 +00:00
|
|
|
Err(e) => return Err(e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_psbtmap_consensus_enc_dec_oding {
|
|
|
|
($thing:ty) => {
|
|
|
|
impl_psbtmap_consensus_decoding!($thing);
|
|
|
|
impl_psbtmap_consensus_encoding!($thing);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-05-25 03:13:13 +00:00
|
|
|
#[rustfmt::skip]
|
2018-09-09 04:20:29 +00:00
|
|
|
macro_rules! impl_psbt_insert_pair {
|
|
|
|
($slf:ident.$unkeyed_name:ident <= <$raw_key:ident: _>|<$raw_value:ident: $unkeyed_value_type:ty>) => {
|
|
|
|
if $raw_key.key.is_empty() {
|
2019-08-05 19:41:07 +00:00
|
|
|
if $slf.$unkeyed_name.is_none() {
|
2020-01-25 04:21:57 +00:00
|
|
|
let val: $unkeyed_value_type = $crate::util::psbt::serialize::Deserialize::deserialize(&$raw_value)?;
|
2018-09-09 04:20:29 +00:00
|
|
|
$slf.$unkeyed_name = Some(val)
|
|
|
|
} else {
|
2020-01-25 04:21:57 +00:00
|
|
|
return Err($crate::util::psbt::Error::DuplicateKey($raw_key).into());
|
2018-09-09 04:20:29 +00:00
|
|
|
}
|
|
|
|
} else {
|
2020-01-25 04:21:57 +00:00
|
|
|
return Err($crate::util::psbt::Error::InvalidKey($raw_key).into());
|
2018-09-09 04:20:29 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
($slf:ident.$keyed_name:ident <= <$raw_key:ident: $keyed_key_type:ty>|<$raw_value:ident: $keyed_value_type:ty>) => {
|
|
|
|
if !$raw_key.key.is_empty() {
|
2020-01-25 04:21:57 +00:00
|
|
|
let key_val: $keyed_key_type = $crate::util::psbt::serialize::Deserialize::deserialize(&$raw_key.key)?;
|
2019-08-05 18:35:51 +00:00
|
|
|
match $slf.$keyed_name.entry(key_val) {
|
2021-06-09 10:34:44 +00:00
|
|
|
$crate::prelude::btree_map::Entry::Vacant(empty_key) => {
|
2020-01-25 04:21:57 +00:00
|
|
|
let val: $keyed_value_type = $crate::util::psbt::serialize::Deserialize::deserialize(&$raw_value)?;
|
2019-08-05 18:35:51 +00:00
|
|
|
empty_key.insert(val);
|
|
|
|
}
|
2021-06-09 10:34:44 +00:00
|
|
|
$crate::prelude::btree_map::Entry::Occupied(_) => return Err($crate::util::psbt::Error::DuplicateKey($raw_key).into()),
|
2018-09-09 04:20:29 +00:00
|
|
|
}
|
|
|
|
} else {
|
2020-01-25 04:21:57 +00:00
|
|
|
return Err($crate::util::psbt::Error::InvalidKey($raw_key).into());
|
2018-09-09 04:20:29 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-05-25 03:13:13 +00:00
|
|
|
#[rustfmt::skip]
|
2018-09-09 04:20:29 +00:00
|
|
|
macro_rules! impl_psbt_get_pair {
|
2022-01-15 10:25:48 +00:00
|
|
|
($rv:ident.push($slf:ident.$unkeyed_name:ident, $unkeyed_typeval:ident)) => {
|
2018-09-09 04:20:29 +00:00
|
|
|
if let Some(ref $unkeyed_name) = $slf.$unkeyed_name {
|
2020-01-25 04:21:57 +00:00
|
|
|
$rv.push($crate::util::psbt::raw::Pair {
|
|
|
|
key: $crate::util::psbt::raw::Key {
|
2018-09-09 04:20:29 +00:00
|
|
|
type_value: $unkeyed_typeval,
|
|
|
|
key: vec![],
|
|
|
|
},
|
2020-01-25 04:21:57 +00:00
|
|
|
value: $crate::util::psbt::serialize::Serialize::serialize($unkeyed_name),
|
2018-09-09 04:20:29 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2022-01-15 10:25:48 +00:00
|
|
|
($rv:ident.push_map($slf:ident.$keyed_name:ident, $keyed_typeval:ident)) => {
|
2018-09-09 04:20:29 +00:00
|
|
|
for (key, val) in &$slf.$keyed_name {
|
2020-01-25 04:21:57 +00:00
|
|
|
$rv.push($crate::util::psbt::raw::Pair {
|
|
|
|
key: $crate::util::psbt::raw::Key {
|
2018-09-09 04:20:29 +00:00
|
|
|
type_value: $keyed_typeval,
|
2020-01-25 04:21:57 +00:00
|
|
|
key: $crate::util::psbt::serialize::Serialize::serialize(key),
|
2018-09-09 04:20:29 +00:00
|
|
|
},
|
2020-01-25 04:21:57 +00:00
|
|
|
value: $crate::util::psbt::serialize::Serialize::serialize(val),
|
2018-09-09 04:20:29 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2020-08-31 20:06:21 +00:00
|
|
|
|
|
|
|
// macros for serde of hashes
|
|
|
|
macro_rules! impl_psbt_hash_de_serialize {
|
|
|
|
($hash_type:ty) => {
|
|
|
|
impl_psbt_hash_serialize!($hash_type);
|
|
|
|
impl_psbt_hash_deserialize!($hash_type);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_psbt_hash_deserialize {
|
|
|
|
($hash_type:ty) => {
|
|
|
|
impl $crate::util::psbt::serialize::Deserialize for $hash_type {
|
|
|
|
fn deserialize(bytes: &[u8]) -> Result<Self, $crate::consensus::encode::Error> {
|
|
|
|
<$hash_type>::from_slice(&bytes[..]).map_err(|e| {
|
|
|
|
$crate::util::psbt::Error::from(e).into()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_psbt_hash_serialize {
|
|
|
|
($hash_type:ty) => {
|
|
|
|
impl $crate::util::psbt::serialize::Serialize for $hash_type {
|
2021-06-09 10:34:44 +00:00
|
|
|
fn serialize(&self) -> $crate::prelude::Vec<u8> {
|
2020-08-31 20:06:21 +00:00
|
|
|
self.into_inner().to_vec()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|