use std::fmt::Display;
use std::hash::Hash as StdHash;
use std::str::FromStr;
use serde::{Deserialize, Serialize};
use crate::document::error::DocumentIdError;
use crate::hash::Hash;
use crate::operation::OperationId;
use crate::{Human, Validate};
#[derive(Clone, Debug, StdHash, Ord, PartialOrd, Eq, PartialEq, Serialize)]
pub struct DocumentId(OperationId);
impl DocumentId {
pub fn new(id: &OperationId) -> Self {
Self(id.to_owned())
}
pub fn as_str(&self) -> &str {
self.0.as_str()
}
}
impl Display for DocumentId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0.as_str())
}
}
impl Human for DocumentId {
fn display(&self) -> String {
let offset = yasmf_hash::MAX_YAMF_HASH_SIZE * 2 - 6;
format!("<DocumentId {}>", &self.0.as_str()[offset..])
}
}
impl Validate for DocumentId {
type Error = DocumentIdError;
fn validate(&self) -> Result<(), Self::Error> {
self.0.validate()?;
Ok(())
}
}
impl From<Hash> for DocumentId {
fn from(hash: Hash) -> Self {
Self(hash.into())
}
}
impl FromStr for DocumentId {
type Err = DocumentIdError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(Self(s.parse::<OperationId>()?))
}
}
impl<'de> Deserialize<'de> for DocumentId {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let operation_id: OperationId = Deserialize::deserialize(deserializer)?;
operation_id
.validate()
.map_err(|err| serde::de::Error::custom(format!("invalid operation id, {}", err)))?;
Ok(Self(operation_id))
}
}
#[cfg(test)]
mod tests {
use std::str::FromStr;
use ciborium::cbor;
use rstest::rstest;
use crate::hash::Hash;
use crate::operation::OperationId;
use crate::serde::{deserialize_into, serialize_from, serialize_value};
use crate::test_utils::fixtures::random_hash;
use crate::Human;
use super::DocumentId;
#[rstest]
fn conversion(#[from(random_hash)] hash: Hash) {
let hash_str = "0020cfb0fa37f36d082faad3886a9ffbcc2813b7afe90f0609a556d425f1a76ec805";
let document_id: DocumentId = hash_str.parse().unwrap();
assert_eq!(
document_id,
DocumentId::new(&hash_str.parse::<OperationId>().unwrap())
);
let document_id = DocumentId::from(hash.clone());
assert_eq!(document_id, DocumentId::new(&hash.into()));
assert!("This is not a hash".parse::<DocumentId>().is_err());
}
#[test]
fn string_representation() {
let hash_str = "0020cfb0fa37f36d082faad3886a9ffbcc2813b7afe90f0609a556d425f1a76ec805";
let document_id: DocumentId = hash_str.parse().unwrap();
assert_eq!(document_id.to_string(), hash_str);
assert_eq!(document_id.as_str(), hash_str);
assert_eq!(format!("{}", document_id), hash_str);
}
#[test]
fn short_representation() {
let hash_str = "0020cfb0fa37f36d082faad3886a9ffbcc2813b7afe90f0609a556d425f1a76ec805";
let document_id: DocumentId = hash_str.parse().unwrap();
assert_eq!(document_id.display(), "<DocumentId 6ec805>");
}
#[test]
fn serialize() {
let bytes = serialize_from(
DocumentId::from_str(
"0020cfb0fa37f36d082faad3886a9ffbcc2813b7afe90f0609a556d425f1a76ec805",
)
.unwrap(),
);
assert_eq!(
bytes,
vec![
120, 68, 48, 48, 50, 48, 99, 102, 98, 48, 102, 97, 51, 55, 102, 51, 54, 100, 48,
56, 50, 102, 97, 97, 100, 51, 56, 56, 54, 97, 57, 102, 102, 98, 99, 99, 50, 56, 49,
51, 98, 55, 97, 102, 101, 57, 48, 102, 48, 54, 48, 57, 97, 53, 53, 54, 100, 52, 50,
53, 102, 49, 97, 55, 54, 101, 99, 56, 48, 53
]
);
}
#[test]
fn deserialize() {
let hash_str = "0020cfb0fa37f36d082faad3886a9ffbcc2813b7afe90f0609a556d425f1a76ec805";
let document_id: DocumentId = deserialize_into(&serialize_value(cbor!(
"0020cfb0fa37f36d082faad3886a9ffbcc2813b7afe90f0609a556d425f1a76ec805"
)))
.unwrap();
assert_eq!(DocumentId::from_str(hash_str).unwrap(), document_id);
let invalid_hash = deserialize_into::<DocumentId>(&serialize_value(cbor!("1234")));
assert!(invalid_hash.is_err());
let empty_hash = deserialize_into::<DocumentId>(&serialize_value(cbor!("")));
assert!(empty_hash.is_err());
}
}