command.rs 7.76 KB
Newer Older
Gavin Wood's avatar
Gavin Wood committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2017-2020 Parity Technologies (UK) Ltd.
// This file is part of Polkadot.

// Polkadot 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.

// Polkadot 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 Polkadot.  If not, see <http://www.gnu.org/licenses/>.

use log::info;
Gavin Wood's avatar
Gavin Wood committed
18
use sp_runtime::traits::BlakeTwo256;
ddorgan's avatar
ddorgan committed
19
use service::{IdentifyVariant, Block, self, RuntimeApiCollection, TFullClient};
Gavin Wood's avatar
Gavin Wood committed
20
use sp_api::ConstructRuntimeApi;
21
use sc_cli::{SubstrateCli, Result};
Gavin Wood's avatar
Gavin Wood committed
22
use crate::cli::{Cli, Subcommand};
23
24

impl SubstrateCli for Cli {
ddorgan's avatar
ddorgan committed
25
	fn impl_name() -> &'static str { "Parity Polkadot" }
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

	fn impl_version() -> &'static str { env!("SUBSTRATE_CLI_IMPL_VERSION") }

	fn description() -> &'static str { env!("CARGO_PKG_DESCRIPTION") }

	fn author() -> &'static str { env!("CARGO_PKG_AUTHORS") }

	fn support_url() -> &'static str { "https://github.com/paritytech/polkadot/issues/new" }

	fn copyright_start_year() -> i32 { 2017 }

	fn executable_name() -> &'static str { "polkadot" }

