2017-04-19 20:31:53 +02:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
//! Secondary chunk creation and restoration, implementations for different consensus
|
|
|
|
//! engines.
|
|
|
|
|
2017-05-17 12:41:33 +02:00
|
|
|
use std::sync::atomic::AtomicBool;
|
2017-04-19 20:31:53 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
2017-05-17 12:41:33 +02:00
|
|
|
use blockchain::BlockChain;
|
2017-04-19 20:31:53 +02:00
|
|
|
use engines::Engine;
|
|
|
|
use snapshot::{Error, ManifestData};
|
|
|
|
|
2017-05-17 12:41:33 +02:00
|
|
|
use util::H256;
|
2017-04-19 20:31:53 +02:00
|
|
|
use util::kvdb::KeyValueDB;
|
|
|
|
|
2017-05-17 12:41:33 +02:00
|
|
|
mod authority;
|
|
|
|
mod work;
|
|
|
|
|
|
|
|
pub use self::authority::*;
|
|
|
|
pub use self::work::*;
|
2017-04-19 20:31:53 +02:00
|
|
|
|
|
|
|
/// A sink for produced chunks.
|
2017-05-17 12:41:33 +02:00
|
|
|
pub type ChunkSink<'a> = FnMut(&[u8]) -> ::std::io::Result<()> + 'a;
|
2017-04-19 20:31:53 +02:00
|
|
|
|
|
|
|
/// Components necessary for snapshot creation and restoration.
|
|
|
|
pub trait SnapshotComponents: Send {
|
|
|
|
/// Create secondary snapshot chunks; these corroborate the state data
|
|
|
|
/// in the state chunks.
|
|
|
|
///
|
|
|
|
/// Chunks shouldn't exceed the given preferred size, and should be fed
|
|
|
|
/// uncompressed into the sink.
|
|
|
|
///
|
|
|
|
/// This will vary by consensus engine, so it's exposed as a trait.
|
|
|
|
fn chunk_all(
|
|
|
|
&mut self,
|
|
|
|
chain: &BlockChain,
|
|
|
|
block_at: H256,
|
|
|
|
chunk_sink: &mut ChunkSink,
|
|
|
|
preferred_size: usize,
|
|
|
|
) -> Result<(), Error>;
|
|
|
|
|
|
|
|
/// Create a rebuilder, which will have chunks fed into it in aribtrary
|
|
|
|
/// order and then be finalized.
|
|
|
|
///
|
|
|
|
/// The manifest, a database, and fresh `BlockChain` are supplied.
|
2017-05-17 12:41:33 +02:00
|
|
|
///
|
|
|
|
/// The engine passed to the `Rebuilder` methods will be the same instance
|
|
|
|
/// that created the `SnapshotComponents`.
|
2017-04-19 20:31:53 +02:00
|
|
|
fn rebuilder(
|
|
|
|
&self,
|
|
|
|
chain: BlockChain,
|
|
|
|
db: Arc<KeyValueDB>,
|
|
|
|
manifest: &ManifestData,
|
|
|
|
) -> Result<Box<Rebuilder>, ::error::Error>;
|
2017-05-17 12:41:33 +02:00
|
|
|
|
|
|
|
/// Minimum supported snapshot version number.
|
|
|
|
fn min_supported_version(&self) -> u64;
|
|
|
|
|
|
|
|
/// Current version number
|
|
|
|
fn current_version(&self) -> u64;
|
2017-04-19 20:31:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Restore from secondary snapshot chunks.
|
|
|
|
pub trait Rebuilder: Send {
|
|
|
|
/// Feed a chunk, potentially out of order.
|
|
|
|
///
|
|
|
|
/// Check `abort_flag` periodically while doing heavy work. If set to `false`, should bail with
|
|
|
|
/// `Error::RestorationAborted`.
|
|
|
|
fn feed(
|
|
|
|
&mut self,
|
|
|
|
chunk: &[u8],
|
|
|
|
engine: &Engine,
|
|
|
|
abort_flag: &AtomicBool,
|
|
|
|
) -> Result<(), ::error::Error>;
|
|
|
|
|
|
|
|
/// Finalize the restoration. Will be done after all chunks have been
|
|
|
|
/// fed successfully.
|
2017-05-17 12:41:33 +02:00
|
|
|
///
|
|
|
|
/// This should apply the necessary "glue" between chunks,
|
|
|
|
/// and verify against the restored state.
|
2017-06-28 13:17:36 +02:00
|
|
|
fn finalize(&mut self, engine: &Engine) -> Result<(), ::error::Error>;
|
2017-04-19 20:31:53 +02:00
|
|
|
}
|