mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 15:07:59 +00:00
4264613a96
* Extract CLI to separate module in node/cli * Make node/cli compile for WASM * More work on node/cli browser * More work on browser node * More work * More work * Purge a bit the CI script * More clean up * Remove substrate-finality-grandpa from the CI Its tests use tokio, which fails to compile. * Address review * Add rocksdb feature to the service * Fix substrate-service WASM CI * Apply suggestions from code review Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Don't WASM-compile substrate-service altogether
59 lines
1.9 KiB
Rust
59 lines
1.9 KiB
Rust
// Copyright 2018-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Substrate Node CLI
|
|
|
|
#![warn(missing_docs)]
|
|
|
|
use futures::sync::oneshot;
|
|
use futures::{future, Future};
|
|
use substrate_cli::VersionInfo;
|
|
|
|
use std::cell::RefCell;
|
|
|
|
// handles ctrl-c
|
|
struct Exit;
|
|
impl substrate_cli::IntoExit for Exit {
|
|
type Exit = future::MapErr<oneshot::Receiver<()>, fn(oneshot::Canceled) -> ()>;
|
|
fn into_exit(self) -> Self::Exit {
|
|
// can't use signal directly here because CtrlC takes only `Fn`.
|
|
let (exit_send, exit) = oneshot::channel();
|
|
|
|
let exit_send_cell = RefCell::new(Some(exit_send));
|
|
ctrlc::set_handler(move || {
|
|
if let Some(exit_send) = exit_send_cell.try_borrow_mut().expect("signal handler not reentrant; qed").take() {
|
|
exit_send.send(()).expect("Error sending exit notification");
|
|
}
|
|
}).expect("Error setting Ctrl-C handler");
|
|
|
|
exit.map_err(drop)
|
|
}
|
|
}
|
|
|
|
fn main() -> Result<(), substrate_cli::error::Error> {
|
|
let version = VersionInfo {
|
|
name: "Substrate Node",
|
|
commit: env!("VERGEN_SHA_SHORT"),
|
|
version: env!("CARGO_PKG_VERSION"),
|
|
executable_name: "substrate",
|
|
author: "Parity Technologies <admin@parity.io>",
|
|
description: "Generic substrate node",
|
|
support_url: "https://github.com/paritytech/substrate/issues/new",
|
|
};
|
|
|
|
node_cli::run(std::env::args(), Exit, version)
|
|
}
|