openethereum/src/account.rs

124 lines
3.6 KiB
Rust
Raw Normal View History

2015-12-13 21:36:17 +01:00
use std::collections::HashMap;
use util::hash::*;
use util::hashdb::*;
use util::bytes::*;
use util::trie::*;
use util::rlp::*;
use util::uint::*;
2015-12-13 23:12:22 +01:00
pub const SHA3_EMPTY: H256 = H256( [0xc5, 0xd2, 0x46, 0x01, 0x86, 0xf7, 0x23, 0x3c, 0x92, 0x7e, 0x7d, 0xb2, 0xdc, 0xc7, 0x03, 0xc0, 0xe5, 0x00, 0xb6, 0x53, 0xca, 0x82, 0x27, 0x3b, 0x7b, 0xfa, 0xd8, 0x04, 0x5d, 0x85, 0xa4, 0x70] );
2015-12-13 21:36:17 +01:00
2015-12-13 23:12:22 +01:00
/// Single account in the system.
2015-12-13 21:36:17 +01:00
pub struct Account {
2015-12-13 23:12:22 +01:00
// Balance of the account.
2015-12-13 21:36:17 +01:00
balance: U256,
2015-12-13 23:12:22 +01:00
// Nonce of the account.
2015-12-13 21:36:17 +01:00
nonce: U256,
// Trie-backed storage.
storage_root: H256,
// Overlay on trie-backed storage.
storage_overlay: HashMap<H256, H256>,
2015-12-13 23:12:22 +01:00
// Code hash of the account. If None, means that it's a contract whose code has not yet been set.
code_hash: Option<H256>,
// Code cache of the account.
code_cache: Bytes,
2015-12-13 21:36:17 +01:00
}
impl Account {
2015-12-13 23:12:22 +01:00
/// General constructor.
pub fn new(balance: U256, nonce: U256, storage: HashMap<H256, H256>, code: Bytes) -> Account {
Account {
balance: balance,
nonce: nonce,
storage_root: SHA3_NULL_RLP,
storage_overlay: storage,
code_hash: None,
code_cache: code
}
}
/// Create a new account with the given balance.
pub fn new_basic(balance: U256) -> Account {
Account {
balance: balance,
nonce: U256::from(0u8),
storage_root: SHA3_NULL_RLP,
storage_overlay: HashMap::new(),
code_hash: Some(SHA3_EMPTY),
code_cache: vec![],
}
}
/// Create a new contract account.
/// NOTE: make sure you use `set_code` on this before `commit`ing.
pub fn new_contract(balance: U256) -> Account {
2015-12-13 21:36:17 +01:00
Account {
balance: balance,
nonce: U256::from(0u8),
storage_root: SHA3_NULL_RLP,
storage_overlay: HashMap::new(),
2015-12-13 23:12:22 +01:00
code_hash: None,
code_cache: vec![],
2015-12-13 21:36:17 +01:00
}
}
2015-12-13 23:12:22 +01:00
/// Create a new account from RLP.
2015-12-13 21:36:17 +01:00
pub fn from_rlp(_rlp: &[u8]) -> Account {
2015-12-13 23:12:22 +01:00
// unimplemented!();
2015-12-13 21:36:17 +01:00
Account {
balance: U256::from(0u8),
nonce: U256::from(0u8),
storage_root: SHA3_NULL_RLP,
storage_overlay: HashMap::new(),
2015-12-13 23:12:22 +01:00
code_hash: Some(SHA3_EMPTY),
code_cache: vec![],
2015-12-13 21:36:17 +01:00
}
}
2015-12-13 23:12:22 +01:00
/// Set this account's code to the given code.
/// NOTE: Account should have been created with `new_contract`.
pub fn set_code(&mut self, code: Bytes) {
assert!(self.code_hash.is_none());
self.code_cache = code;
}
/// return the balance associated with this account.
2015-12-13 21:36:17 +01:00
pub fn balance(&self) -> &U256 { &self.balance }
2015-12-13 23:12:22 +01:00
/// return the nonce associated with this account.
2015-12-13 21:36:17 +01:00
pub fn nonce(&self) -> &U256 { &self.nonce }
2015-12-13 23:12:22 +01:00
/// return the code hash associated with this account.
pub fn code_hash(&self) -> H256 {
self.code_hash.clone().unwrap_or(SHA3_EMPTY)
2015-12-13 21:36:17 +01:00
}
2015-12-13 23:12:22 +01:00
/// return the storage root associated with this account.
2015-12-13 21:36:17 +01:00
pub fn storage_root(&self) -> Option<&H256> { if self.storage_overlay.is_empty() {Some(&self.storage_root)} else {None} }
/// Commit the `storage_overlay` to the backing DB and update `storage_root`.
pub fn commit_storage(&mut self, db: &mut HashDB) {
let mut t = TrieDB::new(db, &mut self.storage_root);
for (k, v) in self.storage_overlay.iter() {
// cast key and value to trait type,
// so we can call overloaded `to_bytes` method
t.insert(k, v);
}
self.storage_overlay.clear();
}
/// Commit any unsaved code and ensure code is not `HashOrData::Data`.
pub fn commit_code(&mut self, db: &mut HashDB) {
2015-12-13 23:12:22 +01:00
if self.code_hash.is_none() && !self.code_cache.is_empty() {
self.code_hash = Some(db.insert(&self.code_cache));
2015-12-13 21:36:17 +01:00
}
2015-12-13 23:12:22 +01:00
}
2015-12-13 21:49:40 +01:00
2015-12-13 23:12:22 +01:00
/// Export to RLP.
pub fn rlp(&self) -> Bytes {
let mut stream = RlpStream::new_list(4);
stream.append(&self.nonce);
stream.append(&self.balance);
stream.append(&self.storage_root);
stream.append(self.code_hash.as_ref().expect("Cannot form RLP of contract account without code."));
stream.out()
2015-12-13 21:36:17 +01:00
}
}