1 unstable release
new 0.1.0-rc.1 | Mar 8, 2025 |
---|
#7 in #bearer
33 downloads per month
20KB
293 lines
flag-bearer: a generic async semaphore
Semaphores are very useful primitives, but the default tokio Semaphore is limited in it's functionality.
This crate aims to fill a gap left by tokio, to have extra functionality to track to permits available.
Example usecase
You want to limit number of active HTTP requests, as well as total buffer allocations for the body.
You could define the semaphore state like so.
use flag_bearer::{Semaphore, SemaphoreState};
#[derive(Debug)]
pub struct SemaphoreCounter {
bytes: u64,
requests: usize,
};
pub struct Request {
bytes: u64,
}
impl SemaphoreState for SemaphoreCounter {
type Params = Request;
type Permit = Request;
fn acquire(&mut self, params: Self::Params) -> Result<Self::Permit, Self::Params> {
if self.bytes >= params.bytes && self.requests > 0 {
self.bytes -= params.bytes;
self.requests -= 1;
Ok(params)
} else {
Err(params)
}
}
fn release(&mut self, permit: Self::Permit) {
self.bytes += permit.bytes;
self.requests += 1;
}
}
let semaphore = Semaphore::new_fifo(SemaphoreCounter {
bytes: 10 * 1024 * 1024, // 10 MiB.
requests: 10, // 10 requests.
})
Dependencies
~0.5–5.5MB
~13K SLoC