]> git.ipfire.org Git - thirdparty/squid.git/blame - src/DelayId.cc
Bootstrapped
[thirdparty/squid.git] / src / DelayId.cc
CommitLineData
b67e2c8c 1
2/*
3 * $Id: DelayId.cc,v 1.1 2003/02/05 10:36:48 robertc Exp $
4 *
5 * DEBUG: section 77 Delay Pools
6 * AUTHOR: Robert Collins <robertc@squid-cache.org>
7 * Based upon original delay pools code by
8 * David Luyer <david@luyer.net>
9 *
10 * SQUID Web Proxy Cache http://www.squid-cache.org/
11 * ----------------------------------------------------------
12 *
13 * Squid is the result of efforts by numerous individuals from
14 * the Internet community; see the CONTRIBUTORS file for full
15 * details. Many organizations have provided support for Squid's
16 * development; see the SPONSORS file for full details. Squid is
17 * Copyrighted (C) 2001 by the Regents of the University of
18 * California; see the COPYRIGHT file for full details. Squid
19 * incorporates software developed and/or copyrighted by other
20 * sources; see the CREDITS file for full details.
21 *
22 * This program is free software; you can redistribute it and/or modify
23 * it under the terms of the GNU General Public License as published by
24 * the Free Software Foundation; either version 2 of the License, or
25 * (at your option) any later version.
26 *
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
31 *
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
35 *
36 *
37 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
38 */
39
40#include "config.h"
41
42#if DELAY_POOLS
43#include "squid.h"
44#include "DelayId.h"
45#include "client_side_request.h"
46#include "ACLChecklist.h"
47#include "DelayPools.h"
48#include "DelayPool.h"
49/*
50#include "DelaySpec.h"
51#include "StoreClient.h"
52#include "Store.h"
53#include "MemObject.h"
54#include "ACL.h"
55#include "Config.h"
56#include "DelayId.h"
57#include "Array.h"
58#include "String.h"
59#include "CommonPool.h"
60#include "CompositePoolNode.h"
61#include "DelayVector.h"
62#include "NullDelayId.h"
63#include "DelayBucket.h"
64*/
65
66DelayId::DelayId () : pool_ (0), compositeId(NULL)
67{
68}
69
70DelayId::DelayId (unsigned short aPool) :
71pool_ (aPool), compositeId (NULL)
72{
73}
74
75DelayId::~DelayId ()
76{
77}
78
79void
80DelayId::compositePosition(DelayIdComposite::Pointer newPosition)
81{
82 compositeId = newPosition;
83}
84
85unsigned short
86DelayId::pool() const
87{
88 return pool_;
89}
90
91bool
92DelayId::operator == (DelayId const &rhs) const
93{
94 /* Doesn't compare composites properly....
95 * only use to test against default ID's
96 */
97 return pool_ == rhs.pool_ && compositeId == rhs.compositeId;
98}
99
100DelayId::operator bool() const
101{
102 return pool_ || compositeId.getRaw();
103}
104
105DelayId
106DelayId::DelayClient(clientHttpRequest * http)
107{
108 request_t *r;
109 unsigned short pool;
110 assert(http);
111 r = http->request;
112
113 if (r->client_addr.s_addr == INADDR_BROADCAST) {
114 debug(77, 2) ("delayClient: WARNING: Called with 'allones' address, ignoring\n");
115 return DelayId();
116 }
117
118 ACLChecklist ch;
119 ch.src_addr = r->client_addr;
120 ch.my_addr = r->my_addr;
121 ch.my_port = r->my_port;
122 ch.conn = http->conn;
123 ch.request = r;
124 for (pool = 0; pool < DelayPools::pools(); pool++)
125 if (DelayPools::delay_data[pool].theComposite().getRaw() &&
126 aclCheckFast(DelayPools::delay_data[pool].access, &ch)) {
127 DelayId result (pool + 1);
128 result.compositePosition(DelayPools::delay_data[pool].theComposite()->id(ch.src_addr, r->auth_user_request));
129 return result;
130 }
131 return DelayId();
132}
133
134/*
135 * this returns the number of bytes the client is permitted. it does not take
136 * into account bytes already buffered - that is up to the caller.
137 */
138int
139DelayId::bytesWanted(int min, int max) const
140{
141 /* unlimited */
142 if (! (*this))
143 return XMAX(min, max);
144
145 /* limited */
146 int nbytes = XMAX(min, max);
147 if (compositeId.getRaw())
148 nbytes = compositeId->bytesWanted(min, nbytes);
149 return nbytes;
150}
151
152/*
153 * this records actual bytes recieved. always recorded, even if the
154 * class is disabled - it's more efficient to just do it than to do all
155 * the checks.
156 */
157void
158DelayId::bytesIn(int qty)
159{
160 if (! (*this))
161 return;
162
163 unsigned short tempPool = pool() - 1;
164
165 assert (tempPool != 0xFFFF);
166
167 if (compositeId.getRaw())
168 compositeId->bytesIn(qty);
169}
170#endif
171