cf463fe8ee
- Fixed is_using_frame_crate() macro to check for pezframe/pezkuwi_sdk - Removed disable_pezframe_system_supertrait_check temporary bypasses - Feature-gated storage-benchmark and teyrchain-benchmarks code - Fixed dead_code warnings with underscore prefix (_Header) - Removed unused imports and shadowing use statements - Version bumps: procedural-tools 10.0.1, benchmarking-cli 32.0.1, docs 0.0.2, minimal-runtime 0.0.1, yet-another-teyrchain 0.6.1, umbrella 0.1.2 - Updated MAINNET_ROADMAP.md with FAZ 1 completion status
205 lines
6.4 KiB
Rust
205 lines
6.4 KiB
Rust
use crate::{
|
|
benchmarking::{inherent_benchmark_data, RemarkBuilder, TransferKeepAliveBuilder},
|
|
chain_spec,
|
|
cli::{Cli, Subcommand},
|
|
service,
|
|
};
|
|
use pez_solochain_template_runtime::{Block, EXISTENTIAL_DEPOSIT};
|
|
use pezframe_benchmarking_cli::{BenchmarkCmd, ExtrinsicFactory, BIZINIKIWI_REFERENCE_HARDWARE};
|
|
use pezsc_cli::BizinikiwiCli;
|
|
use pezsc_service::PartialComponents;
|
|
use pezsp_keyring::Sr25519Keyring;
|
|
|
|
impl BizinikiwiCli for Cli {
|
|
fn impl_name() -> String {
|
|
"Bizinikiwi Node".into()
|
|
}
|
|
|
|
fn impl_version() -> String {
|
|
env!("BIZINIKIWI_CLI_IMPL_VERSION").into()
|
|
}
|
|
|
|
fn description() -> String {
|
|
env!("CARGO_PKG_DESCRIPTION").into()
|
|
}
|
|
|
|
fn author() -> String {
|
|
env!("CARGO_PKG_AUTHORS").into()
|
|
}
|
|
|
|
fn support_url() -> String {
|
|
"support.anonymous.an".into()
|
|
}
|
|
|
|
fn copyright_start_year() -> i32 {
|
|
2017
|
|
}
|
|
|
|
fn load_spec(&self, id: &str) -> Result<Box<dyn pezsc_service::ChainSpec>, String> {
|
|
Ok(match id {
|
|
"dev" => Box::new(chain_spec::development_chain_spec()?),
|
|
"" | "local" => Box::new(chain_spec::local_chain_spec()?),
|
|
path => {
|
|
Box::new(chain_spec::ChainSpec::from_json_file(std::path::PathBuf::from(path))?)
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
/// Parse and run command line arguments
|
|
pub fn run() -> pezsc_cli::Result<()> {
|
|
let cli = Cli::from_args();
|
|
|
|
match &cli.subcommand {
|
|
Some(Subcommand::Key(cmd)) => cmd.run(&cli),
|
|
#[allow(deprecated)]
|
|
Some(Subcommand::BuildSpec(cmd)) => {
|
|
let runner = cli.create_runner(cmd)?;
|
|
runner.sync_run(|config| cmd.run(config.chain_spec, config.network))
|
|
},
|
|
Some(Subcommand::CheckBlock(cmd)) => {
|
|
let runner = cli.create_runner(cmd)?;
|
|
runner.async_run(|config| {
|
|
let PartialComponents { client, task_manager, import_queue, .. } =
|
|
service::new_partial(&config)?;
|
|
Ok((cmd.run(client, import_queue), task_manager))
|
|
})
|
|
},
|
|
Some(Subcommand::ExportChainSpec(cmd)) => {
|
|
let chain_spec = cli.load_spec(&cmd.chain)?;
|
|
cmd.run(chain_spec)
|
|
},
|
|
Some(Subcommand::ExportBlocks(cmd)) => {
|
|
let runner = cli.create_runner(cmd)?;
|
|
runner.async_run(|config| {
|
|
let PartialComponents { client, task_manager, .. } = service::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, .. } = service::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, .. } =
|
|
service::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, .. } =
|
|
service::new_partial(&config)?;
|
|
let aux_revert = Box::new(|client, _, blocks| {
|
|
pezsc_consensus_grandpa::revert(client, blocks)?;
|
|
Ok(())
|
|
});
|
|
Ok((cmd.run(client, backend, Some(aux_revert)), task_manager))
|
|
})
|
|
},
|
|
Some(Subcommand::Benchmark(cmd)) => {
|
|
let runner = cli.create_runner(cmd)?;
|
|
|
|
runner.sync_run(|config| {
|
|
// This switch needs to be in the client, since the client decides
|
|
// which sub-commands it wants to support.
|
|
match cmd {
|
|
BenchmarkCmd::Pezpallet(cmd) => {
|
|
if !cfg!(feature = "runtime-benchmarks") {
|
|
return Err(
|
|
"Runtime benchmarking wasn't enabled when building the node. \
|
|
You can enable it with `--features runtime-benchmarks`."
|
|
.into(),
|
|
);
|
|
}
|
|
|
|
cmd.run_with_spec::<pezsp_runtime::traits::HashingFor<Block>, ()>(Some(
|
|
config.chain_spec,
|
|
))
|
|
},
|
|
BenchmarkCmd::Block(cmd) => {
|
|
let PartialComponents { client, .. } = service::new_partial(&config)?;
|
|
cmd.run(client)
|
|
},
|
|
#[cfg(all(feature = "storage-benchmark", not(feature = "runtime-benchmarks")))]
|
|
BenchmarkCmd::Storage(_) => Err(
|
|
"Storage benchmarking can be enabled with `--features runtime-benchmarks`."
|
|
.into(),
|
|
),
|
|
#[cfg(all(feature = "storage-benchmark", feature = "runtime-benchmarks"))]
|
|
BenchmarkCmd::Storage(cmd) => {
|
|
let PartialComponents { client, backend, .. } =
|
|
service::new_partial(&config)?;
|
|
let db = backend.expose_db();
|
|
let storage = backend.expose_storage();
|
|
let shared_cache = backend.expose_shared_trie_cache();
|
|
|
|
cmd.run(config, client, db, storage, shared_cache)
|
|
},
|
|
BenchmarkCmd::Overhead(cmd) => {
|
|
let PartialComponents { client, .. } = service::new_partial(&config)?;
|
|
let ext_builder = RemarkBuilder::new(client.clone());
|
|
|
|
cmd.run(
|
|
config.chain_spec.name().into(),
|
|
client,
|
|
inherent_benchmark_data()?,
|
|
Vec::new(),
|
|
&ext_builder,
|
|
false,
|
|
)
|
|
},
|
|
BenchmarkCmd::Extrinsic(cmd) => {
|
|
let PartialComponents { client, .. } = service::new_partial(&config)?;
|
|
// Register the *Remark* and *TKA* builders.
|
|
let ext_factory = ExtrinsicFactory(vec![
|
|
Box::new(RemarkBuilder::new(client.clone())),
|
|
Box::new(TransferKeepAliveBuilder::new(
|
|
client.clone(),
|
|
Sr25519Keyring::Alice.to_account_id(),
|
|
EXISTENTIAL_DEPOSIT,
|
|
)),
|
|
]);
|
|
|
|
cmd.run(client, inherent_benchmark_data()?, Vec::new(), &ext_factory)
|
|
},
|
|
BenchmarkCmd::Machine(cmd) => {
|
|
cmd.run(&config, BIZINIKIWI_REFERENCE_HARDWARE.clone())
|
|
},
|
|
}
|
|
})
|
|
},
|
|
Some(Subcommand::ChainInfo(cmd)) => {
|
|
let runner = cli.create_runner(cmd)?;
|
|
runner.sync_run(|config| cmd.run::<Block>(&config))
|
|
},
|
|
None => {
|
|
let runner = cli.create_runner(&cli.run)?;
|
|
runner.run_node_until_exit(|config| async move {
|
|
match config.network.network_backend {
|
|
pezsc_network::config::NetworkBackendType::Libp2p => service::new_full::<
|
|
pezsc_network::NetworkWorker<
|
|
pez_solochain_template_runtime::opaque::Block,
|
|
<pez_solochain_template_runtime::opaque::Block as pezsp_runtime::traits::Block>::Hash,
|
|
>,
|
|
>(config)
|
|
.map_err(pezsc_cli::Error::Service),
|
|
pezsc_network::config::NetworkBackendType::Litep2p =>
|
|
service::new_full::<pezsc_network::Litep2pNetworkBackend>(config)
|
|
.map_err(pezsc_cli::Error::Service),
|
|
}
|
|
})
|
|
},
|
|
}
|
|
}
|