command.rs 7.25 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;
Seun Lanlege's avatar
Seun Lanlege committed
18
19
use service::{IdentifyVariant, self};
use sc_executor::NativeExecutionDispatch;
20
use sc_cli::{SubstrateCli, Result};
Gavin Wood's avatar
Gavin Wood committed
21
use crate::cli::{Cli, Subcommand};
22

Gavin Wood's avatar
Gavin Wood committed
23
24
25
26
27
28
29
fn get_exec_name() -> Option<String> {
	std::env::current_exe()
		.ok()
		.and_then(|pb| pb.file_name().map(|s| s.to_os_string()))
		.and_then(|s| s.into_string().ok())
}

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

	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> {
Gavin Wood's avatar
Gavin Wood committed
46
47
48
49
50
51
52
		let id = if id == "" {
			let n = get_exec_name().unwrap_or_default();
			["polkadot", "kusama", "westend"].iter()
				.cloned()
				.find(|&chain| n.starts_with(chain))
				.unwrap_or("polkadot")
		} else { id };
53
54
55
56
57
58
59
		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()),
Gavin Wood's avatar
Gavin Wood committed
60
			"polkadot" => Box::new(service::chain_spec::polkadot_config()?),
61
			"westend" => Box::new(service::chain_spec::westend_config()?),
Gavin Wood's avatar
Gavin Wood committed
62
			"kusama" => Box::new(service::chain_spec::kusama_config()?),
ddorgan's avatar
ddorgan committed
63
64
65
			"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()),
66
67
68
			path if self.run.force_kusama => {
				Box::new(service::KusamaChainSpec::from_json_file(std::path::PathBuf::from(path))?)
			},
ddorgan's avatar
ddorgan committed
69
70
71
			path if self.run.force_westend => {
				Box::new(service::WestendChainSpec::from_json_file(std::path::PathBuf::from(path))?)
			},
72
73
74
75
			path => Box::new(service::PolkadotChainSpec::from_json_file(std::path::PathBuf::from(path))?),
		})
	}
}
Gavin Wood's avatar
Gavin Wood committed
76
77

/// Parses polkadot specific CLI arguments and run the service.
78
79
80
pub fn run() -> Result<()> {
	let cli = Cli::from_args();

81
82
83
84
85
86
87
88
89
90
91
92
93
94
	fn set_default_ss58_version(spec: &Box<dyn service::ChainSpec>) {
		use sp_core::crypto::Ss58AddressFormat;

		let ss58_version = if spec.is_kusama() {
			Ss58AddressFormat::KusamaAccount
		} else if spec.is_westend() {
			Ss58AddressFormat::SubstrateAccount
		} else {
			Ss58AddressFormat::PolkadotAccount
		};

		sp_core::crypto::set_default_ss58_version(ss58_version);
	};

95
	match &cli.subcommand {
Gavin Wood's avatar
Gavin Wood committed
96
		None => {
97
			let runtime = cli.create_runner(&cli.run.base)?;
98
99
100
101
			let chain_spec = &runtime.config().chain_spec;

			set_default_ss58_version(chain_spec);

102
103
104
105
106
107
			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
108

109
			if chain_spec.is_kusama() {
Gavin Wood's avatar
Gavin Wood committed
110
111
112
113
114
115
				info!("----------------------------");
				info!("This chain is not in any way");
				info!("      endorsed by the       ");
				info!("     KUSAMA FOUNDATION      ");
				info!("----------------------------");

Seun Lanlege's avatar
Seun Lanlege committed
116
117
118
119
120
121
122
123
124
125
126
				runtime.run_node(
					|config| {
						service::kusama_new_light(config)
					},
					|config| {
						service::kusama_new_full(
							config,
							None,
							None,
							authority_discovery_enabled,
							6000,
127
128
							grandpa_pause,
							None,
Seun Lanlege's avatar
Seun Lanlege committed
129
130
131
132
						).map(|(s, _, _)| s)
					},
					service::KusamaExecutor::native_version().runtime_version
				)
133
			} else if chain_spec.is_westend() {
Seun Lanlege's avatar
Seun Lanlege committed
134
135
136
137
138
139
140
141
142
143
144
				runtime.run_node(
					|config| {
						service::westend_new_light(config)
					},
					|config| {
						service::westend_new_full(
							config,
							None,
							None,
							authority_discovery_enabled,
							6000,
145
146
							grandpa_pause,
							None,
Seun Lanlege's avatar
Seun Lanlege committed
147
148
149
150
						).map(|(s, _, _)| s)
					},
					service::WestendExecutor::native_version().runtime_version
				)
Gavin Wood's avatar
Gavin Wood committed
151
			} else {
Seun Lanlege's avatar
Seun Lanlege committed
152
153
154
155
156
157
158
159
160
161
162
				runtime.run_node(
					|config| {
						service::polkadot_new_light(config)
					},
					|config| {
						service::polkadot_new_full(
							config,
							None,
							None,
							authority_discovery_enabled,
							6000,
163
164
							grandpa_pause,
							None,
Seun Lanlege's avatar
Seun Lanlege committed
165
166
167
168
						).map(|(s, _, _)| s)
					},
					service::PolkadotExecutor::native_version().runtime_version
				)
Gavin Wood's avatar
Gavin Wood committed
169
170
			}
		},
171
172
		Some(Subcommand::Base(subcommand)) => {
			let runtime = cli.create_runner(subcommand)?;
173
174
175
			let chain_spec = &runtime.config().chain_spec;

			set_default_ss58_version(chain_spec);
Gavin Wood's avatar
Gavin Wood committed
176

177
			if chain_spec.is_kusama() {
178
179
180
181
182
183
184
				runtime.run_subcommand(subcommand, |config|
					service::new_chain_ops::<
						service::kusama_runtime::RuntimeApi,
						service::KusamaExecutor,
						service::kusama_runtime::UncheckedExtrinsic,
					>(config)
				)
185
			} else if chain_spec.is_westend() {
ddorgan's avatar
ddorgan committed
186
187
188
189
190
191
192
				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
193
			} else {
194
195
196
197
198
199
200
				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
201
202
			}
		},
203
		Some(Subcommand::ValidationWorker(cmd)) => {
Gavin Wood's avatar
Gavin Wood committed
204
205
206
			sc_cli::init_logger("");

			if cfg!(feature = "browser") {
207
				Err(sc_cli::Error::Input("Cannot run validation worker in browser".into()))
Gavin Wood's avatar
Gavin Wood committed
208
209
			} else {
				#[cfg(not(feature = "browser"))]
210
				service::run_validation_worker(&cmd.mem_id)?;
Gavin Wood's avatar
Gavin Wood committed
211
212
213
				Ok(())
			}
		},
214
		Some(Subcommand::Benchmark(cmd)) => {
215
			let runtime = cli.create_runner(cmd)?;
216
217
218
			let chain_spec = &runtime.config().chain_spec;

			set_default_ss58_version(chain_spec);
219

220
			if chain_spec.is_kusama() {
221
222
223
				runtime.sync_run(|config| {
					cmd.run::<service::kusama_runtime::Block, service::KusamaExecutor>(config)
				})
224
			} else if chain_spec.is_westend() {
ddorgan's avatar
ddorgan committed
225
226
227
				runtime.sync_run(|config| {
					cmd.run::<service::westend_runtime::Block, service::WestendExecutor>(config)
				})
228
			} else {
229
230
231
				runtime.sync_run(|config| {
					cmd.run::<service::polkadot_runtime::Block, service::PolkadotExecutor>(config)
				})
232
233
			}
		},
Gavin Wood's avatar
Gavin Wood committed
234
235
	}
}