2016-02-05 13:40:41 +01: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/>.
|
|
|
|
|
2016-01-29 15:56:06 +01:00
|
|
|
#![warn(missing_docs)]
|
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
#![feature(augmented_assignments)]
|
|
|
|
//! Blockchain sync module
|
|
|
|
//! Implements ethereum protocol version 63 as specified here:
|
|
|
|
//! https://github.com/ethereum/wiki/wiki/Ethereum-Wire-Protocol
|
|
|
|
//!
|
|
|
|
//! Usage example:
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! extern crate ethcore_util as util;
|
|
|
|
//! extern crate ethcore;
|
|
|
|
//! extern crate ethsync;
|
|
|
|
//! use std::env;
|
|
|
|
//! use std::sync::Arc;
|
|
|
|
//! use util::network::{NetworkService, NetworkConfiguration};
|
|
|
|
//! use ethcore::client::Client;
|
|
|
|
//! use ethsync::EthSync;
|
|
|
|
//! use ethcore::ethereum;
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! let mut service = NetworkService::start(NetworkConfiguration::new()).unwrap();
|
|
|
|
//! let dir = env::temp_dir();
|
|
|
|
//! let client = Client::new(ethereum::new_frontier(), &dir, service.io().channel()).unwrap();
|
|
|
|
//! EthSync::register(&mut service, client);
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate ethcore_util as util;
|
|
|
|
extern crate ethcore;
|
|
|
|
extern crate env_logger;
|
2016-02-02 14:54:46 +01:00
|
|
|
extern crate time;
|
2016-02-05 18:34:08 +01:00
|
|
|
extern crate rand;
|
2016-01-09 18:40:13 +01:00
|
|
|
|
2016-01-14 19:03:48 +01:00
|
|
|
use std::ops::*;
|
|
|
|
use std::sync::*;
|
2016-01-29 15:56:06 +01:00
|
|
|
use ethcore::client::Client;
|
2016-01-21 23:33:52 +01:00
|
|
|
use util::network::{NetworkProtocolHandler, NetworkService, NetworkContext, PeerId};
|
2016-02-02 14:54:46 +01:00
|
|
|
use util::io::TimerToken;
|
2016-01-29 15:56:06 +01:00
|
|
|
use chain::ChainSync;
|
|
|
|
use ethcore::service::SyncMessage;
|
|
|
|
use io::NetSyncIo;
|
2015-12-22 22:19:50 +01:00
|
|
|
|
|
|
|
mod chain;
|
2016-01-09 18:40:13 +01:00
|
|
|
mod io;
|
2015-12-25 14:55:55 +01:00
|
|
|
mod range_collection;
|
2015-12-22 22:19:50 +01:00
|
|
|
|
2015-12-25 14:55:55 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
2015-12-22 22:19:50 +01:00
|
|
|
|
2016-01-09 18:40:13 +01:00
|
|
|
/// Ethereum network protocol handler
|
2015-12-25 14:55:55 +01:00
|
|
|
pub struct EthSync {
|
2016-01-09 18:40:13 +01:00
|
|
|
/// Shared blockchain client. TODO: this should evetually become an IPC endpoint
|
2016-01-21 23:33:52 +01:00
|
|
|
chain: Arc<Client>,
|
2016-01-09 18:40:13 +01:00
|
|
|
/// Sync strategy
|
2016-01-21 16:48:37 +01:00
|
|
|
sync: RwLock<ChainSync>
|
2015-12-22 22:19:50 +01:00
|
|
|
}
|
|
|
|
|
2015-12-25 14:55:55 +01:00
|
|
|
pub use self::chain::SyncStatus;
|
|
|
|
|
|
|
|
impl EthSync {
|
2016-01-09 18:40:13 +01:00
|
|
|
/// Creates and register protocol with the network service
|
2016-01-22 04:54:38 +01:00
|
|
|
pub fn register(service: &mut NetworkService<SyncMessage>, chain: Arc<Client>) -> Arc<EthSync> {
|
2016-01-21 16:48:37 +01:00
|
|
|
let sync = Arc::new(EthSync {
|
2016-01-07 16:08:12 +01:00
|
|
|
chain: chain,
|
2016-01-21 16:48:37 +01:00
|
|
|
sync: RwLock::new(ChainSync::new()),
|
2016-01-09 18:40:13 +01:00
|
|
|
});
|
2016-01-21 16:48:37 +01:00
|
|
|
service.register_protocol(sync.clone(), "eth", &[62u8, 63u8]).expect("Error registering eth protocol handler");
|
2016-01-22 04:54:38 +01:00
|
|
|
sync
|
2015-12-25 14:55:55 +01:00
|
|
|
}
|
|
|
|
|
2016-01-09 18:40:13 +01:00
|
|
|
/// Get sync status
|
2015-12-25 14:55:55 +01:00
|
|
|
pub fn status(&self) -> SyncStatus {
|
2016-01-21 16:48:37 +01:00
|
|
|
self.sync.read().unwrap().status()
|
2015-12-25 14:55:55 +01:00
|
|
|
}
|
|
|
|
|
2016-01-09 18:40:13 +01:00
|
|
|
/// Stop sync
|
2016-01-13 15:10:48 +01:00
|
|
|
pub fn stop(&mut self, io: &mut NetworkContext<SyncMessage>) {
|
2016-01-21 23:33:52 +01:00
|
|
|
self.sync.write().unwrap().abort(&mut NetSyncIo::new(io, self.chain.deref()));
|
2015-12-25 14:55:55 +01:00
|
|
|
}
|
|
|
|
|
2016-01-09 18:40:13 +01:00
|
|
|
/// Restart sync
|
2016-01-13 15:10:48 +01:00
|
|
|
pub fn restart(&mut self, io: &mut NetworkContext<SyncMessage>) {
|
2016-01-21 23:33:52 +01:00
|
|
|
self.sync.write().unwrap().restart(&mut NetSyncIo::new(io, self.chain.deref()));
|
2015-12-25 14:55:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-13 15:10:48 +01:00
|
|
|
impl NetworkProtocolHandler<SyncMessage> for EthSync {
|
2016-02-02 14:54:46 +01:00
|
|
|
fn initialize(&self, io: &NetworkContext<SyncMessage>) {
|
|
|
|
io.register_timer(0, 1000).expect("Error registering sync timer");
|
2015-12-22 22:19:50 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 16:48:37 +01:00
|
|
|
fn read(&self, io: &NetworkContext<SyncMessage>, peer: &PeerId, packet_id: u8, data: &[u8]) {
|
2016-01-21 23:33:52 +01:00
|
|
|
self.sync.write().unwrap().on_packet(&mut NetSyncIo::new(io, self.chain.deref()) , *peer, packet_id, data);
|
2015-12-22 22:19:50 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 16:48:37 +01:00
|
|
|
fn connected(&self, io: &NetworkContext<SyncMessage>, peer: &PeerId) {
|
2016-01-21 23:33:52 +01:00
|
|
|
self.sync.write().unwrap().on_peer_connected(&mut NetSyncIo::new(io, self.chain.deref()), *peer);
|
2015-12-22 22:19:50 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 16:48:37 +01:00
|
|
|
fn disconnected(&self, io: &NetworkContext<SyncMessage>, peer: &PeerId) {
|
2016-01-21 23:33:52 +01:00
|
|
|
self.sync.write().unwrap().on_peer_aborting(&mut NetSyncIo::new(io, self.chain.deref()), *peer);
|
2015-12-22 22:19:50 +01:00
|
|
|
}
|
2016-02-02 14:54:46 +01:00
|
|
|
|
|
|
|
fn timeout(&self, io: &NetworkContext<SyncMessage>, _timer: TimerToken) {
|
|
|
|
self.sync.write().unwrap().maintain_peers(&mut NetSyncIo::new(io, self.chain.deref()));
|
2016-02-04 02:28:16 +01:00
|
|
|
self.sync.write().unwrap().maintain_sync(&mut NetSyncIo::new(io, self.chain.deref()));
|
2016-02-02 14:54:46 +01:00
|
|
|
}
|
2016-02-07 01:00:43 +01:00
|
|
|
|
|
|
|
fn message(&self, io: &NetworkContext<SyncMessage>, message: &SyncMessage) {
|
|
|
|
if let SyncMessage::BlockVerified = *message {
|
|
|
|
self.sync.write().unwrap().chain_blocks_verified(&mut NetSyncIo::new(io, self.chain.deref()));
|
|
|
|
}
|
|
|
|
}
|
2016-02-04 19:30:31 +01:00
|
|
|
}
|