]> git.ipfire.org Git - thirdparty/squid.git/blob - src/AccessLogEntry.h
SourceLayout: format namespace for custom tag-based formats
[thirdparty/squid.git] / src / AccessLogEntry.h
1 /*
2 * SQUID Web Proxy Cache http://www.squid-cache.org/
3 * ----------------------------------------------------------
4 *
5 * Squid is the result of efforts by numerous individuals from
6 * the Internet community; see the CONTRIBUTORS file for full
7 * details. Many organizations have provided support for Squid's
8 * development; see the SPONSORS file for full details. Squid is
9 * Copyrighted (C) 2001 by the Regents of the University of
10 * California; see the COPYRIGHT file for full details. Squid
11 * incorporates software developed and/or copyrighted by other
12 * sources; see the CREDITS file for full details.
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
27 *
28 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
29 */
30 #ifndef SQUID_HTTPACCESSLOGENTRY_H
31 #define SQUID_HTTPACCESSLOGENTRY_H
32
33 #include "HttpVersion.h"
34 #include "HttpRequestMethod.h"
35 #include "HierarchyLogEntry.h"
36 #include "ip/Address.h"
37 #include "HttpRequestMethod.h"
38 #if ICAP_CLIENT
39 #include "adaptation/icap/Elements.h"
40 #endif
41
42 /* forward decls */
43 class HttpReply;
44 class HttpRequest;
45
46 class AccessLogEntry
47 {
48
49 public:
50 AccessLogEntry() : url(NULL) , reply(NULL), request(NULL),
51 adapted_request(NULL) {}
52
53 const char *url;
54
55 /** \brief This subclass holds log info for HTTP protocol
56 * \todo Inner class declarations should be moved outside
57 * \todo details of HTTP held in the parent class need moving into here.
58 */
59 class HttpDetails
60 {
61
62 public:
63 HttpDetails() : method(METHOD_NONE), code(0), content_type(NULL),
64 timedout(false), aborted(false) {}
65
66 HttpRequestMethod method;
67 int code;
68 const char *content_type;
69 HttpVersion version;
70 bool timedout; ///< terminated due to a lifetime or I/O timeout
71 bool aborted; ///< other abnormal termination (e.g., I/O error)
72
73 /// compute suffix for the status access.log field
74 const char *statusSfx() const {
75 return timedout ? "_TIMEDOUT" : (aborted ? "_ABORTED" : "");
76 }
77 } http;
78
79 /** \brief This subclass holds log info for ICP protocol
80 * \todo Inner class declarations should be moved outside
81 */
82 class IcpDetails
83 {
84
85 public:
86 IcpDetails() : opcode(ICP_INVALID) {}
87
88 icp_opcode opcode;
89 } icp;
90
91 /** \brief This subclass holds log info for HTCP protocol
92 * \todo Inner class declarations should be moved outside
93 */
94 class HtcpDetails
95 {
96 public:
97 HtcpDetails() : opcode(NULL) {};
98
99 const char *opcode;
100 } htcp;
101
102 /** \brief This subclass holds log info for Squid internal stats
103 * \todo Inner class declarations should be moved outside
104 * \todo some details relevant to particular protocols need shuffling to other sub-classes
105 * \todo this object field need renaming to 'squid' or something.
106 */
107 class CacheDetails
108 {
109
110 public:
111 CacheDetails() : caddr(),
112 requestSize(0),
113 replySize(0),
114 requestHeadersSize(0),
115 replyHeadersSize(0),
116 highOffset(0),
117 objectSize(0),
118 code (LOG_TAG_NONE),
119 msec(0),
120 rfc931 (NULL),
121 authuser (NULL),
122 extuser(NULL)
123 #if USE_SSL
124 ,ssluser(NULL)
125 #endif
126 {;
127 }
128
129 Ip::Address caddr;
130 int64_t requestSize;
131 int64_t replySize;
132 int requestHeadersSize; ///< received, including request line
133 int replyHeadersSize; ///< sent, including status line
134 int64_t highOffset;
135 int64_t objectSize;
136 log_type code;
137 int msec;
138 const char *rfc931;
139 const char *authuser;
140 const char *extuser;
141 #if USE_SSL
142
143 const char *ssluser;
144 #endif
145
146 } cache;
147
148 /** \brief This subclass holds log info for various headers in raw format
149 * \todo shuffle this to the relevant protocol section.
150 */
151 class Headers
152 {
153
154 public:
155 Headers() : request(NULL),
156 adapted_request(NULL),
157 reply(NULL) {}
158
159 char *request; //< virgin HTTP request headers
160
161 char *adapted_request; //< HTTP request headers after adaptation and redirection
162
163 char *reply;
164 } headers;
165
166 #if USE_ADAPTATION
167 /** \brief This subclass holds general adaptation log info.
168 * \todo Inner class declarations should be moved outside.
169 */
170 class AdaptationDetails
171 {
172
173 public:
174 AdaptationDetails(): last_meta(NULL) {}
175
176 /// image of the last ICAP response header or eCAP meta received
177 char *last_meta;
178 } adapt;
179 #endif
180
181 // Why is this a sub-class and not a set of real "private:" fields?
182 // It looks like its duplicating HTTPRequestMethod anyway!
183 // TODO: shuffle this to the relevant protocol section OR replace with request->method
184 class Private
185 {
186
187 public:
188 Private() : method_str(NULL) {}
189
190 const char *method_str;
191 } _private;
192 HierarchyLogEntry hier;
193 HttpReply *reply;
194 HttpRequest *request; //< virgin HTTP request
195 HttpRequest *adapted_request; //< HTTP request after adaptation and redirection
196
197
198 #if ICAP_CLIENT
199 /** \brief This subclass holds log info for ICAP part of request
200 * \todo Inner class declarations should be moved outside
201 */
202 class IcapLogEntry
203 {
204 public:
205 IcapLogEntry():bodyBytesRead(-1),request(NULL),reply(NULL),outcome(Adaptation::Icap::xoUnknown),trTime(0),ioTime(0),resStatus(HTTP_STATUS_NONE) {}
206
207 Ip::Address hostAddr; ///< ICAP server IP address
208 String serviceName; ///< ICAP service name
209 String reqUri; ///< ICAP Request-URI
210 Adaptation::Icap::ICAP::Method reqMethod; ///< ICAP request method
211 int64_t bytesSent; ///< number of bytes sent to ICAP server so far
212 int64_t bytesRead; ///< number of bytes read from ICAP server so far
213 /**
214 * number of ICAP body bytes read from ICAP server or -1 for no encapsulated
215 * message data in ICAP reply (eg 204 responses)
216 */
217 int64_t bodyBytesRead;
218 HttpRequest* request; ///< ICAP request
219 HttpReply* reply; ///< ICAP reply
220
221 Adaptation::Icap::XactOutcome outcome; ///< final transaction status
222 /** \brief Transaction response time.
223 * The timer starts when the ICAP transaction
224 * is created and stops when the result of the transaction is logged
225 */
226 int trTime;
227 /** \brief Transaction I/O time.
228 * The timer starts when the first ICAP request
229 * byte is scheduled for sending and stops when the lastbyte of the
230 * ICAP response is received.
231 */
232 int ioTime;
233 http_status resStatus; ///< ICAP response status code
234 int processingTime; ///< total ICAP processing time in milliseconds
235 }
236 icap;
237 #endif
238 };
239
240 class ACLChecklist;
241 class StoreEntry;
242
243 /* Should be in 'AccessLog.h' as the driver */
244 extern void accessLogLogTo(customlog* log, AccessLogEntry* al, ACLChecklist* checklist = NULL);
245 extern void accessLogLog(AccessLogEntry *, ACLChecklist * checklist);
246 extern void accessLogRotate(void);
247 extern void accessLogClose(void);
248 extern void accessLogInit(void);
249 extern void accessLogFreeMemory(AccessLogEntry * aLogEntry);
250 extern const char *accessLogTime(time_t);
251
252 #endif /* SQUID_HTTPACCESSLOGENTRY_H */