]> git.ipfire.org Git - thirdparty/squid.git/blob - src/DelayUser.h
Prep for 3.3.12 and 3.4.4
[thirdparty/squid.git] / src / DelayUser.h
1 /*
2 * DEBUG: section 77 Delay Pools
3 * AUTHOR: Robert Collins <robertc@squid-cache.org>
4 *
5 * SQUID Web Proxy Cache http://www.squid-cache.org/
6 * ----------------------------------------------------------
7 *
8 * Squid is the result of efforts by numerous individuals from
9 * the Internet community; see the CONTRIBUTORS file for full
10 * details. Many organizations have provided support for Squid's
11 * development; see the SPONSORS file for full details. Squid is
12 * Copyrighted (C) 2001 by the Regents of the University of
13 * California; see the COPYRIGHT file for full details. Squid
14 * incorporates software developed and/or copyrighted by other
15 * sources; see the CREDITS file for full details.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
30 *
31 *
32 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
33 */
34 #ifndef DELAYUSER_H
35 #define DELAYUSER_H
36
37 #if USE_DELAY_POOLS && USE_AUTH
38
39 #include "auth/Gadgets.h"
40 #include "auth/User.h"
41 #include "CompositePoolNode.h"
42 #include "DelayBucket.h"
43 #include "DelayIdComposite.h"
44 #include "DelaySpec.h"
45 #include "splay.h"
46
47 /// \ingroup DelayPoolsAPI
48 class DelayUserBucket : public RefCountable
49 {
50
51 public:
52 typedef RefCount<DelayUserBucket> Pointer;
53 void *operator new(size_t);
54 void operator delete (void *);
55
56 void stats(StoreEntry *)const;
57 DelayUserBucket(Auth::User::Pointer);
58 ~DelayUserBucket();
59 DelayBucket theBucket;
60 Auth::User::Pointer authUser;
61 };
62
63 /// \ingroup DelayPoolsAPI
64 class DelayUser : public CompositePoolNode
65 {
66
67 public:
68 typedef RefCount<DelayUser> Pointer;
69 void *operator new(size_t);
70 void operator delete (void *);
71 DelayUser();
72 virtual ~DelayUser();
73 virtual void stats(StoreEntry * sentry);
74 virtual void dump(StoreEntry *entry) const;
75 virtual void update(int incr);
76 virtual void parse();
77
78 virtual DelayIdComposite::Pointer id(CompositeSelectionDetails &);
79
80 private:
81
82 /// \ingroup DelayPoolsInternal
83 class Id:public DelayIdComposite
84 {
85
86 public:
87 void *operator new(size_t);
88 void operator delete (void *);
89 Id(RefCount<DelayUser>, Auth::User::Pointer);
90 ~Id();
91 virtual int bytesWanted (int min, int max) const;
92 virtual void bytesIn(int qty);
93
94 private:
95 RefCount<DelayUser> theUser;
96 DelayUserBucket::Pointer theBucket;
97 };
98
99 friend class Id;
100
101 DelaySpec spec;
102 Splay<DelayUserBucket::Pointer> buckets;
103 };
104
105 #endif /* USE_DELAY_POOLS && USE_AUTH */
106 #endif /* DELAYUSER_H */