/usr/include/pion/net/HTTPResponseWriter.hpp is in libpion-net-dev 4.0.7+dfsg-3.1ubuntu2.
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 | // ------------------------------------------------------------------
// 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_HTTPRESPONSEWRITER_HEADER__
#define __PION_HTTPRESPONSEWRITER_HEADER__
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <boost/noncopyable.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <pion/PionConfig.hpp>
#include <pion/net/HTTPWriter.hpp>
#include <pion/net/HTTPRequest.hpp>
#include <pion/net/HTTPResponse.hpp>
namespace pion { // begin namespace pion
namespace net { // begin namespace net (Pion Network Library)
///
/// HTTPResponseWriter: used to asynchronously send HTTP responses
///
class PION_NET_API HTTPResponseWriter :
public HTTPWriter,
public boost::enable_shared_from_this<HTTPResponseWriter>
{
public:
/// default destructor
virtual ~HTTPResponseWriter() {}
/**
* creates new HTTPResponseWriter objects
*
* @param tcp_conn TCP connection used to send the response
* @param http_response pointer to the response that will be sent
* @param handler function called after the response has been sent
*
* @return boost::shared_ptr<HTTPResponseWriter> shared pointer to
* the new writer object that was created
*/
static inline boost::shared_ptr<HTTPResponseWriter> create(TCPConnectionPtr& tcp_conn,
HTTPResponsePtr& http_response,
FinishedHandler handler = FinishedHandler())
{
return boost::shared_ptr<HTTPResponseWriter>(new HTTPResponseWriter(tcp_conn, http_response, handler));
}
/**
* creates new HTTPResponseWriter objects
*
* @param tcp_conn TCP connection used to send the response
* @param http_request the request we are responding to
* @param handler function called after the request has been sent
*
* @return boost::shared_ptr<HTTPResponseWriter> shared pointer to
* the new writer object that was created
*/
static inline boost::shared_ptr<HTTPResponseWriter> create(TCPConnectionPtr& tcp_conn,
const HTTPRequest& http_request,
FinishedHandler handler = FinishedHandler())
{
return boost::shared_ptr<HTTPResponseWriter>(new HTTPResponseWriter(tcp_conn, http_request, handler));
}
/// returns a non-const reference to the response that will be sent
inline HTTPResponse& getResponse(void) { return *m_http_response; }
protected:
/**
* protected constructor restricts creation of objects (use create())
*
* @param tcp_conn TCP connection used to send the response
* @param http_response pointer to the response that will be sent
* @param handler function called after the request has been sent
*/
HTTPResponseWriter(TCPConnectionPtr& tcp_conn, HTTPResponsePtr& http_response,
FinishedHandler handler)
: HTTPWriter(tcp_conn, handler), m_http_response(http_response)
{
setLogger(PION_GET_LOGGER("pion.net.HTTPResponseWriter"));
// tell the HTTPWriter base class whether or not the client supports chunks
supportsChunkedMessages(m_http_response->getChunksSupported());
// check if we should initialize the payload content using
// the response's content buffer
if (http_response->getContentLength() > 0
&& http_response->getContent() != NULL
&& http_response->getContent()[0] != '\0')
{
writeNoCopy(http_response->getContent(), http_response->getContentLength());
}
}
/**
* protected constructor restricts creation of objects (use create())
*
* @param tcp_conn TCP connection used to send the response
* @param http_request the request we are responding to
* @param handler function called after the request has been sent
*/
HTTPResponseWriter(TCPConnectionPtr& tcp_conn, const HTTPRequest& http_request,
FinishedHandler handler)
: HTTPWriter(tcp_conn, handler), m_http_response(new HTTPResponse(http_request))
{
setLogger(PION_GET_LOGGER("pion.net.HTTPResponseWriter"));
// tell the HTTPWriter base class whether or not the client supports chunks
supportsChunkedMessages(m_http_response->getChunksSupported());
}
/**
* initializes a vector of write buffers with the HTTP message information
*
* @param write_buffers vector of write buffers to initialize
*/
virtual void prepareBuffersForSend(HTTPMessage::WriteBuffers& write_buffers) {
if (getContentLength() > 0)
m_http_response->setContentLength(getContentLength());
m_http_response->prepareBuffersForSend(write_buffers,
getTCPConnection()->getKeepAlive(),
sendingChunkedMessage());
}
/// returns a function bound to HTTPWriter::handleWrite()
virtual WriteHandler bindToWriteHandler(void) {
return boost::bind(&HTTPResponseWriter::handleWrite, shared_from_this(),
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred);
}
/**
* called after the response is sent
*
* @param write_error error status from the last write operation
* @param bytes_written number of bytes sent by the last write operation
*/
virtual void handleWrite(const boost::system::error_code& write_error,
std::size_t bytes_written)
{
PionLogger log_ptr(getLogger());
if (!write_error) {
// response sent OK
if (sendingChunkedMessage()) {
PION_LOG_DEBUG(log_ptr, "Sent HTTP response chunk of " << bytes_written << " bytes");
} else {
PION_LOG_DEBUG(log_ptr, "Sent HTTP response of " << bytes_written << " bytes ("
<< (getTCPConnection()->getKeepAlive() ? "keeping alive)" : "closing)"));
}
}
finishedWriting(write_error);
}
private:
/// the response that will be sent
HTTPResponsePtr m_http_response;
/// the initial HTTP response header line
std::string m_response_line;
};
/// data type for a HTTPResponseWriter pointer
typedef boost::shared_ptr<HTTPResponseWriter> HTTPResponseWriterPtr;
/// override operator<< for convenience
template <typename T>
const HTTPResponseWriterPtr& operator<<(const HTTPResponseWriterPtr& writer, const T& data) {
writer->write(data);
return writer;
}
} // end namespace net
} // end namespace pion
#endif
|