]> git.ipfire.org Git - thirdparty/squid.git/blob - src/HttpReply.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / HttpReply.h
1 /*
2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_HTTPREPLY_H
10 #define SQUID_HTTPREPLY_H
11
12 #include "http/StatusLine.h"
13 #include "HttpBody.h"
14 #include "HttpMsg.h"
15 #include "HttpRequest.h"
16
17 void httpReplyInitModule(void);
18
19 /* Sync changes here with HttpReply.cc */
20
21 class HttpHdrContRange;
22
23 class HttpHdrSc;
24
25 class HttpReply: public HttpMsg
26 {
27 MEMPROXY_CLASS(HttpReply);
28
29 public:
30 typedef RefCount<HttpReply> Pointer;
31
32 HttpReply();
33 ~HttpReply();
34
35 virtual void reset();
36
37 /**
38 \retval true on success
39 \retval false and sets *error to zero when needs more data
40 \retval false and sets *error to a positive Http::StatusCode on error
41 */
42 virtual bool sanityCheckStartLine(MemBuf *buf, const size_t hdr_len, Http::StatusCode *error);
43
44 /** \par public, readable; never update these or their .hdr equivalents directly */
45 time_t date;
46
47 time_t last_modified;
48
49 time_t expires;
50
51 String content_type;
52
53 HttpHdrSc *surrogate_control;
54
55 HttpHdrContRange *content_range;
56
57 short int keep_alive;
58
59 /** \par public, writable, but use httpReply* interfaces when possible */
60 Http::StatusLine sline;
61
62 HttpBody body; /**< for small constant memory-resident text bodies only */
63
64 String protoPrefix; /**< e.g., "HTTP/" */
65
66 bool do_clean;
67
68 public:
69 virtual int httpMsgParseError();
70
71 virtual bool expectingBody(const HttpRequestMethod&, int64_t&) const;
72
73 virtual bool inheritProperties(const HttpMsg *aMsg);
74
75 void updateOnNotModified(HttpReply const *other);
76
77 /** set commonly used info with one call */
78 void setHeaders(Http::StatusCode status,
79 const char *reason, const char *ctype, int64_t clen, time_t lmt, time_t expires);
80
81 /** \return a ready to use mem buffer with a packed reply */
82 MemBuf *pack();
83
84 /** construct a 304 reply and return it */
85 HttpReply *make304() const;
86
87 void redirect(Http::StatusCode, const char *);
88
89 int64_t bodySize(const HttpRequestMethod&) const;
90
91 /** Checks whether received body exceeds known maximum size.
92 * Requires a prior call to calcMaxBodySize().
93 */
94 bool receivedBodyTooLarge(HttpRequest&, int64_t receivedBodySize);
95
96 /** Checks whether expected body exceeds known maximum size.
97 * Requires a prior call to calcMaxBodySize().
98 */
99 bool expectedBodyTooLarge(HttpRequest& request);
100
101 int validatorsMatch (HttpReply const *other) const;
102
103 void packHeadersInto(Packer * p) const;
104
105 /** Clone this reply.
106 * Could be done as a copy-contructor but we do not want to accidently copy a HttpReply..
107 */
108 HttpReply *clone() const;
109
110 /// Remove Warnings with warn-date different from Date value
111 void removeStaleWarnings();
112
113 virtual void hdrCacheInit();
114
115 private:
116 /** initialize */
117 void init();
118
119 void clean();
120
121 void hdrCacheClean();
122
123 void packInto(Packer * p);
124
125 /* ez-routines */
126 /** \return construct 304 reply and pack it into a MemBuf */
127 MemBuf *packed304Reply();
128
129 /* header manipulation */
130 time_t hdrExpirationTime();
131
132 /** Calculates and stores maximum body size if needed.
133 * Used by receivedBodyTooLarge() and expectedBodyTooLarge().
134 */
135 void calcMaxBodySize(HttpRequest& request) const;
136
137 String removeStaleWarningValues(const String &value);
138
139 mutable int64_t bodySizeMax; /**< cached result of calcMaxBodySize */
140
141 protected:
142 virtual void packFirstLineInto(Packer * p, bool) const { sline.packInto(p); }
143
144 virtual bool parseFirstLine(const char *start, const char *end);
145 };
146
147 #endif /* SQUID_HTTPREPLY_H */
148