]> git.ipfire.org Git - thirdparty/squid.git/blob - src/HttpReply.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / HttpReply.h
1 /*
2 * Copyright (C) 1996-2018 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 "HttpRequest.h"
15
16 void httpReplyInitModule(void);
17
18 /* Sync changes here with HttpReply.cc */
19
20 class HttpHdrContRange;
21
22 class HttpHdrSc;
23
24 class HttpReply: public Http::Message
25 {
26 MEMPROXY_CLASS(HttpReply);
27
28 public:
29 typedef RefCount<HttpReply> Pointer;
30
31 HttpReply();
32 ~HttpReply();
33
34 virtual void reset();
35
36 /**
37 \retval true on success
38 \retval false and sets *error to zero when needs more data
39 \retval false and sets *error to a positive Http::StatusCode on error
40 */
41 virtual bool sanityCheckStartLine(const char *buf, const size_t hdr_len, Http::StatusCode *error);
42
43 /** \par public, readable; never update these or their .hdr equivalents directly */
44 time_t date;
45
46 time_t last_modified;
47
48 time_t expires;
49
50 String content_type;
51
52 HttpHdrSc *surrogate_control;
53
54 /// \returns parsed Content-Range for a 206 response and nil for others
55 const HttpHdrContRange *contentRange() const;
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 Http::Message *);
74
75 bool 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() const;
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(Packable * 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 /// whether our Date header value is smaller than theirs
116 /// \returns false if any information is missing
117 bool olderThan(const HttpReply *them) const;
118
119 private:
120 /** initialize */
121 void init();
122
123 void clean();
124
125 void hdrCacheClean();
126
127 void packInto(Packable * p) const;
128
129 /* ez-routines */
130 /** \return construct 304 reply and pack it into a MemBuf */
131 MemBuf *packed304Reply() const;
132
133 /* header manipulation */
134 time_t hdrExpirationTime();
135
136 /** Calculates and stores maximum body size if needed.
137 * Used by receivedBodyTooLarge() and expectedBodyTooLarge().
138 */
139 void calcMaxBodySize(HttpRequest& request) const;
140
141 String removeStaleWarningValues(const String &value);
142
143 mutable int64_t bodySizeMax; /**< cached result of calcMaxBodySize */
144
145 HttpHdrContRange *content_range; ///< parsed Content-Range; nil for non-206 responses!
146
147 protected:
148 virtual void packFirstLineInto(Packable * p, bool) const { sline.packInto(p); }
149
150 virtual bool parseFirstLine(const char *start, const char *end);
151 };
152
153 #endif /* SQUID_HTTPREPLY_H */
154