openethereum/util/src/network/mod.rs

94 lines
3.1 KiB
Rust
Raw Normal View History

2016-02-01 15:22:42 +01:00
//! Network and general IO module.
//!
//! Example usage for craeting a network service and adding an IO handler:
//!
//! ```rust
//! extern crate ethcore_util as util;
//! use util::*;
//!
//! struct MyHandler;
//!
//! #[derive(Clone)]
//! struct MyMessage {
//! data: u32
//! }
//!
//! impl NetworkProtocolHandler<MyMessage> for MyHandler {
//! fn initialize(&self, io: &NetworkContext<MyMessage>) {
//! io.register_timer(0, 1000);
//! }
//!
//! fn read(&self, io: &NetworkContext<MyMessage>, peer: &PeerId, packet_id: u8, data: &[u8]) {
//! println!("Received {} ({} bytes) from {}", packet_id, data.len(), peer);
//! }
//!
//! fn connected(&self, io: &NetworkContext<MyMessage>, peer: &PeerId) {
//! println!("Connected {}", peer);
//! }
//!
//! fn disconnected(&self, io: &NetworkContext<MyMessage>, peer: &PeerId) {
//! println!("Disconnected {}", peer);
//! }
//!
//! fn timeout(&self, io: &NetworkContext<MyMessage>, timer: TimerToken) {
//! println!("Timeout {}", timer);
//! }
//!
//! fn message(&self, io: &NetworkContext<MyMessage>, message: &MyMessage) {
//! println!("Message {}", message.data);
//! }
//! }
//!
//! fn main () {
//! let mut service = NetworkService::<MyMessage>::start(NetworkConfiguration::new()).expect("Error creating network service");
//! service.register_protocol(Arc::new(MyHandler), "myproto", &[1u8]);
//!
//! // Wait for quit condition
//! // ...
//! // Drop the service
//! }
//! ```
2015-12-02 12:07:46 +01:00
mod host;
mod connection;
mod handshake;
mod session;
mod discovery;
2015-12-17 11:42:30 +01:00
mod service;
mod error;
mod node;
2016-01-24 18:53:54 +01:00
mod stats;
#[cfg(test)]
mod tests;
2015-12-17 11:42:30 +01:00
2016-01-21 16:48:37 +01:00
pub use network::host::PeerId;
pub use network::host::PacketId;
pub use network::host::NetworkContext;
pub use network::service::NetworkService;
pub use network::host::NetworkIoMessage;
2016-01-13 23:13:57 +01:00
pub use network::host::NetworkIoMessage::User as UserMessage;
2016-01-21 16:48:37 +01:00
pub use network::error::NetworkError;
2016-01-23 02:36:58 +01:00
pub use network::host::NetworkConfiguration;
2016-01-24 18:53:54 +01:00
pub use network::stats::NetworkStats;
2016-01-21 16:48:37 +01:00
use io::TimerToken;
2015-12-17 11:42:30 +01:00
2015-12-30 12:23:36 +01:00
/// Network IO protocol handler. This needs to be implemented for each new subprotocol.
/// All the handler function are called from within IO event loop.
/// `Message` is the type for message data.
2016-01-21 16:48:37 +01:00
pub trait NetworkProtocolHandler<Message>: Sync + Send where Message: Send + Sync + Clone {
2016-01-13 13:56:48 +01:00
/// Initialize the handler
2016-01-21 16:48:37 +01:00
fn initialize(&self, _io: &NetworkContext<Message>) {}
2015-12-30 12:23:36 +01:00
/// Called when new network packet received.
2016-01-21 16:48:37 +01:00
fn read(&self, io: &NetworkContext<Message>, peer: &PeerId, packet_id: u8, data: &[u8]);
2015-12-30 12:23:36 +01:00
/// Called when new peer is connected. Only called when peer supports the same protocol.
2016-01-21 16:48:37 +01:00
fn connected(&self, io: &NetworkContext<Message>, peer: &PeerId);
2015-12-30 12:23:36 +01:00
/// Called when a previously connected peer disconnects.
2016-01-21 16:48:37 +01:00
fn disconnected(&self, io: &NetworkContext<Message>, peer: &PeerId);
/// Timer function called after a timeout created with `NetworkContext::timeout`.
2016-01-21 16:48:37 +01:00
fn timeout(&self, _io: &NetworkContext<Message>, _timer: TimerToken) {}
/// Called when a broadcasted message is received. The message can only be sent from a different IO handler.
2016-01-21 16:48:37 +01:00
fn message(&self, _io: &NetworkContext<Message>, _message: &Message) {}
2015-12-02 12:07:46 +01:00
}
2015-12-17 11:42:30 +01:00