1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
use bee_common::packable::{Packable, Read, Write};
use bee_ternary::{T5B1Buf, TritBuf, Trits, T5B1};
use bytemuck::cast_slice;
use crate::Error;
pub const TAIL_TRANSACTION_HASH_LEN: usize = 49;
#[derive(Clone, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct TailTransactionHash(TritBuf<T5B1Buf>);
impl TailTransactionHash {
pub fn new(bytes: [u8; TAIL_TRANSACTION_HASH_LEN]) -> Result<Self, Error> {
bytes.try_into()
}
}
impl TryFrom<[u8; TAIL_TRANSACTION_HASH_LEN]> for TailTransactionHash {
type Error = Error;
fn try_from(bytes: [u8; TAIL_TRANSACTION_HASH_LEN]) -> Result<Self, Error> {
Ok(TailTransactionHash(
Trits::<T5B1>::try_from_raw(cast_slice(&bytes), 243)
.map_err(|_| Error::InvalidTailTransactionHash)?
.to_buf(),
))
}
}
impl AsRef<[u8]> for TailTransactionHash {
fn as_ref(&self) -> &[u8] {
cast_slice(self.0.as_slice().as_i8_slice())
}
}
impl core::fmt::Display for TailTransactionHash {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
write!(f, "{}", self.0.iter_trytes().map(char::from).collect::<String>())
}
}
impl core::fmt::Debug for TailTransactionHash {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
write!(f, "TailTransactionHash({})", self)
}
}
impl Packable for TailTransactionHash {
type Error = Error;
fn packed_len(&self) -> usize {
TAIL_TRANSACTION_HASH_LEN
}
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error> {
writer.write_all(self.as_ref())?;
Ok(())
}
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(reader: &mut R) -> Result<Self, Self::Error> {
Self::new(<[u8; TAIL_TRANSACTION_HASH_LEN]>::unpack_inner::<R, CHECK>(reader)?)
}
}