]> git.ipfire.org Git - thirdparty/squid.git/blob - src/client_side_reply.h
Merged from trunk
[thirdparty/squid.git] / src / client_side_reply.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
31 #ifndef SQUID_CLIENTSIDEREPLY_H
32 #define SQUID_CLIENTSIDEREPLY_H
33
34 #include "client_side_request.h"
35 #include "clientStream.h"
36 #include "HttpHeader.h"
37 #include "RefCount.h"
38 #include "RequestFlags.h"
39 #include "StoreClient.h"
40
41 class ErrorState;
42 #include "ip/forward.h"
43
44 /* XXX make static method */
45
46 class clientReplyContext : public RefCountable, public StoreClient
47 {
48
49 public:
50 void *operator new (size_t byteCount);
51 void operator delete (void *address);
52 static STCB CacheHit;
53 static STCB HandleIMSReply;
54 static STCB SendMoreData;
55
56 clientReplyContext(ClientHttpRequest *);
57 ~clientReplyContext();
58
59 void saveState();
60 void restoreState();
61 void purgeRequest ();
62 void purgeRequestFindObjectToPurge();
63 void purgeDoMissPurge();
64 void purgeFoundGet(StoreEntry *newEntry);
65 void purgeFoundHead(StoreEntry *newEntry);
66 void purgeFoundObject(StoreEntry *entry);
67 void sendClientUpstreamResponse();
68 void purgeDoPurgeGet(StoreEntry *entry);
69 void purgeDoPurgeHead(StoreEntry *entry);
70 void doGetMoreData();
71 void identifyStoreObject();
72 void identifyFoundObject(StoreEntry *entry);
73 int storeOKTransferDone() const;
74 int storeNotOKTransferDone() const;
75 /// replaces current response store entry with the given one
76 void setReplyToStoreEntry(StoreEntry *e);
77 /// builds error using clientBuildError() and calls setReplyToError() below
78 void setReplyToError(err_type, http_status, const HttpRequestMethod&, char const *, Ip::Address &, HttpRequest *, const char *,
79 #if USE_AUTH
80 Auth::UserRequest::Pointer);
81 #else
82 void * unused);
83 #endif
84 /// creates a store entry for the reply and appends err to it
85 void setReplyToError(const HttpRequestMethod& method, ErrorState *err);
86 void createStoreEntry(const HttpRequestMethod& m, RequestFlags flags);
87 void removeStoreReference(store_client ** scp, StoreEntry ** ep);
88 void removeClientStoreReference(store_client **scp, ClientHttpRequest *http);
89 void startError(ErrorState * err);
90 void processExpired();
91 clientStream_status_t replyStatus();
92 void processMiss();
93 void traceReply(clientStreamNode * node);
94
95 http_status purgeStatus;
96
97 /* state variable - replace with class to handle storeentries at some point */
98 int lookingforstore;
99 virtual void created (StoreEntry *newEntry);
100
101 ClientHttpRequest *http;
102 int headers_sz;
103 store_client *sc; /* The store_client we're using */
104 StoreIOBuffer tempBuffer; /* For use in validating requests via IMS */
105 int old_reqsize; /* ... again, for the buffer */
106 size_t reqsize;
107 size_t reqofs;
108 char tempbuf[HTTP_REQBUF_SZ]; /* a temporary buffer if we need working storage */
109 #if USE_CACHE_DIGESTS
110
111 const char *lookup_type; /* temporary hack: storeGet() result: HIT/MISS/NONE */
112 #endif
113
114 struct {
115
116 unsigned storelogiccomplete:1;
117
118 unsigned complete:1; /* we have read all we can from upstream */
119 bool headersSent;
120 } flags;
121 clientStreamNode *ourNode; /* This will go away if/when this file gets refactored some more */
122
123 private:
124 clientStreamNode *getNextNode() const;
125 void makeThisHead();
126 bool errorInStream(StoreIOBuffer const &result, size_t const &sizeToProcess)const ;
127 void sendStreamError(StoreIOBuffer const &result);
128 void pushStreamData(StoreIOBuffer const &result, char *source);
129 clientStreamNode * next() const;
130 StoreIOBuffer holdingBuffer;
131 HttpReply *reply;
132 void processReplyAccess();
133 static ACLCB ProcessReplyAccessResult;
134 void processReplyAccessResult(const allow_t &accessAllowed);
135 void cloneReply();
136 void buildReplyHeader ();
137 bool alwaysAllowResponse(http_status sline) const;
138 int checkTransferDone();
139 void processOnlyIfCachedMiss();
140 void processConditional(StoreIOBuffer &result);
141 void cacheHit(StoreIOBuffer result);
142 void handleIMSReply(StoreIOBuffer result);
143 void sendMoreData(StoreIOBuffer result);
144 void triggerInitialStoreRead();
145 void sendClientOldEntry();
146 void purgeAllCached();
147
148 void sendBodyTooLargeError();
149 void sendPreconditionFailedError();
150 void sendNotModified();
151 void sendNotModifiedOrPreconditionFailedError();
152
153 StoreEntry *old_entry;
154 store_client *old_sc; /* ... for entry to be validated */
155 bool deleting;
156
157 CBDATA_CLASS(clientReplyContext);
158 };
159
160 #endif /* SQUID_CLIENTSIDEREPLY_H */