openethereum/ethcore/src/state/substate.rs

108 lines
3.1 KiB
Rust
Raw Normal View History

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
//! Execution environment substate.
2016-07-21 16:50:24 +02:00
use std::collections::HashSet;
2016-07-21 16:26:49 +02:00
use util::{Address, U256};
use log_entry::LogEntry;
use evm::Schedule;
use super::CleanupMode;
2016-07-21 16:26:49 +02:00
2016-01-15 14:22:46 +01:00
/// State changes which should be applied in finalize,
/// after transaction is fully executed.
2016-04-12 13:54:34 +02:00
#[derive(Debug, Default)]
2016-01-15 14:22:46 +01:00
pub struct Substate {
/// Any accounts that have suicided.
2016-07-21 16:50:24 +02:00
pub suicides: HashSet<Address>,
/// Any accounts that are tagged for garbage collection.
pub garbage: HashSet<Address>,
2016-01-15 14:22:46 +01:00
/// Any logs.
pub logs: Vec<LogEntry>,
2016-01-16 07:46:36 +01:00
/// Refund counter of SSTORE nonzero -> zero.
pub sstore_clears_count: U256,
2016-01-15 14:22:46 +01:00
/// Created contracts.
pub contracts_created: Vec<Address>,
2016-03-11 10:57:58 +01:00
}
2016-01-15 14:22:46 +01:00
impl Substate {
/// Creates new substate.
pub fn new() -> Self {
2016-07-21 16:26:49 +02:00
Substate::default()
}
/// Merge secondary substate `s` into self, accruing each element correspondingly.
pub fn accrue(&mut self, s: Substate) {
self.suicides.extend(s.suicides.into_iter());
self.garbage.extend(s.garbage.into_iter());
self.logs.extend(s.logs.into_iter());
self.sstore_clears_count = self.sstore_clears_count + s.sstore_clears_count;
self.contracts_created.extend(s.contracts_created.into_iter());
}
/// Get the cleanup mode object from this.
2016-11-28 13:20:49 +01:00
#[cfg_attr(feature="dev", allow(wrong_self_convention))]
pub fn to_cleanup_mode(&mut self, schedule: &Schedule) -> CleanupMode {
match (schedule.no_empty, schedule.kill_empty) {
(false, _) => CleanupMode::ForceCreate,
(true, false) => CleanupMode::NoEmpty,
(true, true) => CleanupMode::KillEmpty(&mut self.garbage),
}
}
}
2016-01-30 14:15:37 +01:00
#[cfg(test)]
mod tests {
2016-07-21 16:26:49 +02:00
use super::Substate;
use log_entry::LogEntry;
2016-01-30 14:15:37 +01:00
2016-02-09 15:28:27 +01:00
#[test]
fn created() {
let sub_state = Substate::new();
2016-02-09 15:28:27 +01:00
assert_eq!(sub_state.suicides.len(), 0);
}
2016-01-30 14:15:37 +01:00
#[test]
fn accrue() {
let mut sub_state = Substate::new();
2016-07-21 16:26:49 +02:00
sub_state.contracts_created.push(1u64.into());
sub_state.logs.push(LogEntry {
2016-07-21 16:26:49 +02:00
address: 1u64.into(),
2016-03-11 10:57:58 +01:00
topics: vec![],
data: vec![]
});
2016-05-31 16:59:01 +02:00
sub_state.sstore_clears_count = 5.into();
2016-07-21 16:50:24 +02:00
sub_state.suicides.insert(10u64.into());
2016-02-01 13:29:12 +01:00
let mut sub_state_2 = Substate::new();
2016-07-21 16:26:49 +02:00
sub_state_2.contracts_created.push(2u64.into());
sub_state_2.logs.push(LogEntry {
2016-07-21 16:26:49 +02:00
address: 1u64.into(),
2016-03-11 10:57:58 +01:00
topics: vec![],
data: vec![]
});
2016-05-31 16:59:01 +02:00
sub_state_2.sstore_clears_count = 7.into();
2016-02-01 13:29:12 +01:00
sub_state.accrue(sub_state_2);
assert_eq!(sub_state.contracts_created.len(), 2);
2016-05-31 16:59:01 +02:00
assert_eq!(sub_state.sstore_clears_count, 12.into());
2016-02-01 13:29:12 +01:00
assert_eq!(sub_state.suicides.len(), 1);
2016-01-30 14:15:37 +01:00
}
2016-02-02 15:29:53 +01:00
}