lib.rs 7.48 KB
Newer Older
Shawn Tabrizi's avatar
Shawn Tabrizi committed
1
// Copyright 2017-2020 Parity Technologies (UK) Ltd.
Gav's avatar
Gav committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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/>.

//! Polkadot CLI library.

#![warn(missing_docs)]
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
20
#![warn(unused_extern_crates)]
Gav's avatar
Gav committed
21

Gav Wood's avatar
Gav Wood committed
22
mod chain_spec;
23
24
#[cfg(feature = "browser")]
mod browser;
Gav Wood's avatar
Gav Wood committed
25

Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
26
use chain_spec::ChainSpec;
27
28
29
use futures::{
	Future, FutureExt, TryFutureExt, future::select, channel::oneshot, compat::Future01CompatExt,
};
30
#[cfg(feature = "cli")]
31
use tokio::runtime::Runtime;
32
use log::info;
33
use structopt::StructOpt;
34
35

pub use service::{
36
	AbstractService, CustomConfiguration, ProvideRuntimeApi, CoreApi, ParachainHost, IsKusama, self,
37
	WrappedExecutor
38
39
};

40
41
pub use sc_cli::{VersionInfo, IntoExit, NoCustom, SharedParams};
pub use sc_cli::{display_role, error};
Gavin Wood's avatar
Gavin Wood committed
42

43
44
/// Load the `ChainSpec` for the given `id`.
pub fn load_spec(id: &str) -> Result<Option<service::ChainSpec>, String> {
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
45
46
47
48
	Ok(match ChainSpec::from(id) {
		Some(spec) => Some(spec.load()?),
		None => None,
	})
49
50
}

51
52
#[derive(Debug, StructOpt, Clone)]
enum PolkadotSubCommands {
53
	#[structopt(name = "validation-worker", setting = structopt::clap::AppSettings::Hidden)]
Gavin Wood's avatar
Gavin Wood committed
54
	ValidationWorker(ValidationWorkerCommand),
55
56
}

57
58
impl sc_cli::GetSharedParams for PolkadotSubCommands {
	fn shared_params(&self) -> Option<&sc_cli::SharedParams> { None }
59
60
61
}

#[derive(Debug, StructOpt, Clone)]
Gavin Wood's avatar
Gavin Wood committed
62
struct ValidationWorkerCommand {
63
64
65
66
	#[structopt()]
	pub mem_id: String,
}

Gavin Wood's avatar
Gavin Wood committed
67
68
69
70
71
72
#[derive(Debug, StructOpt, Clone)]
struct PolkadotSubParams {
	#[structopt(long = "enable-authority-discovery")]
	pub authority_discovery_enabled: bool,
}

73
/// Parses polkadot specific CLI arguments and run the service.
74
75
76
#[cfg(feature = "cli")]
pub fn run<E: IntoExit>(exit: E, version: sc_cli::VersionInfo) -> error::Result<()> {
	let cmd = sc_cli::parse_and_prepare::<PolkadotSubCommands, PolkadotSubParams, _>(
Gavin Wood's avatar
Gavin Wood committed
77
78
79
		&version,
		"parity-polkadot",
		std::env::args(),
80
	);
81

82
83
	// Preload spec to select native runtime
	let spec = match cmd.shared_params() {
84
		Some(params) => Some(sc_cli::load_spec(params, &load_spec)?),
85
86
87
		None => None,
	};
	if spec.as_ref().map_or(false, |c| c.is_kusama()) {
88
89
90
91
92
		execute_cmd_with_runtime::<
			service::kusama_runtime::RuntimeApi,
			service::KusamaExecutor,
			service::kusama_runtime::UncheckedExtrinsic,
			_
93
		>(exit, &version, cmd, spec)
94
95
96
97
98
99
	} else {
		execute_cmd_with_runtime::<
			service::polkadot_runtime::RuntimeApi,
			service::PolkadotExecutor,
			service::polkadot_runtime::UncheckedExtrinsic,
			_
100
		>(exit, &version, cmd, spec)
101
102
103
104
	}
}

