|
@@ -11,10 +11,15 @@ use crate::prelude::*;
|
|
|
mod timerfd;
|
|
|
pub use self::timerfd::TimerFdBuilder;
|
|
|
mod udp;
|
|
|
-pub use udp::UdpSocketBuilder;
|
|
|
+pub use udp::{UdpSocketBuilder, UdpSocketRef};
|
|
|
mod unix;
|
|
|
-pub use unix::UnixSocketBuilder;
|
|
|
+pub use unix::{UnixSocketBuilder, UnixSocketRef};
|
|
|
|
|
|
+/// This struct is only of interest to those implementing custom [`FdHandler`] instances for their
|
|
|
+/// own applications.
|
|
|
+///
|
|
|
+/// This is a lightweight wrapper around the internal `poll(2)` calls to change what events your
|
|
|
+/// [`FdHandler`] is interested in listening for.
|
|
|
pub struct InterestRegistration {
|
|
|
poll: Rc<RefCell<mio::Poll>>,
|
|
|
token: mio::Token,
|
|
@@ -35,16 +40,35 @@ impl InterestRegistration {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/// A file-descriptor based I/O subsystem. Generally not of interest unless you're implementing a
|
|
|
+/// custom I/O subsystem for your particular application of `fleck`.
|
|
|
pub trait FdHandler {
|
|
|
+ /// Retrieve the [`InterestRegistration`] associated with this `FdHandler`.
|
|
|
fn interest(&self) -> &InterestRegistration;
|
|
|
+ /// The `poll(2)` has indicated that the file descriptor is ready to be read from.
|
|
|
+ ///
|
|
|
+ /// One subtlety of this function is the `rc` parameter, where `rc.as_ref() == self` --- which
|
|
|
+ /// at first seems nonsensical. However, [`Peer`](../peer/struct.Peer.html) instances require a `Rc<FdHandler>`, which
|
|
|
+ /// is not otherwise available to an implementation of this function.
|
|
|
fn ready_read(&self, rc: &Rc<dyn FdHandler>);
|
|
|
+ /// The `poll(2)` has indicated that the file descriptor is ready to be written to. Like
|
|
|
+ /// [`Self::ready_read`], the `rc` parameter is given in case a `Peer` must be constructed in this
|
|
|
+ /// function.
|
|
|
fn ready_write(&self, rc: &Rc<dyn FdHandler>);
|
|
|
+ /// Handle a message that has been dispatched to this `FdHandler` by means of a `Peer`
|
|
|
+ /// reference.
|
|
|
fn dispatch(&self, msg: super::msg::Message);
|
|
|
}
|
|
|
|
|
|
-pub struct HandlerTag;
|
|
|
-pub type NewHandlerChannel = (HandlerTag, Rc<dyn FdHandler>);
|
|
|
+struct HandlerTag;
|
|
|
+type NewHandlerChannel = (HandlerTag, Rc<dyn FdHandler>);
|
|
|
|
|
|
+/// Service that 'handles' all the nitty-gritty details of I/O by farming off into a [`FdHandler`]
|
|
|
+/// instance, such as a `UdpSocket` (see [`UdpSocketBuilder`]) or `TimerFd` (see
|
|
|
+/// [`TimerFdBuilder`]).
|
|
|
+///
|
|
|
+/// Generally, this service will be set up during startup and then not configured past then. One
|
|
|
+/// exception to this might be if you have new peer connection details entered during runtime.
|
|
|
pub struct IOService {
|
|
|
api: Rc<crate::API>,
|
|
|
poll: Rc<RefCell<mio::Poll>>,
|