set.rs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. use core::{fmt, slice};
  2. use managed::ManagedSlice;
  3. use crate::socket::{Socket, SocketRef, AnySocket};
  4. #[cfg(feature = "socket-tcp")]
  5. use crate::socket::TcpState;
  6. /// An item of a socket set.
  7. ///
  8. /// The only reason this struct is public is to allow the socket set storage
  9. /// to be allocated externally.
  10. #[derive(Debug)]
  11. pub struct Item<'a> {
  12. socket: Socket<'a>,
  13. refs: usize
  14. }
  15. /// A handle, identifying a socket in a set.
  16. #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Default, Hash)]
  17. pub struct Handle(usize);
  18. impl fmt::Display for Handle {
  19. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  20. write!(f, "#{}", self.0)
  21. }
  22. }
  23. /// An extensible set of sockets.
  24. ///
  25. /// The lifetime `'a` is used when storing a `Socket<'a>`.
  26. #[derive(Debug)]
  27. pub struct Set<'a> {
  28. sockets: ManagedSlice<'a, Option<Item<'a>>>
  29. }
  30. impl<'a> Set<'a> {
  31. /// Create a socket set using the provided storage.
  32. pub fn new<SocketsT>(sockets: SocketsT) -> Set<'a>
  33. where SocketsT: Into<ManagedSlice<'a, Option<Item<'a>>>> {
  34. let sockets = sockets.into();
  35. Set { sockets }
  36. }
  37. /// Add a socket to the set with the reference count 1, and return its handle.
  38. ///
  39. /// # Panics
  40. /// This function panics if the storage is fixed-size (not a `Vec`) and is full.
  41. pub fn add<T>(&mut self, socket: T) -> Handle
  42. where T: Into<Socket<'a>>
  43. {
  44. fn put<'a>(index: usize, slot: &mut Option<Item<'a>>,
  45. mut socket: Socket<'a>) -> Handle {
  46. net_trace!("[{}]: adding", index);
  47. let handle = Handle(index);
  48. socket.meta_mut().handle = handle;
  49. *slot = Some(Item { socket, refs: 1 });
  50. handle
  51. }
  52. let socket = socket.into();
  53. for (index, slot) in self.sockets.iter_mut().enumerate() {
  54. if slot.is_none() {
  55. return put(index, slot, socket)
  56. }
  57. }
  58. match self.sockets {
  59. ManagedSlice::Borrowed(_) => {
  60. panic!("adding a socket to a full SocketSet")
  61. }
  62. #[cfg(any(feature = "std", feature = "alloc"))]
  63. ManagedSlice::Owned(ref mut sockets) => {
  64. sockets.push(None);
  65. let index = sockets.len() - 1;
  66. put(index, &mut sockets[index], socket)
  67. }
  68. }
  69. }
  70. /// Get a socket from the set by its handle, as mutable.
  71. ///
  72. /// # Panics
  73. /// This function may panic if the handle does not belong to this socket set
  74. /// or the socket has the wrong type.
  75. pub fn get<T: AnySocket<'a>>(&mut self, handle: Handle) -> SocketRef<T> {
  76. match self.sockets[handle.0].as_mut() {
  77. Some(item) => {
  78. T::downcast(SocketRef::new(&mut item.socket))
  79. .expect("handle refers to a socket of a wrong type")
  80. }
  81. None => panic!("handle does not refer to a valid socket")
  82. }
  83. }
  84. /// Remove a socket from the set, without changing its state.
  85. ///
  86. /// # Panics
  87. /// This function may panic if the handle does not belong to this socket set.
  88. pub fn remove(&mut self, handle: Handle) -> Socket<'a> {
  89. net_trace!("[{}]: removing", handle.0);
  90. match self.sockets[handle.0].take() {
  91. Some(item) => item.socket,
  92. None => panic!("handle does not refer to a valid socket")
  93. }
  94. }
  95. /// Increase reference count by 1.
  96. ///
  97. /// # Panics
  98. /// This function may panic if the handle does not belong to this socket set.
  99. pub fn retain(&mut self, handle: Handle) {
  100. self.sockets[handle.0]
  101. .as_mut()
  102. .expect("handle does not refer to a valid socket")
  103. .refs += 1
  104. }
  105. /// Decrease reference count by 1.
  106. ///
  107. /// # Panics
  108. /// This function may panic if the handle does not belong to this socket set,
  109. /// or if the reference count is already zero.
  110. pub fn release(&mut self, handle: Handle) {
  111. let refs = &mut self.sockets[handle.0]
  112. .as_mut()
  113. .expect("handle does not refer to a valid socket")
  114. .refs;
  115. if *refs == 0 { panic!("decreasing reference count past zero") }
  116. *refs -= 1
  117. }
  118. /// Prune the sockets in this set.
  119. ///
  120. /// Pruning affects sockets with reference count 0. Open sockets are closed.
  121. /// Closed sockets are removed and dropped.
  122. pub fn prune(&mut self) {
  123. for (index, item) in self.sockets.iter_mut().enumerate() {
  124. let mut may_remove = false;
  125. if let Some(Item { refs: 0, ref mut socket }) = *item {
  126. match *socket {
  127. #[cfg(feature = "socket-raw")]
  128. Socket::Raw(_) =>
  129. may_remove = true,
  130. #[cfg(all(feature = "socket-icmp", any(feature = "proto-ipv4", feature = "proto-ipv6")))]
  131. Socket::Icmp(_) =>
  132. may_remove = true,
  133. #[cfg(feature = "socket-udp")]
  134. Socket::Udp(_) =>
  135. may_remove = true,
  136. #[cfg(feature = "socket-tcp")]
  137. Socket::Tcp(ref mut socket) =>
  138. if socket.state() == TcpState::Closed {
  139. may_remove = true
  140. } else {
  141. socket.close()
  142. },
  143. }
  144. }
  145. if may_remove {
  146. net_trace!("[{}]: pruning", index);
  147. *item = None
  148. }
  149. }
  150. }
  151. /// Iterate every socket in this set.
  152. pub fn iter<'d>(&'d self) -> Iter<'d, 'a> {
  153. Iter { lower: self.sockets.iter() }
  154. }
  155. /// Iterate every socket in this set, as SocketRef.
  156. pub fn iter_mut<'d>(&'d mut self) -> IterMut<'d, 'a> {
  157. IterMut { lower: self.sockets.iter_mut() }
  158. }
  159. }
  160. /// Immutable socket set iterator.
  161. ///
  162. /// This struct is created by the [iter](struct.SocketSet.html#method.iter)
  163. /// on [socket sets](struct.SocketSet.html).
  164. pub struct Iter<'a, 'b: 'a> {
  165. lower: slice::Iter<'a, Option<Item<'b>>>
  166. }
  167. impl<'a, 'b: 'a> Iterator for Iter<'a, 'b> {
  168. type Item = &'a Socket<'b>;
  169. fn next(&mut self) -> Option<Self::Item> {
  170. while let Some(item_opt) = self.lower.next() {
  171. if let Some(item) = item_opt.as_ref() {
  172. return Some(&item.socket)
  173. }
  174. }
  175. None
  176. }
  177. }
  178. /// Mutable socket set iterator.
  179. ///
  180. /// This struct is created by the [iter_mut](struct.SocketSet.html#method.iter_mut)
  181. /// on [socket sets](struct.SocketSet.html).
  182. pub struct IterMut<'a, 'b: 'a> {
  183. lower: slice::IterMut<'a, Option<Item<'b>>>,
  184. }
  185. impl<'a, 'b: 'a> Iterator for IterMut<'a, 'b> {
  186. type Item = SocketRef<'a, Socket<'b>>;
  187. fn next(&mut self) -> Option<Self::Item> {
  188. while let Some(item_opt) = self.lower.next() {
  189. if let Some(item) = item_opt.as_mut() {
  190. return Some(SocketRef::new(&mut item.socket))
  191. }
  192. }
  193. None
  194. }
  195. }