/// Execute the given `cmd` with the given runtime.
105
#[cfg(feature = "cli")]
106
107
fn execute_cmd_with_runtime<R, D, E, X>(
	exit: X,
108
109
	version: &sc_cli::VersionInfo,
	cmd: sc_cli::ParseAndPrepare<PolkadotSubCommands, PolkadotSubParams>,
110
	spec: Option<service::ChainSpec>,
111
112
113
114
115
116
117
118
119
120
121
) -> error::Result<()>
where
	R: service::ConstructRuntimeApi<service::Block, service::TFullClient<service::Block, R, D>>
		+ service::ConstructRuntimeApi<service::Block, service::TLightClient<service::Block, R, D>>
		+ Send + Sync + 'static,
	<R as service::ConstructRuntimeApi<service::Block, service::TFullClient<service::Block, R, D>>>::RuntimeApi: service::RuntimeApiCollection<E>,
	<R as service::ConstructRuntimeApi<service::Block, service::TLightClient<service::Block, R, D>>>::RuntimeApi: service::RuntimeApiCollection<E>,
	E: service::Codec + Send + Sync + 'static,
	D: service::NativeExecutionDispatch + 'static,
	X: IntoExit,
{
122
123
124
	let is_kusama = spec.as_ref().map_or(false, |s| s.is_kusama());
	// Use preloaded spec
	let load_spec = |_: &str| Ok(spec);
125
	match cmd {
126
		sc_cli::ParseAndPrepare::Run(cmd) => cmd.run(load_spec, exit,
127
128
129
130
			|exit, _cli_args, custom_args, mut config| {
				info!("{}", version.name);
				info!("  version {}", config.full_version());
				info!("  by {}, 2017-2019", version.author);
Gavin Wood's avatar
Gavin Wood committed
131
132
				info!("Chain specification: {}", config.chain_spec.name());
				info!("Native runtime: {}", D::native_version().runtime_version);
133
				if is_kusama {
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
					info!("----------------------------");
					info!("This chain is not in any way");
					info!("      endorsed by the       ");
					info!("     KUSAMA FOUNDATION      ");
					info!("----------------------------");
				}
				info!("Node name: {}", config.name);
				info!("Roles: {}", display_role(&config));
				config.custom = service::CustomConfiguration::default();
				config.custom.authority_discovery_enabled = custom_args.authority_discovery_enabled;
				let runtime = Runtime::new().map_err(|e| format!("{:?}", e))?;
				match config.roles {
					service::Roles::LIGHT =>
						run_until_exit(
							runtime,
							service::new_light::<R, D, E>(config).map_err(|e| format!("{:?}", e))?,
							exit.into_exit(),
						),
André Silva's avatar
André Silva committed
152
					_ =>
Gavin Wood's avatar
Gavin Wood committed
153
154
155
156
						run_until_exit(
							runtime,
							service::new_full::<R, D, E>(config).map_err(|e| format!("{:?}", e))?,
							exit.into_exit(),
André Silva's avatar
André Silva committed
157
						),
158
159
				}.map_err(|e| format!("{:?}", e))
			}),
160
161
			sc_cli::ParseAndPrepare::BuildSpec(cmd) => cmd.run::<NoCustom, _, _, _>(load_spec),
			sc_cli::ParseAndPrepare::ExportBlocks(cmd) => cmd.run_with_builder::<_, _, _, _, _, _, _>(|config|
162
				Ok(service::new_chain_ops::<R, D, E>(config)?), load_spec, exit),
163
			sc_cli::ParseAndPrepare::ImportBlocks(cmd) => cmd.run_with_builder::<_, _, _, _, _, _, _>(|config|
164
				Ok(service::new_chain_ops::<R, D, E>(config)?), load_spec, exit),
165
			sc_cli::ParseAndPrepare::CheckBlock(cmd) => cmd.run_with_builder::<_, _, _, _, _, _, _>(|config|
166
				Ok(service::new_chain_ops::<R, D, E>(config)?), load_spec, exit),
167
168
			sc_cli::ParseAndPrepare::PurgeChain(cmd) => cmd.run(load_spec),
			sc_cli::ParseAndPrepare::RevertChain(cmd) => cmd.run_with_builder::<_, _, _, _, _, _>(|config|
169
				Ok(service::new_chain_ops::<R, D, E>(config)?), load_spec),
170
			sc_cli::ParseAndPrepare::CustomCommand(PolkadotSubCommands::ValidationWorker(args)) => {
171
172
173
174
175
176
177
				if cfg!(feature = "browser") {
					Err(error::Error::Input("Cannot run validation worker in browser".into()))
				} else {
					#[cfg(not(feature = "browser"))]
					service::run_validation_worker(&args.mem_id)?;
					Ok(())
				}
178
			}
179
	}
180
}
181

182
/// Run the given `service` using the `runtime` until it exits or `e` fires.
183
#[cfg(feature = "cli")]
184
pub fn run_until_exit(
André Silva's avatar
André Silva committed
185
	mut runtime: Runtime,
186
187
188
	service: impl AbstractService,
	e: impl Future<Output = ()> + Send + Unpin + 'static,
) -> error::Result<()> {
189
	let (exit_send, exit) = oneshot::channel();
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
190

191
	let executor = runtime.executor();
192
	let informant = sc_cli::informant::build(&service);
193
194
195
196
197
	let future = select(exit, informant)
		.map(|_| Ok(()))
		.compat();

	executor.spawn(future);
198

André Silva's avatar
André Silva committed
199
200
201
202
	// we eagerly drop the service so that the internal exit future is fired,
	// but we need to keep holding a reference to the global telemetry guard
	let _telemetry = service.telemetry();

203
204
205
206
207
208
209
210
211
212
	let service_res = {
		let service = service
			.map_err(|err| error::Error::Service(err))
			.compat();
		let select = select(service, e)
			.map(|_| Ok(()))
			.compat();
		runtime.block_on(select)
	};

213
214
215
	let _ = exit_send.send(());

	use futures01::Future;
André Silva's avatar
André Silva committed
216
217
218
	// TODO [andre]: timeout this future substrate/#1318
	let _ = runtime.shutdown_on_idle().wait();

219
	service_res
Gav's avatar
Gav committed
220
}