2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (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/>.
|
|
|
|
|
2016-02-02 15:29:53 +01:00
|
|
|
//! Diff between two accounts.
|
|
|
|
|
2016-01-14 16:46:32 +01:00
|
|
|
use util::*;
|
2016-02-03 15:33:58 +01:00
|
|
|
#[cfg(test)]
|
2016-01-14 16:46:32 +01:00
|
|
|
use pod_account::*;
|
|
|
|
|
|
|
|
#[derive(Debug,Clone,PartialEq,Eq)]
|
|
|
|
/// Change in existance type.
|
|
|
|
// TODO: include other types of change.
|
|
|
|
pub enum Existance {
|
2016-02-02 23:43:29 +01:00
|
|
|
/// Item came into existance.
|
2016-01-14 16:46:32 +01:00
|
|
|
Born,
|
2016-02-02 23:43:29 +01:00
|
|
|
/// Item stayed in existance.
|
2016-01-14 16:46:32 +01:00
|
|
|
Alive,
|
2016-02-02 23:43:29 +01:00
|
|
|
/// Item went out of existance.
|
2016-01-14 16:46:32 +01:00
|
|
|
Died,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Existance {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2016-01-17 15:56:09 +01:00
|
|
|
match *self {
|
|
|
|
Existance::Born => try!(write!(f, "+++")),
|
|
|
|
Existance::Alive => try!(write!(f, "***")),
|
|
|
|
Existance::Died => try!(write!(f, "XXX")),
|
2016-01-14 16:46:32 +01:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug,Clone,PartialEq,Eq)]
|
2016-02-02 23:43:29 +01:00
|
|
|
/// Account diff.
|
2016-01-14 16:46:32 +01:00
|
|
|
pub struct AccountDiff {
|
2016-02-02 23:43:29 +01:00
|
|
|
/// Change in balance, allowed to be `Diff::Same`.
|
|
|
|
pub balance: Diff<U256>,
|
|
|
|
/// Change in nonce, allowed to be `Diff::Same`.
|
2016-01-14 16:46:32 +01:00
|
|
|
pub nonce: Diff<U256>, // Allowed to be Same
|
2016-02-02 23:43:29 +01:00
|
|
|
/// Change in code, allowed to be `Diff::Same`.
|
2016-01-14 16:46:32 +01:00
|
|
|
pub code: Diff<Bytes>, // Allowed to be Same
|
2016-02-02 23:43:29 +01:00
|
|
|
/// Change in storage, values are not allowed to be `Diff::Same`.
|
|
|
|
pub storage: BTreeMap<H256, Diff<H256>>,
|
2016-01-14 16:46:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AccountDiff {
|
2016-02-02 23:43:29 +01:00
|
|
|
/// Get `Existance` projection.
|
2016-01-14 16:46:32 +01:00
|
|
|
pub fn existance(&self) -> Existance {
|
|
|
|
match self.balance {
|
|
|
|
Diff::Born(_) => Existance::Born,
|
|
|
|
Diff::Died(_) => Existance::Died,
|
|
|
|
_ => Existance::Alive,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-03 15:33:58 +01:00
|
|
|
#[cfg(test)]
|
2016-02-03 13:32:57 +01:00
|
|
|
/// Determine difference between two optionally existant `Account`s. Returns None
|
2016-02-02 23:43:29 +01:00
|
|
|
/// if they are the same.
|
2016-01-14 16:46:32 +01:00
|
|
|
pub fn diff_pod(pre: Option<&PodAccount>, post: Option<&PodAccount>) -> Option<AccountDiff> {
|
|
|
|
match (pre, post) {
|
|
|
|
(None, Some(x)) => Some(AccountDiff {
|
2016-02-14 12:54:27 +01:00
|
|
|
balance: Diff::Born(x.balance),
|
|
|
|
nonce: Diff::Born(x.nonce),
|
2016-01-14 16:46:32 +01:00
|
|
|
code: Diff::Born(x.code.clone()),
|
|
|
|
storage: x.storage.iter().map(|(k, v)| (k.clone(), Diff::Born(v.clone()))).collect(),
|
|
|
|
}),
|
|
|
|
(Some(x), None) => Some(AccountDiff {
|
2016-02-14 12:54:27 +01:00
|
|
|
balance: Diff::Died(x.balance),
|
|
|
|
nonce: Diff::Died(x.nonce),
|
2016-01-14 16:46:32 +01:00
|
|
|
code: Diff::Died(x.code.clone()),
|
|
|
|
storage: x.storage.iter().map(|(k, v)| (k.clone(), Diff::Died(v.clone()))).collect(),
|
|
|
|
}),
|
|
|
|
(Some(pre), Some(post)) => {
|
|
|
|
let storage: Vec<_> = pre.storage.keys().merge(post.storage.keys())
|
|
|
|
.filter(|k| pre.storage.get(k).unwrap_or(&H256::new()) != post.storage.get(k).unwrap_or(&H256::new()))
|
|
|
|
.collect();
|
|
|
|
let r = AccountDiff {
|
2016-02-14 12:54:27 +01:00
|
|
|
balance: Diff::new(pre.balance, post.balance),
|
|
|
|
nonce: Diff::new(pre.nonce, post.nonce),
|
2016-01-14 16:46:32 +01:00
|
|
|
code: Diff::new(pre.code.clone(), post.code.clone()),
|
|
|
|
storage: storage.into_iter().map(|k|
|
|
|
|
(k.clone(), Diff::new(
|
2016-01-19 13:47:30 +01:00
|
|
|
pre.storage.get(&k).cloned().unwrap_or_else(H256::new),
|
|
|
|
post.storage.get(&k).cloned().unwrap_or_else(H256::new)
|
2016-01-14 16:46:32 +01:00
|
|
|
))).collect(),
|
|
|
|
};
|
2016-01-19 11:10:38 +01:00
|
|
|
if r.balance.is_same() && r.nonce.is_same() && r.code.is_same() && r.storage.is_empty() {
|
2016-01-14 16:46:32 +01:00
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(r)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: refactor into something nicer.
|
|
|
|
fn interpreted_hash(u: &H256) -> String {
|
|
|
|
if u <= &H256::from(0xffffffff) {
|
|
|
|
format!("{} = 0x{:x}", U256::from(u.as_slice()).low_u32(), U256::from(u.as_slice()).low_u32())
|
|
|
|
} else if u <= &H256::from(u64::max_value()) {
|
|
|
|
format!("{} = 0x{:x}", U256::from(u.as_slice()).low_u64(), U256::from(u.as_slice()).low_u64())
|
|
|
|
// } else if u <= &H256::from("0xffffffffffffffffffffffffffffffffffffffff") {
|
|
|
|
// format!("@{}", Address::from(u))
|
|
|
|
} else {
|
|
|
|
format!("#{}", u)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for AccountDiff {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match self.nonce {
|
|
|
|
Diff::Born(ref x) => try!(write!(f, " non {}", x)),
|
|
|
|
Diff::Changed(ref pre, ref post) => try!(write!(f, "#{} ({} {} {})", post, pre, if pre > post {"-"} else {"+"}, *max(pre, post) - * min(pre, post))),
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
match self.balance {
|
|
|
|
Diff::Born(ref x) => try!(write!(f, " bal {}", x)),
|
|
|
|
Diff::Changed(ref pre, ref post) => try!(write!(f, "${} ({} {} {})", post, pre, if pre > post {"-"} else {"+"}, *max(pre, post) - *min(pre, post))),
|
|
|
|
_ => {},
|
|
|
|
}
|
2016-01-17 15:56:09 +01:00
|
|
|
if let Diff::Born(ref x) = self.code {
|
|
|
|
try!(write!(f, " code {}", x.pretty()));
|
2016-01-14 16:46:32 +01:00
|
|
|
}
|
|
|
|
try!(write!(f, "\n"));
|
2016-01-17 15:56:09 +01:00
|
|
|
for (k, dv) in &self.storage {
|
|
|
|
match *dv {
|
|
|
|
Diff::Born(ref v) => try!(write!(f, " + {} => {}\n", interpreted_hash(k), interpreted_hash(v))),
|
|
|
|
Diff::Changed(ref pre, ref post) => try!(write!(f, " * {} => {} (was {})\n", interpreted_hash(k), interpreted_hash(post), interpreted_hash(pre))),
|
|
|
|
Diff::Died(_) => try!(write!(f, " X {}\n", interpreted_hash(k))),
|
2016-01-14 16:46:32 +01:00
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|