/usr/include/cgicc/HTTPResponseHeader.h is in libcgicc5-dev 3.2.9-3.
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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | /* -*-mode:c++; c-file-style: "gnu";-*- */
/*
* $Id: HTTPResponseHeader.h,v 1.9 2007/07/02 18:48:19 sebdiaz Exp $
*
* Copyright (C) 1996 - 2004 Stephen F. Booth <sbooth@gnu.org>
* 2007 Sebastien DIAZ <sebastien.diaz@gmail.com>
* Part of the GNU cgicc library, http://www.gnu.org/software/cgicc
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*/
#ifndef _HTTPRESPONSEHEADER_H_
#define _HTTPRESPONSEHEADER_H_ 1
#ifdef __GNUG__
# pragma interface
#endif
/*! \file HTTPResponseHeader.h
* \brief Class for generic, complete HTTP header responses
*
* This is an class usually only used with Non-Parsed Header (NPH)
* applications
*/
#include <string>
#include <vector>
#include "cgicc/MStreamable.h"
#include "cgicc/HTTPCookie.h"
namespace cgicc {
// ============================================================
// Class HTTPResponseHeader
// ============================================================
/*! \class HTTPResponseHeader HTTPResponseHeader.h cgicc/HTTPResponseHeader.h
* \brief Generic HTTP response header
*
* This class represents an HTTP response header as defined in
* section 6 of RFC 2616 (see http://www.w3.org)
*
* All HTTP/1.1 reponses consist of an initial status line containing
* the HTTP version, a 3-digit status code, and a human-readable reason
* phrase explaining the status code.
*
* The first digit of the Status-Code defines the class of
* response. The last two digits do not have any categorization
* role. There are 5 values for the first digit:
* <ul>
* <li>1xx: Informational - Request received, continuing process</li>
* <li>2xx: Success - The action was successfully received,
understood, and accepted</li>
* <li>3xx: Redirection - Further action must be taken in order to
* complete the request</li>
* <li>4xx: Client Error - The request contains bad syntax or cannot
* be fulfilled</li>
* <li>5xx: Server Error - The server failed to fulfill an apparently
* valid request</li></ul>
*/
class CGICC_API HTTPResponseHeader : public MStreamable
{
public:
/*! \name Constructor and Destructor */
//@{
/*!
* \brief Create a new HTTP response header
* \param http_version The HTTP version string, usually \c HTTP/1.1
* \param status_code The 3-digit HTTP status code
* \param reason_phrase A short textual description of the status code
*/
HTTPResponseHeader(const std::string& http_version,
int status_code,
const std::string& reason_phrase);
/*!
* \brief Delete this HTTPResponseHeader
*
*/
virtual ~HTTPResponseHeader();
//@}
// ============================================================
/*! \name Additional Header Management */
//@{
/*!
* \brief Add a general, response, or entity header to this one
*
* \param header The text of the header to add
* \return A reference to this
*/
HTTPResponseHeader&
addHeader(const std::string& header);
/*!
* \brief Add a general, response, or entity header to this one
*
* \param name The name of the header element to add
* \param value The value of the header element
* \return A reference to this
*/
HTTPResponseHeader&
addHeader(const std::string& name,
const std::string& value);
/*!
* \brief Get a list of all additional headers
*
* \return A list of all additional headers
*/
inline const std::vector<std::string>&
getHeaders() const
{ return fHeaders; }
//@}
/*! \name Cookie Management */
//@{
/*!
* \brief Set a cookie to go out with this HTTPResponseHeader
* \param cookie The HTTPCookie to set
*/
HTTPResponseHeader&
setCookie(const HTTPCookie& cookie);
/*!
* \brief Get a list of all cookies associated with this header
* \return All the cookies associated with this header
*/
inline const std::vector<HTTPCookie>&
getCookies() const
{ return fCookies; }
//@}
// ============================================================
/*! \name Accessor methods
* Retrieve information on the header
*/
//@{
/*!
* \brief Get the HTTP version
*
* The HTTP version is a string of the form \c HTTP/1.1
* \return The HTTP version
*/
inline const std::string&
getHTTPVersion() const
{ return fHTTPVersion; }
/*!
* \brief Get the 3-digit status code
*
* The 3-digit status code indicates the disposition of the response.
* \return The 3-digit status code
*/
inline int
getStatusCode() const
{ return fStatusCode; }
/*!
* \brief Get the reason phrase associated with the stats code
*
* The reason phrase is a human-readable interpretation of the status code
* \return The reason phrase
*/
inline std::string
getReasonPhrase() const
{ return fReasonPhrase; }
//@}
// ============================================================
/*! \name Mutator methods
* Set information on the header
*/
//@{
/*!
* \brief Set the HTTP version
*
* The HTTP version is a string of the form \c HTTP/1.1
* \param http_version The HTTP version string, usually \c HTTP/1.1
* \return A reference to this
*/
inline HTTPResponseHeader&
getHTTPVersion(const std::string& http_version)
{ fHTTPVersion = http_version; return *this; }
/*!
* \brief Get the 3-digit status code
*
* The 3-digit status code indicates the disposition of the response.
* \param status_code The 3-digit HTTP status code
* \return A reference to this
*/
inline HTTPResponseHeader&
getStatusCode(int status_code)
{ fStatusCode = status_code; return *this; }
/*!
* \brief Get the reason phrase associated with the stats code
*
* The reason phrase is a human-readable interpretation of the status code
* \param reason_phrase A short textual description of the status code
* \return A reference to this
*/
inline HTTPResponseHeader&
getReasonPhrase(const std::string& reason_phrase)
{ fReasonPhrase = reason_phrase; return *this; }
//@}
// ============================================================
/*! \name Inherited Methods */
//@{
virtual void
render(std::ostream& out) const;
//@}
private:
HTTPResponseHeader();
std::string fHTTPVersion;
int fStatusCode;
std::string fReasonPhrase;
std::vector<std::string> fHeaders;
std::vector<HTTPCookie> fCookies;
};
} // namespace cgicc
#endif /* ! _HTTPRESPONSEHEADER_H_ */
|