clone-solana-runtime 2.2.12

Solana runtime
Documentation
//! Helper types and functions for handling and dealing with snapshot hashes.
use {
    clone_solana_accounts_db::{
        accounts_hash::MerkleOrLatticeAccountsHash, epoch_accounts_hash::EpochAccountsHash,
    },
    clone_solana_lattice_hash::lt_hash::Checksum as AccountsLtHashChecksum,
    clone_solana_sdk::{
        clock::Slot,
        hash::{Hash, Hasher},
    },
};

/// At startup, when loading from snapshots, the starting snapshot hashes need to be passed to
/// SnapshotPackagerService, which is in charge of pushing the hashes to CRDS.  This struct wraps
/// up those values make it easier to pass from bank_forks_utils, through validator, to
/// SnapshotPackagerService.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct StartingSnapshotHashes {
    pub full: FullSnapshotHash,
    pub incremental: Option<IncrementalSnapshotHash>,
}

/// Used by SnapshotPackagerService and SnapshotGossipManager, this struct adds type safety to
/// ensure a full snapshot hash is pushed to the right CRDS.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct FullSnapshotHash(pub (Slot, SnapshotHash));

/// Used by SnapshotPackagerService and SnapshotGossipManager, this struct adds type safety to
/// ensure an incremental snapshot hash is pushed to the right CRDS.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct IncrementalSnapshotHash(pub (Slot, SnapshotHash));

/// The hash used for snapshot archives
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct SnapshotHash(pub Hash);

impl SnapshotHash {
    /// Make a snapshot hash from accounts hashes
    #[must_use]
    pub fn new(
        merkle_or_lattice_accounts_hash: &MerkleOrLatticeAccountsHash,
        epoch_accounts_hash: Option<&EpochAccountsHash>,
        accounts_lt_hash_checksum: Option<AccountsLtHashChecksum>,
    ) -> Self {
        let accounts_hash = match merkle_or_lattice_accounts_hash {
            MerkleOrLatticeAccountsHash::Merkle(accounts_hash_kind) => {
                *accounts_hash_kind.as_hash()
            }
            MerkleOrLatticeAccountsHash::Lattice => Hash::new_from_array(
                accounts_lt_hash_checksum
                    .expect("lattice kind must have lt hash checksum")
                    .0,
            ),
        };
        let snapshot_hash = match epoch_accounts_hash {
            None => accounts_hash,
            Some(epoch_accounts_hash) => {
                let mut hasher = Hasher::default();
                hasher.hash(accounts_hash.as_ref());
                hasher.hash(epoch_accounts_hash.as_ref().as_ref());
                hasher.result()
            }
        };
        Self(snapshot_hash)
    }
}