use semver::Version;
use serde::{Deserialize, Serialize};
use sha2::{Digest, Sha256};
use crate::entities::{CardanoDbBeacon, CompressionAlgorithm};
use super::{CardanoNetwork, MultiFilesUri};
pub struct CardanoDatabaseSnapshotArtifactData {
pub total_db_size_uncompressed: u64,
pub digests: DigestsLocations,
pub immutables: ImmutablesLocations,
pub ancillary: AncillaryLocations,
}
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct CardanoDatabaseSnapshot {
pub hash: String,
pub merkle_root: String,
pub network: CardanoNetwork,
pub beacon: CardanoDbBeacon,
pub total_db_size_uncompressed: u64,
pub digests: DigestsLocations,
pub immutables: ImmutablesLocations,
pub ancillary: AncillaryLocations,
pub cardano_node_version: String,
}
impl CardanoDatabaseSnapshot {
pub fn new(
merkle_root: String,
network: CardanoNetwork,
beacon: CardanoDbBeacon,
content: CardanoDatabaseSnapshotArtifactData,
cardano_node_version: &Version,
) -> Self {
let cardano_node_version = format!("{cardano_node_version}");
let mut cardano_database_snapshot = Self {
hash: "".to_string(),
merkle_root,
network,
beacon,
digests: content.digests,
immutables: content.immutables,
ancillary: content.ancillary,
total_db_size_uncompressed: content.total_db_size_uncompressed,
cardano_node_version,
};
cardano_database_snapshot.hash = cardano_database_snapshot.compute_hash();
cardano_database_snapshot
}
fn compute_hash(&self) -> String {
let mut hasher = Sha256::new();
hasher.update(self.beacon.epoch.to_be_bytes());
hasher.update(self.merkle_root.as_bytes());
hex::encode(hasher.finalize())
}
}
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
#[serde(rename_all = "snake_case", tag = "type")]
pub enum DigestLocation {
CloudStorage {
uri: String,
#[serde(skip_serializing_if = "Option::is_none")]
compression_algorithm: Option<CompressionAlgorithm>,
},
Aggregator {
uri: String,
},
#[serde(other)]
Unknown,
}
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
#[serde(rename_all = "snake_case", tag = "type")]
pub enum ImmutablesLocation {
CloudStorage {
uri: MultiFilesUri,
#[serde(skip_serializing_if = "Option::is_none")]
compression_algorithm: Option<CompressionAlgorithm>,
},
#[serde(other)]
Unknown,
}
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
#[serde(rename_all = "snake_case", tag = "type")]
pub enum AncillaryLocation {
CloudStorage {
uri: String,
#[serde(skip_serializing_if = "Option::is_none")]
compression_algorithm: Option<CompressionAlgorithm>,
},
#[serde(other)]
Unknown,
}
#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct DigestsLocations {
pub size_uncompressed: u64,
pub locations: Vec<DigestLocation>,
}
#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct ImmutablesLocations {
pub average_size_uncompressed: u64,
pub locations: Vec<ImmutablesLocation>,
}
#[derive(Clone, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct AncillaryLocations {
pub size_uncompressed: u64,
pub locations: Vec<AncillaryLocation>,
}
#[cfg(test)]
mod tests {
use crate::entities::TemplateUri;
use super::*;
fn dummy() -> CardanoDatabaseSnapshot {
CardanoDatabaseSnapshot::new(
"mk-root-1111111111".to_string(),
CardanoNetwork::DevNet(87),
CardanoDbBeacon::new(2222, 55555),
CardanoDatabaseSnapshotArtifactData {
total_db_size_uncompressed: 0,
digests: DigestsLocations {
size_uncompressed: 0,
locations: vec![],
},
immutables: ImmutablesLocations {
average_size_uncompressed: 0,
locations: vec![],
},
ancillary: AncillaryLocations {
size_uncompressed: 0,
locations: vec![],
},
},
&Version::new(1, 0, 0),
)
}
mod cardano_database_snapshot_compute_hash {
use super::*;
#[test]
fn test_cardano_database_snapshot_compute_hash() {
let cardano_database_snapshot = CardanoDatabaseSnapshot {
merkle_root: "mk-root-123".to_string(),
beacon: CardanoDbBeacon::new(123, 98),
..dummy()
};
assert_eq!(
"b1cc5e0deaa7856e8e811e349d6e639fa667aa70288602955f438c5893ce29c8",
cardano_database_snapshot.compute_hash()
);
}
#[test]
fn compute_hash_returns_same_hash_with_same_cardano_database_snapshot() {
assert_eq!(
CardanoDatabaseSnapshot {
merkle_root: "mk-root-123".to_string(),
beacon: CardanoDbBeacon::new(123, 98),
..dummy()
}
.compute_hash(),
CardanoDatabaseSnapshot {
merkle_root: "mk-root-123".to_string(),
beacon: CardanoDbBeacon::new(123, 98),
..dummy()
}
.compute_hash()
);
}
#[test]
fn compute_hash_returns_different_hash_with_different_merkle_root() {
assert_ne!(
CardanoDatabaseSnapshot {
merkle_root: "mk-root-123".to_string(),
beacon: CardanoDbBeacon::new(123, 98),
..dummy()
}
.compute_hash(),
CardanoDatabaseSnapshot {
merkle_root: "mk-root-456".to_string(),
beacon: CardanoDbBeacon::new(123, 98),
..dummy()
}
.compute_hash()
);
}
#[test]
fn compute_hash_returns_different_hash_with_same_epoch_in_beacon() {
assert_eq!(
CardanoDatabaseSnapshot {
merkle_root: "mk-root-123".to_string(),
beacon: CardanoDbBeacon::new(123, 98),
..dummy()
}
.compute_hash(),
CardanoDatabaseSnapshot {
merkle_root: "mk-root-123".to_string(),
beacon: CardanoDbBeacon::new(123, 12),
..dummy()
}
.compute_hash()
);
}
#[test]
fn compute_hash_returns_different_hash_with_different_beacon() {
assert_ne!(
CardanoDatabaseSnapshot {
merkle_root: "mk-root-123".to_string(),
beacon: CardanoDbBeacon::new(123, 98),
..dummy()
}
.compute_hash(),
CardanoDatabaseSnapshot {
merkle_root: "mk-root-123".to_string(),
beacon: CardanoDbBeacon::new(456, 98),
..dummy()
}
.compute_hash()
);
}
}
#[test]
fn should_not_display_compression_algorithm_in_json_ancillary_location_when_none() {
let json = serde_json::json!(AncillaryLocation::CloudStorage {
uri: "https://example.com".to_string(),
compression_algorithm: None,
});
assert_eq!(
json.to_string(),
r#"{"type":"cloud_storage","uri":"https://example.com"}"#
);
}
#[test]
fn should_not_display_compression_algorithm_in_json_digests_location_when_none() {
let json = serde_json::json!(DigestLocation::CloudStorage {
uri: "https://example.com".to_string(),
compression_algorithm: None,
});
assert_eq!(
json.to_string(),
r#"{"type":"cloud_storage","uri":"https://example.com"}"#
);
}
#[test]
fn should_not_display_compression_algorithm_in_json_immutable_location_when_none() {
let json = serde_json::json!(ImmutablesLocation::CloudStorage {
uri: MultiFilesUri::Template(TemplateUri("https://example.com".to_string())),
compression_algorithm: None,
});
assert_eq!(
json.to_string(),
r#"{"type":"cloud_storage","uri":{"Template":"https://example.com"}}"#
);
}
}