]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ESIVarState.h
Summary: Merge of robertc@squid-cache.org--squid/squid--esi--3.0
[thirdparty/squid.git] / src / ESIVarState.h
CommitLineData
924f73bc 1
2/*
3 * $Id: ESIVarState.h,v 1.1 2003/07/14 14:15:55 robertc Exp $
4 *
5 *
6 * SQUID Web Proxy Cache http://www.squid-cache.org/
7 * ----------------------------------------------------------
8 *
9 * Squid is the result of efforts by numerous individuals from
10 * the Internet community; see the CONTRIBUTORS file for full
11 * details. Many organizations have provided support for Squid's
12 * development; see the SPONSORS file for full details. Squid is
13 * Copyrighted (C) 2001 by the Regents of the University of
14 * California; see the COPYRIGHT file for full details. Squid
15 * incorporates software developed and/or copyrighted by other
16 * sources; see the CREDITS file for full details.
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
31 *
32 */
33
34#ifndef SQUID_ESIVARSTATE_H
35#define SQUID_ESIVARSTATE_H
36
37#include "ESISegment.h"
38#include "Trie.h"
39#include "Array.h"
40#include "HttpHeader.h"
41
42/* esi variable replacement logic */
43
44typedef enum {
45 ESI_BROWSER_MSIE,
46 ESI_BROWSER_MOZILLA,
47 ESI_BROWSER_OTHER
48} esiBrowser_t;
49
50extern char const * esiBrowsers[];
51
52/* Recursive uses are not supported by design */
53
54struct _query_elem{char *var, *val;};
55
56class ESIVarState
57{
58
59public:
60 ESISegment::Pointer extractList();
61 char *extractChar();
62 void feedData (const char *buf, size_t len);
63 void buildVary (HttpReply *rep);
64
65 class Variable;
66 void addVariable (char const *, size_t, Variable *);
67 void removeVariable (String const &);
68
69 void *operator new (size_t byteCount);
70 void operator delete (void *address);
71 void deleteSelf() const;
72 void freeResources();
73 ESIVarState (HttpHeader const *hdr, char const *uri);
74 ~ESIVarState();
75
76 /* For Variables */
77 void cookieUsed();
78 void hostUsed();
79 void languageUsed();
80 void refererUsed();
81 void useragentUsed();
82 ESISegment::Pointer &getOutput();
83 HttpHeader &header();
84
85private:
86 ESISegment::Pointer input;
87 ESISegment::Pointer output;
88 HttpHeader hdr;
89
90 struct
91 {
92
93int language:
94 1;
95
96int cookie:
97 1;
98
99int host:
100 1;
101
102int referer:
103 1;
104
105int useragent:
106 1;
107 }
108
109 flags;
110
111public:
112
113 class Variable
114 {
115
116 public:
117 Variable () {}
118
119 virtual ~Variable(){}
120
121 /* prevent synthetics */
122 Variable (Variable const &) {}
123
124 Variable &operator= (Variable const &);
125 virtual void eval (ESIVarState &state, char const *, char const *) const;
126 };
127
128 Variable* GetVar(char const *s, int len);
129
130private:
131 void doIt ();
132 void setupUserAgent();
133 Trie variables;
134 Vector<Variable*> variablesForCleanup;
135 Variable *defaultVariable;
136};
137
138class ESIVariableCookie : public ESIVarState::Variable
139{
140
141public:
142 virtual void eval (ESIVarState &state, char const *, char const *) const;
143};
144
145class ESIVariableHost : public ESIVarState::Variable
146{
147
148public:
149 virtual void eval (ESIVarState &state, char const *, char const *) const;
150};
151
152class ESIVariableLanguage : public ESIVarState::Variable
153{
154
155public:
156 virtual void eval (ESIVarState &state, char const *, char const *) const;
157};
158
159class ESIVariableQuery : public ESIVarState::Variable
160{
161
162public:
163 ESIVariableQuery(char const *uri);
164 ~ESIVariableQuery();
165 virtual void eval (ESIVarState &state, char const *, char const *) const;
166 char const *queryString() const;
167
168 struct _query_elem const *queryVector() const;
169 size_t const &queryElements() const;
170
171 struct _query_elem *query;
172 size_t query_sz;
173 size_t query_elements;
174 char *query_string;
175};
176
177class ESIVariableReferer : public ESIVarState::Variable
178{
179
180public:
181 virtual void eval (ESIVarState &state, char const *, char const *) const;
182};
183
184class ESIVariableUserAgent : public ESIVarState::Variable
185{
186
187public:
188 ~ESIVariableUserAgent();
189 ESIVariableUserAgent (ESIVarState &state);
190 virtual void eval (ESIVarState &state, char const *, char const *) const;
191
192private:
193 static char const * esiUserOs[];
194 enum esiUserOs_t{
195 ESI_OS_WIN,
196 ESI_OS_MAC,
197 ESI_OS_UNIX,
198 ESI_OS_OTHER
199 };
200 esiUserOs_t identifyOs(char const *) const;
201 char const *browserVersion() const {return browserversion;}
202
203 char *getProductVersion (char const *s);
204 esiUserOs_t UserOs;
205 esiBrowser_t browser;
206 char *browserversion;
207};
208
209
210
211#endif /* SQUID_ESIVARSTATE_H */