|
@@ -1,4 +1,9 @@
|
|
|
-use std::{rc::Rc, cell::{RefCell, Cell}, os::unix::prelude::{RawFd, AsRawFd}, collections::{HashMap, VecDeque}};
|
|
|
+use std::{
|
|
|
+ cell::{Cell, RefCell},
|
|
|
+ collections::{HashMap, VecDeque},
|
|
|
+ os::unix::prelude::{AsRawFd, RawFd},
|
|
|
+ rc::Rc,
|
|
|
+};
|
|
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
@@ -12,11 +17,11 @@ pub struct InterestRegistration {
|
|
|
impl InterestRegistration {
|
|
|
pub fn update_interest(&self, to: mio::Interest) {
|
|
|
if self.interest.get() != to {
|
|
|
- self.poll.borrow().registry().reregister(
|
|
|
- &mut mio::unix::SourceFd(&self.fd),
|
|
|
- self.token,
|
|
|
- to
|
|
|
- ).expect("couldn't update FD interest");
|
|
|
+ self.poll
|
|
|
+ .borrow()
|
|
|
+ .registry()
|
|
|
+ .reregister(&mut mio::unix::SourceFd(&self.fd), self.token, to)
|
|
|
+ .expect("couldn't update FD interest");
|
|
|
self.interest.set(to);
|
|
|
}
|
|
|
}
|
|
@@ -37,7 +42,9 @@ pub struct IOService {
|
|
|
impl Default for IOService {
|
|
|
fn default() -> Self {
|
|
|
Self {
|
|
|
- poll: Rc::new(RefCell::new(mio::Poll::new().expect("couldn't create poll?"))),
|
|
|
+ poll: Rc::new(RefCell::new(
|
|
|
+ mio::Poll::new().expect("couldn't create poll?"),
|
|
|
+ )),
|
|
|
next_token: Cell::new(mio::Token(1)),
|
|
|
handlers: Default::default(),
|
|
|
}
|
|
@@ -60,11 +67,15 @@ impl IOService {
|
|
|
let token = self.next_token.get();
|
|
|
self.next_token.set(mio::Token(token.0 + 1));
|
|
|
|
|
|
- self.poll.borrow().registry().register(
|
|
|
- &mut mio::unix::SourceFd(&fd),
|
|
|
- token,
|
|
|
- mio::Interest::READABLE,
|
|
|
- ).expect("couldn't register initial readable interest?");
|
|
|
+ self.poll
|
|
|
+ .borrow()
|
|
|
+ .registry()
|
|
|
+ .register(
|
|
|
+ &mut mio::unix::SourceFd(&fd),
|
|
|
+ token,
|
|
|
+ mio::Interest::READABLE,
|
|
|
+ )
|
|
|
+ .expect("couldn't register initial readable interest?");
|
|
|
|
|
|
InterestRegistration {
|
|
|
poll: self.poll.clone(),
|
|
@@ -115,18 +126,22 @@ impl UdpSocketBuilder {
|
|
|
}
|
|
|
|
|
|
pub fn build(self, io: &IOService) {
|
|
|
- let socket = mio::net::UdpSocket::bind(self.bind.expect("no bind address given to UDP socket!")).expect("couldn't bind UDP socket");
|
|
|
+ let socket =
|
|
|
+ mio::net::UdpSocket::bind(self.bind.expect("no bind address given to UDP socket!"))
|
|
|
+ .expect("couldn't bind UDP socket");
|
|
|
let interest = io.register_interest(socket.as_raw_fd());
|
|
|
|
|
|
for mcast in self.multicast {
|
|
|
use std::net::IpAddr;
|
|
|
match (mcast.0, mcast.1) {
|
|
|
(IpAddr::V4(group), IpAddr::V4(iface)) => {
|
|
|
- socket.join_multicast_v4(&group, &iface).expect("couldn't join multicast group");
|
|
|
- },
|
|
|
+ socket
|
|
|
+ .join_multicast_v4(&group, &iface)
|
|
|
+ .expect("couldn't join multicast group");
|
|
|
+ }
|
|
|
(IpAddr::V6(_group), IpAddr::V6(_iface)) => {
|
|
|
todo!()
|
|
|
- },
|
|
|
+ }
|
|
|
_ => panic!("Multicast specification mixes ipv4 and ipv6 addresses!"),
|
|
|
}
|
|
|
}
|
|
@@ -153,13 +168,12 @@ impl UdpSocket {
|
|
|
fn peer_for(&self, rc: &Rc<dyn FdHandler>, addr: &std::net::SocketAddr) -> super::peer::Peer {
|
|
|
if let Some(peer) = self.peers.borrow().get(addr) {
|
|
|
peer.clone()
|
|
|
- }
|
|
|
- else {
|
|
|
+ } else {
|
|
|
let peer = super::peer::Peer {
|
|
|
data: Rc::new(super::peer::PeerData {
|
|
|
address_info: super::peer::PeerAddress::Udp(*addr),
|
|
|
io: rc.clone(),
|
|
|
- })
|
|
|
+ }),
|
|
|
};
|
|
|
self.peers.borrow_mut().insert(*addr, peer.clone());
|
|
|
peer
|
|
@@ -185,11 +199,14 @@ impl FdHandler for UdpSocket {
|
|
|
|
|
|
if let Ok(len) = self.socket.send_to(&packet.1, packet.0) {
|
|
|
if len != packet.1.len() {
|
|
|
- log::error!("Sent packet truncated to {} of {} bytes", len, packet.1.len());
|
|
|
+ log::error!(
|
|
|
+ "Sent packet truncated to {} of {} bytes",
|
|
|
+ len,
|
|
|
+ packet.1.len()
|
|
|
+ );
|
|
|
}
|
|
|
- }
|
|
|
- else {
|
|
|
- return
|
|
|
+ } else {
|
|
|
+ return;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -200,11 +217,13 @@ impl FdHandler for UdpSocket {
|
|
|
let peer = msg.peer.clone().unwrap(); // if we got this far, the peer points to us
|
|
|
|
|
|
if let super::peer::PeerAddress::Udp(addr) = peer.data.address_info {
|
|
|
- self.queue.borrow_mut().push_back(
|
|
|
- (addr, bincode::serialize(&msg).expect("couldn't serialize message?")));
|
|
|
- self.interest.update_interest(mio::Interest::READABLE.add(mio::Interest::WRITABLE));
|
|
|
- }
|
|
|
- else {
|
|
|
+ self.queue.borrow_mut().push_back((
|
|
|
+ addr,
|
|
|
+ bincode::serialize(&msg).expect("couldn't serialize message?"),
|
|
|
+ ));
|
|
|
+ self.interest
|
|
|
+ .update_interest(mio::Interest::READABLE.add(mio::Interest::WRITABLE));
|
|
|
+ } else {
|
|
|
log::error!("packet dispatched to UdpSocket without UDP address!");
|
|
|
}
|
|
|
}
|
|
@@ -230,10 +249,15 @@ impl TimerFdBuilder {
|
|
|
pub fn build(self, io: &IOService) {
|
|
|
let mut timer = timerfd::TimerFd::new().expect("couldn't create new timerfd?");
|
|
|
|
|
|
- timer.set_state(timerfd::TimerState::Periodic {
|
|
|
- current: std::time::Duration::from_millis(1),
|
|
|
- interval: self.interval.expect("building timerfd with no interval set?"),
|
|
|
- }, timerfd::SetTimeFlags::Default);
|
|
|
+ timer.set_state(
|
|
|
+ timerfd::TimerState::Periodic {
|
|
|
+ current: std::time::Duration::from_millis(1),
|
|
|
+ interval: self
|
|
|
+ .interval
|
|
|
+ .expect("building timerfd with no interval set?"),
|
|
|
+ },
|
|
|
+ timerfd::SetTimeFlags::Default,
|
|
|
+ );
|
|
|
|
|
|
let interest = io.register_interest(timer.as_raw_fd());
|
|
|
|