2015-11-29 15:50:33 +01:00
|
|
|
use memorydb::*;
|
|
|
|
use hashdb::*;
|
|
|
|
use hash::*;
|
2015-11-30 02:57:02 +01:00
|
|
|
use nibbleslice::*;
|
|
|
|
use bytes::*;
|
|
|
|
use rlp::*;
|
2015-11-29 15:50:33 +01:00
|
|
|
|
|
|
|
pub const NULL_RLP: [u8; 1] = [0x80; 1];
|
|
|
|
pub const SHA3_NULL_RLP: H256 = H256( [0x56, 0xe8, 0x1f, 0x17, 0x1b, 0xcc, 0x55, 0xa6, 0xff, 0x83, 0x45, 0xe6, 0x92, 0xc0, 0xf8, 0x6e, 0x5b, 0x48, 0xe0, 0x1b, 0x99, 0x6c, 0xad, 0xc0, 0x01, 0x62, 0x2f, 0xb5, 0xe3, 0x63, 0xb4, 0x21] );
|
|
|
|
|
|
|
|
/*lazy_static! {
|
|
|
|
pub static ref NULL_RLP: Bytes = { let mut r = RlpStream::new(); r.append(&""); r.out().unwrap() };
|
|
|
|
pub static ref SHA3_NULL_RLP: H256 = { use sha3::Hashable; NULL_RLP.sha3() };
|
|
|
|
}*/
|
|
|
|
|
|
|
|
pub trait Trie {
|
|
|
|
fn root(&self) -> &H256;
|
|
|
|
fn is_empty(&self) -> bool { *self.root() == SHA3_NULL_RLP }
|
|
|
|
|
|
|
|
// TODO: consider returning &[u8]...
|
2015-11-30 02:57:02 +01:00
|
|
|
fn contains(&self, key: &[u8]) -> bool;
|
|
|
|
fn at(&self, key: &[u8]) -> Option<&[u8]>;
|
|
|
|
fn insert(&mut self, key: &[u8], value: &[u8]);
|
|
|
|
fn remove(&mut self, key: &[u8]);
|
2015-11-29 15:50:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct TrieDB {
|
|
|
|
db: Box<HashDB>,
|
|
|
|
root: H256,
|
|
|
|
}
|
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
struct Diff {
|
|
|
|
new: Vec<(H256, Bytes)>,
|
|
|
|
old: Vec<H256>,
|
|
|
|
}
|
|
|
|
|
2015-11-30 13:25:37 +01:00
|
|
|
impl Diff {
|
|
|
|
pub fn new() -> Diff { Diff { new: vec![], old: vec![] }}
|
|
|
|
}
|
|
|
|
|
2015-11-29 15:50:33 +01:00
|
|
|
impl TrieDB {
|
|
|
|
pub fn new<T>(db: T) -> Self where T: HashDB + 'static { TrieDB{ db: Box::new(db), root: H256::new() } }
|
|
|
|
|
|
|
|
pub fn new_boxed(db_box: Box<HashDB>) -> Self { TrieDB{ db: db_box, root: H256::new() } }
|
|
|
|
|
|
|
|
pub fn new_memory() -> Self { TrieDB{ db: Box::new(MemoryDB::new()), root: H256::new() } }
|
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
pub fn init(&mut self) { self.set_root_rlp(&NULL_RLP); }
|
2015-11-29 15:50:33 +01:00
|
|
|
|
|
|
|
pub fn db(&self) -> &HashDB { self.db.as_ref() }
|
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
fn set_root_rlp(&mut self, root_data: &[u8]) {
|
2015-11-30 14:53:22 +01:00
|
|
|
self.db.kill(&self.root);
|
2015-11-30 02:57:02 +01:00
|
|
|
self.root = self.db.insert(root_data);
|
2015-11-30 14:53:22 +01:00
|
|
|
println!("set_root_rlp {:?} {:?}", root_data, self.root);
|
2015-11-30 02:57:02 +01:00
|
|
|
}
|
|
|
|
|
2015-11-30 13:19:55 +01:00
|
|
|
fn add(&mut self, key: &NibbleSlice, value: &[u8]) {
|
2015-11-30 02:57:02 +01:00
|
|
|
// determine what the new root is, insert new nodes and remove old as necessary.
|
2015-11-30 14:53:22 +01:00
|
|
|
let todo = {
|
|
|
|
let root_rlp = self.db.lookup(&self.root).expect("Trie root not found!");
|
2015-11-30 13:25:37 +01:00
|
|
|
self.merge(root_rlp, key, value)
|
|
|
|
};
|
2015-11-30 02:57:02 +01:00
|
|
|
self.apply(todo.1);
|
|
|
|
self.set_root_rlp(&todo.0);
|
|
|
|
}
|
2015-11-29 15:50:33 +01:00
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
fn apply(&mut self, diff: Diff) {
|
|
|
|
for d in diff.old.iter() {
|
|
|
|
self.db.kill(&d);
|
|
|
|
}
|
|
|
|
for d in diff.new.into_iter() {
|
|
|
|
self.db.emplace(d.0, d.1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Determine the RLP of the node, assuming we're inserting `partial_key` into the
|
|
|
|
/// node at `old`. This will *not* delete the old mode; it will just return the new RLP
|
|
|
|
/// that includes the new node.
|
|
|
|
///
|
|
|
|
/// The database will be updated so as to make the returned RLP valid through inserting
|
|
|
|
/// and deleting nodes as necessary.
|
|
|
|
fn merge(&self, old: &[u8], partial_key: &NibbleSlice, value: &[u8]) -> (Bytes, Diff) {
|
2015-11-30 13:25:37 +01:00
|
|
|
let o = Rlp::new(old);
|
|
|
|
match o.prototype() {
|
|
|
|
Prototype::List(17) => {
|
2015-11-30 02:57:02 +01:00
|
|
|
// already have a branch. route and merge.
|
2015-11-30 13:25:37 +01:00
|
|
|
unimplemented!();
|
2015-11-30 02:57:02 +01:00
|
|
|
},
|
2015-11-30 13:25:37 +01:00
|
|
|
Prototype::List(2) => {
|
2015-11-30 02:57:02 +01:00
|
|
|
// already have an extension. either fast_forward, cleve or transmute_to_branch.
|
2015-11-30 13:25:37 +01:00
|
|
|
unimplemented!();
|
2015-11-30 02:57:02 +01:00
|
|
|
},
|
2015-11-30 14:53:22 +01:00
|
|
|
Prototype::Data(0) => {
|
|
|
|
(Self::compose_extension(partial_key, value, true), Diff::new())
|
|
|
|
},
|
2015-11-30 13:19:55 +01:00
|
|
|
_ => panic!("Invalid RLP for node."),
|
2015-11-30 13:25:37 +01:00
|
|
|
}
|
2015-11-30 02:57:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn compose_extension(partial_key: &NibbleSlice, value: &[u8], is_leaf: bool) -> Bytes {
|
2015-11-30 14:53:22 +01:00
|
|
|
println!("compose_extension {:?} {:?} {:?} ({:?})", partial_key, value, is_leaf, partial_key.encoded(is_leaf));
|
2015-11-30 02:57:02 +01:00
|
|
|
let mut s = RlpStream::new_list(2);
|
|
|
|
s.append(&partial_key.encoded(is_leaf));
|
|
|
|
s.append(&value.to_vec()); // WTF?!?!
|
|
|
|
//s.append(value); // <-- should be.
|
2015-11-30 14:53:22 +01:00
|
|
|
let r = s.out();
|
|
|
|
println!("output: -> {:?}", &r);
|
|
|
|
r
|
2015-11-30 02:57:02 +01:00
|
|
|
}
|
2015-11-29 15:50:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Trie for TrieDB {
|
|
|
|
fn root(&self) -> &H256 { &self.root }
|
2015-11-29 18:45:41 +01:00
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
fn contains(&self, _key: &[u8]) -> bool {
|
2015-11-29 18:45:41 +01:00
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
fn at(&self, _key: &[u8]) -> Option<&[u8]> {
|
2015-11-29 18:45:41 +01:00
|
|
|
unimplemented!();
|
|
|
|
}
|
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
fn insert(&mut self, key: &[u8], value: &[u8]) {
|
2015-11-30 13:19:55 +01:00
|
|
|
(self as &mut TrieDB).add(&NibbleSlice::new(key), value);
|
2015-11-29 18:45:41 +01:00
|
|
|
}
|
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
fn remove(&mut self, _key: &[u8]) {
|
2015-11-29 18:45:41 +01:00
|
|
|
unimplemented!();
|
|
|
|
}
|
2015-11-29 15:50:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2015-11-30 02:57:02 +01:00
|
|
|
fn playpen() {
|
2015-11-29 15:50:33 +01:00
|
|
|
use overlaydb::*;
|
2015-11-30 14:53:22 +01:00
|
|
|
use triehash::*;
|
2015-11-29 15:50:33 +01:00
|
|
|
|
|
|
|
(&[1, 2, 3]).starts_with(&[1, 2]);
|
|
|
|
|
|
|
|
let mut t = TrieDB::new(OverlayDB::new_temp());
|
|
|
|
t.init();
|
|
|
|
assert_eq!(*t.root(), SHA3_NULL_RLP);
|
|
|
|
assert!(t.is_empty());
|
2015-11-30 14:53:22 +01:00
|
|
|
|
2015-11-30 02:57:02 +01:00
|
|
|
t.insert(&[0x01u8, 0x23], &[0x01u8, 0x23]);
|
2015-11-30 14:53:22 +01:00
|
|
|
assert_eq!(*t.root(), hash256(&[ NibblePair::new_raw(vec![0x01u8, 0x23], vec![0x01u8, 0x23])]));
|
2015-11-29 15:50:33 +01:00
|
|
|
}
|