congestion.rs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. use crate::time::Instant;
  2. use super::RttEstimator;
  3. pub(super) mod no_control;
  4. #[cfg(feature = "socket-tcp-cubic")]
  5. pub(super) mod cubic;
  6. #[cfg(feature = "socket-tcp-reno")]
  7. pub(super) mod reno;
  8. #[allow(unused_variables)]
  9. pub(super) trait Controller {
  10. /// Returns the number of bytes that can be sent.
  11. fn window(&self) -> usize;
  12. /// Set the remote window size.
  13. fn set_remote_window(&mut self, remote_window: usize) {}
  14. fn on_ack(&mut self, now: Instant, len: usize, rtt: &RttEstimator) {}
  15. fn on_retransmit(&mut self, now: Instant) {}
  16. fn on_duplicate_ack(&mut self, now: Instant) {}
  17. fn pre_transmit(&mut self, now: Instant) {}
  18. fn post_transmit(&mut self, now: Instant, len: usize) {}
  19. /// Set the maximum segment size.
  20. fn set_mss(&mut self, mss: usize) {}
  21. }
  22. #[derive(Debug)]
  23. #[cfg_attr(feature = "defmt", derive(defmt::Format))]
  24. pub(super) enum AnyController {
  25. None(no_control::NoControl),
  26. #[cfg(feature = "socket-tcp-reno")]
  27. Reno(reno::Reno),
  28. #[cfg(feature = "socket-tcp-cubic")]
  29. Cubic(cubic::Cubic),
  30. }
  31. impl AnyController {
  32. /// Create a new congestion controller.
  33. /// `AnyController::new()` selects the best congestion controller based on the features.
  34. ///
  35. /// - If `socket-tcp-cubic` feature is enabled, it will use `Cubic`.
  36. /// - If `socket-tcp-reno` feature is enabled, it will use `Reno`.
  37. /// - If both `socket-tcp-cubic` and `socket-tcp-reno` features are enabled, it will use `Cubic`.
  38. /// - `Cubic` is more efficient regarding throughput.
  39. /// - `Reno` is more conservative and is suitable for low-power devices.
  40. /// - If no congestion controller is available, it will use `NoControl`.
  41. ///
  42. /// Users can also select a congestion controller manually by [`super::Socket::set_congestion_control()`]
  43. /// method at run-time.
  44. #[allow(unreachable_code)]
  45. #[inline]
  46. pub fn new() -> Self {
  47. #[cfg(feature = "socket-tcp-cubic")]
  48. {
  49. return AnyController::Cubic(cubic::Cubic::new());
  50. }
  51. #[cfg(feature = "socket-tcp-reno")]
  52. {
  53. return AnyController::Reno(reno::Reno::new());
  54. }
  55. AnyController::None(no_control::NoControl)
  56. }
  57. #[inline]
  58. pub fn inner_mut(&mut self) -> &mut dyn Controller {
  59. match self {
  60. AnyController::None(n) => n,
  61. #[cfg(feature = "socket-tcp-reno")]
  62. AnyController::Reno(r) => r,
  63. #[cfg(feature = "socket-tcp-cubic")]
  64. AnyController::Cubic(c) => c,
  65. }
  66. }
  67. #[inline]
  68. pub fn inner(&self) -> &dyn Controller {
  69. match self {
  70. AnyController::None(n) => n,
  71. #[cfg(feature = "socket-tcp-reno")]
  72. AnyController::Reno(r) => r,
  73. #[cfg(feature = "socket-tcp-cubic")]
  74. AnyController::Cubic(c) => c,
  75. }
  76. }
  77. }