2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-04-09 19:20:35 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-04-09 19:20:35 +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-04-09 19:20:35 +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-04-09 19:20:35 +02:00
|
|
|
|
|
|
|
//! Engine deserialization.
|
|
|
|
|
2019-03-26 23:31:52 +01:00
|
|
|
use super::{AuthorityRound, BasicAuthority, Clique, Ethash, InstantSeal, NullEngine};
|
2016-04-09 19:20:35 +02:00
|
|
|
|
|
|
|
/// Engine deserialization.
|
|
|
|
#[derive(Debug, PartialEq, Deserialize)]
|
2018-11-27 23:21:31 +01:00
|
|
|
#[serde(deny_unknown_fields)]
|
2018-10-29 16:49:04 +01:00
|
|
|
#[serde(rename_all = "camelCase")]
|
2016-04-09 19:20:35 +02:00
|
|
|
pub enum Engine {
|
|
|
|
/// Null engine.
|
2017-09-26 14:19:08 +02:00
|
|
|
Null(NullEngine),
|
2016-07-30 23:42:31 +02:00
|
|
|
/// Instantly sealing engine.
|
2018-10-04 15:08:20 +02:00
|
|
|
InstantSeal(Option<InstantSeal>),
|
2016-04-09 19:20:35 +02:00
|
|
|
/// Ethash engine.
|
2018-10-29 16:49:04 +01:00
|
|
|
#[serde(rename = "Ethash")]
|
2016-04-09 19:20:35 +02:00
|
|
|
Ethash(Ethash),
|
2016-05-03 17:23:53 +02:00
|
|
|
/// BasicAuthority engine.
|
|
|
|
BasicAuthority(BasicAuthority),
|
2016-09-08 12:28:59 +02:00
|
|
|
/// AuthorityRound engine.
|
|
|
|
AuthorityRound(AuthorityRound),
|
2019-03-26 23:31:52 +01:00
|
|
|
/// Clique engine.
|
|
|
|
Clique(Clique),
|
2016-04-09 19:20:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use serde_json;
|
|
|
|
use spec::Engine;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn engine_deserialization() {
|
|
|
|
let s = r#"{
|
2017-09-26 14:19:08 +02:00
|
|
|
"null": {
|
|
|
|
"params": {
|
|
|
|
"blockReward": "0x0d"
|
|
|
|
}
|
|
|
|
}
|
2016-04-09 19:20:35 +02:00
|
|
|
}"#;
|
|
|
|
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
2017-09-26 14:19:08 +02:00
|
|
|
match deserialized {
|
|
|
|
Engine::Null(_) => {} // unit test in its own file.
|
|
|
|
_ => panic!(),
|
|
|
|
}
|
2016-04-09 19:20:35 +02:00
|
|
|
|
2016-07-30 23:42:31 +02:00
|
|
|
let s = r#"{
|
2018-09-06 11:38:00 +02:00
|
|
|
"instantSeal": {"params": {}}
|
2016-07-30 23:42:31 +02:00
|
|
|
}"#;
|
|
|
|
|
2017-05-19 17:56:33 +02:00
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
2018-09-06 11:38:00 +02:00
|
|
|
Engine::InstantSeal(_) => {} // instant seal is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
2016-07-30 23:42:31 +02:00
|
|
|
|
2018-10-04 15:08:20 +02:00
|
|
|
let s = r#"{
|
|
|
|
"instantSeal": null
|
|
|
|
}"#;
|
|
|
|
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::InstantSeal(_) => {} // instant seal is unit tested in its own file.
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
|
|
|
|
2016-04-09 19:20:35 +02:00
|
|
|
let s = r#"{
|
|
|
|
"Ethash": {
|
|
|
|
"params": {
|
|
|
|
"minimumDifficulty": "0x020000",
|
|
|
|
"difficultyBoundDivisor": "0x0800",
|
|
|
|
"durationLimit": "0x0d",
|
2016-10-15 14:39:15 +02:00
|
|
|
"homesteadTransition" : "0x",
|
2016-07-16 13:02:56 +02:00
|
|
|
"daoHardforkTransition": "0xffffffffffffffff",
|
|
|
|
"daoHardforkBeneficiary": "0x0000000000000000000000000000000000000000",
|
|
|
|
"daoHardforkAccounts": []
|
2016-04-09 19:20:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
|
2017-05-19 17:56:33 +02:00
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::Ethash(_) => {} // ethash is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
let s = r#"{
|
|
|
|
"basicAuthority": {
|
|
|
|
"params": {
|
|
|
|
"durationLimit": "0x0d",
|
|
|
|
"validators" : {
|
|
|
|
"list": ["0xc6d9d2cd449a754c494264e1809c50e34d64562b"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::BasicAuthority(_) => {} // basicAuthority is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
let s = r#"{
|
|
|
|
"authorityRound": {
|
|
|
|
"params": {
|
|
|
|
"stepDuration": "0x02",
|
|
|
|
"validators": {
|
|
|
|
"list" : ["0xc6d9d2cd449a754c494264e1809c50e34d64562b"]
|
|
|
|
},
|
|
|
|
"startStep" : 24,
|
|
|
|
"validateStepTransition": 150
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::AuthorityRound(_) => {} // AuthorityRound is unit tested in its own file.
|
2017-09-26 14:19:08 +02:00
|
|
|
_ => panic!(),
|
2017-05-19 17:56:33 +02:00
|
|
|
};
|
2019-03-26 23:31:52 +01:00
|
|
|
|
|
|
|
let s = r#"{
|
|
|
|
"clique": {
|
|
|
|
"params": {
|
|
|
|
"period": 15,
|
|
|
|
"epoch": 30000
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}"#;
|
|
|
|
let deserialized: Engine = serde_json::from_str(s).unwrap();
|
|
|
|
match deserialized {
|
|
|
|
Engine::Clique(_) => {} // Clique is unit tested in its own file.
|
|
|
|
_ => panic!(),
|
|
|
|
};
|
2016-04-09 19:20:35 +02:00
|
|
|
}
|
|
|
|
}
|