mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-10 07:37:57 +00:00
5f751e4472
* :) * Slight tidy * Remove ServiceBuilderCommand * Remove whitespace * Keep task manager alive for check_block/import_blocks * Pass task_manager to run_until_exit * Make task_manager in run_until_exit and make subcommands async * Change the async_run fn to return a future and task manager * async_run should take a result fn * Apply suggestions from code review Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Fix spaces in export_raw_state Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
83 lines
2.6 KiB
Rust
83 lines
2.6 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 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/>.
|
|
|
|
use crate::{
|
|
CliConfiguration, error, params::{PruningParams, SharedParams, BlockNumberOrHash},
|
|
};
|
|
use log::info;
|
|
use sp_runtime::traits::{Block as BlockT, Header as HeaderT};
|
|
use std::{fmt::Debug, str::FromStr, io::Write, sync::Arc};
|
|
use structopt::StructOpt;
|
|
use sc_client_api::{StorageProvider, UsageProvider};
|
|
|
|
/// The `export-state` command used to export the state of a given block into
|
|
/// a chain spec.
|
|
#[derive(Debug, StructOpt)]
|
|
pub struct ExportStateCmd {
|
|
/// Block hash or number.
|
|
#[structopt(value_name = "HASH or NUMBER")]
|
|
pub input: Option<BlockNumberOrHash>,
|
|
|
|
#[allow(missing_docs)]
|
|
#[structopt(flatten)]
|
|
pub shared_params: SharedParams,
|
|
|
|
#[allow(missing_docs)]
|
|
#[structopt(flatten)]
|
|
pub pruning_params: PruningParams,
|
|
}
|
|
|
|
impl ExportStateCmd {
|
|
/// Run the `export-state` command
|
|
pub async fn run<B, BA, C>(
|
|
&self,
|
|
client: Arc<C>,
|
|
mut input_spec: Box<dyn sc_service::ChainSpec>,
|
|
) -> error::Result<()>
|
|
where
|
|
B: BlockT,
|
|
C: UsageProvider<B> + StorageProvider<B, BA>,
|
|
BA: sc_client_api::backend::Backend<B>,
|
|
B::Hash: FromStr,
|
|
<B::Hash as FromStr>::Err: Debug,
|
|
<<B::Header as HeaderT>::Number as FromStr>::Err: Debug,
|
|
{
|
|
info!("Exporting raw state...");
|
|
let block_id = self.input.as_ref().map(|b| b.parse()).transpose()?;
|
|
let raw_state = sc_service::chain_ops::export_raw_state(client, block_id)?;
|
|
input_spec.set_storage(raw_state);
|
|
|
|
info!("Generating new chain spec...");
|
|
let json = sc_service::chain_ops::build_spec(&*input_spec, true)?;
|
|
if std::io::stdout().write_all(json.as_bytes()).is_err() {
|
|
let _ = std::io::stderr().write_all(b"Error writing to stdout\n");
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl CliConfiguration for ExportStateCmd {
|
|
fn shared_params(&self) -> &SharedParams {
|
|
&self.shared_params
|
|
}
|
|
|
|
fn pruning_params(&self) -> Option<&PruningParams> {
|
|
Some(&self.pruning_params)
|
|
}
|
|
}
|