2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2018-03-15 11:14:38 +01:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2018-03-15 11:14:38 +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,
|
2018-03-15 11:14:38 +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/>.
|
2018-03-15 11:14:38 +01:00
|
|
|
|
|
|
|
use ethereum_types::H256;
|
2018-04-16 15:52:12 +02:00
|
|
|
use rlp::{RlpStream, Encodable, Rlp, DecoderError};
|
2018-03-15 11:14:38 +01:00
|
|
|
|
|
|
|
const PADDING : [u8; 10] = [ 0u8; 10 ];
|
|
|
|
|
|
|
|
pub struct DatabaseKey {
|
|
|
|
pub era: u64,
|
|
|
|
pub index: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Encodable for DatabaseKey {
|
|
|
|
fn rlp_append(&self, s: &mut RlpStream) {
|
|
|
|
s.begin_list(3);
|
|
|
|
s.append(&self.era);
|
|
|
|
s.append(&self.index);
|
|
|
|
s.append(&&PADDING[..]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct DatabaseValueView<'a> {
|
2018-04-16 15:52:12 +02:00
|
|
|
rlp: Rlp<'a>,
|
2018-03-15 11:14:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> DatabaseValueView<'a> {
|
2018-03-20 03:02:07 +01:00
|
|
|
pub fn from_rlp(data: &'a [u8]) -> Self {
|
2018-03-15 11:14:38 +01:00
|
|
|
DatabaseValueView {
|
2018-04-16 15:52:12 +02:00
|
|
|
rlp: Rlp::new(data),
|
2018-03-15 11:14:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn id(&self) -> Result<H256, DecoderError> {
|
|
|
|
self.rlp.val_at(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn inserts(&self) -> Result<Vec<H256>, DecoderError> {
|
|
|
|
self.rlp.list_at(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn deletes(&self) -> Result<Vec<H256>, DecoderError> {
|
|
|
|
self.rlp.list_at(2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct DatabaseValueRef<'a> {
|
|
|
|
pub id: &'a H256,
|
|
|
|
pub inserts: &'a [H256],
|
|
|
|
pub deletes: &'a [H256],
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Encodable for DatabaseValueRef<'a> {
|
|
|
|
fn rlp_append(&self, s: &mut RlpStream) {
|
|
|
|
s.begin_list(3);
|
|
|
|
s.append(self.id);
|
|
|
|
s.append_list(self.inserts);
|
|
|
|
s.append_list(self.deletes);
|
|
|
|
}
|
|
|
|
}
|