|
@@ -1,9 +1,15 @@
|
|
|
-use std::{os::fd::AsRawFd, rc::Rc, cell::RefCell, collections::{VecDeque, HashMap}, io::{Read, Write}};
|
|
|
use super::fleck_core;
|
|
|
+use std::{
|
|
|
+ cell::RefCell,
|
|
|
+ collections::VecDeque,
|
|
|
+ io::{Read, Write},
|
|
|
+ os::fd::AsRawFd,
|
|
|
+ rc::Rc,
|
|
|
+};
|
|
|
|
|
|
-use mio::net::{UnixDatagram, UnixListener, UnixStream};
|
|
|
+use mio::net::{UnixListener, UnixStream};
|
|
|
|
|
|
-use super::{IOService, InterestRegistration, FdHandler};
|
|
|
+use super::{FdHandler, IOService, InterestRegistration};
|
|
|
|
|
|
#[derive(Default)]
|
|
|
pub struct UnixSocketBuilder {
|
|
@@ -33,9 +39,7 @@ impl UnixSocketBuilder {
|
|
|
false => UnixSocket::Server(UnixServerSocket::build(io, self.path.unwrap())),
|
|
|
};
|
|
|
|
|
|
- UnixSocketRef {
|
|
|
- sock
|
|
|
- }
|
|
|
+ UnixSocketRef { sock }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -46,9 +50,7 @@ pub struct UnixSocketRef {
|
|
|
impl UnixSocketRef {
|
|
|
pub fn connected_peer(&self) -> fleck_core::Peer {
|
|
|
match &self.sock {
|
|
|
- UnixSocket::Client(client) => {
|
|
|
- client.peer.get().unwrap().clone()
|
|
|
- },
|
|
|
+ UnixSocket::Client(client) => client.peer.get().unwrap().clone(),
|
|
|
UnixSocket::Server(_) => {
|
|
|
panic!("Can't get the connected peer for a UNIX server socket!")
|
|
|
}
|
|
@@ -89,15 +91,19 @@ impl UnixClientSocket {
|
|
|
});
|
|
|
|
|
|
let peer = fleck_core::Peer {
|
|
|
- data: Rc::new(fleck_core::peer::PeerData::new(sock.clone(), fleck_core::peer::PeerAddress::Stream)),
|
|
|
+ data: Rc::new(fleck_core::peer::PeerData::new(
|
|
|
+ sock.clone(),
|
|
|
+ fleck_core::peer::PeerAddress::Stream,
|
|
|
+ )),
|
|
|
};
|
|
|
|
|
|
- sock.peer.set(peer).expect("somehow couldn't initialize the once_cell?");
|
|
|
+ sock.peer
|
|
|
+ .set(peer)
|
|
|
+ .expect("somehow couldn't initialize the once_cell?");
|
|
|
|
|
|
io.api.queue::<super::NewHandlerChannel>(sock.clone());
|
|
|
|
|
|
sock
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -119,9 +125,11 @@ impl FdHandler for UnixClientSocket {
|
|
|
let data = rq.make_contiguous();
|
|
|
let packet_len = u16::from_be_bytes(data[0..2].try_into().unwrap()) as usize;
|
|
|
if data.len() < (packet_len + 2) {
|
|
|
- break
|
|
|
+ break;
|
|
|
}
|
|
|
- if let Ok(mut msg) = bincode::deserialize::<fleck_core::msg::Message>(&data[2..(packet_len + 2)]) {
|
|
|
+ if let Ok(mut msg) =
|
|
|
+ bincode::deserialize::<fleck_core::msg::Message>(&data[2..(packet_len + 2)])
|
|
|
+ {
|
|
|
msg.peer = self.peer.get().cloned();
|
|
|
self.api.queue::<fleck_core::ReceivePacketChannel>(msg);
|
|
|
}
|
|
@@ -134,11 +142,10 @@ impl FdHandler for UnixClientSocket {
|
|
|
|
|
|
while sq.len() > 0 {
|
|
|
let data = sq.make_contiguous();
|
|
|
- if let Ok(bytes) = self.socket.borrow_mut().write(&data) {
|
|
|
+ if let Ok(bytes) = self.socket.borrow_mut().write(data) {
|
|
|
sq.drain(0..bytes);
|
|
|
- }
|
|
|
- else {
|
|
|
- return
|
|
|
+ } else {
|
|
|
+ return;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -163,18 +170,19 @@ pub struct UnixServerSocket {
|
|
|
|
|
|
impl UnixServerSocket {
|
|
|
fn build(io: &IOService, path: String) -> Rc<Self> {
|
|
|
-
|
|
|
match std::fs::remove_file(&path) {
|
|
|
Ok(_) => (),
|
|
|
Err(e) => match e.kind() {
|
|
|
std::io::ErrorKind::PermissionDenied => {
|
|
|
panic!("couldn't remove existing socket file!")
|
|
|
- },
|
|
|
+ }
|
|
|
std::io::ErrorKind::NotFound => {
|
|
|
// this is perfectly okay!
|
|
|
- },
|
|
|
- k => { panic!("Unexpected error removing socket file: {:?}", k) }
|
|
|
- }
|
|
|
+ }
|
|
|
+ k => {
|
|
|
+ panic!("Unexpected error removing socket file: {:?}", k)
|
|
|
+ }
|
|
|
+ },
|
|
|
}
|
|
|
|
|
|
let socket = UnixListener::bind(path).expect("couldn't bind to given path");
|
|
@@ -190,8 +198,6 @@ impl UnixServerSocket {
|
|
|
|
|
|
sock
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
impl FdHandler for UnixServerSocket {
|
|
@@ -205,8 +211,7 @@ impl FdHandler for UnixServerSocket {
|
|
|
if let Err(err) = client {
|
|
|
if err.kind() == std::io::ErrorKind::WouldBlock {
|
|
|
break;
|
|
|
- }
|
|
|
- else {
|
|
|
+ } else {
|
|
|
panic!("Unexpected error occurred while accepting new UNIX socket client");
|
|
|
}
|
|
|
}
|