mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 06:17:56 +00:00
e2f5e4bd74
This is useful for both security and performance reasons. IPC is faster than TCP, and it is subject to OS access controls.
256 lines
8.5 KiB
Rust
256 lines
8.5 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/>.
|
|
|
|
//! Service configuration.
|
|
|
|
pub use sc_client_db::{Database, PruningMode, DatabaseSettingsSrc as DatabaseConfig};
|
|
pub use sc_network::Multiaddr;
|
|
pub use sc_network::config::{ExtTransport, MultiaddrWithPeerId, NetworkConfiguration, Role, NodeKeyConfig};
|
|
pub use sc_executor::WasmExecutionMethod;
|
|
use sc_client_api::execution_extensions::ExecutionStrategies;
|
|
|
|
use std::{io, future::Future, path::{PathBuf, Path}, pin::Pin, net::SocketAddr, sync::Arc};
|
|
pub use sc_transaction_pool::txpool::Options as TransactionPoolOptions;
|
|
use sc_chain_spec::ChainSpec;
|
|
use sp_core::crypto::Protected;
|
|
pub use sc_telemetry::TelemetryEndpoints;
|
|
use prometheus_endpoint::Registry;
|
|
#[cfg(not(target_os = "unknown"))]
|
|
use tempfile::TempDir;
|
|
|
|
/// Service configuration.
|
|
pub struct Configuration {
|
|
/// Implementation name
|
|
pub impl_name: &'static str,
|
|
/// Implementation version (see sc-cli to see an example of format)
|
|
pub impl_version: &'static str,
|
|
/// Node role.
|
|
pub role: Role,
|
|
/// How to spawn background tasks. Mandatory, otherwise creating a `Service` will error.
|
|
pub task_executor: Arc<dyn Fn(Pin<Box<dyn Future<Output = ()> + Send>>, TaskType) + Send + Sync>,
|
|
/// Extrinsic pool configuration.
|
|
pub transaction_pool: TransactionPoolOptions,
|
|
/// Network configuration.
|
|
pub network: NetworkConfiguration,
|
|
/// Configuration for the keystore.
|
|
pub keystore: KeystoreConfig,
|
|
/// Configuration for the database.
|
|
pub database: DatabaseConfig,
|
|
/// Size of internal state cache in Bytes
|
|
pub state_cache_size: usize,
|
|
/// Size in percent of cache size dedicated to child tries
|
|
pub state_cache_child_ratio: Option<usize>,
|
|
/// Pruning settings.
|
|
pub pruning: PruningMode,
|
|
/// Chain configuration.
|
|
pub chain_spec: Box<dyn ChainSpec>,
|
|
/// Wasm execution method.
|
|
pub wasm_method: WasmExecutionMethod,
|
|
/// Execution strategies.
|
|
pub execution_strategies: ExecutionStrategies,
|
|
/// RPC over HTTP binding address. `None` if disabled.
|
|
pub rpc_http: Option<SocketAddr>,
|
|
/// RPC over Websockets binding address. `None` if disabled.
|
|
pub rpc_ws: Option<SocketAddr>,
|
|
/// RPC over IPC binding path. `None` if disabled.
|
|
pub rpc_ipc: Option<String>,
|
|
/// Maximum number of connections for WebSockets RPC server. `None` if default.
|
|
pub rpc_ws_max_connections: Option<usize>,
|
|
/// CORS settings for HTTP & WS servers. `None` if all origins are allowed.
|
|
pub rpc_cors: Option<Vec<String>>,
|
|
/// RPC methods to expose (by default only a safe subset or all of them).
|
|
pub rpc_methods: RpcMethods,
|
|
/// Prometheus endpoint configuration. `None` if disabled.
|
|
pub prometheus_config: Option<PrometheusConfig>,
|
|
/// Telemetry service URL. `None` if disabled.
|
|
pub telemetry_endpoints: Option<TelemetryEndpoints>,
|
|
/// External WASM transport for the telemetry. If `Some`, when connection to a telemetry
|
|
/// endpoint, this transport will be tried in priority before all others.
|
|
pub telemetry_external_transport: Option<ExtTransport>,
|
|
/// The default number of 64KB pages to allocate for Wasm execution
|
|
pub default_heap_pages: Option<u64>,
|
|
/// Should offchain workers be executed.
|
|
pub offchain_worker: OffchainWorkerConfig,
|
|
/// Enable authoring even when offline.
|
|
pub force_authoring: bool,
|
|
/// Disable GRANDPA when running in validator mode
|
|
pub disable_grandpa: bool,
|
|
/// Development key seed.
|
|
///
|
|
/// When running in development mode, the seed will be used to generate authority keys by the keystore.
|
|
///
|
|
/// Should only be set when `node` is running development mode.
|
|
pub dev_key_seed: Option<String>,
|
|
/// Tracing targets
|
|
pub tracing_targets: Option<String>,
|
|
/// Tracing receiver
|
|
pub tracing_receiver: sc_tracing::TracingReceiver,
|
|
/// The size of the instances cache.
|
|
///
|
|
/// The default value is 8.
|
|
pub max_runtime_instances: usize,
|
|
/// Announce block automatically after they have been imported
|
|
pub announce_block: bool,
|
|
/// Base path of the configuration
|
|
pub base_path: Option<BasePath>,
|
|
}
|
|
|
|
/// Type for tasks spawned by the executor.
|
|
#[derive(PartialEq)]
|
|
pub enum TaskType {
|
|
/// Regular non-blocking futures. Polling the task is expected to be a lightweight operation.
|
|
Async,
|
|
/// The task might perform a lot of expensive CPU operations and/or call `thread::sleep`.
|
|
Blocking,
|
|
}
|
|
|
|
/// Configuration of the client keystore.
|
|
#[derive(Clone)]
|
|
pub enum KeystoreConfig {
|
|
/// Keystore at a path on-disk. Recommended for native nodes.
|
|
Path {
|
|
/// The path of the keystore.
|
|
path: PathBuf,
|
|
/// Node keystore's password.
|
|
password: Option<Protected<String>>
|
|
},
|
|
/// In-memory keystore. Recommended for in-browser nodes.
|
|
InMemory,
|
|
}
|
|
|
|
impl KeystoreConfig {
|
|
/// Returns the path for the keystore.
|
|
pub fn path(&self) -> Option<&Path> {
|
|
match self {
|
|
Self::Path { path, .. } => Some(path),
|
|
Self::InMemory => None,
|
|
}
|
|
}
|
|
}
|
|
/// Configuration of the database of the client.
|
|
#[derive(Clone, Default)]
|
|
pub struct OffchainWorkerConfig {
|
|
/// If this is allowed.
|
|
pub enabled: bool,
|
|
/// allow writes from the runtime to the offchain worker database.
|
|
pub indexing_enabled: bool,
|
|
}
|
|
|
|
/// Configuration of the Prometheus endpoint.
|
|
#[derive(Clone)]
|
|
pub struct PrometheusConfig {
|
|
/// Port to use.
|
|
pub port: SocketAddr,
|
|
/// A metrics registry to use. Useful for setting the metric prefix.
|
|
pub registry: Registry,
|
|
}
|
|
|
|
impl PrometheusConfig {
|
|
/// Create a new config using the default registry.
|
|
///
|
|
/// The default registry prefixes metrics with `substrate`.
|
|
pub fn new_with_default_registry(port: SocketAddr) -> Self {
|
|
Self {
|
|
port,
|
|
registry: Registry::new_custom(Some("substrate".into()), None)
|
|
.expect("this can only fail if the prefix is empty")
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Configuration {
|
|
/// Returns a string displaying the node role.
|
|
pub fn display_role(&self) -> String {
|
|
self.role.to_string()
|
|
}
|
|
}
|
|
|
|
/// Available RPC methods.
|
|
#[derive(Debug, Copy, Clone)]
|
|
pub enum RpcMethods {
|
|
/// Expose every RPC method only when RPC is listening on `localhost`,
|
|
/// otherwise serve only safe RPC methods.
|
|
Auto,
|
|
/// Allow only a safe subset of RPC methods.
|
|
Safe,
|
|
/// Expose every RPC method (even potentially unsafe ones).
|
|
Unsafe,
|
|
}
|
|
|
|
impl Default for RpcMethods {
|
|
fn default() -> RpcMethods {
|
|
RpcMethods::Auto
|
|
}
|
|
}
|
|
|
|
/// The base path that is used for everything that needs to be write on disk to run a node.
|
|
pub enum BasePath {
|
|
/// A temporary directory is used as base path and will be deleted when dropped.
|
|
#[cfg(not(target_os = "unknown"))]
|
|
Temporary(TempDir),
|
|
/// A path on the disk.
|
|
Permanenent(PathBuf),
|
|
}
|
|
|
|
impl BasePath {
|
|
/// Create a `BasePath` instance using a temporary directory prefixed with "substrate" and use
|
|
/// it as base path.
|
|
///
|
|
/// Note: the temporary directory will be created automatically and deleted when the `BasePath`
|
|
/// instance is dropped.
|
|
#[cfg(not(target_os = "unknown"))]
|
|
pub fn new_temp_dir() -> io::Result<BasePath> {
|
|
Ok(BasePath::Temporary(
|
|
tempfile::Builder::new().prefix("substrate").tempdir()?,
|
|
))
|
|
}
|
|
|
|
/// Create a `BasePath` instance based on an existing path on disk.
|
|
///
|
|
/// Note: this function will not ensure that the directory exist nor create the directory. It
|
|
/// will also not delete the directory when the instance is dropped.
|
|
pub fn new<P: AsRef<Path>>(path: P) -> BasePath {
|
|
BasePath::Permanenent(path.as_ref().to_path_buf())
|
|
}
|
|
|
|
/// Create a base path from values describing the project.
|
|
#[cfg(not(target_os = "unknown"))]
|
|
pub fn from_project(qualifier: &str, organization: &str, application: &str) -> BasePath {
|
|
BasePath::new(
|
|
directories::ProjectDirs::from(qualifier, organization, application)
|
|
.expect("app directories exist on all supported platforms; qed")
|
|
.data_local_dir(),
|
|
)
|
|
}
|
|
|
|
/// Retrieve the base path.
|
|
pub fn path(&self) -> &Path {
|
|
match self {
|
|
#[cfg(not(target_os = "unknown"))]
|
|
BasePath::Temporary(temp_dir) => temp_dir.path(),
|
|
BasePath::Permanenent(path) => path.as_path(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl std::convert::From<PathBuf> for BasePath {
|
|
fn from(path: PathBuf) -> Self {
|
|
BasePath::new(path)
|
|
}
|
|
}
|