openethereum/ethcore/src/state/substate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

126 lines
3.9 KiB
Rust
Raw Normal View History

2020-09-22 14:53:52 +02:00
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of OpenEthereum.
2016-02-05 13:40:41 +01:00
2020-09-22 14:53:52 +02:00
// OpenEthereum is free software: you can redistribute it and/or modify
2016-02-05 13:40:41 +01:00
// 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.
2020-09-22 14:53:52 +02:00
// OpenEthereum is distributed in the hope that it will be useful,
2016-02-05 13:40:41 +01:00
// 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
2020-09-22 14:53:52 +02:00
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
2016-02-05 13:40:41 +01:00
2016-02-02 15:29:53 +01:00
//! Execution environment substate.
2016-07-21 16:50:24 +02:00
use super::CleanupMode;
use ethereum_types::Address;
use evm::{CleanDustMode, Schedule};
2016-07-21 16:50:24 +02:00
use std::collections::HashSet;
use types::log_entry::LogEntry;
2020-11-04 19:11:05 +01:00
use vm::access_list::AccessList;
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>,
2020-11-04 19:11:05 +01:00
/// List of accesses addresses and slots
pub access_list: AccessList,
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()
}
2020-11-04 19:11:05 +01:00
/// Creates a new substate from an access list
pub fn from_access_list(access_list: &AccessList) -> Self {
Self {
suicides: HashSet::default(),
touched: HashSet::default(),
logs: Vec::default(),
sstore_clears_refund: 0,
contracts_created: Vec::default(),
access_list: access_list.clone(),
}
}
2020-08-05 06:08:03 +02:00
/// 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);
}
2020-08-05 06:08:03 +02:00
/// 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;
2020-08-05 06:08:03 +02: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);
}
2020-08-05 06:08:03 +02:00
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());
2020-08-05 06:08:03 +02: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();
2020-08-05 06:08:03 +02: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
}