radicle-heartwood-lfs/radicle-node/src/service/reactor.rs

186 lines
5.3 KiB
Rust

use std::collections::{HashMap, VecDeque};
use std::mem;
use log::*;
use crate::prelude::*;
use crate::service::session::Session;
use crate::storage::Namespaces;
use super::message::{Announcement, AnnouncementMessage};
/// Output of a state transition.
#[derive(Debug)]
pub enum Io {
/// There are some messages ready to be sent to a peer.
Write(NodeId, Vec<Message>),
/// Connect to a peer.
Connect(NodeId, Address),
/// Disconnect from a peer.
Disconnect(NodeId, DisconnectReason),
/// Fetch repository data from a peer.
Fetch(Fetch),
/// Ask for a wakeup in a specified amount of time.
Wakeup(LocalDuration),
/// Emit an event.
Event(Event),
}
/// Fetch job sent to worker thread.
#[derive(Debug, Clone)]
pub struct Fetch {
/// Repo to fetch.
pub rid: Id,
/// Namespaces to fetch.
pub namespaces: Namespaces,
/// Remote peer we are interacting with.
pub remote: NodeId,
/// Indicates whether the fetch request was initiated by us.
pub initiated: bool,
}
/// Interface to the network reactor.
#[derive(Debug, Default)]
pub struct Reactor {
/// Outgoing I/O queue.
io: VecDeque<Io>,
/// Message outbox for each node.
/// If messages can't be sent to a node immediately, they are stored in the outbox.
/// This can happen if for eg. a fetch is ongoing with that node.
outbox: HashMap<NodeId, Vec<Message>>,
}
impl Reactor {
/// Emit an event.
pub fn event(&mut self, event: Event) {
self.io.push_back(Io::Event(event));
}
/// Connect to a peer.
pub fn connect(&mut self, id: NodeId, addr: Address) {
self.io.push_back(Io::Connect(id, addr));
}
/// Disconnect a peer.
pub fn disconnect(&mut self, id: NodeId, reason: DisconnectReason) {
self.io.push_back(Io::Disconnect(id, reason));
}
pub fn write(&mut self, remote: &Session, msg: Message) {
if remote.is_gossip_allowed() {
debug!(target: "service", "Write {:?} to {}", &msg, remote);
self.io.push_back(Io::Write(remote.id, vec![msg]));
} else {
debug!(target: "service", "Queue {:?} for {}", &msg, remote);
self.outbox.entry(remote.id).or_default().push(msg);
}
}
pub fn write_all(&mut self, remote: &Session, msgs: impl IntoIterator<Item = Message>) {
let msgs = msgs.into_iter().collect::<Vec<_>>();
let is_gossip_allowed = remote.is_gossip_allowed();
for (ix, msg) in msgs.iter().enumerate() {
if is_gossip_allowed {
debug!(
target: "service",
"Write {:?} to {} ({}/{})",
msg,
remote,
ix + 1,
msgs.len()
);
} else {
debug!(
target: "service",
"Queue {:?} for {} ({}/{})",
msg,
remote,
ix + 1,
msgs.len()
);
}
}
if is_gossip_allowed {
self.io.push_back(Io::Write(remote.id, msgs));
} else {
self.outbox.entry(remote.id).or_default().extend(msgs);
}
}
pub fn drain(&mut self, remote: &Session) {
if let Some(outbox) = self.outbox.get_mut(&remote.id) {
debug!(target: "service", "Draining outbox for session {} ({} message(s))", remote.id, outbox.len());
let msgs = mem::take(outbox);
self.write_all(remote, msgs);
}
}
pub fn wakeup(&mut self, after: LocalDuration) {
self.io.push_back(Io::Wakeup(after));
}
pub fn fetch(
&mut self,
remote: &mut Session,
rid: Id,
namespaces: Namespaces,
initiated: bool,
) {
// Transition the session state machine to "fetching".
remote.to_fetching(rid);
self.io.push_back(Io::Fetch(Fetch {
rid,
namespaces,
remote: remote.id,
initiated,
}));
}
/// Broadcast a message to a list of peers.
pub fn broadcast<'a>(
&mut self,
msg: impl Into<Message>,
peers: impl IntoIterator<Item = &'a Session>,
) {
let msg = msg.into();
for peer in peers {
self.write(peer, msg.clone());
}
}
/// Relay a message to interested peers.
pub fn relay<'a>(&mut self, ann: Announcement, peers: impl IntoIterator<Item = &'a Session>) {
if let AnnouncementMessage::Refs(msg) = &ann.message {
let id = msg.rid;
let peers = peers.into_iter().filter(|p| {
if let Some(subscribe) = &p.subscribe {
subscribe.filter.contains(&id)
} else {
// If the peer did not send us a `subscribe` message, we don'the
// relay any messages to them.
false
}
});
self.broadcast(ann, peers);
} else {
self.broadcast(ann, peers);
}
}
#[cfg(any(test, feature = "test"))]
pub(crate) fn outbox(&mut self) -> &mut VecDeque<Io> {
&mut self.io
}
}
impl Iterator for Reactor {
type Item = Io;
fn next(&mut self) -> Option<Self::Item> {
self.io.pop_front()
}
}