	fn load_spec(&self, id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {
		Ok(match id {
			"polkadot-dev" | "dev" => Box::new(service::chain_spec::polkadot_development_config()),
			"polkadot-local" => Box::new(service::chain_spec::polkadot_local_testnet_config()),
			"polkadot-staging" => Box::new(service::chain_spec::polkadot_staging_testnet_config()),
			"kusama-dev" => Box::new(service::chain_spec::kusama_development_config()),
			"kusama-local" => Box::new(service::chain_spec::kusama_local_testnet_config()),
			"kusama-staging" => Box::new(service::chain_spec::kusama_staging_testnet_config()),
			"westend" => Box::new(service::chain_spec::westend_config()?),
			"kusama" | "" => Box::new(service::chain_spec::kusama_config()?),
ddorgan's avatar
ddorgan committed
49
50
51
			"westend-dev" => Box::new(service::chain_spec::westend_development_config()),
			"westend-local" => Box::new(service::chain_spec::westend_local_testnet_config()),
			"westend-staging" => Box::new(service::chain_spec::westend_staging_testnet_config()),
52
53
54
			path if self.run.force_kusama => {
				Box::new(service::KusamaChainSpec::from_json_file(std::path::PathBuf::from(path))?)
			},
ddorgan's avatar
ddorgan committed
55
56
57
			path if self.run.force_westend => {
				Box::new(service::WestendChainSpec::from_json_file(std::path::PathBuf::from(path))?)
			},
58
59
60
61
			path => Box::new(service::PolkadotChainSpec::from_json_file(std::path::PathBuf::from(path))?),
		})
	}
}
Gavin Wood's avatar
Gavin Wood committed
62
63

/// Parses polkadot specific CLI arguments and run the service.
64
65
66
67
pub fn run() -> Result<()> {
	let cli = Cli::from_args();

	match &cli.subcommand {
Gavin Wood's avatar
Gavin Wood committed
68
		None => {
69
70
71
72
73
74
75
76
			let runtime = cli.create_runner(&cli.run.base)?;
			let config = runtime.config();
			let authority_discovery_enabled = cli.run.authority_discovery_enabled;
			let grandpa_pause = if cli.run.grandpa_pause.is_empty() {
				None
			} else {
				Some((cli.run.grandpa_pause[0], cli.run.grandpa_pause[1]))
			};
Gavin Wood's avatar
Gavin Wood committed
77

ddorgan's avatar
ddorgan committed
78
			if config.chain_spec.is_kusama() {
Gavin Wood's avatar
Gavin Wood committed
79
80
81
82
83
84
				info!("----------------------------");
				info!("This chain is not in any way");
				info!("      endorsed by the       ");
				info!("     KUSAMA FOUNDATION      ");
				info!("----------------------------");

85
				run_node::<
Gavin Wood's avatar
Gavin Wood committed
86
87
88
					service::kusama_runtime::RuntimeApi,
					service::KusamaExecutor,
					service::kusama_runtime::UncheckedExtrinsic,
89
				>(runtime, authority_discovery_enabled, grandpa_pause)
ddorgan's avatar
ddorgan committed
90
91
92
93
94
95
			} else if config.chain_spec.is_westend() {
				run_node::<
					service::westend_runtime::RuntimeApi,
					service::WestendExecutor,
					service::westend_runtime::UncheckedExtrinsic,
				>(runtime, authority_discovery_enabled, grandpa_pause)
Gavin Wood's avatar
Gavin Wood committed
96
			} else {
97
				run_node::<
Gavin Wood's avatar
Gavin Wood committed
98
99
100
					service::polkadot_runtime::RuntimeApi,
					service::PolkadotExecutor,
					service::polkadot_runtime::UncheckedExtrinsic,
101
				>(runtime, authority_discovery_enabled, grandpa_pause)
Gavin Wood's avatar
Gavin Wood committed
102
103
			}
		},
104
105
		Some(Subcommand::Base(subcommand)) => {
			let runtime = cli.create_runner(subcommand)?;
Gavin Wood's avatar
Gavin Wood committed
106

ddorgan's avatar
ddorgan committed
107
			if runtime.config().chain_spec.is_kusama() {
108
109
110
111
112
113
114
				runtime.run_subcommand(subcommand, |config|
					service::new_chain_ops::<
						service::kusama_runtime::RuntimeApi,
						service::KusamaExecutor,
						service::kusama_runtime::UncheckedExtrinsic,
					>(config)
				)
ddorgan's avatar
ddorgan committed
115
116
117
118
119
120
121
122
			} else if runtime.config().chain_spec.is_westend() {
				runtime.run_subcommand(subcommand, |config|
					service::new_chain_ops::<
						service::westend_runtime::RuntimeApi,
						service::WestendExecutor,
						service::westend_runtime::UncheckedExtrinsic,
					>(config)
				)
Gavin Wood's avatar
Gavin Wood committed
123
			} else {
124
125
126
127
128
129
130
				runtime.run_subcommand(subcommand, |config|
					service::new_chain_ops::<
						service::polkadot_runtime::RuntimeApi,
						service::PolkadotExecutor,
						service::polkadot_runtime::UncheckedExtrinsic,
					>(config)
				)
Gavin Wood's avatar
Gavin Wood committed
131
132
			}
		},
133
		Some(Subcommand::ValidationWorker(cmd)) => {
Gavin Wood's avatar
Gavin Wood committed
134
135
136
			sc_cli::init_logger("");

			if cfg!(feature = "browser") {
137
				Err(sc_cli::Error::Input("Cannot run validation worker in browser".into()))
Gavin Wood's avatar
Gavin Wood committed
138
139
			} else {
				#[cfg(not(feature = "browser"))]
140
				service::run_validation_worker(&cmd.mem_id)?;
Gavin Wood's avatar
Gavin Wood committed
141
142
143
				Ok(())
			}
		},
144
		Some(Subcommand::Benchmark(cmd)) => {
145
146
			let runtime = cli.create_runner(cmd)?;

ddorgan's avatar
ddorgan committed
147
			if runtime.config().chain_spec.is_kusama() {
148
149
150
				runtime.sync_run(|config| {
					cmd.run::<service::kusama_runtime::Block, service::KusamaExecutor>(config)
				})
ddorgan's avatar
ddorgan committed
151
152
153
154
			} else if runtime.config().chain_spec.is_westend() {
				runtime.sync_run(|config| {
					cmd.run::<service::westend_runtime::Block, service::WestendExecutor>(config)
				})
155
			} else {
156
157
158
				runtime.sync_run(|config| {
					cmd.run::<service::polkadot_runtime::Block, service::PolkadotExecutor>(config)
				})
159
160
			}
		},
Gavin Wood's avatar
Gavin Wood committed
161
162
163
	}
}

164
165
fn run_node<R, D, E>(
	runtime: sc_cli::Runner<Cli>,
Gavin Wood's avatar
Gavin Wood committed
166
	authority_discovery_enabled: bool,
167
	grandpa_pause: Option<(u32, u32)>,
168
) -> sc_cli::Result<()>
Gavin Wood's avatar
Gavin Wood committed
169
170
171
172
173
174
175
176
177
178
179
where
	R: ConstructRuntimeApi<Block, service::TFullClient<Block, R, D>>
		+ Send + Sync + 'static,
	<R as ConstructRuntimeApi<Block, service::TFullClient<Block, R, D>>>::RuntimeApi:
		RuntimeApiCollection<E, StateBackend = sc_client_api::StateBackendFor<service::TFullBackend<Block>, Block>>,
	<R as ConstructRuntimeApi<Block, service::TLightClient<Block, R, D>>>::RuntimeApi:
		RuntimeApiCollection<E, StateBackend = sc_client_api::StateBackendFor<service::TLightBackend<Block>, Block>>,
	E: service::Codec + Send + Sync + 'static,
	D: service::NativeExecutionDispatch + 'static,
	// Rust bug: https://github.com/rust-lang/rust/issues/24159
	<<R as ConstructRuntimeApi<Block, TFullClient<Block, R, D>>>::RuntimeApi as sp_api::ApiExt<Block>>::StateBackend:
Gavin Wood's avatar
Gavin Wood committed
180
		sp_api::StateBackend<BlakeTwo256>,
Gavin Wood's avatar
Gavin Wood committed
181
182
183
184
185
186
	// Rust bug: https://github.com/rust-lang/rust/issues/43580
	R: ConstructRuntimeApi<
		Block,
		TLightClient<R, D>
	>,
{
187
188
189
190
191
192
193
194
195
196
	runtime.run_node(
		|config| service::new_light::<R, D, E>(config),
		|config| service::new_full::<R, D, E>(
			config,
			None,
			None,
			authority_discovery_enabled,
			6000,
			grandpa_pause,
		).map(|(s, _)| s),
ddorgan's avatar
ddorgan committed
197
		D::native_version().runtime_version,
198
	)
Gavin Wood's avatar
Gavin Wood committed
199
200
201
202
203
}

// We can't simply use `service::TLightClient` due to a
// Rust bug: https://github.com/rust-lang/rust/issues/43580
type TLightClient<Runtime, Dispatch> = sc_client::Client<
Gavin Wood's avatar
Gavin Wood committed
204
	sc_client::light::backend::Backend<sc_client_db::light::LightStorage<Block>, BlakeTwo256>,
Gavin Wood's avatar
Gavin Wood committed
205
	sc_client::light::call_executor::GenesisCallExecutor<
Gavin Wood's avatar
Gavin Wood committed
206
		sc_client::light::backend::Backend<sc_client_db::light::LightStorage<Block>, BlakeTwo256>,
Gavin Wood's avatar
Gavin Wood committed
207
		sc_client::LocalCallExecutor<
Gavin Wood's avatar
Gavin Wood committed
208
			sc_client::light::backend::Backend<sc_client_db::light::LightStorage<Block>, BlakeTwo256>,
Gavin Wood's avatar
Gavin Wood committed
209
210
211
212
213
214
			sc_executor::NativeExecutor<Dispatch>
		>
	>,
	Block,
	Runtime
>;