pub mod bag;
pub mod bits;
pub mod node;
pub mod short;
use std::{
cmp::Ordering,
collections::HashSet,
fmt,
hash::{Hash, Hasher},
io::{self, Error, ErrorKind},
str::FromStr,
string::String,
};
use lazy_static::lazy_static;
use ring::digest::{digest, SHA256};
use serde::{self, Deserialize, Deserializer, Serialize, Serializer};
use zerocopy::{AsBytes, FromBytes, Unaligned};
use crate::{formatting, packer};
pub const ID_LEN: usize = 32;
lazy_static! {
static ref EMPTY: Vec<u8> = vec![0; ID_LEN];
}
#[derive(Debug, Deserialize, Clone, Copy, Eq, AsBytes, FromBytes, Unaligned)]
#[repr(transparent)]
pub struct Id([u8; ID_LEN]);
impl Default for Id {
fn default() -> Self {
Self::default()
}
}
impl Id {
pub fn default() -> Self {
Id([0; ID_LEN])
}
pub fn empty() -> Self {
Id([0; ID_LEN])
}
pub fn is_empty(&self) -> bool {
(*self) == Self::empty()
}
pub fn to_vec(&self) -> Vec<u8> {
self.0.to_vec()
}
pub fn from_slice_with_sha256(bytes: &[u8]) -> Self {
let id: Vec<u8> = digest(&SHA256, bytes).as_ref().into();
let id = Id::from_slice(&id);
id
}
pub fn from_slice(d: &[u8]) -> Self {
assert!(d.len() <= ID_LEN);
let mut d: Vec<u8> = Vec::from(d);
if d.len() < ID_LEN {
d.resize(ID_LEN, 0);
}
let d: [u8; ID_LEN] = d.try_into().unwrap();
Id(d)
}
pub fn prefix(&self, prefixes: &[u64]) -> io::Result<Self> {
let n = prefixes.len() + packer::U64_LEN + 32;
let packer = packer::Packer::new(n, n);
for pfx in prefixes {
packer.pack_u64(*pfx)?;
}
packer.pack_bytes(&self.0)?;
let b = packer.take_bytes();
let d: Vec<u8> = digest(&SHA256, &b).as_ref().into();
Ok(Self::from_slice(&d))
}
pub fn bit(&self, i: usize) -> bits::Bit {
let byte_index = i / 8;
let bit_index = i % 8;
let mut b = self.0[byte_index];
b >>= bit_index;
b &= 1;
bits::Bit::from(b as usize)
}
}
impl AsRef<[u8]> for Id {
fn as_ref(&self) -> &[u8] {
&self.0
}
}
impl fmt::Display for Id {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let s = formatting::encode_cb58_with_checksum_string(&self.0);
write!(f, "{}", s)
}
}
impl FromStr for Id {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let decoded = formatting::decode_cb58_with_checksum(s).map_err(|e| {
Error::new(
ErrorKind::Other,
format!("failed decode_cb58_with_checksum '{}'", e),
)
})?;
Ok(Self::from_slice(&decoded))
}
}
impl Serialize for Id {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
serializer.serialize_str(&self.to_string())
}
}
fn fmt_id<'de, D>(deserializer: D) -> Result<Id, D::Error>
where
D: Deserializer<'de>,
{
let s = String::deserialize(deserializer)?;
Id::from_str(&s).map_err(serde::de::Error::custom)
}
pub fn deserialize_id<'de, D>(deserializer: D) -> Result<Option<Id>, D::Error>
where
D: Deserializer<'de>,
{
#[derive(Deserialize)]
struct Wrapper(#[serde(deserialize_with = "fmt_id")] Id);
let v = Option::deserialize(deserializer)?;
Ok(v.map(|Wrapper(a)| a))
}
pub fn must_deserialize_id<'de, D>(deserializer: D) -> Result<Id, D::Error>
where
D: Deserializer<'de>,
{
#[derive(Deserialize)]
struct Wrapper(#[serde(deserialize_with = "fmt_id")] Id);
let v = Option::deserialize(deserializer)?;
match v.map(|Wrapper(a)| a) {
Some(unwrapped) => Ok(unwrapped),
None => Err(serde::de::Error::custom("empty Id from deserialization")),
}
}
pub type Set = HashSet<Id>;
pub fn new_set(size: usize) -> Set {
let set: HashSet<Id> = HashSet::with_capacity(size);
set
}
#[test]
fn test_id() {
let id = Id::from_slice(&<Vec<u8>>::from([
0x3d, 0x0a, 0xd1, 0x2b, 0x8e, 0xe8, 0x92, 0x8e, 0xdf, 0x24, 0x8c, 0xa9, 0x1c, 0xa5, 0x56, 0x00, 0xfb, 0x38, 0x3f, 0x07, 0xc3, 0x2b, 0xff, 0x1d, 0x6d, 0xec, 0x47, 0x2b, 0x25, 0xcf, 0x59, 0xa7,
]));
assert_eq!(
id.to_string(),
"TtF4d2QWbk5vzQGTEPrN48x6vwgAoAmKQ9cbp79inpQmcRKES"
);
assert_eq!(
id.to_vec(),
<Vec<u8>>::from([
0x3d, 0x0a, 0xd1, 0x2b, 0x8e, 0xe8, 0x92, 0x8e, 0xdf, 0x24, 0x8c, 0xa9, 0x1c, 0xa5, 0x56, 0x00, 0xfb, 0x38, 0x3f, 0x07, 0xc3, 0x2b, 0xff, 0x1d, 0x6d, 0xec, 0x47, 0x2b, 0x25, 0xcf, 0x59, 0xa7,
])
);
let id_from_str = Id::from_str("TtF4d2QWbk5vzQGTEPrN48x6vwgAoAmKQ9cbp79inpQmcRKES").unwrap();
assert_eq!(id, id_from_str);
let id = Id::from_slice(&<Vec<u8>>::from([
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
]));
assert_eq!(id.to_string(), "11111111111111111111111111111111LpoYY");
let id_from_str = Id::from_str("11111111111111111111111111111111LpoYY").unwrap();
assert_eq!(id, id_from_str);
}
impl Ord for Id {
fn cmp(&self, other: &Id) -> Ordering {
self.0.cmp(&(other.0))
}
}
impl PartialOrd for Id {
fn partial_cmp(&self, other: &Id) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl PartialEq for Id {
fn eq(&self, other: &Id) -> bool {
self.cmp(other) == Ordering::Equal
}
}
impl Hash for Id {
fn hash<H: Hasher>(&self, state: &mut H) {
self.0.hash(state);
}
}
#[derive(Eq)]
pub struct Ids(Vec<Id>);
impl Ids {
pub fn new(ids: &[Id]) -> Self {
Ids(Vec::from(ids))
}
}
impl Ord for Ids {
fn cmp(&self, other: &Ids) -> Ordering {
let l1 = self.0.len();
let l2 = other.0.len();
l1.cmp(&l2) .then_with(
|| self.0.cmp(&other.0), )
}
}
impl PartialOrd for Ids {
fn partial_cmp(&self, other: &Ids) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl PartialEq for Ids {
fn eq(&self, other: &Ids) -> bool {
self.cmp(other) == Ordering::Equal
}
}
#[test]
fn test_sort() {
let id1 = Id::from_slice(&<Vec<u8>>::from([0x01]));
let id2 = Id::from_slice(&<Vec<u8>>::from([0x02]));
let id3 = Id::from_slice(&<Vec<u8>>::from([0x03]));
assert!(id1 < id2);
assert!(id2 < id3);
assert!(id1 < id3);
let id1 = Id::from_slice(&<Vec<u8>>::from([0x01, 0x00, 0x00, 0x00]));
let id2 = Id::from_slice(&<Vec<u8>>::from([0x01, 0x00, 0x00, 0x00, 0x00]));
assert!(id1 == id2);
let id1 = Id::from_slice(&<Vec<u8>>::from([0x01, 0x00, 0x00, 0x00, 0x00]));
let id2 = Id::from_slice(&<Vec<u8>>::from([0x02]));
assert!(id1 < id2);
let id1 = Id::from_slice(&<Vec<u8>>::from([0x02, 0x00, 0x00, 0x00, 0x00]));
let id2 = Id::from_slice(&<Vec<u8>>::from([0x01, 0x00, 0x00, 0x00, 0x00]));
assert!(id1 > id2);
let ids1 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x01])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x03])),
]);
let ids2 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x01])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x03])),
]);
assert!(ids1 == ids2);
let ids1 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x05])),
Id::from_slice(&<Vec<u8>>::from([0x06])),
Id::from_slice(&<Vec<u8>>::from([0x07])),
]);
let ids2 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x01])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x03])),
Id::from_slice(&<Vec<u8>>::from([0x04])),
]);
assert!(ids1 < ids2);
let ids1 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x01])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x03])),
Id::from_slice(&<Vec<u8>>::from([0x04])),
]);
let ids2 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x09])),
Id::from_slice(&<Vec<u8>>::from([0x09])),
Id::from_slice(&<Vec<u8>>::from([0x09])),
]);
assert!(ids1 > ids2);
let ids1 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x01])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x03])),
]);
let ids2 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x01])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x05])),
]);
assert!(ids1 < ids2);
let mut ids1 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x03])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x01])),
]);
ids1.0.sort();
let ids2 = Ids(vec![
Id::from_slice(&<Vec<u8>>::from([0x01])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x03])),
]);
assert!(ids1 == ids2);
let mut ids1 = vec![
Id::from_slice(&<Vec<u8>>::from([0x03])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x01])),
];
ids1.sort();
let ids2 = vec![
Id::from_slice(&<Vec<u8>>::from([0x01])),
Id::from_slice(&<Vec<u8>>::from([0x02])),
Id::from_slice(&<Vec<u8>>::from([0x03])),
];
assert!(ids1 == ids2);
}
pub fn encode_vm_name_to_id(name: &str) -> io::Result<Id> {
let n = name.len();
if n > ID_LEN {
return Err(Error::new(
ErrorKind::Other,
format!("can't id {} bytes (>{})", n, ID_LEN),
));
}
let input = name.as_bytes().to_vec();
Ok(Id::from_slice(&input))
}
#[test]
fn test_vm_id() {
use log::info;
let _ = env_logger::builder()
.filter_level(log::LevelFilter::Info)
.is_test(true)
.try_init();
let subnet_evm_id = encode_vm_name_to_id("subnetevm").expect("failed to generate id from str");
assert_eq!(
format!("{}", subnet_evm_id),
"srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy"
);
let contents = random_manager::string(30);
let v = encode_vm_name_to_id(&contents).expect("failed to generate id from str");
info!("vm_id_from_str: {}", v);
}