Expand sync works
This commit is contained in:
parent
c33d3689a7
commit
3399b02393
@ -6,6 +6,7 @@ extern crate network_libp2p;
|
||||
pub mod messages;
|
||||
pub mod network;
|
||||
pub mod sync_future;
|
||||
pub mod wire_protocol;
|
||||
|
||||
pub use self::sync_future::run_sync_future;
|
||||
|
||||
|
@ -8,10 +8,16 @@ use super::network_libp2p::message::{
|
||||
NetworkEventType,
|
||||
};
|
||||
|
||||
use super::wire_protocol::{ WireMessageType, message_type };
|
||||
|
||||
use super::futures::sync::mpsc::{
|
||||
UnboundedSender,
|
||||
};
|
||||
|
||||
/// Accept a network event and perform all required processing.
|
||||
///
|
||||
/// This function should be called whenever an underlying network
|
||||
/// (e.g., libp2p) has an event to push up to the sync process.
|
||||
pub fn handle_network_event(
|
||||
event: NetworkEvent,
|
||||
db: Arc<RwLock<DB>>,
|
||||
@ -19,26 +25,42 @@ pub fn handle_network_event(
|
||||
log: Logger)
|
||||
-> Result<(), ()>
|
||||
{
|
||||
debug!(&log, "";
|
||||
"network_event" => format!("{:?}", &event));
|
||||
match event.event {
|
||||
NetworkEventType::PeerConnect => Ok(()),
|
||||
NetworkEventType::PeerDrop => Ok(()),
|
||||
NetworkEventType::Message => handle_network_message(
|
||||
event.data,
|
||||
db,
|
||||
network_tx,
|
||||
log
|
||||
)
|
||||
NetworkEventType::Message => {
|
||||
if let Some(data) = event.data {
|
||||
handle_network_message(
|
||||
data,
|
||||
db,
|
||||
network_tx,
|
||||
log)
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Accept a message from the network and perform all required
|
||||
/// processing.
|
||||
///
|
||||
/// This function should be called whenever a peer from a network
|
||||
/// (e.g., libp2p) has sent a message to us.
|
||||
fn handle_network_message(
|
||||
message: Option<Vec<u8>>,
|
||||
message: Vec<u8>,
|
||||
_db: Arc<RwLock<DB>>,
|
||||
_network_tx: UnboundedSender<OutgoingMessage>,
|
||||
log: Logger)
|
||||
_log: Logger)
|
||||
-> Result<(), ()>
|
||||
{
|
||||
debug!(&log, "";
|
||||
"network_msg" => format!("{:?}", message));
|
||||
Ok(())
|
||||
match message_type(&message) {
|
||||
Some(WireMessageType::Blocks) => {
|
||||
// Do something with inbound blocks.
|
||||
Ok(())
|
||||
}
|
||||
_ => Ok(())
|
||||
}
|
||||
}
|
||||
|
@ -21,17 +21,17 @@ type SyncReceiver = UnboundedReceiver<Vec<u8>>;
|
||||
|
||||
/// Start a syncing tokio future.
|
||||
///
|
||||
/// This is effectively a stub function being
|
||||
/// used to test network functionality.
|
||||
///
|
||||
/// Expect a full re-write.
|
||||
/// Uses green-threading to process messages
|
||||
/// from the network and the RPC and update
|
||||
/// the state.
|
||||
pub fn run_sync_future(
|
||||
db: Arc<RwLock<DB>>,
|
||||
network_tx: NetworkSender,
|
||||
network_rx: NetworkReceiver,
|
||||
_sync_tx: SyncSender,
|
||||
_sync_rx: SyncReceiver,
|
||||
log: Logger) {
|
||||
log: Logger)
|
||||
{
|
||||
let network_future = {
|
||||
network_rx
|
||||
.for_each(move |event| {
|
||||
@ -44,9 +44,5 @@ pub fn run_sync_future(
|
||||
.map_err(|_| panic!("rx failed"))
|
||||
};
|
||||
|
||||
/*
|
||||
* This is an unfinished stub function.
|
||||
*/
|
||||
|
||||
tokio::run(network_future);
|
||||
}
|
||||
|
24
lighthouse/sync/wire_protocol.rs
Normal file
24
lighthouse/sync/wire_protocol.rs
Normal file
@ -0,0 +1,24 @@
|
||||
pub enum WireMessageType {
|
||||
Status,
|
||||
NewBlockHashes,
|
||||
GetBlockHashes,
|
||||
BlockHashes,
|
||||
GetBlocks,
|
||||
Blocks,
|
||||
NewBlock,
|
||||
}
|
||||
|
||||
|
||||
/// Determines the message type of some given
|
||||
/// message.
|
||||
///
|
||||
/// Does not check the validity of the message data,
|
||||
/// it just reads the first byte.
|
||||
pub fn message_type(message: &Vec<u8>)
|
||||
-> Option<WireMessageType>
|
||||
{
|
||||
match message.get(0) {
|
||||
Some(0x06) => Some(WireMessageType::Blocks),
|
||||
_ => None
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user