123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- // Copyright 2019 Joystream Contributors
- // This file is part of Joystream node.
- // Joystream node 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.
- // Joystream node 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 Joystream node. If not, see <http://www.gnu.org/licenses/>.
- use crate::cli::{Cli, Subcommand};
- use crate::node_executor;
- use crate::{chain_spec, service};
- use crate::service::{new_full_base, new_partial, NewFullBase};
- use node_executor::Executor;
- use node_runtime::{opaque::Block, RuntimeApi};
- use sc_cli::{ChainSpec, Result, Role, RuntimeVersion, SubstrateCli};
- use sc_service::PartialComponents;
- impl SubstrateCli for Cli {
- fn impl_name() -> String {
- "Joystream Node".into()
- }
- fn support_url() -> String {
- "https://www.joystream.org/".into()
- }
- fn copyright_start_year() -> i32 {
- 2019
- }
- fn executable_name() -> String {
- "joystream-node".into()
- }
- fn impl_version() -> String {
- env!("SUBSTRATE_CLI_IMPL_VERSION").into()
- }
- fn description() -> String {
- env!("CARGO_PKG_DESCRIPTION").into()
- }
- fn author() -> String {
- env!("CARGO_PKG_AUTHORS").into()
- }
- fn native_runtime_version(_: &Box<dyn ChainSpec>) -> &'static RuntimeVersion {
- &node_runtime::VERSION
- }
- fn load_spec(&self, id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {
- Ok(match id {
- "dev" => Box::new(chain_spec::Alternative::Development.load()?),
- "local" => Box::new(chain_spec::Alternative::LocalTestnet.load()?),
- path => Box::new(chain_spec::ChainSpec::from_json_file(
- std::path::PathBuf::from(path),
- )?),
- })
- }
- }
- /// Parse command line arguments into service configuration.
- pub fn run() -> Result<()> {
- let cli = Cli::from_args();
- match &cli.subcommand {
- None => {
- let runner = cli.create_runner(&cli.run)?;
- runner.run_node_until_exit(|config| match config.role {
- Role::Light => service::new_light(config),
- _ => service::new_full(config),
- })
- }
- Some(Subcommand::Inspect(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.sync_run(|config| cmd.run::<Block, RuntimeApi, Executor>(config))
- }
- Some(Subcommand::Benchmark(cmd)) => {
- if cfg!(feature = "runtime-benchmarks") {
- let runner = cli.create_runner(cmd)?;
- runner.sync_run(|config| cmd.run::<Block, Executor>(config))
- } else {
- Err("Benchmarking wasn't enabled when building the node. \
- You can enable it with `--features runtime-benchmarks`."
- .into())
- }
- }
- Some(Subcommand::Key(cmd)) => cmd.run(),
- Some(Subcommand::Sign(cmd)) => cmd.run(),
- Some(Subcommand::Verify(cmd)) => cmd.run(),
- Some(Subcommand::Vanity(cmd)) => cmd.run(),
- Some(Subcommand::BuildSpec(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.sync_run(|config| cmd.run(config.chain_spec, config.network))
- }
- Some(Subcommand::BuildSyncSpec(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.async_run(|config| {
- let chain_spec = config.chain_spec.cloned_box();
- let network_config = config.network.clone();
- let NewFullBase {
- task_manager,
- client,
- network_status_sinks,
- ..
- } = new_full_base(config, |_, _| ())?;
- Ok((
- cmd.run(chain_spec, network_config, client, network_status_sinks),
- task_manager,
- ))
- })
- }
- Some(Subcommand::CheckBlock(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.async_run(|config| {
- let PartialComponents {
- client,
- task_manager,
- import_queue,
- ..
- } = new_partial(&config)?;
- Ok((cmd.run(client, import_queue), task_manager))
- })
- }
- Some(Subcommand::ExportBlocks(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.async_run(|config| {
- let PartialComponents {
- client,
- task_manager,
- ..
- } = new_partial(&config)?;
- Ok((cmd.run(client, config.database), task_manager))
- })
- }
- Some(Subcommand::ExportState(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.async_run(|config| {
- let PartialComponents {
- client,
- task_manager,
- ..
- } = new_partial(&config)?;
- Ok((cmd.run(client, config.chain_spec), task_manager))
- })
- }
- Some(Subcommand::ImportBlocks(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.async_run(|config| {
- let PartialComponents {
- client,
- task_manager,
- import_queue,
- ..
- } = new_partial(&config)?;
- Ok((cmd.run(client, import_queue), task_manager))
- })
- }
- Some(Subcommand::PurgeChain(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.sync_run(|config| cmd.run(config.database))
- }
- Some(Subcommand::Revert(cmd)) => {
- let runner = cli.create_runner(cmd)?;
- runner.async_run(|config| {
- let PartialComponents {
- client,
- task_manager,
- backend,
- ..
- } = new_partial(&config)?;
- Ok((cmd.run(client, backend), task_manager))
- })
- }
- }
- }
|