mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2025-03-30 02:23:16 -07:00
187 lines
7.5 KiB
Rust
187 lines
7.5 KiB
Rust
use std::cmp;
|
|
use std::time::{ Duration, Instant };
|
|
|
|
use log;
|
|
use parking_lot::{ RwLock, RwLockUpgradableReadGuard };
|
|
use reqwest::{ StatusCode, Response };
|
|
use scan_fmt::scan_fmt;
|
|
|
|
use crate::RiotApiConfig;
|
|
use super::{ TokenBucket, VectorTokenBucket };
|
|
use super::RateLimitType;
|
|
|
|
pub struct RateLimit {
|
|
rate_limit_type: RateLimitType,
|
|
// Buckets for this rate limit (synchronized).
|
|
// Almost always read, written only when rate limit rates are updated
|
|
// from API response.
|
|
buckets: RwLock<Vec<VectorTokenBucket>>,
|
|
// Set to when we can retry if a retry-after header is received.
|
|
retry_after: RwLock<Option<Instant>>,
|
|
}
|
|
|
|
impl RateLimit {
|
|
/// Header specifying which RateLimitType caused a 429.
|
|
const HEADER_XRATELIMITTYPE: &'static str = "X-Rate-Limit-Type";
|
|
/// Header specifying retry after time in seconds after a 429.
|
|
const HEADER_RETRYAFTER: &'static str = "Retry-After";
|
|
|
|
pub fn new(rate_limit_type: RateLimitType) -> Self {
|
|
let initial_bucket = VectorTokenBucket::new(
|
|
Duration::from_secs(1), 1, Duration::new(0, 0), 1.0);
|
|
RateLimit {
|
|
rate_limit_type: rate_limit_type,
|
|
// Rate limit before getting from response: 1/s.
|
|
buckets: RwLock::new(vec![initial_bucket]),
|
|
retry_after: RwLock::new(None),
|
|
}
|
|
}
|
|
|
|
pub fn get_both_or_delay(app_rate_limit: &Self, method_rate_limit: &Self) -> Option<Duration> {
|
|
// Check retry after.
|
|
{
|
|
let retry_after_delay = app_rate_limit.get_retry_after_delay()
|
|
.and_then(|a| method_rate_limit.get_retry_after_delay().map(|m| cmp::max(a, m)));
|
|
if retry_after_delay.is_some() {
|
|
return retry_after_delay
|
|
}
|
|
}
|
|
// Check buckets.
|
|
let app_buckets = app_rate_limit.buckets.read();
|
|
let method_buckets = method_rate_limit.buckets.read();
|
|
for bucket in app_buckets.iter().chain(method_buckets.iter()) {
|
|
let delay = bucket.get_delay();
|
|
if delay.is_some() {
|
|
return delay;
|
|
}
|
|
}
|
|
// Success.
|
|
for bucket in app_buckets.iter().chain(method_buckets.iter()) {
|
|
bucket.get_tokens(1);
|
|
}
|
|
|
|
log::debug!("Tokens obtained, buckets: APP {:?} METHOD {:?}", app_buckets, method_buckets);
|
|
None
|
|
}
|
|
|
|
pub fn get_retry_after_delay(&self) -> Option<Duration> {
|
|
self.retry_after.read().and_then(|i| Instant::now().checked_duration_since(i))
|
|
}
|
|
|
|
pub fn on_response(&self, config: &RiotApiConfig, response: &Response) {
|
|
self.on_response_retry_after(response);
|
|
self.on_response_rate_limits(config, response);
|
|
}
|
|
|
|
/// `on_response` helper for retry after check.
|
|
#[inline]
|
|
fn on_response_retry_after(&self, response: &Response) {
|
|
if let Some(retry_after) = || -> Option<Instant> {
|
|
// Only care about 429s.
|
|
if StatusCode::TOO_MANY_REQUESTS != response.status() {
|
|
return None;
|
|
}
|
|
|
|
{
|
|
// Only care if the header that indicates the relevant RateLimit is present.
|
|
let type_name_header = response.headers()
|
|
.get(RateLimit::HEADER_XRATELIMITTYPE)?.to_str()
|
|
.expect("Failed to read x-rate-limit-type header as string.");
|
|
// Only care if that header's value matches us.
|
|
if self.rate_limit_type.type_name() != type_name_header.to_lowercase() {
|
|
return None;
|
|
}
|
|
}
|
|
|
|
// Get retry after header. Only care if it exists.
|
|
let retry_after_header = response.headers()
|
|
.get(RateLimit::HEADER_RETRYAFTER)?.to_str()
|
|
.expect("Failed to read retry-after header as string.");
|
|
|
|
log::debug!("Hit 429, retry-after {} secs.", retry_after_header);
|
|
|
|
// Header currently only returns ints, but float is more general. Can be zero.
|
|
let retry_after_secs: f32 = retry_after_header.parse()
|
|
.expect("Failed to parse retry-after header as f32.");
|
|
// Add 0.5 seconds to account for rounding, cases when response is zero.
|
|
let delay = Duration::from_secs_f32(0.5 + retry_after_secs);
|
|
return Some(Instant::now() + delay);
|
|
}() {
|
|
*self.retry_after.write() = Some(retry_after);
|
|
}
|
|
}
|
|
|
|
#[inline]
|
|
fn on_response_rate_limits(&self, config: &RiotApiConfig, response: &Response) {
|
|
// Check if rate limits changed.
|
|
let headers = response.headers();
|
|
let limit_header_opt = headers.get(self.rate_limit_type.limit_header())
|
|
.map(|h| h.to_str().expect("Failed to read limit header as string."));
|
|
let count_header_opt = headers.get(self.rate_limit_type.count_header())
|
|
.map(|h| h.to_str().expect("Failed to read count header as string."));
|
|
|
|
// https://github.com/rust-lang/rust/issues/53667
|
|
if let Some(limit_header) = limit_header_opt {
|
|
if let Some(count_header) = count_header_opt {
|
|
|
|
let buckets = self.buckets.upgradable_read();
|
|
if !buckets_require_updating(limit_header, &*buckets) {
|
|
return;
|
|
}
|
|
|
|
// Buckets require updating. Upgrade to write lock.
|
|
let mut buckets = RwLockUpgradableReadGuard::upgrade(buckets);
|
|
*buckets = buckets_from_header(config, limit_header, count_header)
|
|
}}
|
|
}
|
|
}
|
|
|
|
fn buckets_require_updating(limit_header: &str, buckets: &Vec<VectorTokenBucket>) -> bool {
|
|
if buckets.len() != limit_header.split(",").count() {
|
|
return true;
|
|
}
|
|
for (limit_header_entry, bucket) in limit_header.split(",").zip(&*buckets) {
|
|
// limit_header_entry "100:60" means 100 req per 60 sec.
|
|
let bucket_entry = format!("{}:{}", bucket.get_total_limit(), bucket.get_bucket_duration().as_secs());
|
|
if limit_header_entry != bucket_entry {
|
|
return true;
|
|
}
|
|
}
|
|
false
|
|
}
|
|
|
|
fn buckets_from_header(config: &RiotApiConfig, limit_header: &str, count_header: &str) -> Vec<VectorTokenBucket> {
|
|
// Limits: "20000:10,1200000:600"
|
|
// Counts: "7:10,58:600"
|
|
let size = limit_header.split(",").count();
|
|
debug_assert!(size == count_header.split(",").count());
|
|
let mut out = Vec::with_capacity(size);
|
|
|
|
for (limit_entry, count_entry) in limit_header.split(",").zip(count_header.split(",")) {
|
|
let (limit, limit_secs) = scan_fmt!(limit_entry, "{d}:{d}", usize, u64)
|
|
.unwrap_or_else(|_| panic!("Failed to parse limit entry \"{}\".", limit_entry));
|
|
let (count, count_secs) = scan_fmt!(count_entry, "{d}:{d}", usize, u64)
|
|
.unwrap_or_else(|_| panic!("Failed to parse count entry \"{}\".", count_entry));
|
|
debug_assert!(limit_secs == count_secs);
|
|
|
|
let limit_f32 = limit as f32;
|
|
let scaled_burst_pct = config.burst_pct * limit_f32 / (limit_f32 + 1.0);
|
|
|
|
let bucket = VectorTokenBucket::new(Duration::from_secs(limit_secs), limit,
|
|
config.duration_overhead, scaled_burst_pct);
|
|
bucket.get_tokens(count);
|
|
out.push(bucket);
|
|
}
|
|
log::debug!("Set buckets to {} limit, {} count.", limit_header, count_header);
|
|
out
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
// use super::*;
|
|
|
|
// fn send_sync() {
|
|
// fn is_send_sync<T: Send + Sync>() {}
|
|
// is_send_sync::<RateLimit>();
|
|
// }
|
|
}
|