openethereum/parity/modules.rs

65 lines
2.1 KiB
Rust
Raw Normal View History

// Copyright 2015-2019 Parity Technologies (UK) Ltd.
// This file is part of Parity Ethereum.
2016-07-16 14:24:57 +02:00
// Parity Ethereum is free software: you can redistribute it and/or modify
2016-07-16 14:24:57 +02:00
// 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.
// Parity Ethereum is distributed in the hope that it will be useful,
2016-07-16 14:24:57 +02:00
// 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 Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
2016-07-16 14:24:57 +02:00
2020-08-05 06:08:03 +02:00
use std::sync::{mpsc, Arc};
2020-08-05 06:08:03 +02:00
use ethcore::{client::BlockChainClient, snapshot::SnapshotService};
use light::Provider;
2020-08-05 06:08:03 +02:00
use sync::{self, AttachedProtocol, ConnectionFilter, NetworkConfiguration, Params, SyncConfig};
2017-10-16 18:18:43 +02:00
pub use ethcore::client::ChainNotify;
use ethcore_logger::Config as LogConfig;
2020-08-05 06:08:03 +02:00
pub use sync::{EthSync, ManageNetwork, PrivateTxHandler, SyncProvider};
pub type SyncModules = (
2020-08-05 06:08:03 +02:00
Arc<SyncProvider>,
Arc<ManageNetwork>,
Arc<ChainNotify>,
mpsc::Sender<sync::PriorityTask>,
);
pub fn sync(
2020-08-05 06:08:03 +02:00
config: SyncConfig,
network_config: NetworkConfiguration,
chain: Arc<BlockChainClient>,
snapshot_service: Arc<SnapshotService>,
private_tx_handler: Option<Arc<PrivateTxHandler>>,
provider: Arc<Provider>,
_log_settings: &LogConfig,
attached_protos: Vec<AttachedProtocol>,
connection_filter: Option<Arc<ConnectionFilter>>,
2018-04-10 12:13:49 +02:00
) -> Result<SyncModules, sync::Error> {
2020-08-05 06:08:03 +02:00
let eth_sync = EthSync::new(
Params {
config,
chain,
provider,
snapshot_service,
private_tx_handler,
network_config,
attached_protos,
},
connection_filter,
)?;
Ok((
eth_sync.clone() as Arc<SyncProvider>,
eth_sync.clone() as Arc<ManageNetwork>,
eth_sync.clone() as Arc<ChainNotify>,
eth_sync.priority_tasks(),
))
2016-07-16 14:24:57 +02:00
}