//! The `poh_recorder` module provides an object for synchronizing with Proof of History. //! It synchronizes PoH, bank's register_tick and the ledger //! use crate::entry::Entry; use crate::poh::Poh; use crate::result::{Error, Result}; use solana_runtime::bank::Bank; use solana_sdk::hash::Hash; use solana_sdk::transaction::Transaction; use std::sync::mpsc::Sender; use std::sync::{Arc, Mutex}; #[derive(Debug, PartialEq, Eq, Clone)] pub enum PohRecorderError { InvalidCallingObject, MaxHeightReached, } #[derive(Clone)] pub struct PohRecorder { poh: Arc>, max_tick_height: u64, } impl PohRecorder { pub fn max_tick_height(&self) -> u64 { self.max_tick_height } pub fn hash(&self) -> Result<()> { // TODO: amortize the cost of this lock by doing the loop in here for // some min amount of hashes let mut poh = self.poh.lock().unwrap(); self.check_tick_height(&poh)?; poh.hash(); Ok(()) } pub fn tick(&mut self, bank: &Arc, sender: &Sender>) -> Result<()> { // Register and send the entry out while holding the lock if the max PoH height // hasn't been reached. // This guarantees PoH order and Entry production and banks LastId queue is the same let mut poh = self.poh.lock().unwrap(); self.check_tick_height(&poh)?; self.register_and_send_tick(&mut *poh, bank, sender) } pub fn record( &self, mixin: Hash, txs: Vec, sender: &Sender>, ) -> Result<()> { // Register and send the entry out while holding the lock. // This guarantees PoH order and Entry production and banks LastId queue is the same. let mut poh = self.poh.lock().unwrap(); self.check_tick_height(&poh)?; self.record_and_send_txs(&mut *poh, mixin, txs, sender) } /// A recorder to synchronize PoH with the following data structures /// * bank - the LastId's queue is updated on `tick` and `record` events /// * sender - the Entry channel that outputs to the ledger pub fn new(tick_height: u64, last_entry_id: Hash, max_tick_height: u64) -> Self { let poh = Arc::new(Mutex::new(Poh::new(last_entry_id, tick_height))); PohRecorder { poh, max_tick_height, } } fn check_tick_height(&self, poh: &Poh) -> Result<()> { if poh.tick_height >= self.max_tick_height { Err(Error::PohRecorderError(PohRecorderError::MaxHeightReached)) } else { Ok(()) } } fn record_and_send_txs( &self, poh: &mut Poh, mixin: Hash, txs: Vec, sender: &Sender>, ) -> Result<()> { let entry = poh.record(mixin); assert!(!txs.is_empty(), "Entries without transactions are used to track real-time passing in the ledger and can only be generated with PohRecorder::tick function"); let entry = Entry { num_hashes: entry.num_hashes, id: entry.id, transactions: txs, }; sender.send(vec![entry])?; Ok(()) } fn register_and_send_tick( &self, poh: &mut Poh, bank: &Arc, sender: &Sender>, ) -> Result<()> { let tick = poh.tick(); let tick = Entry { num_hashes: tick.num_hashes, id: tick.id, transactions: vec![], }; bank.register_tick(&tick.id); sender.send(vec![tick])?; Ok(()) } } #[cfg(test)] mod tests { use super::*; use crate::test_tx::test_tx; use solana_sdk::genesis_block::GenesisBlock; use solana_sdk::hash::hash; use std::sync::mpsc::channel; use std::sync::Arc; #[test] fn test_poh_recorder() { let (genesis_block, _mint_keypair) = GenesisBlock::new(2); let bank = Arc::new(Bank::new(&genesis_block)); let prev_id = bank.last_id(); let (entry_sender, entry_receiver) = channel(); let mut poh_recorder = PohRecorder::new(0, prev_id, 2); //send some data let h1 = hash(b"hello world!"); let tx = test_tx(); poh_recorder .record(h1, vec![tx.clone()], &entry_sender) .unwrap(); //get some events let _e = entry_receiver.recv().unwrap(); poh_recorder.tick(&bank, &entry_sender).unwrap(); let _e = entry_receiver.recv().unwrap(); poh_recorder.tick(&bank, &entry_sender).unwrap(); let _e = entry_receiver.recv().unwrap(); // max tick height reached assert!(poh_recorder.tick(&bank, &entry_sender).is_err()); assert!(poh_recorder.record(h1, vec![tx], &entry_sender).is_err()); //make sure it handles channel close correctly drop(entry_receiver); assert!(poh_recorder.tick(&bank, &entry_sender).is_err()); } }