1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
use crate::error;
use crate::params::ImportParams;
use crate::params::SharedParams;
use crate::CliConfiguration;
use sc_service::chain_ops::import_blocks;
use sp_runtime::traits::Block as BlockT;
use std::fmt::Debug;
use std::fs;
use std::io::{self, Read, Seek};
use std::path::PathBuf;
use std::sync::Arc;
use structopt::StructOpt;
use sc_client_api::UsageProvider;
#[derive(Debug, StructOpt)]
pub struct ImportBlocksCmd {
	
	#[structopt(parse(from_os_str))]
	pub input: Option<PathBuf>,
	
	
	
	#[structopt(long = "default-heap-pages", value_name = "COUNT")]
	pub default_heap_pages: Option<u32>,
	
	#[structopt(long)]
	pub binary: bool,
	#[allow(missing_docs)]
	#[structopt(flatten)]
	pub shared_params: SharedParams,
	#[allow(missing_docs)]
	#[structopt(flatten)]
	pub import_params: ImportParams,
}
trait ReadPlusSeek: Read + Seek {}
impl<T: Read + Seek> ReadPlusSeek for T {}
impl ImportBlocksCmd {
	
	pub async fn run<B, C, IQ>(
		&self,
		client: Arc<C>,
		import_queue: IQ,
	) -> error::Result<()>
	where
		C: UsageProvider<B> + Send + Sync + 'static,
		B: BlockT + for<'de> serde::Deserialize<'de>,
		IQ: sc_service::ImportQueue<B> + 'static,
	{
		let file: Box<dyn ReadPlusSeek + Send> = match &self.input {
			Some(filename) => Box::new(fs::File::open(filename)?),
			None => {
				let mut buffer = Vec::new();
				io::stdin().read_to_end(&mut buffer)?;
				Box::new(io::Cursor::new(buffer))
			}
		};
		import_blocks(client, import_queue, file, false, self.binary)
			.await
			.map_err(Into::into)
	}
}
impl CliConfiguration for ImportBlocksCmd {
	fn shared_params(&self) -> &SharedParams {
		&self.shared_params
	}
	fn import_params(&self) -> Option<&ImportParams> {
		Some(&self.import_params)
	}
}