/usr/include/pion/net/HTTPResponse.hpp is in libpion-net-dev 4.0.7+dfsg-3.1ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // ------------------------------------------------------------------
// pion-net: a C++ framework for building lightweight HTTP interfaces
// ------------------------------------------------------------------
// Copyright (C) 2007-2008 Atomic Labs, Inc. (http://www.atomiclabs.com)
//
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
//
#ifndef __PION_HTTPRESPONSE_HEADER__
#define __PION_HTTPRESPONSE_HEADER__
#include <boost/shared_ptr.hpp>
#include <boost/lexical_cast.hpp>
#include <pion/PionConfig.hpp>
#include <pion/net/HTTPMessage.hpp>
#include <pion/net/HTTPRequest.hpp>
namespace pion { // begin namespace pion
namespace net { // begin namespace net (Pion Network Library)
///
/// HTTPResponse: container for HTTP response information
///
class HTTPResponse
: public HTTPMessage
{
public:
/**
* constructs a new HTTPResponse object for a particular request
*
* @param http_request the request that this is responding to
*/
HTTPResponse(const HTTPRequest& http_request)
: m_status_code(RESPONSE_CODE_OK),
m_status_message(RESPONSE_MESSAGE_OK)
{
updateRequestInfo(http_request);
}
/**
* constructs a new HTTPResponse object for a particular request method
*
* @param request_method the method used by the HTTP request we are responding to
*/
HTTPResponse(const std::string& request_method)
: m_status_code(RESPONSE_CODE_OK), m_status_message(RESPONSE_MESSAGE_OK),
m_request_method(request_method)
{}
/// copy constructor
HTTPResponse(const HTTPResponse& http_response)
: HTTPMessage(http_response),
m_status_code(http_response.m_status_code),
m_status_message(http_response.m_status_message),
m_request_method(http_response.m_request_method)
{}
/// default constructor: you are strongly encouraged to use one of the other
/// constructors, since HTTPResponse parsing is influenced by the request method
HTTPResponse(void)
: m_status_code(RESPONSE_CODE_OK),
m_status_message(RESPONSE_MESSAGE_OK)
{}
/// virtual destructor
virtual ~HTTPResponse() {}
/// clears all response data
virtual void clear(void) {
HTTPMessage::clear();
m_status_code = RESPONSE_CODE_OK;
m_status_message = RESPONSE_MESSAGE_OK;
m_request_method.clear();
}
/// the content length may be implied for certain types of responses
virtual bool isContentLengthImplied(void) const {
return (m_request_method == REQUEST_METHOD_HEAD // HEAD responses have no content
|| (m_status_code >= 100 && m_status_code <= 199) // 1xx responses have no content
|| m_status_code == 204 || m_status_code == 205 // no content & reset content responses
|| m_status_code == 304 // not modified responses have no content
);
}
/**
* Updates HTTP request information for the response object (use
* this if the response cannot be constructed using the request)
*
* @param http_request the request that this is responding to
*/
inline void updateRequestInfo(const HTTPRequest& http_request) {
m_request_method = http_request.getMethod();
if (http_request.getVersionMajor() == 1 && http_request.getVersionMinor() >= 1)
setChunksSupported(true);
}
/// sets the HTTP response status code
inline void setStatusCode(unsigned int n) {
m_status_code = n;
clearFirstLine();
}
/// sets the HTTP response status message
inline void setStatusMessage(const std::string& msg) {
m_status_message = msg;
clearFirstLine();
}
/// returns the HTTP response status code
inline unsigned int getStatusCode(void) const { return m_status_code; }
/// returns the HTTP response status message
inline const std::string& getStatusMessage(void) const { return m_status_message; }
/**
* sets a cookie by adding a Set-Cookie header (see RFC 2109)
* the cookie will be discarded by the user-agent when it closes
*
* @param name the name of the cookie
* @param value the value of the cookie
*/
inline void setCookie(const std::string& name, const std::string& value) {
std::string set_cookie_header(make_set_cookie_header(name, value, "/"));
addHeader(HEADER_SET_COOKIE, set_cookie_header);
}
/**
* sets a cookie by adding a Set-Cookie header (see RFC 2109)
* the cookie will be discarded by the user-agent when it closes
*
* @param name the name of the cookie
* @param value the value of the cookie
* @param path the path of the cookie
*/
inline void setCookie(const std::string& name, const std::string& value,
const std::string& path)
{
std::string set_cookie_header(make_set_cookie_header(name, value, path));
addHeader(HEADER_SET_COOKIE, set_cookie_header);
}
/**
* sets a cookie by adding a Set-Cookie header (see RFC 2109)
*
* @param name the name of the cookie
* @param value the value of the cookie
* @param path the path of the cookie
* @param max_age the life of the cookie, in seconds (0 = discard)
*/
inline void setCookie(const std::string& name, const std::string& value,
const std::string& path, const unsigned long max_age)
{
std::string set_cookie_header(make_set_cookie_header(name, value, path, true, max_age));
addHeader(HEADER_SET_COOKIE, set_cookie_header);
}
/**
* sets a cookie by adding a Set-Cookie header (see RFC 2109)
*
* @param name the name of the cookie
* @param value the value of the cookie
* @param max_age the life of the cookie, in seconds (0 = discard)
*/
inline void setCookie(const std::string& name, const std::string& value,
const unsigned long max_age)
{
std::string set_cookie_header(make_set_cookie_header(name, value, "/", true, max_age));
addHeader(HEADER_SET_COOKIE, set_cookie_header);
}
/// deletes cookie called name by adding a Set-Cookie header (cookie has no path)
inline void deleteCookie(const std::string& name) {
std::string set_cookie_header(make_set_cookie_header(name, "", "/", true, 0));
addHeader(HEADER_SET_COOKIE, set_cookie_header);
}
/// deletes cookie called name by adding a Set-Cookie header (cookie has a path)
inline void deleteCookie(const std::string& name, const std::string& path) {
std::string set_cookie_header(make_set_cookie_header(name, "", path, true, 0));
addHeader(HEADER_SET_COOKIE, set_cookie_header);
}
/// sets the time that the response was last modified (Last-Modified)
inline void setLastModified(const unsigned long t) {
changeHeader(HEADER_LAST_MODIFIED, get_date_string(t));
}
protected:
/// updates the string containing the first line for the HTTP message
virtual void updateFirstLine(void) const {
// start out with the HTTP version
m_first_line = getVersionString();
m_first_line += ' ';
// append the response status code
m_first_line += boost::lexical_cast<std::string>(m_status_code);
m_first_line += ' ';
// append the response status message
m_first_line += m_status_message;
}
private:
/// The HTTP response status code
unsigned int m_status_code;
/// The HTTP response status message
std::string m_status_message;
/// HTTP method used by the request
std::string m_request_method;
};
/// data type for a HTTP response pointer
typedef boost::shared_ptr<HTTPResponse> HTTPResponsePtr;
} // end namespace net
} // end namespace pion
#endif
|