mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 01:38:04 +00:00
ddb46a8aa0
* define trait `HashOutput` * improve * improve * Update primitives/runtime/src/traits.rs Co-authored-by: Bastian Köcher <git@kchr.de> * remove `Block::Hash: Ord` * fmt * add `MaybeFromStr` * cleanup * fix * remove useless `HashOutput` --------- Co-authored-by: Bastian Köcher <git@kchr.de>
96 lines
2.9 KiB
Rust
96 lines
2.9 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 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::{
|
|
error,
|
|
params::{BlockNumberOrHash, DatabaseParams, PruningParams, SharedParams},
|
|
CliConfiguration,
|
|
};
|
|
use clap::Parser;
|
|
use log::info;
|
|
use sc_client_api::{HeaderBackend, StorageProvider, UsageProvider};
|
|
use sp_runtime::traits::{Block as BlockT, Header as HeaderT};
|
|
use std::{fmt::Debug, io::Write, str::FromStr, sync::Arc};
|
|
|
|
/// The `export-state` command used to export the state of a given block into
|
|
/// a chain spec.
|
|
#[derive(Debug, Clone, Parser)]
|
|
pub struct ExportStateCmd {
|
|
/// Block hash or number.
|
|
#[arg(value_name = "HASH or NUMBER")]
|
|
pub input: Option<BlockNumberOrHash>,
|
|
|
|
#[allow(missing_docs)]
|
|
#[clap(flatten)]
|
|
pub shared_params: SharedParams,
|
|
|
|
#[allow(missing_docs)]
|
|
#[clap(flatten)]
|
|
pub pruning_params: PruningParams,
|
|
|
|
#[allow(missing_docs)]
|
|
#[clap(flatten)]
|
|
pub database_params: DatabaseParams,
|
|
}
|
|
|
|
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> + HeaderBackend<B>,
|
|
BA: sc_client_api::backend::Backend<B>,
|
|
<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 hash = match block_id {
|
|
Some(id) => client.expect_block_hash_from_id(&id)?,
|
|
None => client.usage_info().chain.best_hash,
|
|
};
|
|
let raw_state = sc_service::chain_ops::export_raw_state(client, hash)?;
|
|
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)
|
|
}
|
|
|
|
fn database_params(&self) -> Option<&DatabaseParams> {
|
|
Some(&self.database_params)
|
|
}
|
|
}
|