mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-28 14:27:26 +00:00
9fdd4672b0
* init_logger: switch from log-based to tracing-based and add compatibility layer * Move tracing profiling subscriber related config realization * sp-tracing: change profiling to be a layer instead of a subscriber * Enable profiling layer in cli * Change all test env_logger init to sp_tracing::try_init_simple * Remove all local env_logger dependency * Add missing tracing-subscriber dependency * frame-sudo: fix tests * frame-support: fix tests * Fix frame/pallet and executor tests * Fix the remaining tests * Use subscriber's try_init as recommended by @davidbarsky * Be explict that the tracing-log feature is needed * Set subscriber writer to stderr * Shorter line width * Update cargo lock tracing version * Fix sc_tracing crate compile * Fix sc_authority_discovery crate test * unremove default-features * Leave enabled to default true * Warn if global default cannot be set * Fix unused import * Remove unused PROXY_TARGET * Change all reference from rc5 to rc6 * Change all reference of rc2 to rc6 * Fix styling * Fix typo * make logger init error'ing * re-fixing the test issue Co-authored-by: Benjamin Kampmann <ben@parity.io>
302 lines
10 KiB
Rust
302 lines
10 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2017-2020 Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
|
|
|
// This program 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.
|
|
|
|
// This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
//! Substrate CLI library.
|
|
|
|
#![warn(missing_docs)]
|
|
#![warn(unused_extern_crates)]
|
|
|
|
pub mod arg_enums;
|
|
mod commands;
|
|
mod config;
|
|
mod error;
|
|
mod params;
|
|
mod runner;
|
|
|
|
pub use arg_enums::*;
|
|
pub use commands::*;
|
|
pub use config::*;
|
|
pub use error::*;
|
|
pub use params::*;
|
|
pub use runner::*;
|
|
use sc_service::{Configuration, TaskExecutor};
|
|
pub use sc_service::{ChainSpec, Role};
|
|
pub use sp_version::RuntimeVersion;
|
|
use std::io::Write;
|
|
pub use structopt;
|
|
use structopt::{
|
|
clap::{self, AppSettings},
|
|
StructOpt,
|
|
};
|
|
use tracing_subscriber::layer::SubscriberExt;
|
|
|
|
/// Substrate client CLI
|
|
///
|
|
/// This trait needs to be defined on the root structopt of the application. It will provide the
|
|
/// implementation name, version, executable name, description, author, support_url, copyright start
|
|
/// year and most importantly: how to load the chain spec.
|
|
///
|
|
/// StructOpt must not be in scope to use from_args (or the similar methods). This trait provides
|
|
/// its own implementation that will fill the necessary field based on the trait's functions.
|
|
pub trait SubstrateCli: Sized {
|
|
/// Implementation name.
|
|
fn impl_name() -> String;
|
|
|
|
/// Implementation version.
|
|
///
|
|
/// By default this will look like this: 2.0.0-b950f731c-x86_64-linux-gnu where the hash is the
|
|
/// short commit hash of the commit of in the Git repository.
|
|
fn impl_version() -> String;
|
|
|
|
/// Executable file name.
|
|
///
|
|
/// Extracts the file name from `std::env::current_exe()`.
|
|
/// Resorts to the env var `CARGO_PKG_NAME` in case of Error.
|
|
fn executable_name() -> String {
|
|
std::env::current_exe().ok()
|
|
.and_then(|e| e.file_name().map(|s| s.to_os_string()))
|
|
.and_then(|w| w.into_string().ok())
|
|
.unwrap_or_else(|| env!("CARGO_PKG_NAME").into())
|
|
}
|
|
|
|
/// Executable file description.
|
|
fn description() -> String;
|
|
|
|
/// Executable file author.
|
|
fn author() -> String;
|
|
|
|
/// Support URL.
|
|
fn support_url() -> String;
|
|
|
|
/// Copyright starting year (x-current year)
|
|
fn copyright_start_year() -> i32;
|
|
|
|
/// Chain spec factory
|
|
fn load_spec(&self, id: &str) -> std::result::Result<Box<dyn ChainSpec>, String>;
|
|
|
|
/// Helper function used to parse the command line arguments. This is the equivalent of
|
|
/// `structopt`'s `from_iter()` except that it takes a `VersionInfo` argument to provide the name of
|
|
/// the application, author, "about" and version. It will also set `AppSettings::GlobalVersion`.
|
|
///
|
|
/// To allow running the node without subcommand, tt also sets a few more settings:
|
|
/// `AppSettings::ArgsNegateSubcommands` and `AppSettings::SubcommandsNegateReqs`.
|
|
///
|
|
/// Gets the struct from the command line arguments. Print the
|
|
/// error message and quit the program in case of failure.
|
|
fn from_args() -> Self
|
|
where
|
|
Self: StructOpt + Sized,
|
|
{
|
|
<Self as SubstrateCli>::from_iter(&mut std::env::args_os())
|
|
}
|
|
|
|
/// Helper function used to parse the command line arguments. This is the equivalent of
|
|
/// `structopt`'s `from_iter()` except that it takes a `VersionInfo` argument to provide the name of
|
|
/// the application, author, "about" and version. It will also set `AppSettings::GlobalVersion`.
|
|
///
|
|
/// To allow running the node without subcommand, it also sets a few more settings:
|
|
/// `AppSettings::ArgsNegateSubcommands` and `AppSettings::SubcommandsNegateReqs`.
|
|
///
|
|
/// Gets the struct from any iterator such as a `Vec` of your making.
|
|
/// Print the error message and quit the program in case of failure.
|
|
fn from_iter<I>(iter: I) -> Self
|
|
where
|
|
Self: StructOpt + Sized,
|
|
I: IntoIterator,
|
|
I::Item: Into<std::ffi::OsString> + Clone,
|
|
{
|
|
let app = <Self as StructOpt>::clap();
|
|
|
|
let mut full_version = Self::impl_version();
|
|
full_version.push_str("\n");
|
|
|
|
let name = Self::executable_name();
|
|
let author = Self::author();
|
|
let about = Self::description();
|
|
let app = app
|
|
.name(name)
|
|
.author(author.as_str())
|
|
.about(about.as_str())
|
|
.version(full_version.as_str())
|
|
.settings(&[
|
|
AppSettings::GlobalVersion,
|
|
AppSettings::ArgsNegateSubcommands,
|
|
AppSettings::SubcommandsNegateReqs,
|
|
]);
|
|
|
|
let matches = match app.get_matches_from_safe(iter) {
|
|
Ok(matches) => matches,
|
|
Err(mut e) => {
|
|
// To support pipes, we can not use `writeln!` as any error
|
|
// results in a "broken pipe" error.
|
|
//
|
|
// Instead we write directly to `stdout` and ignore any error
|
|
// as we exit afterwards anyway.
|
|
e.message.extend("\n".chars());
|
|
|
|
if e.use_stderr() {
|
|
let _ = std::io::stderr().write_all(e.message.as_bytes());
|
|
std::process::exit(1);
|
|
} else {
|
|
let _ = std::io::stdout().write_all(e.message.as_bytes());
|
|
std::process::exit(0);
|
|
}
|
|
},
|
|
};
|
|
|
|
<Self as StructOpt>::from_clap(&matches)
|
|
}
|
|
|
|
/// Helper function used to parse the command line arguments. This is the equivalent of
|
|
/// `structopt`'s `from_iter()` except that it takes a `VersionInfo` argument to provide the name of
|
|
/// the application, author, "about" and version. It will also set `AppSettings::GlobalVersion`.
|
|
///
|
|
/// To allow running the node without subcommand, it also sets a few more settings:
|
|
/// `AppSettings::ArgsNegateSubcommands` and `AppSettings::SubcommandsNegateReqs`.
|
|
///
|
|
/// Gets the struct from any iterator such as a `Vec` of your making.
|
|
/// Print the error message and quit the program in case of failure.
|
|
///
|
|
/// **NOTE:** This method WILL NOT exit when `--help` or `--version` (or short versions) are
|
|
/// used. It will return a [`clap::Error`], where the [`clap::Error::kind`] is a
|
|
/// [`clap::ErrorKind::HelpDisplayed`] or [`clap::ErrorKind::VersionDisplayed`] respectively.
|
|
/// You must call [`clap::Error::exit`] or perform a [`std::process::exit`].
|
|
fn try_from_iter<I>(iter: I) -> clap::Result<Self>
|
|
where
|
|
Self: StructOpt + Sized,
|
|
I: IntoIterator,
|
|
I::Item: Into<std::ffi::OsString> + Clone,
|
|
{
|
|
let app = <Self as StructOpt>::clap();
|
|
|
|
let mut full_version = Self::impl_version();
|
|
full_version.push_str("\n");
|
|
|
|
let name = Self::executable_name();
|
|
let author = Self::author();
|
|
let about = Self::description();
|
|
let app = app
|
|
.name(name)
|
|
.author(author.as_str())
|
|
.about(about.as_str())
|
|
.version(full_version.as_str());
|
|
|
|
let matches = app.get_matches_from_safe(iter)?;
|
|
|
|
Ok(<Self as StructOpt>::from_clap(&matches))
|
|
}
|
|
|
|
/// Returns the client ID: `{impl_name}/v{impl_version}`
|
|
fn client_id() -> String {
|
|
format!("{}/v{}", Self::impl_name(), Self::impl_version())
|
|
}
|
|
|
|
/// Only create a Configuration for the command provided in argument
|
|
fn create_configuration<T: CliConfiguration<DVC>, DVC: DefaultConfigurationValues>(
|
|
&self,
|
|
command: &T,
|
|
task_executor: TaskExecutor,
|
|
) -> error::Result<Configuration> {
|
|
command.create_configuration(self, task_executor)
|
|
}
|
|
|
|
/// Create a runner for the command provided in argument. This will create a Configuration and
|
|
/// a tokio runtime
|
|
fn create_runner<T: CliConfiguration>(&self, command: &T) -> error::Result<Runner<Self>> {
|
|
command.init::<Self>()?;
|
|
Runner::new(self, command)
|
|
}
|
|
|
|
/// Native runtime version.
|
|
fn native_runtime_version(chain_spec: &Box<dyn ChainSpec>) -> &'static RuntimeVersion;
|
|
}
|
|
|
|
/// Initialize the global logger
|
|
///
|
|
/// This sets various global logging and tracing instances and thus may only be called once.
|
|
pub fn init_logger(
|
|
pattern: &str,
|
|
tracing_receiver: sc_tracing::TracingReceiver,
|
|
tracing_targets: Option<String>,
|
|
) -> std::result::Result<(), String> {
|
|
if let Err(e) = tracing_log::LogTracer::init() {
|
|
return Err(format!(
|
|
"Registering Substrate logger failed: {:}!", e
|
|
))
|
|
}
|
|
|
|
let mut env_filter = tracing_subscriber::EnvFilter::default()
|
|
// Disable info logging by default for some modules.
|
|
.add_directive("ws=off".parse().expect("provided directive is valid"))
|
|
.add_directive("yamux=off".parse().expect("provided directive is valid"))
|
|
.add_directive("cranelift_codegen=off".parse().expect("provided directive is valid"))
|
|
// Set warn logging by default for some modules.
|
|
.add_directive("cranelife_wasm=warn".parse().expect("provided directive is valid"))
|
|
.add_directive("hyper=warn".parse().expect("provided directive is valid"))
|
|
// Always log the special target `sc_tracing`, overrides global level.
|
|
.add_directive("sc_tracing=trace".parse().expect("provided directive is valid"))
|
|
// Enable info for others.
|
|
.add_directive(tracing_subscriber::filter::LevelFilter::INFO.into());
|
|
|
|
if let Ok(lvl) = std::env::var("RUST_LOG") {
|
|
if lvl != "" {
|
|
// We're not sure if log or tracing is available at this moment, so silently ignore the
|
|
// parse error.
|
|
if let Ok(directive) = lvl.parse() {
|
|
env_filter = env_filter.add_directive(directive);
|
|
}
|
|
}
|
|
}
|
|
|
|
if pattern != "" {
|
|
// We're not sure if log or tracing is available at this moment, so silently ignore the
|
|
// parse error.
|
|
if let Ok(directive) = pattern.parse() {
|
|
env_filter = env_filter.add_directive(directive);
|
|
}
|
|
}
|
|
|
|
let isatty = atty::is(atty::Stream::Stderr);
|
|
let enable_color = isatty;
|
|
|
|
let subscriber = tracing_subscriber::FmtSubscriber::builder()
|
|
.with_env_filter(env_filter)
|
|
.with_target(false)
|
|
.with_ansi(enable_color)
|
|
.with_writer(std::io::stderr)
|
|
.compact()
|
|
.finish();
|
|
|
|
if let Some(tracing_targets) = tracing_targets {
|
|
let profiling = sc_tracing::ProfilingLayer::new(tracing_receiver, &tracing_targets);
|
|
|
|
if let Err(e) = tracing::subscriber::set_global_default(subscriber.with(profiling)) {
|
|
return Err(format!(
|
|
"Registering Substrate tracing subscriber failed: {:}!", e
|
|
))
|
|
}
|
|
} else {
|
|
if let Err(e) = tracing::subscriber::set_global_default(subscriber) {
|
|
return Err(format!(
|
|
"Registering Substrate tracing subscriber failed: {:}!", e
|
|
))
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|