Squid Web Cache master
Loading...
Searching...
No Matches
DelayBucket.cc
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9/* DEBUG: section 77 Delay Pools */
10
11#include "squid.h"
12
13#if USE_DELAY_POOLS
14#include "DelayBucket.h"
15#include "DelaySpec.h"
16#include "SquidConfig.h"
17#include "Store.h"
18
19void
21{
22 storeAppendPrintf(entry, "%d", level());
23}
24
25void
26DelayBucket::update(DelaySpec const &rate, int incr)
27{
28 if (rate.restore_bps != -1 &&
29 (level() += rate.restore_bps * incr) > rate.max_bytes)
30 level() = rate.max_bytes;
31}
32
33int
34DelayBucket::bytesWanted(int minimum, int maximum) const
35{
36 int result = max(minimum, min(maximum, level()));
37 return result;
38}
39
40void
42{
43 level() -= qty;
44}
45
46void
48{
49 level() = (int) (((double)rate.max_bytes *
50 Config.Delay.initial) / 100);
51}
52
53#endif /* USE_DELAY_POOLS */
54
class SquidConfig Config
void init(DelaySpec const &)
void update(DelaySpec const &, int incr)
void bytesIn(int qty)
void stats(StoreEntry *) const
int const & level() const
Definition DelayBucket.h:24
int bytesWanted(int min, int max) const
unsigned short initial
Definition DelayConfig.h:28
int restore_bps
Definition DelaySpec.h:23
int64_t max_bytes
Definition DelaySpec.h:24
DelayConfig Delay
A const & max(A const &lhs, A const &rhs)
A const & min(A const &lhs, A const &rhs)
void storeAppendPrintf(StoreEntry *e, const char *fmt,...)
Definition store.cc:855
int unsigned int
Definition stub_fd.cc:19