Menu

[r224]: / trunk / boost / network / protocol / http / reply.hpp  Maximize  Restore  History

Download this file

329 lines (306 with data), 12.6 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
//
// reply.hpp
// ~~~~~~~~~
//
// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
// Copyright (c) 2009 Dean Michael Berris (mikhailberis@gmail.com)
// Copyright (c) 2009 Tarroo, Inc.
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Note: This implementation has significantly changed from the original example
// from a plain header file into a header-only implementation using C++ templates
// to reduce the dependence on building an external library.
//
#ifndef BOOST_NETWORK_HTTP_REPLY_HPP_
#define BOOST_NETWORK_HTTP_REPLY_HPP_
#include <string>
#include <vector>
#include <boost/asio.hpp>
#include <boost/lexical_cast.hpp>
#include "header.hpp"
namespace boost { namespace network { namespace http {
namespace tag {
struct default_;
}
/// A reply to be sent to a client.
template <class Tag>
struct basic_reply
{
/// The status of the reply.
enum status_type
{
ok = 200,
created = 201,
accepted = 202,
no_content = 204,
multiple_choices = 300,
moved_permanently = 301,
moved_temporarily = 302,
not_modified = 304,
bad_request = 400,
unauthorized = 401,
forbidden = 403,
not_found = 404,
not_supported = 405,
not_acceptable = 406,
internal_server_error = 500,
not_implemented = 501,
bad_gateway = 502,
service_unavailable = 503
} status;
/// The headers to be included in the reply.
std::vector<request_header> headers;
/// The content to be sent in the reply.
std::string content;
/// Convert the reply into a vector of buffers. The buffers do not own the
/// underlying memory blocks, therefore the reply object must remain valid and
/// not be changed until the write operation has completed.
std::vector<boost::asio::const_buffer> to_buffers() {
using boost::asio::const_buffer;
using boost::asio::buffer;
static const char name_value_separator[] = { ':', ' ' };
static const char crlf[] = { '\r', '\n' };
std::vector<const_buffer> buffers;
buffers.push_back(to_buffer(status));
for (std::size_t i = 0; i < headers.size(); ++i)
{
request_header& h = headers[i];
buffers.push_back(buffer(h.name));
buffers.push_back(buffer(name_value_separator));
buffers.push_back(buffer(h.value));
buffers.push_back(buffer(crlf));
}
buffers.push_back(buffer(crlf));
buffers.push_back(buffer(content));
return buffers;
}
/// Get a stock reply.
static basic_reply stock_reply(status_type status) {
using boost::lexical_cast;
basic_reply rep;
rep.status = status;
rep.content = to_string(status);
rep.headers.resize(2);
rep.headers[0].name = "Content-Length";
rep.headers[0].value = lexical_cast<std::string>(rep.content.size());
rep.headers[1].name = "Content-Type";
rep.headers[1].value = "text/html";
return rep;
}
private:
static std::string to_string(status_type status) {
static const char ok[] = "";
static const char created[] =
"<html>"
"<head><title>Created</title></head>"
"<body><h1>201 Created</h1></body>"
"</html>";
static const char accepted[] =
"<html>"
"<head><title>Accepted</title></head>"
"<body><h1>202 Accepted</h1></body>"
"</html>";
static const char no_content[] =
"<html>"
"<head><title>No Content</title></head>"
"<body><h1>204 Content</h1></body>"
"</html>";
static const char multiple_choices[] =
"<html>"
"<head><title>Multiple Choices</title></head>"
"<body><h1>300 Multiple Choices</h1></body>"
"</html>";
static const char moved_permanently[] =
"<html>"
"<head><title>Moved Permanently</title></head>"
"<body><h1>301 Moved Permanently</h1></body>"
"</html>";
static const char moved_temporarily[] =
"<html>"
"<head><title>Moved Temporarily</title></head>"
"<body><h1>302 Moved Temporarily</h1></body>"
"</html>";
static const char not_modified[] =
"<html>"
"<head><title>Not Modified</title></head>"
"<body><h1>304 Not Modified</h1></body>"
"</html>";
static const char bad_request[] =
"<html>"
"<head><title>Bad Request</title></head>"
"<body><h1>400 Bad Request</h1></body>"
"</html>";
static const char unauthorized[] =
"<html>"
"<head><title>Unauthorized</title></head>"
"<body><h1>401 Unauthorized</h1></body>"
"</html>";
static const char forbidden[] =
"<html>"
"<head><title>Forbidden</title></head>"
"<body><h1>403 Forbidden</h1></body>"
"</html>";
static const char not_found[] =
"<html>"
"<head><title>Not Found</title></head>"
"<body><h1>404 Not Found</h1></body>"
"</html>";
static const char not_supported[] =
"<html>"
"<head><title>Method Not Supported</title></head>"
"<body><h1>Method Not Supported</h1></body>"
"</html>";
static const char not_acceptable[] =
"<html>"
"<head><title>Request Not Acceptable</title></head>"
"<body><h1>Request Not Acceptable</h1></body>"
"</html>";
static const char internal_server_error[] =
"<html>"
"<head><title>Internal Server Error</title></head>"
"<body><h1>500 Internal Server Error</h1></body>"
"</html>";
static const char not_implemented[] =
"<html>"
"<head><title>Not Implemented</title></head>"
"<body><h1>501 Not Implemented</h1></body>"
"</html>";
static const char bad_gateway[] =
"<html>"
"<head><title>Bad Gateway</title></head>"
"<body><h1>502 Bad Gateway</h1></body>"
"</html>";
static const char service_unavailable[] =
"<html>"
"<head><title>Service Unavailable</title></head>"
"<body><h1>503 Service Unavailable</h1></body>"
"</html>";
switch (status)
{
case basic_reply::ok:
return ok;
case basic_reply::created:
return created;
case basic_reply::accepted:
return accepted;
case basic_reply::no_content:
return no_content;
case basic_reply::multiple_choices:
return multiple_choices;
case basic_reply::moved_permanently:
return moved_permanently;
case basic_reply::moved_temporarily:
return moved_temporarily;
case basic_reply::not_modified:
return not_modified;
case basic_reply::bad_request:
return bad_request;
case basic_reply::unauthorized:
return unauthorized;
case basic_reply::forbidden:
return forbidden;
case basic_reply::not_found:
return not_found;
case basic_reply::not_supported:
return not_supported;
case basic_reply::not_acceptable:
return not_acceptable;
case basic_reply::internal_server_error:
return internal_server_error;
case basic_reply::not_implemented:
return not_implemented;
case basic_reply::bad_gateway:
return bad_gateway;
case basic_reply::service_unavailable:
return service_unavailable;
default:
return internal_server_error;
}
}
boost::asio::const_buffer to_buffer(status_type status) {
using boost::asio::buffer;
static const std::string ok =
"HTTP/1.0 200 OK\r\n";
static const std::string created =
"HTTP/1.0 201 Created\r\n";
static const std::string accepted =
"HTTP/1.0 202 Accepted\r\n";
static const std::string no_content =
"HTTP/1.0 204 No Content\r\n";
static const std::string multiple_choices =
"HTTP/1.0 300 Multiple Choices\r\n";
static const std::string moved_permanently =
"HTTP/1.0 301 Moved Permanently\r\n";
static const std::string moved_temporarily =
"HTTP/1.0 302 Moved Temporarily\r\n";
static const std::string not_modified =
"HTTP/1.0 304 Not Modified\r\n";
static const std::string bad_request =
"HTTP/1.0 400 Bad Request\r\n";
static const std::string unauthorized =
"HTTP/1.0 401 Unauthorized\r\n";
static const std::string forbidden =
"HTTP/1.0 403 Forbidden\r\n";
static const std::string not_found =
"HTTP/1.0 404 Not Found\r\n";
static const std::string not_supported =
"HTTP/1.0 405 Method Not Supported\r\n";
static const std::string not_acceptable =
"HTTP/1.0 406 Method Not Acceptable\r\n";
static const std::string internal_server_error =
"HTTP/1.0 500 Internal Server Error\r\n";
static const std::string not_implemented =
"HTTP/1.0 501 Not Implemented\r\n";
static const std::string bad_gateway =
"HTTP/1.0 502 Bad Gateway\r\n";
static const std::string service_unavailable =
"HTTP/1.0 503 Service Unavailable\r\n";
switch (status) {
case basic_reply::ok:
return buffer(ok);
case basic_reply::created:
return buffer(created);
case basic_reply::accepted:
return buffer(accepted);
case basic_reply::no_content:
return buffer(no_content);
case basic_reply::multiple_choices:
return buffer(multiple_choices);
case basic_reply::moved_permanently:
return buffer(moved_permanently);
case basic_reply::moved_temporarily:
return buffer(moved_temporarily);
case basic_reply::not_modified:
return buffer(not_modified);
case basic_reply::bad_request:
return buffer(bad_request);
case basic_reply::unauthorized:
return buffer(unauthorized);
case basic_reply::forbidden:
return buffer(forbidden);
case basic_reply::not_found:
return buffer(not_found);
case basic_reply::not_supported:
return buffer(not_supported);
case basic_reply::not_acceptable:
return buffer(not_acceptable);
case basic_reply::internal_server_error:
return buffer(internal_server_error);
case basic_reply::not_implemented:
return buffer(not_implemented);
case basic_reply::bad_gateway:
return buffer(bad_gateway);
case basic_reply::service_unavailable:
return buffer(service_unavailable);
default:
return buffer(internal_server_error);
}
}
};
typedef basic_reply<tag::default_> reply;
} // namespace http
} // namespace network
} // namespace boost
#endif // BOOST_NETWORK_HTTP_REPLY_HPP_