1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
// Copyright (c) Mysten Labs, Inc.
// Modifications Copyright (c) 2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
#![allow(dead_code)]
use std::{
future::Future,
task::{Context, Poll},
};
use async_trait::async_trait;
// TODO: complete tests - This kinda sorta facades the whole tokio::mpsc::{Sender, Receiver}:
// without tests, this will be fragile to maintain.
use futures::{FutureExt, Stream, TryFutureExt};
use prometheus::{IntCounter, IntGauge};
use tokio::sync::mpsc::{
self,
error::{SendError, TryRecvError, TrySendError},
};
#[cfg(test)]
#[path = "tests/metered_channel_tests.rs"]
mod metered_channel_tests;
/// An [`mpsc::Sender`] with an [`IntGauge`]
/// counting the number of currently queued items.
#[derive(Debug)]
pub struct Sender<T> {
inner: mpsc::Sender<T>,
gauge: IntGauge,
}
impl<T> Clone for Sender<T> {
fn clone(&self) -> Self {
Self {
inner: self.inner.clone(),
gauge: self.gauge.clone(),
}
}
}
impl<T> Sender<T> {
/// Downgrades the current `Sender` to a `WeakSender`, which holds a weak
/// reference to the underlying channel. This allows the `Sender` to be
/// safely dropped without affecting the channel while maintaining
/// the ability to upgrade back to a strong reference later if needed.
/// Returns a `WeakSender` that holds the weak reference and the
/// associated gauge for resource tracking.
pub fn downgrade(&self) -> WeakSender<T> {
let sender = self.inner.downgrade();
WeakSender {
inner: sender,
gauge: self.gauge.clone(),
}
}
}
/// An [`mpsc::WeakSender`] with an [`IntGauge`]
/// counting the number of currently queued items.
#[derive(Debug)]
pub struct WeakSender<T> {
inner: mpsc::WeakSender<T>,
gauge: IntGauge,
}
impl<T> Clone for WeakSender<T> {
fn clone(&self) -> Self {
Self {
inner: self.inner.clone(),
gauge: self.gauge.clone(),
}
}
}
impl<T> WeakSender<T> {
/// Upgrades the `WeakSender` to a strong `Sender`, if the underlying
/// channel still exists. This allows the `WeakSender` to regain full
/// control over the channel, enabling it to send messages again. If the
/// underlying channel has been dropped, `None` is returned. Otherwise, it
/// returns a `Sender` with the upgraded reference and the associated
/// gauge for resource tracking.
pub fn upgrade(&self) -> Option<Sender<T>> {
self.inner.upgrade().map(|s| Sender {
inner: s,
gauge: self.gauge.clone(),
})
}
}
/// An [`mpsc::Receiver`] with an [`IntGauge`]
/// counting the number of currently queued items.
#[derive(Debug)]
pub struct Receiver<T> {
inner: mpsc::Receiver<T>,
gauge: IntGauge,
total: Option<IntCounter>,
}
impl<T> Receiver<T> {
/// Receives the next value for this receiver.
/// Decrements the gauge in case of a successful `recv`.
pub async fn recv(&mut self) -> Option<T> {
self.inner
.recv()
.inspect(|opt| {
if opt.is_some() {
self.gauge.dec();
if let Some(total_gauge) = &self.total {
total_gauge.inc();
}
}
})
.await
}
/// Attempts to receive the next value for this receiver.
/// Decrements the gauge in case of a successful `try_recv`.
pub fn try_recv(&mut self) -> Result<T, TryRecvError> {
self.inner.try_recv().inspect(|_| {
self.gauge.dec();
if let Some(total_gauge) = &self.total {
total_gauge.inc();
}
})
}
/// Receives a value from the channel in a blocking manner. When a value is
/// received, the gauge is decremented to indicate that an item has been
/// processed, and the `total_gauge` (if available) is incremented to
/// keep track of the total number of received items. Returns the received
/// value if successful, or `None` if the channel is closed.
pub fn blocking_recv(&mut self) -> Option<T> {
self.inner.blocking_recv().inspect(|_| {
self.gauge.dec();
if let Some(total_gauge) = &self.total {
total_gauge.inc();
}
})
}
/// Closes the receiving half of a channel without dropping it.
pub fn close(&mut self) {
self.inner.close()
}
/// Polls to receive the next message on this channel.
/// Decrements the gauge in case of a successful `poll_recv`.
pub fn poll_recv(&mut self, cx: &mut Context<'_>) -> Poll<Option<T>> {
match self.inner.poll_recv(cx) {
res @ Poll::Ready(Some(_)) => {
self.gauge.dec();
if let Some(total_gauge) = &self.total {
total_gauge.inc();
}
res
}
s => s,
}
}
}
impl<T> Unpin for Receiver<T> {}
/// A newtype for an `mpsc::Permit` which allows us to inject gauge accounting
/// in the case the permit is dropped w/o sending
pub struct Permit<'a, T> {
permit: Option<mpsc::Permit<'a, T>>,
gauge_ref: &'a IntGauge,
}
impl<'a, T> Permit<'a, T> {
/// Creates a new `Permit` instance using the provided `mpsc::Permit` and a
/// reference to an `IntGauge`. The `Permit` allows sending a message
/// into a channel and is used to ensure a slot is available before sending.
pub fn new(permit: mpsc::Permit<'a, T>, gauge_ref: &'a IntGauge) -> Permit<'a, T> {
Permit {
permit: Some(permit),
gauge_ref,
}
}
/// Sends a value into the channel using the held `Permit`. After sending
/// the value, the function uses `std::mem::forget(self)` to skip the
/// drop logic of the permit, avoiding double decrement of the gauge or
/// other unintended side effects.
pub fn send(mut self, value: T) {
let sender = self.permit.take().expect("Permit invariant violated!");
sender.send(value);
// skip the drop logic, see https://github.com/tokio-rs/tokio/blob/a66884a2fb80d1180451706f3c3e006a3fdcb036/tokio/src/sync/mpsc/bounded.rs#L1155-L1163
std::mem::forget(self);
}
}
impl<'a, T> Drop for Permit<'a, T> {
/// Custom drop logic for the `Permit` to handle cases where the permit is
/// dropped without sending a value. This ensures that the occupancy of
/// the channel is correctly updated by decrementing the associated gauge
/// if the permit was not used. This prevents any overestimation of active
/// items in the channel.
fn drop(&mut self) {
// in the case the permit is dropped without sending, we still want to decrease
// the occupancy of the channel
if self.permit.is_some() {
self.gauge_ref.dec();
}
}
}
impl<T> Sender<T> {
/// Sends a value, waiting until there is capacity.
/// Increments the gauge in case of a successful `send`.
pub async fn send(&self, value: T) -> Result<(), SendError<T>> {
self.inner
.send(value)
.inspect_ok(|_| self.gauge.inc())
.await
}
/// Completes when the receiver has dropped.
pub async fn closed(&self) {
self.inner.closed().await
}
/// Attempts to immediately send a message on this `Sender`
/// Increments the gauge in case of a successful `try_send`.
pub fn try_send(&self, message: T) -> Result<(), TrySendError<T>> {
self.inner
.try_send(message)
// remove this unsightly hack once https://github.com/rust-lang/rust/issues/91345 is resolved
.inspect(|_| {
self.gauge.inc();
})
}
// TODO: facade [`send_timeout`](tokio::mpsc::Sender::send_timeout) under the
// tokio feature flag "time" TODO: facade
// [`blocking_send`](tokio::mpsc::Sender::blocking_send) under the tokio feature
// flag "sync"
/// Checks if the channel has been closed. This happens when the
/// [`Receiver`] is dropped, or when the [`Receiver::close`] method is
/// called.
pub fn is_closed(&self) -> bool {
self.inner.is_closed()
}
/// Waits for channel capacity. Once capacity to send one message is
/// available, it is reserved for the caller.
/// Increments the gauge in case of a successful `reserve`.
pub async fn reserve(&self) -> Result<Permit<'_, T>, SendError<()>> {
self.inner
.reserve()
// remove this unsightly hack once https://github.com/rust-lang/rust/issues/91345 is resolved
.map(|val| {
val.map(|permit| {
self.gauge.inc();
Permit::new(permit, &self.gauge)
})
})
.await
}
/// Tries to acquire a slot in the channel without waiting for the slot to
/// become available.
/// Increments the gauge in case of a successful `try_reserve`.
pub fn try_reserve(&self) -> Result<Permit<'_, T>, TrySendError<()>> {
self.inner.try_reserve().map(|val| {
// remove this unsightly hack once https://github.com/rust-lang/rust/issues/91345 is resolved
self.gauge.inc();
Permit::new(val, &self.gauge)
})
}
// TODO: consider exposing the _owned methods
// Note: not exposing `same_channel`, as it is hard to implement with callers
// able to break the coupling between channel and gauge using `gauge`.
/// Returns the current capacity of the channel.
pub fn capacity(&self) -> usize {
self.inner.capacity()
}
// We're voluntarily not putting WeakSender under a facade.
/// Returns a reference to the underlying gauge.
pub fn gauge(&self) -> &IntGauge {
&self.gauge
}
}
////////////////////////////////
/// Stream API Wrappers!
////////////////////////////////
/// A wrapper around [`crate::metered_channel::Receiver`] that implements
/// [`Stream`].
#[derive(Debug)]
pub struct ReceiverStream<T> {
inner: Receiver<T>,
}
impl<T> ReceiverStream<T> {
/// Create a new `ReceiverStream`.
pub fn new(recv: Receiver<T>) -> Self {
Self { inner: recv }
}
/// Get back the inner `Receiver`.
pub fn into_inner(self) -> Receiver<T> {
self.inner
}
/// Closes the receiving half of a channel without dropping it.
pub fn close(&mut self) {
self.inner.close()
}
}
impl<T> Stream for ReceiverStream<T> {
type Item = T;
/// Polls the inner `Receiver` for the next item, enabling the
/// `ReceiverStream` to yield values in a stream-like manner.
fn poll_next(
mut self: std::pin::Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Option<Self::Item>> {
self.inner.poll_recv(cx)
}
}
impl<T> AsRef<Receiver<T>> for ReceiverStream<T> {
/// Gets a reference to the inner `Receiver`.
fn as_ref(&self) -> &Receiver<T> {
&self.inner
}
}
impl<T> AsMut<Receiver<T>> for ReceiverStream<T> {
/// Gets a mutable reference to the inner `Receiver`.
fn as_mut(&mut self) -> &mut Receiver<T> {
&mut self.inner
}
}
impl<T> From<Receiver<T>> for ReceiverStream<T> {
/// Converts a `Receiver` into a `ReceiverStream`.
fn from(recv: Receiver<T>) -> Self {
Self::new(recv)
}
}
// TODO: facade PollSender
// TODO: add prom metrics reporting for gauge and migrate all existing use
// cases.
////////////////////////////////////////////////////////////////
/// Constructor
////////////////////////////////////////////////////////////////
/// Similar to `mpsc::channel`, `channel` creates a pair of `Sender` and
/// `Receiver` Deprecated: use `monitored_mpsc::channel` instead.
#[track_caller]
pub fn channel<T>(size: usize, gauge: &IntGauge) -> (Sender<T>, Receiver<T>) {
gauge.set(0);
let (sender, receiver) = mpsc::channel(size);
(
Sender {
inner: sender,
gauge: gauge.clone(),
},
Receiver {
inner: receiver,
gauge: gauge.clone(),
total: None,
},
)
}
/// Defines an asynchronous method `with_permit` for working with a permit to
/// send a message.
#[async_trait]
pub trait WithPermit<T> {
async fn with_permit<F: Future + Send>(&self, f: F) -> Option<(Permit<T>, F::Output)>;
}
#[async_trait]
impl<T: Send> WithPermit<T> for Sender<T> {
/// Asynchronously reserves a permit for sending a message and then executes
/// the given future (`f`). If a permit can be successfully reserved, it
/// returns a tuple containing the `Permit` and the result of the future.
/// If the permit reservation fails, `None` is returned, indicating that no
/// slot is available. This method ensures that the future only proceeds
/// if the channel has available capacity.
async fn with_permit<F: Future + Send>(&self, f: F) -> Option<(Permit<T>, F::Output)> {
let permit = self.reserve().await.ok()?;
Some((permit, f.await))
}
}