openethereum/bin/oe/modules.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.9 KiB
Rust
Raw Normal View History

2020-09-22 14:53:52 +02:00
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of OpenEthereum.
2016-07-16 14:24:57 +02:00
2020-09-22 14:53:52 +02:00
// OpenEthereum 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.
2020-09-22 14:53:52 +02:00
// OpenEthereum 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
2020-09-22 14:53:52 +02:00
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
2016-07-16 14:24:57 +02:00
use std::sync::{mpsc, Arc};
use ethcore::{client::BlockChainClient, snapshot::SnapshotService};
use std::collections::BTreeSet;
2020-08-12 12:00:28 +02:00
use sync::{self, ConnectionFilter, NetworkConfiguration, Params, SyncConfig};
use types::BlockNumber;
2017-10-16 18:18:43 +02:00
pub use ethcore::client::ChainNotify;
use ethcore_logger::Config as LogConfig;
2020-09-02 17:43:14 +02:00
pub use sync::{EthSync, ManageNetwork, SyncProvider};
pub type SyncModules = (
2020-07-29 10:36:15 +02:00
Arc<dyn SyncProvider>,
Arc<dyn ManageNetwork>,
Arc<dyn ChainNotify>,
mpsc::Sender<sync::PriorityTask>,
);
pub fn sync(
config: SyncConfig,
network_config: NetworkConfiguration,
2020-07-29 10:36:15 +02:00
chain: Arc<dyn BlockChainClient>,
forks: BTreeSet<BlockNumber>,
2020-07-29 10:36:15 +02:00
snapshot_service: Arc<dyn SnapshotService>,
_log_settings: &LogConfig,
2020-07-29 10:36:15 +02:00
connection_filter: Option<Arc<dyn ConnectionFilter>>,
2018-04-10 12:13:49 +02:00
) -> Result<SyncModules, sync::Error> {
let eth_sync = EthSync::new(
Params {
config,
chain,
forks,
snapshot_service,
network_config,
2017-08-29 14:38:01 +02:00
},
connection_filter,
)?;
2020-08-05 06:08:03 +02:00
Ok((
2020-07-29 10:36:15 +02:00
eth_sync.clone() as Arc<dyn SyncProvider>,
eth_sync.clone() as Arc<dyn ManageNetwork>,
eth_sync.clone() as Arc<dyn ChainNotify>,
eth_sync.priority_tasks(),
))
2016-07-16 14:24:57 +02:00
}