2019-10-08 22:34:26 -07:00
|
|
|
//! named accounts for synthesized data accounts for bank state, etc.
|
|
|
|
//!
|
2020-02-05 12:23:19 -08:00
|
|
|
//! this account carries the Bank's most recent bank hashes for some N parents
|
2019-10-08 22:34:26 -07:00
|
|
|
//!
|
|
|
|
use crate::hash::Hash;
|
2019-12-19 21:24:12 -08:00
|
|
|
use std::{iter::FromIterator, ops::Deref};
|
2019-10-08 22:34:26 -07:00
|
|
|
|
2019-12-23 12:23:45 -08:00
|
|
|
pub const MAX_ENTRIES: usize = 512; // about 2.5 minutes to get your vote in
|
2019-10-08 22:34:26 -07:00
|
|
|
|
|
|
|
pub use crate::clock::Slot;
|
|
|
|
|
|
|
|
pub type SlotHash = (Slot, Hash);
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Serialize, Deserialize, PartialEq, Debug, Default)]
|
|
|
|
pub struct SlotHashes(Vec<SlotHash>);
|
|
|
|
|
|
|
|
impl SlotHashes {
|
|
|
|
pub fn add(&mut self, slot: Slot, hash: Hash) {
|
2019-12-19 21:24:12 -08:00
|
|
|
match self.binary_search_by(|(probe, _)| slot.cmp(&probe)) {
|
2019-10-08 22:34:26 -07:00
|
|
|
Ok(index) => (self.0)[index] = (slot, hash),
|
|
|
|
Err(index) => (self.0).insert(index, (slot, hash)),
|
|
|
|
}
|
2019-12-23 12:23:45 -08:00
|
|
|
(self.0).truncate(MAX_ENTRIES);
|
2019-10-08 22:34:26 -07:00
|
|
|
}
|
|
|
|
#[allow(clippy::trivially_copy_pass_by_ref)]
|
|
|
|
pub fn get(&self, slot: &Slot) -> Option<&Hash> {
|
2019-12-19 21:24:12 -08:00
|
|
|
self.binary_search_by(|(probe, _)| slot.cmp(&probe))
|
2019-10-08 22:34:26 -07:00
|
|
|
.ok()
|
|
|
|
.map(|index| &self[index].1)
|
|
|
|
}
|
|
|
|
pub fn new(slot_hashes: &[SlotHash]) -> Self {
|
|
|
|
let mut slot_hashes = slot_hashes.to_vec();
|
2019-12-19 21:24:12 -08:00
|
|
|
slot_hashes.sort_by(|(a, _), (b, _)| b.cmp(a));
|
2019-10-08 22:34:26 -07:00
|
|
|
Self(slot_hashes)
|
|
|
|
}
|
|
|
|
}
|
2019-12-19 21:24:12 -08:00
|
|
|
|
|
|
|
impl FromIterator<(Slot, Hash)> for SlotHashes {
|
|
|
|
fn from_iter<I: IntoIterator<Item = (Slot, Hash)>>(iter: I) -> Self {
|
|
|
|
Self(iter.into_iter().collect())
|
|
|
|
}
|
|
|
|
}
|
2019-10-08 22:34:26 -07:00
|
|
|
|
|
|
|
impl Deref for SlotHashes {
|
|
|
|
type Target = Vec<SlotHash>;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use crate::hash::hash;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test() {
|
|
|
|
let mut slot_hashes = SlotHashes::new(&[(1, Hash::default()), (3, Hash::default())]);
|
|
|
|
slot_hashes.add(2, Hash::default());
|
|
|
|
assert_eq!(
|
|
|
|
slot_hashes,
|
|
|
|
SlotHashes(vec![
|
|
|
|
(3, Hash::default()),
|
|
|
|
(2, Hash::default()),
|
|
|
|
(1, Hash::default()),
|
|
|
|
])
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut slot_hashes = SlotHashes::new(&[]);
|
2019-12-23 12:23:45 -08:00
|
|
|
for i in 0..MAX_ENTRIES + 1 {
|
2019-10-08 22:34:26 -07:00
|
|
|
slot_hashes.add(
|
|
|
|
i as u64,
|
|
|
|
hash(&[(i >> 24) as u8, (i >> 16) as u8, (i >> 8) as u8, i as u8]),
|
|
|
|
);
|
|
|
|
}
|
2019-12-23 12:23:45 -08:00
|
|
|
for i in 0..MAX_ENTRIES {
|
|
|
|
assert_eq!(slot_hashes[i].0, (MAX_ENTRIES - i) as u64);
|
2019-10-08 22:34:26 -07:00
|
|
|
}
|
|
|
|
|
2019-12-23 12:23:45 -08:00
|
|
|
assert_eq!(slot_hashes.len(), MAX_ENTRIES);
|
2019-10-08 22:34:26 -07:00
|
|
|
}
|
|
|
|
}
|