2020-01-17 14:27:28 +01:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
2019-01-07 11:33:07 +01:00
|
|
|
// This file is part of Parity Ethereum.
|
2016-07-16 14:24:57 +02:00
|
|
|
|
2019-01-07 11:33:07 +01: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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-07-16 14:24:57 +02:00
|
|
|
|
2020-02-19 14:42:52 +01:00
|
|
|
use std::{collections::BTreeSet, sync::{Arc, mpsc}};
|
2016-12-08 23:21:47 +01:00
|
|
|
|
2019-09-03 11:29:25 +02:00
|
|
|
use client_traits::{BlockChainClient, ChainNotify};
|
2020-02-19 14:42:52 +01:00
|
|
|
use types::BlockNumber;
|
2019-07-12 14:15:30 +02:00
|
|
|
use sync::{self, SyncConfig, NetworkConfiguration, Params, ConnectionFilter};
|
2019-09-03 11:29:25 +02:00
|
|
|
use snapshot::SnapshotService;
|
2019-08-16 14:45:52 +02:00
|
|
|
use ethcore_private_tx::PrivateStateDB;
|
2016-12-08 23:21:47 +01:00
|
|
|
use light::Provider;
|
2019-04-02 17:13:55 +02:00
|
|
|
use parity_runtime::Executor;
|
2016-12-08 23:21:47 +01:00
|
|
|
|
2018-04-10 12:13:49 +02:00
|
|
|
pub use sync::{EthSync, SyncProvider, ManageNetwork, PrivateTxHandler};
|
2016-12-08 23:21:47 +01:00
|
|
|
use ethcore_logger::Config as LogConfig;
|
|
|
|
|
2018-11-28 11:30:05 +01:00
|
|
|
pub type SyncModules = (
|
2019-08-27 17:29:33 +02:00
|
|
|
Arc<dyn SyncProvider>,
|
|
|
|
Arc<dyn ManageNetwork>,
|
|
|
|
Arc<dyn ChainNotify>,
|
2018-11-28 11:30:05 +01:00
|
|
|
mpsc::Sender<sync::PriorityTask>,
|
|
|
|
);
|
2016-07-20 18:13:56 +02:00
|
|
|
|
2017-01-25 11:03:36 +01:00
|
|
|
pub fn sync(
|
2018-11-28 11:30:05 +01:00
|
|
|
config: SyncConfig,
|
2019-04-02 17:13:55 +02:00
|
|
|
executor: Executor,
|
2018-11-28 11:30:05 +01:00
|
|
|
network_config: NetworkConfiguration,
|
2019-08-27 17:29:33 +02:00
|
|
|
chain: Arc<dyn BlockChainClient>,
|
2020-02-19 14:42:52 +01:00
|
|
|
forks: BTreeSet<BlockNumber>,
|
2019-08-27 17:29:33 +02:00
|
|
|
snapshot_service: Arc<dyn SnapshotService>,
|
|
|
|
private_tx_handler: Option<Arc<dyn PrivateTxHandler>>,
|
2019-08-16 14:45:52 +02:00
|
|
|
private_state: Option<Arc<PrivateStateDB>>,
|
2019-08-27 17:29:33 +02:00
|
|
|
provider: Arc<dyn Provider>,
|
2017-01-25 11:03:36 +01:00
|
|
|
_log_settings: &LogConfig,
|
2019-08-27 17:29:33 +02:00
|
|
|
connection_filter: Option<Arc<dyn ConnectionFilter>>,
|
2018-04-10 12:13:49 +02:00
|
|
|
) -> Result<SyncModules, sync::Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let eth_sync = EthSync::new(Params {
|
2018-11-28 11:30:05 +01:00
|
|
|
config,
|
2019-04-02 17:13:55 +02:00
|
|
|
executor,
|
2018-11-28 11:30:05 +01:00
|
|
|
chain,
|
2020-02-19 14:42:52 +01:00
|
|
|
forks,
|
2018-11-28 11:30:05 +01:00
|
|
|
provider,
|
|
|
|
snapshot_service,
|
2018-04-09 16:14:33 +02:00
|
|
|
private_tx_handler,
|
2019-08-16 14:45:52 +02:00
|
|
|
private_state,
|
2018-11-28 11:30:05 +01:00
|
|
|
network_config,
|
2017-08-29 14:38:01 +02:00
|
|
|
},
|
|
|
|
connection_filter)?;
|
2016-12-08 23:21:47 +01:00
|
|
|
|
2018-11-28 11:30:05 +01:00
|
|
|
Ok((
|
2019-08-27 17:29:33 +02:00
|
|
|
eth_sync.clone() as Arc<dyn SyncProvider>,
|
|
|
|
eth_sync.clone() as Arc<dyn ManageNetwork>,
|
|
|
|
eth_sync.clone() as Arc<dyn ChainNotify>,
|
2018-11-28 11:30:05 +01:00
|
|
|
eth_sync.priority_tasks()
|
|
|
|
))
|
2016-07-16 14:24:57 +02:00
|
|
|
}
|