|
@@ -10,8 +10,8 @@ use crate::socket::TcpState;
|
|
|
/// The only reason this struct is public is to allow the socket set storage
|
|
|
/// to be allocated externally.
|
|
|
#[derive(Debug)]
|
|
|
-pub struct Item<'a, 'b: 'a> {
|
|
|
- socket: Socket<'a, 'b>,
|
|
|
+pub struct Item<'a> {
|
|
|
+ socket: Socket<'a>,
|
|
|
refs: usize
|
|
|
}
|
|
|
|
|
@@ -27,16 +27,16 @@ impl fmt::Display for Handle {
|
|
|
|
|
|
/// An extensible set of sockets.
|
|
|
///
|
|
|
-/// The lifetimes `'b` and `'c` are used when storing a `Socket<'b, 'c>`.
|
|
|
+/// The lifetime `'b` is used when storing a `Socket<'b>`.
|
|
|
#[derive(Debug)]
|
|
|
-pub struct Set<'a, 'b: 'a, 'c: 'a + 'b> {
|
|
|
- sockets: ManagedSlice<'a, Option<Item<'b, 'c>>>
|
|
|
+pub struct Set<'a, 'b: 'a> {
|
|
|
+ sockets: ManagedSlice<'a, Option<Item<'b>>>
|
|
|
}
|
|
|
|
|
|
-impl<'a, 'b: 'a, 'c: 'a + 'b> Set<'a, 'b, 'c> {
|
|
|
+impl<'a, 'b: 'a> Set<'a, 'b> {
|
|
|
/// Create a socket set using the provided storage.
|
|
|
- pub fn new<SocketsT>(sockets: SocketsT) -> Set<'a, 'b, 'c>
|
|
|
- where SocketsT: Into<ManagedSlice<'a, Option<Item<'b, 'c>>>> {
|
|
|
+ pub fn new<SocketsT>(sockets: SocketsT) -> Set<'a, 'b>
|
|
|
+ where SocketsT: Into<ManagedSlice<'a, Option<Item<'b>>>> {
|
|
|
let sockets = sockets.into();
|
|
|
Set { sockets }
|
|
|
}
|
|
@@ -46,10 +46,10 @@ impl<'a, 'b: 'a, 'c: 'a + 'b> Set<'a, 'b, 'c> {
|
|
|
/// # Panics
|
|
|
/// This function panics if the storage is fixed-size (not a `Vec`) and is full.
|
|
|
pub fn add<T>(&mut self, socket: T) -> Handle
|
|
|
- where T: Into<Socket<'b, 'c>>
|
|
|
+ where T: Into<Socket<'b>>
|
|
|
{
|
|
|
- fn put<'b, 'c>(index: usize, slot: &mut Option<Item<'b, 'c>>,
|
|
|
- mut socket: Socket<'b, 'c>) -> Handle {
|
|
|
+ fn put<'b>(index: usize, slot: &mut Option<Item<'b>>,
|
|
|
+ mut socket: Socket<'b>) -> Handle {
|
|
|
net_trace!("[{}]: adding", index);
|
|
|
let handle = Handle(index);
|
|
|
socket.meta_mut().handle = handle;
|
|
@@ -83,7 +83,7 @@ impl<'a, 'b: 'a, 'c: 'a + 'b> Set<'a, 'b, 'c> {
|
|
|
/// # Panics
|
|
|
/// This function may panic if the handle does not belong to this socket set
|
|
|
/// or the socket has the wrong type.
|
|
|
- pub fn get<T: AnySocket<'b, 'c>>(&mut self, handle: Handle) -> SocketRef<T> {
|
|
|
+ pub fn get<T: AnySocket<'b>>(&mut self, handle: Handle) -> SocketRef<T> {
|
|
|
match self.sockets[handle.0].as_mut() {
|
|
|
Some(item) => {
|
|
|
T::downcast(SocketRef::new(&mut item.socket))
|
|
@@ -97,7 +97,7 @@ impl<'a, 'b: 'a, 'c: 'a + 'b> Set<'a, 'b, 'c> {
|
|
|
///
|
|
|
/// # Panics
|
|
|
/// This function may panic if the handle does not belong to this socket set.
|
|
|
- pub fn remove(&mut self, handle: Handle) -> Socket<'b, 'c> {
|
|
|
+ pub fn remove(&mut self, handle: Handle) -> Socket<'b> {
|
|
|
net_trace!("[{}]: removing", handle.0);
|
|
|
match self.sockets[handle.0].take() {
|
|
|
Some(item) => item.socket,
|
|
@@ -166,12 +166,12 @@ impl<'a, 'b: 'a, 'c: 'a + 'b> Set<'a, 'b, 'c> {
|
|
|
}
|
|
|
|
|
|
/// Iterate every socket in this set.
|
|
|
- pub fn iter<'d>(&'d self) -> Iter<'d, 'b, 'c> {
|
|
|
+ pub fn iter<'d>(&'d self) -> Iter<'d, 'b> {
|
|
|
Iter { lower: self.sockets.iter() }
|
|
|
}
|
|
|
|
|
|
/// Iterate every socket in this set, as SocketRef.
|
|
|
- pub fn iter_mut<'d>(&'d mut self) -> IterMut<'d, 'b, 'c> {
|
|
|
+ pub fn iter_mut<'d>(&'d mut self) -> IterMut<'d, 'b> {
|
|
|
IterMut { lower: self.sockets.iter_mut() }
|
|
|
}
|
|
|
}
|
|
@@ -180,12 +180,12 @@ impl<'a, 'b: 'a, 'c: 'a + 'b> Set<'a, 'b, 'c> {
|
|
|
///
|
|
|
/// This struct is created by the [iter](struct.SocketSet.html#method.iter)
|
|
|
/// on [socket sets](struct.SocketSet.html).
|
|
|
-pub struct Iter<'a, 'b: 'a, 'c: 'a + 'b> {
|
|
|
- lower: slice::Iter<'a, Option<Item<'b, 'c>>>
|
|
|
+pub struct Iter<'a, 'b: 'a> {
|
|
|
+ lower: slice::Iter<'a, Option<Item<'b>>>
|
|
|
}
|
|
|
|
|
|
-impl<'a, 'b: 'a, 'c: 'a + 'b> Iterator for Iter<'a, 'b, 'c> {
|
|
|
- type Item = &'a Socket<'b, 'c>;
|
|
|
+impl<'a, 'b: 'a> Iterator for Iter<'a, 'b> {
|
|
|
+ type Item = &'a Socket<'b>;
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
while let Some(item_opt) = self.lower.next() {
|
|
@@ -201,12 +201,12 @@ impl<'a, 'b: 'a, 'c: 'a + 'b> Iterator for Iter<'a, 'b, 'c> {
|
|
|
///
|
|
|
/// This struct is created by the [iter_mut](struct.SocketSet.html#method.iter_mut)
|
|
|
/// on [socket sets](struct.SocketSet.html).
|
|
|
-pub struct IterMut<'a, 'b: 'a, 'c: 'a + 'b> {
|
|
|
- lower: slice::IterMut<'a, Option<Item<'b, 'c>>>,
|
|
|
+pub struct IterMut<'a, 'b: 'a> {
|
|
|
+ lower: slice::IterMut<'a, Option<Item<'b>>>,
|
|
|
}
|
|
|
|
|
|
-impl<'a, 'b: 'a, 'c: 'a + 'b> Iterator for IterMut<'a, 'b, 'c> {
|
|
|
- type Item = SocketRef<'a, Socket<'b, 'c>>;
|
|
|
+impl<'a, 'b: 'a> Iterator for IterMut<'a, 'b> {
|
|
|
+ type Item = SocketRef<'a, Socket<'b>>;
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
while let Some(item_opt) = self.lower.next() {
|