2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-08-24 16:53:36 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-08-24 16:53:36 +02: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-08-24 16:53:36 +02: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-08-24 16:53:36 +02:00
|
|
|
|
|
|
|
use account_db::Factory as AccountFactory;
|
2018-07-02 18:50:05 +02:00
|
|
|
use ethtrie::RlpCodec;
|
2018-02-19 12:27:42 +01:00
|
|
|
use evm::{Factory as EvmFactory, VMType};
|
2018-07-02 18:50:05 +02:00
|
|
|
use keccak_hasher::KeccakHasher;
|
2017-09-06 20:47:45 +02:00
|
|
|
use trie::TrieFactory;
|
2018-10-02 16:33:19 +02:00
|
|
|
use vm::{ActionParams, Exec, Schedule};
|
2018-02-19 12:27:42 +01:00
|
|
|
use wasm::WasmInterpreter;
|
|
|
|
|
|
|
|
const WASM_MAGIC_NUMBER: &'static [u8; 4] = b"\0asm";
|
|
|
|
|
|
|
|
/// Virtual machine factory
|
|
|
|
#[derive(Default, Clone)]
|
|
|
|
pub struct VmFactory {
|
|
|
|
evm: EvmFactory,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VmFactory {
|
2020-07-29 10:36:15 +02:00
|
|
|
pub fn create(&self, params: ActionParams, schedule: &Schedule, depth: usize) -> Box<dyn Exec> {
|
2018-08-13 22:06:15 +02:00
|
|
|
if schedule.wasm.is_some()
|
|
|
|
&& params.code.as_ref().map_or(false, |code| {
|
|
|
|
code.len() > 4 && &code[0..4] == WASM_MAGIC_NUMBER
|
|
|
|
})
|
2020-08-05 06:08:03 +02:00
|
|
|
{
|
2018-08-13 22:06:15 +02:00
|
|
|
Box::new(WasmInterpreter::new(params))
|
2018-02-19 12:27:42 +01:00
|
|
|
} else {
|
2018-08-13 22:06:15 +02:00
|
|
|
self.evm.create(params, schedule, depth)
|
2018-02-19 12:27:42 +01:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
|
|
|
|
2018-02-19 12:27:42 +01:00
|
|
|
pub fn new(evm: VMType, cache_size: usize) -> Self {
|
|
|
|
VmFactory {
|
|
|
|
evm: EvmFactory::new(evm, cache_size),
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2018-02-19 12:27:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<EvmFactory> for VmFactory {
|
|
|
|
fn from(evm: EvmFactory) -> Self {
|
|
|
|
VmFactory { evm: evm }
|
|
|
|
}
|
|
|
|
}
|
2016-08-24 16:53:36 +02:00
|
|
|
|
|
|
|
/// Collection of factories.
|
|
|
|
#[derive(Default, Clone)]
|
|
|
|
pub struct Factories {
|
|
|
|
/// factory for evm.
|
2018-02-19 12:27:42 +01:00
|
|
|
pub vm: VmFactory,
|
2016-08-24 16:53:36 +02:00
|
|
|
/// factory for tries.
|
2018-07-02 18:50:05 +02:00
|
|
|
pub trie: TrieFactory<KeccakHasher, RlpCodec>,
|
2016-08-24 16:53:36 +02:00
|
|
|
/// factory for account databases.
|
|
|
|
pub accountdb: AccountFactory,
|
2017-09-06 20:47:45 +02:00
|
|
|
}
|