2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-02-05 13:40:41 +01:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-02-05 13:40:41 +01:00
|
|
|
|
2016-02-02 15:29:53 +01:00
|
|
|
//! Blockchain DB extras.
|
|
|
|
|
2017-07-29 17:12:07 +02:00
|
|
|
use std::io::Write;
|
2019-06-03 15:36:21 +02:00
|
|
|
use std::convert::AsRef;
|
2018-07-02 18:50:05 +02:00
|
|
|
|
2019-01-04 14:05:46 +01:00
|
|
|
use common_types::BlockNumber;
|
|
|
|
use common_types::engines::epoch::Transition as EpochTransition;
|
|
|
|
use common_types::receipt::Receipt;
|
2018-07-02 18:50:05 +02:00
|
|
|
use ethereum_types::{H256, H264, U256};
|
2019-06-19 13:54:05 +02:00
|
|
|
use parity_util_mem::MallocSizeOf;
|
2017-10-10 20:01:27 +02:00
|
|
|
use kvdb::PREFIX_LEN as DB_PREFIX_LEN;
|
2018-07-02 18:50:05 +02:00
|
|
|
use rlp;
|
2019-01-04 14:05:46 +01:00
|
|
|
use rlp_derive::{RlpEncodableWrapper, RlpDecodableWrapper, RlpEncodable, RlpDecodable};
|
|
|
|
|
|
|
|
use crate::db::Key;
|
2017-06-28 13:17:36 +02:00
|
|
|
|
2015-12-17 01:54:24 +01:00
|
|
|
/// Represents index of extra data in database
|
2016-01-18 19:23:28 +01:00
|
|
|
#[derive(Copy, Debug, Hash, Eq, PartialEq, Clone)]
|
2015-12-13 22:39:01 +01:00
|
|
|
pub enum ExtrasIndex {
|
2016-02-03 16:43:48 +01:00
|
|
|
/// Block details index
|
2015-12-13 22:39:01 +01:00
|
|
|
BlockDetails = 0,
|
2016-02-03 16:43:48 +01:00
|
|
|
/// Block hash index
|
2015-12-13 22:39:01 +01:00
|
|
|
BlockHash = 1,
|
2016-02-03 16:43:48 +01:00
|
|
|
/// Transaction address index
|
2015-12-14 13:32:22 +01:00
|
|
|
TransactionAddress = 2,
|
2016-02-17 12:35:37 +01:00
|
|
|
/// Block receipts index
|
2016-05-26 18:24:51 +02:00
|
|
|
BlockReceipts = 4,
|
2017-04-19 14:58:19 +02:00
|
|
|
/// Epoch transition data index.
|
|
|
|
EpochTransitions = 5,
|
2017-06-28 13:17:36 +02:00
|
|
|
/// Pending epoch transition data index.
|
|
|
|
PendingEpochTransition = 6,
|
2016-03-11 10:57:58 +01:00
|
|
|
}
|
2015-12-13 22:39:01 +01:00
|
|
|
|
2016-04-15 18:54:35 +02:00
|
|
|
fn with_index(hash: &H256, i: ExtrasIndex) -> H264 {
|
2016-05-26 18:24:51 +02:00
|
|
|
let mut result = H264::default();
|
2019-06-03 15:36:21 +02:00
|
|
|
result.as_bytes_mut()[0] = i as u8;
|
|
|
|
result.as_bytes_mut()[1..].clone_from_slice(hash.as_bytes());
|
2016-05-26 18:24:51 +02:00
|
|
|
result
|
2015-12-17 01:54:24 +01:00
|
|
|
}
|
2015-12-13 22:39:01 +01:00
|
|
|
|
2019-01-04 14:05:46 +01:00
|
|
|
/// Wrapper for block number used as a DB key.
|
2016-05-26 18:24:51 +02:00
|
|
|
pub struct BlockNumberKey([u8; 5]);
|
2015-12-13 22:39:01 +01:00
|
|
|
|
2019-06-03 15:36:21 +02:00
|
|
|
impl AsRef<[u8]> for BlockNumberKey {
|
|
|
|
fn as_ref(&self) -> &[u8] {
|
|
|
|
&self.0[..]
|
2015-12-17 01:54:24 +01:00
|
|
|
}
|
2015-12-13 22:39:01 +01:00
|
|
|
}
|
|
|
|
|
2016-05-26 18:24:51 +02:00
|
|
|
impl Key<H256> for BlockNumber {
|
|
|
|
type Target = BlockNumberKey;
|
2015-12-17 01:54:24 +01:00
|
|
|
|
2016-05-26 18:24:51 +02:00
|
|
|
fn key(&self) -> Self::Target {
|
|
|
|
let mut result = [0u8; 5];
|
|
|
|
result[0] = ExtrasIndex::BlockHash as u8;
|
|
|
|
result[1] = (self >> 24) as u8;
|
|
|
|
result[2] = (self >> 16) as u8;
|
|
|
|
result[3] = (self >> 8) as u8;
|
|
|
|
result[4] = *self as u8;
|
|
|
|
BlockNumberKey(result)
|
2015-12-17 01:54:24 +01:00
|
|
|
}
|
2016-04-15 18:54:35 +02:00
|
|
|
}
|
2015-12-17 01:54:24 +01:00
|
|
|
|
2016-05-26 18:24:51 +02:00
|
|
|
impl Key<BlockDetails> for H256 {
|
|
|
|
type Target = H264;
|
2015-12-13 22:39:01 +01:00
|
|
|
|
2016-05-26 18:24:51 +02:00
|
|
|
fn key(&self) -> H264 {
|
|
|
|
with_index(self, ExtrasIndex::BlockDetails)
|
2015-12-13 22:39:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-26 18:24:51 +02:00
|
|
|
impl Key<TransactionAddress> for H256 {
|
2016-04-30 17:41:24 +02:00
|
|
|
type Target = H264;
|
|
|
|
|
2016-04-15 18:54:35 +02:00
|
|
|
fn key(&self) -> H264 {
|
2016-05-26 18:24:51 +02:00
|
|
|
with_index(self, ExtrasIndex::TransactionAddress)
|
2016-04-15 18:54:35 +02:00
|
|
|
}
|
2015-12-17 01:54:24 +01:00
|
|
|
}
|
|
|
|
|
2016-04-15 18:54:35 +02:00
|
|
|
impl Key<BlockReceipts> for H256 {
|
2016-04-30 17:41:24 +02:00
|
|
|
type Target = H264;
|
|
|
|
|
2016-04-15 18:54:35 +02:00
|
|
|
fn key(&self) -> H264 {
|
|
|
|
with_index(self, ExtrasIndex::BlockReceipts)
|
2015-12-17 01:54:24 +01:00
|
|
|
}
|
|
|
|
}
|
2015-12-13 22:39:01 +01:00
|
|
|
|
2019-01-04 14:05:46 +01:00
|
|
|
impl Key<common_types::engines::epoch::PendingTransition> for H256 {
|
2017-06-28 13:17:36 +02:00
|
|
|
type Target = H264;
|
|
|
|
|
|
|
|
fn key(&self) -> H264 {
|
|
|
|
with_index(self, ExtrasIndex::PendingEpochTransition)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 14:58:19 +02:00
|
|
|
/// length of epoch keys.
|
|
|
|
pub const EPOCH_KEY_LEN: usize = DB_PREFIX_LEN + 16;
|
|
|
|
|
|
|
|
/// epoch key prefix.
|
|
|
|
/// used to iterate over all epoch transitions in order from genesis.
|
2017-04-19 16:27:45 +02:00
|
|
|
pub const EPOCH_KEY_PREFIX: &'static [u8; DB_PREFIX_LEN] = &[
|
|
|
|
ExtrasIndex::EpochTransitions as u8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
];
|
2017-04-19 14:58:19 +02:00
|
|
|
|
2019-01-04 14:05:46 +01:00
|
|
|
/// Epoch transitions key
|
2017-04-19 14:58:19 +02:00
|
|
|
pub struct EpochTransitionsKey([u8; EPOCH_KEY_LEN]);
|
2017-07-29 17:12:07 +02:00
|
|
|
|
2019-06-03 15:36:21 +02:00
|
|
|
impl AsRef<[u8]> for EpochTransitionsKey {
|
|
|
|
fn as_ref(&self) -> &[u8] { &self.0[..] }
|
2017-04-19 14:58:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Key<EpochTransitions> for u64 {
|
|
|
|
type Target = EpochTransitionsKey;
|
|
|
|
|
|
|
|
fn key(&self) -> Self::Target {
|
|
|
|
let mut arr = [0u8; EPOCH_KEY_LEN];
|
2017-04-19 16:27:45 +02:00
|
|
|
arr[..DB_PREFIX_LEN].copy_from_slice(&EPOCH_KEY_PREFIX[..]);
|
2017-04-19 14:58:19 +02:00
|
|
|
|
|
|
|
write!(&mut arr[DB_PREFIX_LEN..], "{:016x}", self)
|
|
|
|
.expect("format arg is valid; no more than 16 chars will be written; qed");
|
|
|
|
|
|
|
|
EpochTransitionsKey(arr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-17 01:54:24 +01:00
|
|
|
/// Familial details concerning a block
|
2019-06-19 13:54:05 +02:00
|
|
|
#[derive(Debug, Clone, MallocSizeOf)]
|
2015-12-13 17:33:11 +01:00
|
|
|
pub struct BlockDetails {
|
2016-02-03 16:43:48 +01:00
|
|
|
/// Block number
|
2016-01-11 01:07:58 +01:00
|
|
|
pub number: BlockNumber,
|
2016-02-03 16:43:48 +01:00
|
|
|
/// Total difficulty of the block and all its parents
|
2015-12-13 17:33:11 +01:00
|
|
|
pub total_difficulty: U256,
|
2016-02-03 16:43:48 +01:00
|
|
|
/// Parent block hash
|
2015-12-13 17:33:11 +01:00
|
|
|
pub parent: H256,
|
2016-02-03 16:43:48 +01:00
|
|
|
/// List of children block hashes
|
2017-04-19 14:58:19 +02:00
|
|
|
pub children: Vec<H256>,
|
2018-05-16 08:58:01 +02:00
|
|
|
/// Whether the block is considered finalized
|
|
|
|
pub is_finalized: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl rlp::Encodable for BlockDetails {
|
|
|
|
fn rlp_append(&self, stream: &mut rlp::RlpStream) {
|
2018-07-30 11:45:10 +02:00
|
|
|
let use_short_version = !self.is_finalized;
|
2018-05-16 08:58:01 +02:00
|
|
|
|
|
|
|
match use_short_version {
|
|
|
|
true => { stream.begin_list(4); },
|
2018-07-30 11:45:10 +02:00
|
|
|
false => { stream.begin_list(5); },
|
2018-05-16 08:58:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stream.append(&self.number);
|
|
|
|
stream.append(&self.total_difficulty);
|
|
|
|
stream.append(&self.parent);
|
|
|
|
stream.append_list(&self.children);
|
|
|
|
if !use_short_version {
|
|
|
|
stream.append(&self.is_finalized);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl rlp::Decodable for BlockDetails {
|
|
|
|
fn decode(rlp: &rlp::Rlp) -> Result<Self, rlp::DecoderError> {
|
|
|
|
let use_short_version = match rlp.item_count()? {
|
|
|
|
4 => true,
|
2018-07-30 11:45:10 +02:00
|
|
|
5 => false,
|
2018-05-16 08:58:01 +02:00
|
|
|
_ => return Err(rlp::DecoderError::RlpIncorrectListLen),
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(BlockDetails {
|
|
|
|
number: rlp.val_at(0)?,
|
|
|
|
total_difficulty: rlp.val_at(1)?,
|
|
|
|
parent: rlp.val_at(2)?,
|
|
|
|
children: rlp.list_at(3)?,
|
|
|
|
is_finalized: if use_short_version {
|
|
|
|
false
|
|
|
|
} else {
|
|
|
|
rlp.val_at(4)?
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2015-12-13 17:33:11 +01:00
|
|
|
}
|
|
|
|
|
2015-12-17 01:54:24 +01:00
|
|
|
/// Represents address of certain transaction within block
|
2019-06-19 13:54:05 +02:00
|
|
|
#[derive(Debug, PartialEq, Clone, RlpEncodable, RlpDecodable, MallocSizeOf)]
|
2015-12-14 13:32:22 +01:00
|
|
|
pub struct TransactionAddress {
|
2016-02-03 16:43:48 +01:00
|
|
|
/// Block hash
|
2015-12-14 13:32:22 +01:00
|
|
|
pub block_hash: H256,
|
2016-02-03 16:43:48 +01:00
|
|
|
/// Transaction index within the block
|
2016-02-08 15:53:22 +01:00
|
|
|
pub index: usize
|
2015-12-14 13:32:22 +01:00
|
|
|
}
|
|
|
|
|
2016-02-17 12:35:37 +01:00
|
|
|
/// Contains all block receipts.
|
2019-07-01 14:41:45 +02:00
|
|
|
#[derive(Debug, Clone, RlpEncodableWrapper, RlpDecodableWrapper, MallocSizeOf)]
|
2016-02-17 12:35:37 +01:00
|
|
|
pub struct BlockReceipts {
|
2019-01-04 14:05:46 +01:00
|
|
|
/// Block receipts
|
2016-02-22 10:14:31 +01:00
|
|
|
pub receipts: Vec<Receipt>,
|
2016-02-17 12:35:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl BlockReceipts {
|
2019-01-04 14:05:46 +01:00
|
|
|
/// Create new block receipts wrapper.
|
2016-02-17 12:35:37 +01:00
|
|
|
pub fn new(receipts: Vec<Receipt>) -> Self {
|
2019-07-01 14:41:45 +02:00
|
|
|
BlockReceipts { receipts }
|
2016-02-17 12:35:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 14:58:19 +02:00
|
|
|
/// Candidate transitions to an epoch with specific number.
|
2017-08-20 06:01:46 +02:00
|
|
|
#[derive(Clone, RlpEncodable, RlpDecodable)]
|
2017-04-19 14:58:19 +02:00
|
|
|
pub struct EpochTransitions {
|
2019-01-04 14:05:46 +01:00
|
|
|
/// Epoch number
|
2017-04-19 14:58:19 +02:00
|
|
|
pub number: u64,
|
2019-01-04 14:05:46 +01:00
|
|
|
/// List of candidate transitions
|
2017-04-19 14:58:19 +02:00
|
|
|
pub candidates: Vec<EpochTransition>,
|
|
|
|
}
|
|
|
|
|
2017-01-30 20:01:32 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use rlp::*;
|
2018-07-30 11:45:10 +02:00
|
|
|
|
2017-01-30 20:01:32 +01:00
|
|
|
use super::BlockReceipts;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn encode_block_receipts() {
|
|
|
|
let br = BlockReceipts::new(Vec::new());
|
|
|
|
|
|
|
|
let mut s = RlpStream::new_list(2);
|
|
|
|
s.append(&br);
|
|
|
|
assert!(!s.is_finished(), "List shouldn't finished yet");
|
|
|
|
s.append(&br);
|
|
|
|
assert!(s.is_finished(), "List should be finished now");
|
|
|
|
s.out();
|
|
|
|
}
|
|
|
|
}
|