openethereum/parity/modules.rs

43 lines
1.5 KiB
Rust
Raw Normal View History

2016-07-16 14:24:57 +02:00
// Copyright 2015, 2016 Ethcore (UK) Ltd.
// This file is part of Parity.
// Parity 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.
// Parity 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 Parity. If not, see <http://www.gnu.org/licenses/>.
use ethsync::{EthSync, SyncProvider, ManageNetwork, SyncConfig, NetworkConfiguration};
use std::sync::Arc;
use ethcore::client::{ChainNotify, BlockChainClient};
use ethcore;
2016-07-19 09:25:51 +02:00
pub type Modules = (Arc<SyncProvider>, Arc<ManageNetwork>, Arc<ChainNotify>);
2016-07-16 14:24:57 +02:00
#[cfg(feature="ipc")]
2016-07-16 15:51:06 +02:00
pub fn sync(
2016-07-16 14:24:57 +02:00
sync_cfg: SyncConfig,
net_cfg: NetworkConfiguration,
client: Arc<BlockChainClient>)
2016-07-19 09:25:51 +02:00
-> Result<Modules, ethcore::error::Error>
2016-07-16 14:24:57 +02:00
{
}
#[cfg(not(feature="ipc"))]
2016-07-16 15:51:06 +02:00
pub fn sync(
2016-07-16 14:24:57 +02:00
sync_cfg: SyncConfig,
net_cfg: NetworkConfiguration,
client: Arc<BlockChainClient>)
2016-07-19 09:25:51 +02:00
-> Result<Modules, ethcore::error::Error>
2016-07-16 14:24:57 +02:00
{
2016-07-19 09:25:51 +02:00
let eth_sync = try!(EthSync::new(sync_cfg, client, net_cfg).map_err(ethcore::error::Error::Util));
2016-07-16 14:24:57 +02:00
Ok((eth_sync.clone() as Arc<SyncProvider>, eth_sync.clone() as Arc<ManageNetwork>, eth_sync.clone() as Arc<ChainNotify>))
}