2017-07-20 08:01:46 -07:00
|
|
|
//
|
2017-02-06 20:07:03 -05:00
|
|
|
// Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
|
2017-07-20 08:01:46 -07:00
|
|
|
//
|
|
|
|
// 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)
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef BEAST_HTTP_WRITE_HPP
|
|
|
|
#define BEAST_HTTP_WRITE_HPP
|
|
|
|
|
2017-04-10 19:24:27 -07:00
|
|
|
#include <beast/config.hpp>
|
2016-10-09 06:34:35 -04:00
|
|
|
#include <beast/http/message.hpp>
|
2016-05-07 14:57:15 -04:00
|
|
|
#include <beast/core/error.hpp>
|
|
|
|
#include <beast/core/async_completion.hpp>
|
2016-04-29 06:04:40 -04:00
|
|
|
#include <ostream>
|
2017-07-20 08:01:46 -07:00
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace beast {
|
|
|
|
namespace http {
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Write a HTTP/1 header to a stream.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
This function is used to synchronously write a header to
|
|
|
|
a stream. The call will block until one of the following
|
|
|
|
conditions is true:
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@li The entire header is written.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
Regardless of the semantic meaning of the header (for example,
|
|
|
|
specifying "Content-Length: 0" and "Connection: close"),
|
2016-11-07 12:20:39 -05:00
|
|
|
this function will not return `boost::asio::error::eof`.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
|
|
|
The type must support the @b `SyncWriteStream` concept.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param msg The header to write.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@throws system_error Thrown on failure.
|
|
|
|
*/
|
|
|
|
template<class SyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Fields>
|
2016-11-07 12:20:39 -05:00
|
|
|
void
|
|
|
|
write(SyncWriteStream& stream,
|
2016-11-10 05:34:49 -05:00
|
|
|
header<isRequest, Fields> const& msg);
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Write a HTTP/1 header to a stream.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
This function is used to synchronously write a header to
|
|
|
|
a stream. The call will block until one of the following
|
|
|
|
conditions is true:
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@li The entire header is written.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
Regardless of the semantic meaning of the header (for example,
|
|
|
|
specifying "Content-Length: 0" and "Connection: close"),
|
2016-11-07 12:20:39 -05:00
|
|
|
this function will not return `boost::asio::error::eof`.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
|
|
|
The type must support the @b `SyncWriteStream` concept.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param msg The header to write.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@param ec Set to the error, if any occurred.
|
|
|
|
*/
|
|
|
|
template<class SyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Fields>
|
2016-11-07 12:20:39 -05:00
|
|
|
void
|
|
|
|
write(SyncWriteStream& stream,
|
2016-11-10 05:34:49 -05:00
|
|
|
header<isRequest, Fields> const& msg,
|
2016-11-07 12:20:39 -05:00
|
|
|
error_code& ec);
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Write a HTTP/1 header asynchronously to a stream.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
This function is used to asynchronously write a header to
|
|
|
|
a stream. The function call always returns immediately. The
|
|
|
|
asynchronous operation will continue until one of the following
|
|
|
|
conditions is true:
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@li The entire header is written.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
This operation is implemented in terms of one or more calls to
|
|
|
|
the stream's `async_write_some` functions, and is known as a
|
|
|
|
<em>composed operation</em>. The program must ensure that the
|
|
|
|
stream performs no other write operations until this operation
|
|
|
|
completes.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
Regardless of the semantic meaning of the header (for example,
|
|
|
|
specifying "Content-Length: 0" and "Connection: close"),
|
|
|
|
this function will not return `boost::asio::error::eof`.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
|
|
|
The type must support the @b `AsyncWriteStream` concept.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param msg The header to write. The object must remain valid
|
|
|
|
at least until the completion handler is called; ownership is
|
|
|
|
not transferred.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param handler The handler to be called when the operation
|
|
|
|
completes. Copies will be made of the handler as required.
|
|
|
|
The equivalent function signature of the handler must be:
|
2016-11-07 12:20:39 -05:00
|
|
|
@code void handler(
|
|
|
|
error_code const& error // result of operation
|
|
|
|
); @endcode
|
|
|
|
Regardless of whether the asynchronous operation completes
|
|
|
|
immediately or not, the handler will not be invoked from within
|
|
|
|
this function. Invocation of the handler will be performed in a
|
|
|
|
manner equivalent to using `boost::asio::io_service::post`.
|
|
|
|
*/
|
|
|
|
template<class AsyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Fields,
|
2016-11-07 12:20:39 -05:00
|
|
|
class WriteHandler>
|
2017-04-22 14:56:09 -07:00
|
|
|
#if BEAST_DOXYGEN
|
2016-11-07 12:20:39 -05:00
|
|
|
void_or_deduced
|
|
|
|
#else
|
|
|
|
typename async_completion<
|
|
|
|
WriteHandler, void(error_code)>::result_type
|
|
|
|
#endif
|
|
|
|
async_write(AsyncWriteStream& stream,
|
2016-11-10 05:34:49 -05:00
|
|
|
header<isRequest, Fields> const& msg,
|
2016-11-07 12:20:39 -05:00
|
|
|
WriteHandler&& handler);
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Write a HTTP/1 message to a stream.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
This function is used to write a message to a stream. The call
|
|
|
|
will block until one of the following conditions is true:
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@li The entire message is written.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
|
|
|
The implementation will automatically perform chunk encoding if
|
|
|
|
the contents of the message indicate that chunk encoding is required.
|
|
|
|
If the semantics of the message indicate that the connection should
|
2016-05-04 17:27:50 -04:00
|
|
|
be closed after the message is sent, the error thrown from this
|
2016-05-01 12:33:35 -04:00
|
|
|
function will be `boost::asio::error::eof`.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
|
|
|
The type must support the @b `SyncWriteStream` concept.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
@param msg The message to write.
|
|
|
|
|
2016-10-04 18:00:11 -04:00
|
|
|
@throws system_error Thrown on failure.
|
2017-07-20 08:01:46 -07:00
|
|
|
*/
|
|
|
|
template<class SyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields>
|
2017-07-20 08:01:46 -07:00
|
|
|
void
|
|
|
|
write(SyncWriteStream& stream,
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields> const& msg);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
/** Write a HTTP/1 message on a stream.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
This function is used to write a message to a stream. The call
|
|
|
|
will block until one of the following conditions is true:
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@li The entire message is written.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
|
|
|
The implementation will automatically perform chunk encoding if
|
|
|
|
the contents of the message indicate that chunk encoding is required.
|
|
|
|
If the semantics of the message indicate that the connection should
|
2016-05-04 17:27:50 -04:00
|
|
|
be closed after the message is sent, the error returned from this
|
2016-05-01 12:33:35 -04:00
|
|
|
function will be `boost::asio::error::eof`.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
|
|
|
The type must support the @b `SyncWriteStream` concept.
|
|
|
|
|
|
|
|
@param msg The message to write.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
@param ec Set to the error, if any occurred.
|
|
|
|
*/
|
|
|
|
template<class SyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields>
|
2017-07-20 08:01:46 -07:00
|
|
|
void
|
|
|
|
write(SyncWriteStream& stream,
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields> const& msg,
|
2017-07-20 08:01:46 -07:00
|
|
|
error_code& ec);
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Write a HTTP/1 message asynchronously to a stream.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
This function is used to asynchronously write a message to
|
|
|
|
a stream. The function call always returns immediately. The
|
|
|
|
asynchronous operation will continue until one of the following
|
|
|
|
conditions is true:
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@li The entire message is written.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
This operation is implemented in terms of one or more calls to
|
|
|
|
the stream's `async_write_some` functions, and is known as a
|
|
|
|
<em>composed operation</em>. The program must ensure that the
|
|
|
|
stream performs no other write operations until this operation
|
|
|
|
completes.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
|
|
|
The implementation will automatically perform chunk encoding if
|
|
|
|
the contents of the message indicate that chunk encoding is required.
|
|
|
|
If the semantics of the message indicate that the connection should
|
|
|
|
be closed after the message is sent, the operation will complete with
|
|
|
|
the error set to `boost::asio::error::eof`.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
|
|
|
The type must support the @b `AsyncWriteStream` concept.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param msg The message to write. The object must remain valid
|
|
|
|
at least until the completion handler is called; ownership is
|
|
|
|
not transferred.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param handler The handler to be called when the operation
|
|
|
|
completes. Copies will be made of the handler as required.
|
|
|
|
The equivalent function signature of the handler must be:
|
2017-07-20 08:01:46 -07:00
|
|
|
@code void handler(
|
|
|
|
error_code const& error // result of operation
|
|
|
|
); @endcode
|
|
|
|
Regardless of whether the asynchronous operation completes
|
|
|
|
immediately or not, the handler will not be invoked from within
|
|
|
|
this function. Invocation of the handler will be performed in a
|
2016-05-01 12:33:35 -04:00
|
|
|
manner equivalent to using `boost::asio::io_service::post`.
|
2017-07-20 08:01:46 -07:00
|
|
|
*/
|
|
|
|
template<class AsyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields,
|
2017-07-20 08:01:46 -07:00
|
|
|
class WriteHandler>
|
2017-04-22 14:56:09 -07:00
|
|
|
#if BEAST_DOXYGEN
|
2017-07-20 08:01:46 -07:00
|
|
|
void_or_deduced
|
|
|
|
#else
|
|
|
|
typename async_completion<
|
|
|
|
WriteHandler, void(error_code)>::result_type
|
|
|
|
#endif
|
|
|
|
async_write(AsyncWriteStream& stream,
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields> const& msg,
|
2017-07-20 08:01:46 -07:00
|
|
|
WriteHandler&& handler);
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Serialize a HTTP/1 header to a `std::ostream`.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
The function converts the header to its HTTP/1 serialized
|
|
|
|
representation and stores the result in the output stream.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@param os The output stream to write to.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param msg The message fields to write.
|
2016-11-07 12:20:39 -05:00
|
|
|
*/
|
2016-11-10 05:34:49 -05:00
|
|
|
template<bool isRequest, class Fields>
|
2016-11-07 12:20:39 -05:00
|
|
|
std::ostream&
|
|
|
|
operator<<(std::ostream& os,
|
2016-11-10 05:34:49 -05:00
|
|
|
header<isRequest, Fields> const& msg);
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
/** Serialize a HTTP/1 message to a `std::ostream`.
|
2016-04-29 06:04:40 -04:00
|
|
|
|
2016-05-01 11:14:10 -04:00
|
|
|
The function converts the message to its HTTP/1 serialized
|
2016-04-29 06:04:40 -04:00
|
|
|
representation and stores the result in the output stream.
|
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
The implementation will automatically perform chunk encoding if
|
|
|
|
the contents of the message indicate that chunk encoding is required.
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
@param os The output stream to write to.
|
2016-04-29 06:04:40 -04:00
|
|
|
|
|
|
|
@param msg The message to write.
|
|
|
|
*/
|
2016-11-10 05:34:49 -05:00
|
|
|
template<bool isRequest, class Body, class Fields>
|
2016-04-29 06:04:40 -04:00
|
|
|
std::ostream&
|
|
|
|
operator<<(std::ostream& os,
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields> const& msg);
|
2016-04-29 06:04:40 -04:00
|
|
|
|
2017-07-20 08:01:46 -07:00
|
|
|
} // http
|
|
|
|
} // beast
|
|
|
|
|
|
|
|
#include <beast/http/impl/write.ipp>
|
|
|
|
|
|
|
|
#endif
|