openethereum/ethcore/src/state/substate.rs

107 lines
3.1 KiB
Rust
Raw Normal View History

// Copyright 2015-2018 Parity Technologies (UK) Ltd.
2016-02-05 13:40:41 +01:00
// 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;
use ethereum_types::Address;
use types::log_entry::LogEntry;
use evm::{Schedule, CleanDustMode};
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 touched.
pub touched: HashSet<Address>,
2016-01-15 14:22:46 +01:00
/// Any logs.
pub logs: Vec<LogEntry>,
/// Refund counter of SSTORE.
pub sstore_clears_refund: i128,
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);
self.touched.extend(s.touched);
self.logs.extend(s.logs);
self.sstore_clears_refund += s.sstore_clears_refund;
self.contracts_created.extend(s.contracts_created);
}
/// Get the cleanup mode object from this.
pub fn to_cleanup_mode(&mut self, schedule: &Schedule) -> CleanupMode {
match (schedule.kill_dust != CleanDustMode::Off, schedule.no_empty, schedule.kill_empty) {
(false, false, _) => CleanupMode::ForceCreate,
(false, true, false) => CleanupMode::NoEmpty,
(false, true, true) | (true, _, _,) => CleanupMode::TrackTouched(&mut self.touched),
}
}
}
2016-01-30 14:15:37 +01:00
#[cfg(test)]
mod tests {
2016-07-21 16:26:49 +02:00
use super::Substate;
use types::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![]
});
sub_state.sstore_clears_refund = (15000 * 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![]
});
sub_state_2.sstore_clears_refund = (15000 * 7).into();
2016-02-01 13:29:12 +01:00
sub_state.accrue(sub_state_2);
assert_eq!(sub_state.contracts_created.len(), 2);
assert_eq!(sub_state.sstore_clears_refund, (15000 * 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
}