2020-04-07 16:10:20 +00:00
|
|
|
use std::fmt;
|
2020-04-06 20:27:51 +00:00
|
|
|
use std::collections::HashMap;
|
2020-04-07 16:10:20 +00:00
|
|
|
use serde::{Serializer, Deserializer, Serialize, Deserialize};
|
|
|
|
use serde::de::{self, Visitor};
|
2020-04-05 21:33:42 +00:00
|
|
|
|
2020-04-07 16:10:20 +00:00
|
|
|
#[derive(Default, PartialOrd, Ord, Clone, Hash, PartialEq)]
|
|
|
|
pub struct FixedBytes32([u8; 32]);
|
|
|
|
|
|
|
|
impl From<[u8; 32]> for FixedBytes32 {
|
|
|
|
fn from(x: [u8; 32]) -> FixedBytes32 {
|
|
|
|
FixedBytes32(x)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::convert::AsRef<[u8]> for FixedBytes32 {
|
|
|
|
fn as_ref(&self) -> &[u8] {
|
|
|
|
&self.0[..]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for FixedBytes32 {}
|
|
|
|
|
|
|
|
impl fmt::Debug for FixedBytes32 {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{}", hex::encode(self.0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct FixedBytes32Visitor;
|
|
|
|
impl<'de> Visitor<'de> for FixedBytes32Visitor {
|
|
|
|
type Value = FixedBytes32;
|
|
|
|
|
|
|
|
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
formatter.write_str("a byte slice of size 32")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_bytes<E: de::Error>(self, value: &[u8]) -> Result<Self::Value, E> {
|
|
|
|
if value.len() == 32 {
|
|
|
|
let mut res = [0u8; 32];
|
|
|
|
res.copy_from_slice(value);
|
|
|
|
Ok(res.into())
|
|
|
|
} else {
|
|
|
|
Err(E::custom(format!("Invalid byte string length {}, expected 32", value.len())))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'de> Deserialize<'de> for FixedBytes32 {
|
|
|
|
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<FixedBytes32, D::Error> {
|
|
|
|
deserializer.deserialize_bytes(FixedBytes32Visitor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Serialize for FixedBytes32 {
|
|
|
|
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
|
|
|
|
serializer.serialize_bytes(&self.0[..])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FixedBytes32 {
|
|
|
|
pub fn as_slice(&self) -> &[u8] {
|
|
|
|
&self.0[..]
|
|
|
|
}
|
|
|
|
pub fn as_slice_mut(&mut self) -> &mut [u8] {
|
|
|
|
&mut self.0[..]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type UUID = FixedBytes32;
|
|
|
|
pub type Hash = FixedBytes32;
|
2020-04-05 21:33:42 +00:00
|
|
|
|
|
|
|
|
2020-04-06 20:27:51 +00:00
|
|
|
// Network management
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct NetworkConfig {
|
|
|
|
pub members: HashMap<UUID, NetworkConfigEntry>,
|
|
|
|
pub version: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct NetworkConfigEntry {
|
2020-04-07 15:00:48 +00:00
|
|
|
pub datacenter: String,
|
2020-04-06 20:27:51 +00:00
|
|
|
pub n_tokens: u32,
|
|
|
|
}
|
|
|
|
|
2020-04-05 21:33:42 +00:00
|
|
|
// Data management
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct SplitpointMeta {
|
|
|
|
bucket: String,
|
|
|
|
key: String,
|
|
|
|
|
|
|
|
timestamp: u64,
|
|
|
|
uuid: UUID,
|
|
|
|
deleted: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct VersionMeta {
|
|
|
|
bucket: String,
|
|
|
|
key: String,
|
|
|
|
|
|
|
|
timestamp: u64,
|
|
|
|
uuid: UUID,
|
|
|
|
deleted: bool,
|
|
|
|
|
|
|
|
mime_type: String,
|
|
|
|
size: u64,
|
|
|
|
is_complete: bool,
|
|
|
|
|
|
|
|
data: VersionData,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub enum VersionData {
|
|
|
|
Inline(Vec<u8>),
|
|
|
|
FirstBlock(Hash),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct BlockMeta {
|
|
|
|
version_uuid: UUID,
|
|
|
|
offset: u64,
|
|
|
|
hash: Hash,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct BlockReverseMeta {
|
|
|
|
versions: Vec<UUID>,
|
|
|
|
deleted_versions: Vec<UUID>,
|
|
|
|
}
|