|
@@ -9,6 +9,7 @@ macro_rules! BinaryId {
|
|
|
PartialOrd,
|
|
|
Ord,
|
|
|
Hash,
|
|
|
+ Default,
|
|
|
PartialEq,
|
|
|
borsh::BorshSerialize,
|
|
|
borsh::BorshDeserialize,
|
|
@@ -18,6 +19,12 @@ macro_rules! BinaryId {
|
|
|
bytes: [u8; 32],
|
|
|
}
|
|
|
|
|
|
+ impl From<[u8; 32]> for $id {
|
|
|
+ fn from(bytes: [u8; 32]) -> Self {
|
|
|
+ Self { bytes }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
impl $id {
|
|
|
/// Creates a new instance of $id from the raw bytes
|
|
|
pub fn new(bytes: [u8; 32]) -> Self {
|
|
@@ -30,11 +37,12 @@ macro_rules! BinaryId {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- impl FromStr for $id {
|
|
|
- type Err = Error;
|
|
|
+ impl std::str::FromStr for $id {
|
|
|
+ type Err = crate::id::Error;
|
|
|
fn from_str(value: &str) -> Result<Self, Self::Err> {
|
|
|
Ok(Self::try_from(value).unwrap_or_else(|_| {
|
|
|
- let mut hasher = Sha256::new();
|
|
|
+ use sha2::Digest;
|
|
|
+ let mut hasher = sha2::Sha256::new();
|
|
|
hasher.update(&value);
|
|
|
Self {
|
|
|
bytes: hasher.finalize().into(),
|
|
@@ -55,21 +63,22 @@ macro_rules! BinaryId {
|
|
|
impl<'de> Deserialize<'de> for $id {
|
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
|
where
|
|
|
- D: Deserializer<'de>,
|
|
|
+ D: serde::Deserializer<'de>,
|
|
|
{
|
|
|
- let s = String::deserialize(deserializer)?;
|
|
|
+ use std::str::FromStr;
|
|
|
+ let s = <String as serde::Deserialize>::deserialize(deserializer)?;
|
|
|
// Use FromStr to parse the string and construct the struct
|
|
|
$id::from_str(&s).map_err(serde::de::Error::custom)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
impl TryFrom<&str> for $id {
|
|
|
- type Error = Error;
|
|
|
+ type Error = crate::id::Error;
|
|
|
fn try_from(value: &str) -> Result<Self, Self::Error> {
|
|
|
let (hrp, bytes) = bech32::decode(&value)?;
|
|
|
let hrp = hrp.to_string();
|
|
|
if hrp != $suffix {
|
|
|
- return Err(Error::InvalidPrefix(
|
|
|
+ return Err(crate::id::Error::InvalidPrefix(
|
|
|
stringify!($id).to_owned(),
|
|
|
$suffix.to_owned(),
|
|
|
hrp,
|
|
@@ -81,11 +90,11 @@ macro_rules! BinaryId {
|
|
|
}
|
|
|
|
|
|
impl TryFrom<&[u8]> for $id {
|
|
|
- type Error = Error;
|
|
|
+ type Error = crate::id::Error;
|
|
|
|
|
|
fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
|
|
|
if value.len() != 32 {
|
|
|
- return Err(Error::InvalidLength(
|
|
|
+ return Err(crate::id::Error::InvalidLength(
|
|
|
stringify!($id).to_owned(),
|
|
|
value.len(),
|
|
|
32,
|
|
@@ -98,11 +107,11 @@ macro_rules! BinaryId {
|
|
|
}
|
|
|
|
|
|
impl TryFrom<Vec<u8>> for $id {
|
|
|
- type Error = Error;
|
|
|
+ type Error = crate::id::Error;
|
|
|
|
|
|
fn try_from(value: Vec<u8>) -> Result<Self, Self::Error> {
|
|
|
if value.len() != 32 {
|
|
|
- return Err(Error::InvalidLength(
|
|
|
+ return Err(crate::id::Error::InvalidLength(
|
|
|
stringify!($id).to_owned(),
|
|
|
value.len(),
|
|
|
32,
|
|
@@ -114,7 +123,7 @@ macro_rules! BinaryId {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- impl Display for $id {
|
|
|
+ impl std::fmt::Display for $id {
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
let hrp = bech32::Hrp::parse($suffix).map_err(|_| std::fmt::Error)?;
|
|
|
write!(
|