2023-07-20 12:37:29 +02:00
|
|
|
use bytes::Bytes;
|
2023-05-18 20:43:33 +02:00
|
|
|
use data_encoding::BASE64;
|
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Hash, Debug)]
|
2023-07-20 12:37:29 +02:00
|
|
|
pub struct B3Digest(Bytes);
|
2023-05-18 20:43:33 +02:00
|
|
|
|
|
|
|
// TODO: allow converting these errors to crate::Error
|
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum Error {
|
|
|
|
#[error("invalid digest length: {0}")]
|
|
|
|
InvalidDigestLen(usize),
|
|
|
|
}
|
|
|
|
|
2023-10-05 09:57:27 +02:00
|
|
|
pub const B3_LEN: usize = 32;
|
|
|
|
|
2023-05-18 20:43:33 +02:00
|
|
|
impl B3Digest {
|
2023-07-20 12:37:29 +02:00
|
|
|
// returns a copy of the inner [Vec<u8>].
|
|
|
|
pub fn to_vec(&self) -> Vec<u8> {
|
|
|
|
self.0.to_vec()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<B3Digest> for bytes::Bytes {
|
|
|
|
fn from(val: B3Digest) -> Self {
|
|
|
|
val.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<Vec<u8>> for B3Digest {
|
|
|
|
type Error = Error;
|
|
|
|
|
2023-05-18 20:43:33 +02:00
|
|
|
// constructs a [B3Digest] from a [Vec<u8>].
|
|
|
|
// Returns an error if the digest has the wrong length.
|
2023-07-20 12:37:29 +02:00
|
|
|
fn try_from(value: Vec<u8>) -> Result<Self, Self::Error> {
|
2023-10-05 09:57:27 +02:00
|
|
|
if value.len() != B3_LEN {
|
2023-05-18 20:43:33 +02:00
|
|
|
Err(Error::InvalidDigestLen(value.len()))
|
|
|
|
} else {
|
2023-07-20 12:37:29 +02:00
|
|
|
Ok(Self(value.into()))
|
2023-05-18 20:43:33 +02:00
|
|
|
}
|
|
|
|
}
|
2023-07-20 12:37:29 +02:00
|
|
|
}
|
2023-05-18 20:43:33 +02:00
|
|
|
|
2023-07-20 12:37:29 +02:00
|
|
|
impl TryFrom<bytes::Bytes> for B3Digest {
|
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
// constructs a [B3Digest] from a [bytes::Bytes].
|
|
|
|
// Returns an error if the digest has the wrong length.
|
|
|
|
fn try_from(value: bytes::Bytes) -> Result<Self, Self::Error> {
|
2023-10-05 09:57:27 +02:00
|
|
|
if value.len() != B3_LEN {
|
2023-07-20 12:37:29 +02:00
|
|
|
Err(Error::InvalidDigestLen(value.len()))
|
|
|
|
} else {
|
|
|
|
Ok(Self(value))
|
|
|
|
}
|
2023-05-18 20:43:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-05 09:57:27 +02:00
|
|
|
impl From<&[u8; B3_LEN]> for B3Digest {
|
|
|
|
fn from(value: &[u8; B3_LEN]) -> Self {
|
2023-07-20 12:37:29 +02:00
|
|
|
Self(value.to_vec().into())
|
2023-05-18 20:43:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for B3Digest {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self(self.0.to_owned())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::fmt::Display for B3Digest {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
2023-07-20 12:37:29 +02:00
|
|
|
write!(f, "b3:{}", BASE64.encode(&self.0))
|
2023-05-18 20:43:33 +02:00
|
|
|
}
|
|
|
|
}
|