use std::{fmt, io, sync::Arc};
use hex::{FromHex, ToHex};
use serde::{Deserialize, Serialize};
use crate::serialization::{
sha256d, ReadZcashExt, SerializationError, ZcashDeserialize, ZcashSerialize,
};
use super::Header;
#[cfg(any(test, feature = "proptest-impl"))]
use proptest_derive::Arbitrary;
#[derive(Copy, Clone, Eq, PartialEq, Hash, Serialize, Deserialize)]
#[cfg_attr(any(test, feature = "proptest-impl"), derive(Arbitrary, Default))]
pub struct Hash(pub [u8; 32]);
impl Hash {
pub fn bytes_in_display_order(&self) -> [u8; 32] {
let mut reversed_bytes = self.0;
reversed_bytes.reverse();
reversed_bytes
}
pub fn from_bytes_in_display_order(bytes_in_display_order: &[u8; 32]) -> Hash {
let mut internal_byte_order = *bytes_in_display_order;
internal_byte_order.reverse();
Hash(internal_byte_order)
}
}
impl fmt::Display for Hash {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str(&self.encode_hex::<String>())
}
}
impl fmt::Debug for Hash {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("block::Hash")
.field(&self.encode_hex::<String>())
.finish()
}
}
impl ToHex for &Hash {
fn encode_hex<T: FromIterator<char>>(&self) -> T {
self.bytes_in_display_order().encode_hex()
}
fn encode_hex_upper<T: FromIterator<char>>(&self) -> T {
self.bytes_in_display_order().encode_hex_upper()
}
}
impl ToHex for Hash {
fn encode_hex<T: FromIterator<char>>(&self) -> T {
(&self).encode_hex()
}
fn encode_hex_upper<T: FromIterator<char>>(&self) -> T {
(&self).encode_hex_upper()
}
}
impl FromHex for Hash {
type Error = <[u8; 32] as FromHex>::Error;
fn from_hex<T: AsRef<[u8]>>(hex: T) -> Result<Self, Self::Error> {
let hash = <[u8; 32]>::from_hex(hex)?;
Ok(Self::from_bytes_in_display_order(&hash))
}
}
impl From<[u8; 32]> for Hash {
fn from(bytes: [u8; 32]) -> Self {
Self(bytes)
}
}
impl<'a> From<&'a Header> for Hash {
fn from(block_header: &'a Header) -> Self {
let mut hash_writer = sha256d::Writer::default();
block_header
.zcash_serialize(&mut hash_writer)
.expect("Sha256dWriter is infallible");
Self(hash_writer.finish())
}
}
impl From<Header> for Hash {
#[allow(clippy::needless_borrow)]
fn from(block_header: Header) -> Self {
(&block_header).into()
}
}
impl From<&Arc<Header>> for Hash {
#[allow(clippy::needless_borrow)]
fn from(block_header: &Arc<Header>) -> Self {
block_header.as_ref().into()
}
}
impl From<Arc<Header>> for Hash {
#[allow(clippy::needless_borrow)]
fn from(block_header: Arc<Header>) -> Self {
block_header.as_ref().into()
}
}
impl ZcashSerialize for Hash {
fn zcash_serialize<W: io::Write>(&self, mut writer: W) -> Result<(), io::Error> {
writer.write_all(&self.0)?;
Ok(())
}
}
impl ZcashDeserialize for Hash {
fn zcash_deserialize<R: io::Read>(mut reader: R) -> Result<Self, SerializationError> {
Ok(Hash(reader.read_32_bytes()?))
}
}
impl std::str::FromStr for Hash {
type Err = SerializationError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(Self::from_hex(s)?)
}
}