030bd0e1d9
* [PIBD_IMPL] Introduce PIBD state into sync workflow (#3685) * experimental addition of pibd download state for testnet only * fixes to bitmap number of segments calculation + conversion of bitmap accumulator to bitmap * attempt to call a test message * add p2p methods for receiving bitmap segment and applying to desegmenter associated with chain * fixes to state sync * add pibd receive messages to network, and basic calls to desegmenter from each (#3686) * [PIBD_IMPL] PIBD Desegmenter State (#3688) * add functions to desegmenter to report next desired segments, begin to add state to determine which segments have been requested * add segmentidentifier type to id requested segments uniquely * make a call on where to keep track of which PIBD segments have been requested * move segmenttype definition, add functions to manipulate peer segment list * remove desegmenter state enum * change chain desegmenter function to provide rwlock * trace, warning cleanup * udpate to test compliation * [PIBD_IMPL] Bitmap accumulator reconstruction + TxHashset set reconstruction (#3689) * application of received bitmap segments to local accumulator * add all required elements to send/receive output segment requests and responses * testing of output sync * add special cases to pmmr segment request * [PIBD_IMPL] PMMR Reassembly from Segments (#3690) * update pibd copy test to use new desgmenter structure * begin reconstruction of output pmmr * clean up hash/leaf insertion logic * push pruned subtree appears to be working, now also calculates left hand hashes correctly * factor out ordering of segment/hash order array * refactor for pmmr application code * test of chain copy appears to be working * add rangeproof functions to desegmenter * add kernel functions, attempt refactor * small test cleanup, reconstruction of live chain working in manual copy test * [PIBD_IMPL] PIBD tree sync via network and kill/resume functionality (#3691) * add functions to determing latest verifiable block height for the given pibd state * attempting to allow for pibd to resume after killing process * fix to ensure prune list is properly flushed during pibd sync * removal of unneeded code * ignore test for now (fix before full merge) * [PIBD_IMPL] Finalize PIBD download and move state to chain validation (#3692) * investigations as to why a slight rewind is needed on startup during PIBD * move validation code into desegmenter validation thread (for now) * ensure genesis entries in pmmrs are removed if they're removed in the first segment * validation all working except for verifying kernel sums * remove unneeded pmmr rollbacks on resume now root cause was found * updates to remove unpruned leaves from leaf set when rebuilding pmmr * remove + 1 to segment traversal iter length * [PIBD_IMPL] PIBD Stats + Retry on validation errors (#3694) * start to add stats and reset chain state after errors detected * add functions to reset prune list when resetting chain pibd state * debug statement * remove test function * [PIBD_IMPL] Update number of simultaneous peer requests for segments (#3696) * cleanup of segment request list * allow for more simultaneous requests during state sync * up number of simultaneous peer requests for segments * [PIBD_IMPL] Thread simplification + More TUI Updates + Stop State Propagation (#3698) * change pibd stat display to show progress as a percentage of downloaded leaves * attempt some inline rp validation * propagate shutdown state through kernel validation * change validation loop timing * simplify validator threading * add more detailed tracking of kernel history validation to tui, allow stop state during * adding more stop state + tui progress indication * remove progressive validate * test fix * revert to previous method of applying segments (#3699) * fix for deadlock issue (#3700) * update Cargo.lock for next release * [PIBD_IMPL] Catch-Up functionality + Fixes based on testing (#3702) * ensure desegmenter attempts to apply correct block after a resumte * ensure txhashset's committed implementation takes into account output bitmap for summing purposes * remove check to de-apply outputs during segment application * return removal of spent outputs during pibd * remove unneeded status * remove uneeded change to rewind function * documentation updates + todo fixes (#3703) * add pibd abort timeout case (#3704) * [PIBD_IMPL] BitmapAccumulator Serialization Fix (#3705) * fix for writing / calculating incorrect length for negative indices * update capabilities with new version of PIBD hist * remove incorrect comment * fix capabilities flag, trace output * test fix * Merge DNSSeed scope changes into pibd impl branch (#3708) * update Cargo.lock for next release * visibility scope tweaks to aid seed test utilities (#3707) * move all PIBD-related constants into pibd_params modules (#3711) * remove potential double read lock during compaction
650 lines
17 KiB
Rust
650 lines
17 KiB
Rust
// Copyright 2021 The Grin Developers
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Base types that the block chain pipeline requires.
|
|
|
|
use chrono::prelude::{DateTime, Utc};
|
|
use chrono::Duration;
|
|
|
|
use crate::core::core::hash::{Hash, Hashed, ZERO_HASH};
|
|
use crate::core::core::{pmmr, Block, BlockHeader, HeaderVersion, SegmentTypeIdentifier};
|
|
use crate::core::pow::Difficulty;
|
|
use crate::core::ser::{self, PMMRIndexHashable, Readable, Reader, Writeable, Writer};
|
|
use crate::error::Error;
|
|
use crate::util::{RwLock, RwLockWriteGuard};
|
|
|
|
bitflags! {
|
|
/// Options for block validation
|
|
pub struct Options: u32 {
|
|
/// No flags
|
|
const NONE = 0b0000_0000;
|
|
/// Runs without checking the Proof of Work, mostly to make testing easier.
|
|
const SKIP_POW = 0b0000_0001;
|
|
/// Adds block while in syncing mode.
|
|
const SYNC = 0b0000_0010;
|
|
/// Block validation on a block we mined ourselves
|
|
const MINE = 0b0000_0100;
|
|
}
|
|
}
|
|
|
|
/// Various status sync can be in, whether it's fast sync or archival.
|
|
#[derive(Debug, Clone, Copy, PartialEq, Deserialize, Serialize)]
|
|
pub enum SyncStatus {
|
|
/// Initial State (we do not yet know if we are/should be syncing)
|
|
Initial,
|
|
/// Not syncing
|
|
NoSync,
|
|
/// Not enough peers to do anything yet, boolean indicates whether
|
|
/// we should wait at all or ignore and start ASAP
|
|
AwaitingPeers(bool),
|
|
/// Downloading block headers
|
|
HeaderSync {
|
|
/// current sync head
|
|
sync_head: Tip,
|
|
/// height of the most advanced peer
|
|
highest_height: u64,
|
|
/// diff of the most advanced peer
|
|
highest_diff: Difficulty,
|
|
},
|
|
/// Performing PIBD reconstruction of txhashset
|
|
/// If PIBD syncer determines there's not enough
|
|
/// PIBD peers to continue, then move on to TxHashsetDownload state
|
|
TxHashsetPibd {
|
|
/// Whether the syncer has determined there's not enough
|
|
/// data to continue via PIBD
|
|
aborted: bool,
|
|
/// whether we got an error anywhere (in which case restart the process)
|
|
errored: bool,
|
|
/// total number of leaves applied
|
|
completed_leaves: u64,
|
|
/// total number of leaves required by archive header
|
|
leaves_required: u64,
|
|
/// 'height', i.e. last 'block' for which there is complete
|
|
/// pmmr data
|
|
completed_to_height: u64,
|
|
/// Total 'height' needed
|
|
required_height: u64,
|
|
},
|
|
/// Downloading the various txhashsets
|
|
TxHashsetDownload(TxHashsetDownloadStats),
|
|
/// Setting up before validation
|
|
TxHashsetSetup {
|
|
/// number of 'headers' for which kernels have been checked
|
|
headers: Option<u64>,
|
|
/// headers total
|
|
headers_total: Option<u64>,
|
|
/// kernel position portion
|
|
kernel_pos: Option<u64>,
|
|
/// total kernel position
|
|
kernel_pos_total: Option<u64>,
|
|
},
|
|
/// Validating the kernels
|
|
TxHashsetKernelsValidation {
|
|
/// kernels validated
|
|
kernels: u64,
|
|
/// kernels in total
|
|
kernels_total: u64,
|
|
},
|
|
/// Validating the range proofs
|
|
TxHashsetRangeProofsValidation {
|
|
/// range proofs validated
|
|
rproofs: u64,
|
|
/// range proofs in total
|
|
rproofs_total: u64,
|
|
},
|
|
/// Finalizing the new state
|
|
TxHashsetSave,
|
|
/// State sync finalized
|
|
TxHashsetDone,
|
|
/// Downloading blocks
|
|
BodySync {
|
|
/// current node height
|
|
current_height: u64,
|
|
/// height of the most advanced peer
|
|
highest_height: u64,
|
|
},
|
|
/// Shutdown
|
|
Shutdown,
|
|
}
|
|
|
|
/// Stats for TxHashsetDownload stage
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq, Deserialize, Serialize)]
|
|
pub struct TxHashsetDownloadStats {
|
|
/// when download started
|
|
pub start_time: DateTime<Utc>,
|
|
/// time of the previous update
|
|
pub prev_update_time: DateTime<Utc>,
|
|
/// time of the latest update
|
|
pub update_time: DateTime<Utc>,
|
|
/// size of the previous chunk
|
|
pub prev_downloaded_size: u64,
|
|
/// size of the the latest chunk
|
|
pub downloaded_size: u64,
|
|
/// downloaded since the start
|
|
pub total_size: u64,
|
|
}
|
|
|
|
impl Default for TxHashsetDownloadStats {
|
|
fn default() -> Self {
|
|
TxHashsetDownloadStats {
|
|
start_time: Utc::now(),
|
|
update_time: Utc::now(),
|
|
prev_update_time: Utc::now(),
|
|
prev_downloaded_size: 0,
|
|
downloaded_size: 0,
|
|
total_size: 0,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Container for entry in requested PIBD segments
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
pub struct PIBDSegmentContainer {
|
|
/// Segment+Type Identifier
|
|
pub identifier: SegmentTypeIdentifier,
|
|
/// Time at which this request was made
|
|
pub request_time: DateTime<Utc>,
|
|
}
|
|
|
|
impl PIBDSegmentContainer {
|
|
/// Return container with timestamp
|
|
pub fn new(identifier: SegmentTypeIdentifier) -> Self {
|
|
Self {
|
|
identifier,
|
|
request_time: Utc::now(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Current sync state. Encapsulates the current SyncStatus.
|
|
pub struct SyncState {
|
|
current: RwLock<SyncStatus>,
|
|
sync_error: RwLock<Option<Error>>,
|
|
/// Something has to keep track of segments that have been
|
|
/// requested from other peers. TODO consider: This may not
|
|
/// be the best place to put code that's concerned with peers
|
|
/// but it's currently the only place that makes the info
|
|
/// available where it will be needed (both in the adapter
|
|
/// and the sync loop)
|
|
requested_pibd_segments: RwLock<Vec<PIBDSegmentContainer>>,
|
|
}
|
|
|
|
impl SyncState {
|
|
/// Return a new SyncState initialize to NoSync
|
|
pub fn new() -> SyncState {
|
|
SyncState {
|
|
current: RwLock::new(SyncStatus::Initial),
|
|
sync_error: RwLock::new(None),
|
|
requested_pibd_segments: RwLock::new(vec![]),
|
|
}
|
|
}
|
|
|
|
/// Reset sync status to NoSync.
|
|
pub fn reset(&self) {
|
|
self.clear_sync_error();
|
|
self.update(SyncStatus::NoSync);
|
|
}
|
|
|
|
/// Whether the current state matches any active syncing operation.
|
|
/// Note: This includes our "initial" state.
|
|
pub fn is_syncing(&self) -> bool {
|
|
*self.current.read() != SyncStatus::NoSync
|
|
}
|
|
|
|
/// Current syncing status
|
|
pub fn status(&self) -> SyncStatus {
|
|
*self.current.read()
|
|
}
|
|
|
|
/// Update the syncing status
|
|
pub fn update(&self, new_status: SyncStatus) -> bool {
|
|
let status = self.current.write();
|
|
self.update_with_guard(new_status, status)
|
|
}
|
|
|
|
fn update_with_guard(
|
|
&self,
|
|
new_status: SyncStatus,
|
|
mut status: RwLockWriteGuard<SyncStatus>,
|
|
) -> bool {
|
|
if *status == new_status {
|
|
return false;
|
|
}
|
|
|
|
debug!("sync_state: sync_status: {:?} -> {:?}", *status, new_status,);
|
|
*status = new_status;
|
|
true
|
|
}
|
|
|
|
/// Update the syncing status if predicate f is satisfied
|
|
pub fn update_if<F>(&self, new_status: SyncStatus, f: F) -> bool
|
|
where
|
|
F: Fn(SyncStatus) -> bool,
|
|
{
|
|
let status = self.current.write();
|
|
if f(*status) {
|
|
self.update_with_guard(new_status, status)
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
|
|
/// Update sync_head if state is currently HeaderSync.
|
|
pub fn update_header_sync(&self, new_sync_head: Tip) {
|
|
let status: &mut SyncStatus = &mut self.current.write();
|
|
match status {
|
|
SyncStatus::HeaderSync { sync_head, .. } => {
|
|
*sync_head = new_sync_head;
|
|
}
|
|
_ => (),
|
|
}
|
|
}
|
|
|
|
/// Update txhashset downloading progress
|
|
pub fn update_txhashset_download(&self, stats: TxHashsetDownloadStats) {
|
|
*self.current.write() = SyncStatus::TxHashsetDownload(stats);
|
|
}
|
|
|
|
/// Update PIBD progress
|
|
pub fn update_pibd_progress(
|
|
&self,
|
|
aborted: bool,
|
|
errored: bool,
|
|
completed_leaves: u64,
|
|
completed_to_height: u64,
|
|
archive_header: &BlockHeader,
|
|
) {
|
|
let leaves_required = pmmr::n_leaves(archive_header.output_mmr_size) * 2
|
|
+ pmmr::n_leaves(archive_header.kernel_mmr_size);
|
|
*self.current.write() = SyncStatus::TxHashsetPibd {
|
|
aborted,
|
|
errored,
|
|
completed_leaves,
|
|
leaves_required,
|
|
completed_to_height,
|
|
required_height: archive_header.height,
|
|
};
|
|
}
|
|
|
|
/// Update PIBD segment list
|
|
pub fn add_pibd_segment(&self, id: &SegmentTypeIdentifier) {
|
|
self.requested_pibd_segments
|
|
.write()
|
|
.push(PIBDSegmentContainer::new(id.clone()));
|
|
}
|
|
|
|
/// Remove segment from list
|
|
pub fn remove_pibd_segment(&self, id: &SegmentTypeIdentifier) {
|
|
self.requested_pibd_segments
|
|
.write()
|
|
.retain(|i| &i.identifier != id);
|
|
}
|
|
|
|
/// Remove segments with request timestamps less than cutoff time
|
|
pub fn remove_stale_pibd_requests(&self, timeout_seconds: i64) {
|
|
let cutoff_time = Utc::now() - Duration::seconds(timeout_seconds);
|
|
self.requested_pibd_segments.write().retain(|i| {
|
|
if i.request_time <= cutoff_time {
|
|
debug!("Removing + retrying PIBD request after timeout: {:?}", i)
|
|
};
|
|
i.request_time > cutoff_time
|
|
});
|
|
}
|
|
|
|
/// Check whether segment is in request list
|
|
pub fn contains_pibd_segment(&self, id: &SegmentTypeIdentifier) -> bool {
|
|
self.requested_pibd_segments
|
|
.read()
|
|
.iter()
|
|
.any(|i| &i.identifier == id)
|
|
}
|
|
|
|
/// Communicate sync error
|
|
pub fn set_sync_error(&self, error: Error) {
|
|
*self.sync_error.write() = Some(error);
|
|
}
|
|
|
|
/// Get sync error
|
|
pub fn sync_error(&self) -> Option<String> {
|
|
self.sync_error.read().as_ref().map(|e| e.to_string())
|
|
}
|
|
|
|
/// Clear sync error
|
|
pub fn clear_sync_error(&self) {
|
|
*self.sync_error.write() = None;
|
|
}
|
|
}
|
|
|
|
impl TxHashsetWriteStatus for SyncState {
|
|
fn on_setup(
|
|
&self,
|
|
headers: Option<u64>,
|
|
headers_total: Option<u64>,
|
|
kernel_pos: Option<u64>,
|
|
kernel_pos_total: Option<u64>,
|
|
) {
|
|
self.update(SyncStatus::TxHashsetSetup {
|
|
headers,
|
|
headers_total,
|
|
kernel_pos,
|
|
kernel_pos_total,
|
|
});
|
|
}
|
|
|
|
fn on_validation_kernels(&self, kernels: u64, kernels_total: u64) {
|
|
self.update(SyncStatus::TxHashsetKernelsValidation {
|
|
kernels,
|
|
kernels_total,
|
|
});
|
|
}
|
|
|
|
fn on_validation_rproofs(&self, rproofs: u64, rproofs_total: u64) {
|
|
self.update(SyncStatus::TxHashsetRangeProofsValidation {
|
|
rproofs,
|
|
rproofs_total,
|
|
});
|
|
}
|
|
|
|
fn on_save(&self) {
|
|
self.update(SyncStatus::TxHashsetSave);
|
|
}
|
|
|
|
fn on_done(&self) {
|
|
self.update(SyncStatus::TxHashsetDone);
|
|
}
|
|
}
|
|
|
|
/// A helper for the various txhashset MMR roots.
|
|
#[derive(Debug)]
|
|
pub struct TxHashSetRoots {
|
|
/// Output roots
|
|
pub output_roots: OutputRoots,
|
|
/// Range Proof root
|
|
pub rproof_root: Hash,
|
|
/// Kernel root
|
|
pub kernel_root: Hash,
|
|
}
|
|
|
|
impl TxHashSetRoots {
|
|
/// Accessor for the output PMMR root (rules here are block height dependent).
|
|
/// We assume the header version is consistent with the block height, validated
|
|
/// as part of pipe::validate_header().
|
|
pub fn output_root(&self, header: &BlockHeader) -> Hash {
|
|
self.output_roots.root(header)
|
|
}
|
|
|
|
/// Validate roots against the provided block header.
|
|
pub fn validate(&self, header: &BlockHeader) -> Result<(), Error> {
|
|
debug!(
|
|
"validate roots: {} at {}, {} vs. {} (original: {}, merged: {})",
|
|
header.hash(),
|
|
header.height,
|
|
header.output_root,
|
|
self.output_root(header),
|
|
self.output_roots.pmmr_root,
|
|
self.output_roots.merged_root(header),
|
|
);
|
|
|
|
if header.output_root != self.output_root(header)
|
|
|| header.range_proof_root != self.rproof_root
|
|
|| header.kernel_root != self.kernel_root
|
|
{
|
|
Err(Error::InvalidRoot)
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A helper for the various output roots.
|
|
#[derive(Debug)]
|
|
pub struct OutputRoots {
|
|
/// The output PMMR root
|
|
pub pmmr_root: Hash,
|
|
/// The bitmap accumulator root
|
|
pub bitmap_root: Hash,
|
|
}
|
|
|
|
impl OutputRoots {
|
|
/// The root of our output PMMR. The rules here are block height specific.
|
|
/// We use the merged root here for header version 3 and later.
|
|
/// We assume the header version is consistent with the block height, validated
|
|
/// as part of pipe::validate_header().
|
|
pub fn root(&self, header: &BlockHeader) -> Hash {
|
|
if header.version < HeaderVersion(3) {
|
|
self.output_root()
|
|
} else {
|
|
self.merged_root(header)
|
|
}
|
|
}
|
|
|
|
/// The root of the underlying output PMMR.
|
|
fn output_root(&self) -> Hash {
|
|
self.pmmr_root
|
|
}
|
|
|
|
/// Hash the root of the output PMMR and the root of the bitmap accumulator
|
|
/// together with the size of the output PMMR (for consistency with existing PMMR impl).
|
|
/// H(pmmr_size | pmmr_root | bitmap_root)
|
|
fn merged_root(&self, header: &BlockHeader) -> Hash {
|
|
(self.pmmr_root, self.bitmap_root).hash_with_index(header.output_mmr_size)
|
|
}
|
|
}
|
|
|
|
/// Minimal struct representing a known MMR position and associated block height.
|
|
#[derive(Clone, Copy, Debug, PartialEq)]
|
|
pub struct CommitPos {
|
|
/// MMR position
|
|
pub pos: u64,
|
|
/// Block height
|
|
pub height: u64,
|
|
}
|
|
|
|
impl Readable for CommitPos {
|
|
fn read<R: Reader>(reader: &mut R) -> Result<CommitPos, ser::Error> {
|
|
let pos = reader.read_u64()?;
|
|
let height = reader.read_u64()?;
|
|
Ok(CommitPos { pos, height })
|
|
}
|
|
}
|
|
|
|
impl Writeable for CommitPos {
|
|
fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ser::Error> {
|
|
writer.write_u64(self.pos)?;
|
|
writer.write_u64(self.height)?;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
/// The tip of a fork. A handle to the fork ancestry from its leaf in the
|
|
/// blockchain tree. References the max height and the latest and previous
|
|
/// blocks
|
|
/// for convenience and the total difficulty.
|
|
#[derive(Serialize, Deserialize, Debug, Clone, Copy, PartialEq)]
|
|
pub struct Tip {
|
|
/// Height of the tip (max height of the fork)
|
|
pub height: u64,
|
|
/// Last block pushed to the fork
|
|
pub last_block_h: Hash,
|
|
/// Previous block
|
|
pub prev_block_h: Hash,
|
|
/// Total difficulty accumulated on that fork
|
|
pub total_difficulty: Difficulty,
|
|
}
|
|
|
|
impl Tip {
|
|
/// Creates a new tip based on provided header.
|
|
pub fn from_header(header: &BlockHeader) -> Tip {
|
|
header.into()
|
|
}
|
|
}
|
|
|
|
impl From<BlockHeader> for Tip {
|
|
fn from(header: BlockHeader) -> Self {
|
|
Self::from(&header)
|
|
}
|
|
}
|
|
|
|
impl From<&BlockHeader> for Tip {
|
|
fn from(header: &BlockHeader) -> Self {
|
|
Tip {
|
|
height: header.height,
|
|
last_block_h: header.hash(),
|
|
prev_block_h: header.prev_hash,
|
|
total_difficulty: header.total_difficulty(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Hashed for Tip {
|
|
/// The hash of the underlying block.
|
|
fn hash(&self) -> Hash {
|
|
self.last_block_h
|
|
}
|
|
}
|
|
|
|
impl Default for Tip {
|
|
fn default() -> Self {
|
|
Tip {
|
|
height: 0,
|
|
last_block_h: ZERO_HASH,
|
|
prev_block_h: ZERO_HASH,
|
|
total_difficulty: Difficulty::min_dma(),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Serialization of a tip, required to save to datastore.
|
|
impl ser::Writeable for Tip {
|
|
fn write<W: ser::Writer>(&self, writer: &mut W) -> Result<(), ser::Error> {
|
|
writer.write_u64(self.height)?;
|
|
writer.write_fixed_bytes(&self.last_block_h)?;
|
|
writer.write_fixed_bytes(&self.prev_block_h)?;
|
|
self.total_difficulty.write(writer)
|
|
}
|
|
}
|
|
|
|
impl ser::Readable for Tip {
|
|
fn read<R: ser::Reader>(reader: &mut R) -> Result<Tip, ser::Error> {
|
|
let height = reader.read_u64()?;
|
|
let last = Hash::read(reader)?;
|
|
let prev = Hash::read(reader)?;
|
|
let diff = Difficulty::read(reader)?;
|
|
Ok(Tip {
|
|
height: height,
|
|
last_block_h: last,
|
|
prev_block_h: prev,
|
|
total_difficulty: diff,
|
|
})
|
|
}
|
|
}
|
|
|
|
/// Bridge between the chain pipeline and the rest of the system. Handles
|
|
/// downstream processing of valid blocks by the rest of the system, most
|
|
/// importantly the broadcasting of blocks to our peers.
|
|
pub trait ChainAdapter {
|
|
/// The blockchain pipeline has accepted this block as valid and added
|
|
/// it to our chain.
|
|
fn block_accepted(&self, block: &Block, status: BlockStatus, opts: Options);
|
|
}
|
|
|
|
/// Inform the caller of the current status of a txhashset write operation,
|
|
/// as it can take quite a while to process. Each function is called in the
|
|
/// order defined below and can be used to provide some feedback to the
|
|
/// caller. Functions taking arguments can be called repeatedly to update
|
|
/// those values as the processing progresses.
|
|
pub trait TxHashsetWriteStatus {
|
|
/// First setup of the txhashset
|
|
fn on_setup(
|
|
&self,
|
|
headers: Option<u64>,
|
|
header_total: Option<u64>,
|
|
kernel_pos: Option<u64>,
|
|
kernel_pos_total: Option<u64>,
|
|
);
|
|
/// Starting kernel validation
|
|
fn on_validation_kernels(&self, kernels: u64, kernel_total: u64);
|
|
/// Starting rproof validation
|
|
fn on_validation_rproofs(&self, rproofs: u64, rproof_total: u64);
|
|
/// Starting to save the txhashset and related data
|
|
fn on_save(&self);
|
|
/// Done writing a new txhashset
|
|
fn on_done(&self);
|
|
}
|
|
|
|
/// Do-nothing implementation of TxHashsetWriteStatus
|
|
pub struct NoStatus;
|
|
|
|
impl TxHashsetWriteStatus for NoStatus {
|
|
fn on_setup(&self, _hs: Option<u64>, _ht: Option<u64>, _kp: Option<u64>, _kpt: Option<u64>) {}
|
|
fn on_validation_kernels(&self, _ks: u64, _kts: u64) {}
|
|
fn on_validation_rproofs(&self, _rs: u64, _rt: u64) {}
|
|
fn on_save(&self) {}
|
|
fn on_done(&self) {}
|
|
}
|
|
|
|
/// Dummy adapter used as a placeholder for real implementations
|
|
pub struct NoopAdapter {}
|
|
|
|
impl ChainAdapter for NoopAdapter {
|
|
fn block_accepted(&self, _b: &Block, _status: BlockStatus, _opts: Options) {}
|
|
}
|
|
|
|
/// Status of an accepted block.
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
pub enum BlockStatus {
|
|
/// Block is the "next" block, updating the chain head.
|
|
Next {
|
|
/// Previous block (previous chain head).
|
|
prev: Tip,
|
|
},
|
|
/// Block does not update the chain head and is a fork.
|
|
Fork {
|
|
/// Previous block on this fork.
|
|
prev: Tip,
|
|
/// Current chain head.
|
|
head: Tip,
|
|
/// Fork point for rewind.
|
|
fork_point: Tip,
|
|
},
|
|
/// Block updates the chain head via a (potentially disruptive) "reorg".
|
|
/// Previous block was not our previous chain head.
|
|
Reorg {
|
|
/// Previous block on this fork.
|
|
prev: Tip,
|
|
/// Previous chain head.
|
|
prev_head: Tip,
|
|
/// Fork point for rewind.
|
|
fork_point: Tip,
|
|
},
|
|
}
|
|
|
|
impl BlockStatus {
|
|
/// Is this the "next" block?
|
|
pub fn is_next(&self) -> bool {
|
|
match *self {
|
|
BlockStatus::Next { .. } => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
|
|
/// Is this block a "reorg"?
|
|
pub fn is_reorg(&self) -> bool {
|
|
match *self {
|
|
BlockStatus::Reorg { .. } => true,
|
|
_ => false,
|
|
}
|
|
}
|
|
}
|