command.rs 7.04 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;
18
#[cfg(not(feature = "service-rewr"))]
Seun Lanlege's avatar
Seun Lanlege committed
19
use service::{IdentifyVariant, self};
20
21
#[cfg(feature = "service-rewr")]
use service_new::{IdentifyVariant, self as service};
Bastian Köcher's avatar
Bastian Köcher committed
22
use sc_cli::{SubstrateCli, Result, RuntimeVersion, Role};
Gavin Wood's avatar
Gavin Wood committed
23
use crate::cli::{Cli, Subcommand};
24

Gavin Wood's avatar
Gavin Wood committed
25
26
27
28
29
30
31
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())
}

32
impl SubstrateCli for Cli {
33
	fn impl_name() -> String { "Parity Polkadot".into() }
34

35
	fn impl_version() -> String { env!("SUBSTRATE_CLI_IMPL_VERSION").into() }
36

37
	fn description() -> String { env!("CARGO_PKG_DESCRIPTION").into() }
38

39
	fn author() -> String { env!("CARGO_PKG_AUTHORS").into() }
40

41
	fn support_url() -> String { "https://github.com/paritytech/polkadot/issues/new".into() }
42
43
44

	fn copyright_start_year() -> i32 { 2017 }

45
	fn executable_name() -> String { "polkadot".into() }
46
47

	fn load_spec(&self, id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {
Gavin Wood's avatar
Gavin Wood committed
48
49
		let id = if id == "" {
			let n = get_exec_name().unwrap_or_default();
50
			["polkadot", "kusama", "westend"].iter()
Gavin Wood's avatar
Gavin Wood committed
51
52
53
54
				.cloned()
				.find(|&chain| n.starts_with(chain))
				.unwrap_or("polkadot")
		} else { id };
55
		Ok(match id {
Wei Tang's avatar
Wei Tang committed
56
57
58
59
60
61
			"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
62
			"polkadot" => Box::new(service::chain_spec::polkadot_config()?),
63
			"westend" => Box::new(service::chain_spec::westend_config()?),
Gavin Wood's avatar
Gavin Wood committed
64
			"kusama" => Box::new(service::chain_spec::kusama_config()?),
Wei Tang's avatar
Wei Tang committed
65
66
67
			"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()?),
68
69
70
71
72
73
74
75
76
			path => {
				let path = std::path::PathBuf::from(path);

				let starts_with = |prefix: &str| {
					path.file_name().map(|f| f.to_str().map(|s| s.starts_with(&prefix))).flatten().unwrap_or(false)
				};

				// When `force_*` is given or the file name starts with the name of one of the known chains,
				// we use the chain spec for the specific chain.
77
				if self.run.force_kusama || starts_with("kusama") {
78
79
80
81
82
83
					Box::new(service::KusamaChainSpec::from_json_file(path)?)
				} else if self.run.force_westend || starts_with("westend") {
					Box::new(service::WestendChainSpec::from_json_file(path)?)
				} else {
					Box::new(service::PolkadotChainSpec::from_json_file(path)?)
				}
84
85
86
			},
		})
	}
87
88
89
90
91
92
93
94
95
96

	fn native_runtime_version(spec: &Box<dyn service::ChainSpec>) -> &'static RuntimeVersion {
		if spec.is_kusama() {
			&service::kusama_runtime::VERSION
		} else if spec.is_westend() {
			&service::westend_runtime::VERSION
		} else {
			&service::polkadot_runtime::VERSION
		}
	}
97
}
Gavin Wood's avatar
Gavin Wood committed
98
99

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

103
104
105
106
107
108
109
110
111
112
113
114
115
116
	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);
	};

117
	match &cli.subcommand {
Gavin Wood's avatar
Gavin Wood committed
118
		None => {
119
120
			let runner = cli.create_runner(&cli.run.base)?;
			let chain_spec = &runner.config().chain_spec;
121
122
123

			set_default_ss58_version(chain_spec);

124
			let authority_discovery_enabled = cli.run.authority_discovery_enabled;
125
126
127
128
129
			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
130

131
			if chain_spec.is_kusama() {
Gavin Wood's avatar
Gavin Wood committed
132
133
134
135
136
				info!("----------------------------");
				info!("This chain is not in any way");
				info!("      endorsed by the       ");
				info!("     KUSAMA FOUNDATION      ");
				info!("----------------------------");
137
			}
Gavin Wood's avatar
Gavin Wood committed
138

139
140
141
142
			runner.run_node_until_exit(|config| {
				let role = config.role.clone();

				match role {
143
144
145
					Role::Light => service::build_light(config).map(|(task_manager, _)| task_manager),
					_ => service::build_full(
						config,
146
						None,
147
						authority_discovery_enabled,
148
						grandpa_pause,
149
					).map(|r| r.0),
150
151
				}
			})
Gavin Wood's avatar
Gavin Wood committed
152
		},
153
		Some(Subcommand::Base(subcommand)) => {
154
155
			let runner = cli.create_runner(subcommand)?;
			let chain_spec = &runner.config().chain_spec;
156
157

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

159
			if chain_spec.is_kusama() {
160
				runner.run_subcommand(subcommand, |config|
161
162
163
164
165
					service::new_chain_ops::<
						service::kusama_runtime::RuntimeApi,
						service::KusamaExecutor,
					>(config)
				)
166
			} else if chain_spec.is_westend() {
167
				runner.run_subcommand(subcommand, |config|
ddorgan's avatar
ddorgan committed
168
169
170
171
172
					service::new_chain_ops::<
						service::westend_runtime::RuntimeApi,
						service::WestendExecutor,
					>(config)
				)
Gavin Wood's avatar
Gavin Wood committed
173
			} else {
174
				runner.run_subcommand(subcommand, |config|
175
176
177
178
179
					service::new_chain_ops::<
						service::polkadot_runtime::RuntimeApi,
						service::PolkadotExecutor,
					>(config)
				)
Gavin Wood's avatar
Gavin Wood committed
180
181
			}
		},
182
		Some(Subcommand::ValidationWorker(cmd)) => {
Bastian Köcher's avatar
Bastian Köcher committed
183
			sc_cli::init_logger("");
Gavin Wood's avatar
Gavin Wood committed
184
185

			if cfg!(feature = "browser") {
186
				Err(sc_cli::Error::Input("Cannot run validation worker in browser".into()))
Gavin Wood's avatar
Gavin Wood committed
187
			} else {
188
				#[cfg(all(not(feature = "browser"), not(feature = "service-rewr")))]
189
				service::run_validation_worker(&cmd.mem_id)?;
Gavin Wood's avatar
Gavin Wood committed
190
191
192
				Ok(())
			}
		},
193
		Some(Subcommand::Benchmark(cmd)) => {
194
195
			let runner = cli.create_runner(cmd)?;
			let chain_spec = &runner.config().chain_spec;
196
197

			set_default_ss58_version(chain_spec);
198

199
			if chain_spec.is_kusama() {
200
				runner.sync_run(|config| {
201
202
					cmd.run::<service::kusama_runtime::Block, service::KusamaExecutor>(config)
				})
203
			} else if chain_spec.is_westend() {
204
				runner.sync_run(|config| {
ddorgan's avatar
ddorgan committed
205
206
					cmd.run::<service::westend_runtime::Block, service::WestendExecutor>(config)
				})
207
			} else {
208
				runner.sync_run(|config| {
209
210
					cmd.run::<service::polkadot_runtime::Block, service::PolkadotExecutor>(config)
				})
211
212
			}
		},
Gavin Wood's avatar
Gavin Wood committed
213
214
	}
}