2017-07-20 08:01:46 -07:00
|
|
|
//
|
2019-02-21 07:00:31 -08:00
|
|
|
// Copyright (c) 2016-2019 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)
|
|
|
|
//
|
2017-07-20 13:40:34 -07:00
|
|
|
// Official repository: https://github.com/boostorg/beast
|
|
|
|
//
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
#ifndef BOOST_BEAST_HTTP_WRITE_HPP
|
|
|
|
#define BOOST_BEAST_HTTP_WRITE_HPP
|
|
|
|
|
2017-10-10 07:49:03 -07:00
|
|
|
#include <boost/beast/core/detail/config.hpp>
|
2017-09-15 10:03:59 -07:00
|
|
|
#include <boost/beast/core/buffers_cat.hpp>
|
2017-09-15 12:52:45 -07:00
|
|
|
#include <boost/beast/core/buffers_suffix.hpp>
|
2017-07-20 13:40:34 -07:00
|
|
|
#include <boost/beast/core/multi_buffer.hpp>
|
|
|
|
#include <boost/beast/http/message.hpp>
|
|
|
|
#include <boost/beast/http/serializer.hpp>
|
2018-05-04 19:23:58 -07:00
|
|
|
#include <boost/beast/http/type_traits.hpp>
|
2017-07-20 13:40:34 -07:00
|
|
|
#include <boost/beast/http/detail/chunk_encode.hpp>
|
|
|
|
#include <boost/beast/core/error.hpp>
|
|
|
|
#include <boost/beast/core/string.hpp>
|
2017-09-07 07:39:52 -07:00
|
|
|
#include <boost/asio/async_result.hpp>
|
2017-06-04 15:35:21 -07:00
|
|
|
#include <iosfwd>
|
2017-05-08 12:41:45 -07:00
|
|
|
#include <limits>
|
|
|
|
#include <memory>
|
2017-07-20 08:01:46 -07:00
|
|
|
#include <type_traits>
|
2017-05-08 12:41:45 -07:00
|
|
|
#include <utility>
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
namespace boost {
|
2017-07-20 08:01:46 -07:00
|
|
|
namespace beast {
|
|
|
|
namespace http {
|
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
/** Write part of a message to a stream using a serializer.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This function is used to write part of a message to a stream using
|
|
|
|
a caller-provided HTTP/1 serializer. The call will block until one
|
|
|
|
of the following conditions is true:
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@li One or more bytes have been transferred.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@li The function @ref serializer::is_done returns `true`
|
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@li An error occurs on the stream.
|
2017-05-28 09:05:29 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
|
|
|
The amount of data actually transferred is controlled by the behavior
|
2017-07-08 19:25:30 -07:00
|
|
|
of the underlying stream, subject to the buffer size limit of the
|
|
|
|
serializer obtained or set through a call to @ref serializer::limit.
|
|
|
|
Setting a limit and performing bounded work helps applications set
|
|
|
|
reasonable timeouts. It also allows application-level flow control
|
|
|
|
to function correctly. For example when using a TCP/IP based
|
2017-05-31 08:01:55 -07:00
|
|
|
stream.
|
2017-07-08 19:25:30 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@param sr The serializer to use.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-09-03 18:06:09 -07:00
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@throws system_error Thrown on failure.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@see serializer
|
2017-05-28 17:04:39 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields>
|
2017-09-03 18:06:09 -07:00
|
|
|
std::size_t
|
2017-07-09 20:09:30 -07:00
|
|
|
write_some(
|
|
|
|
SyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr);
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
/** Write part of a message to a stream using a serializer.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This function is used to write part of a message to a stream using
|
|
|
|
a caller-provided HTTP/1 serializer. The call will block until one
|
|
|
|
of the following conditions is true:
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@li One or more bytes have been transferred.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@li The function @ref serializer::is_done returns `true`
|
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@li An error occurs on the stream.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
|
|
|
The amount of data actually transferred is controlled by the behavior
|
2017-07-08 19:25:30 -07:00
|
|
|
of the underlying stream, subject to the buffer size limit of the
|
|
|
|
serializer obtained or set through a call to @ref serializer::limit.
|
|
|
|
Setting a limit and performing bounded work helps applications set
|
|
|
|
reasonable timeouts. It also allows application-level flow control
|
|
|
|
to function correctly. For example when using a TCP/IP based
|
2017-05-31 08:01:55 -07:00
|
|
|
stream.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@param sr The serializer to use.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@param ec Set to indicate what error occurred, if any.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-09-03 18:06:09 -07:00
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see async_write_some, serializer
|
2017-05-28 17:04:39 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields>
|
2017-09-03 18:06:09 -07:00
|
|
|
std::size_t
|
2017-07-09 20:09:30 -07:00
|
|
|
write_some(
|
|
|
|
SyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr,
|
|
|
|
error_code& ec);
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
/** Write part of a message to a stream asynchronously using a serializer.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This function is used to write part of a message to a stream
|
|
|
|
asynchronously using a caller-provided HTTP/1 serializer. The function
|
|
|
|
call always returns immediately. The asynchronous operation will continue
|
|
|
|
until one of the following conditions is true:
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@li One or more bytes have been transferred.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@li The function @ref serializer::is_done returns `true`
|
|
|
|
|
2017-05-28 17:04:39 -07:00
|
|
|
@li An error occurs on the stream.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This operation is implemented in terms of zero or more calls to the stream's
|
|
|
|
`async_write_some` function, and is known as a <em>composed operation</em>.
|
2017-11-05 09:29:33 -08:00
|
|
|
The program must ensure that the stream performs no other writes
|
2017-05-31 08:01:55 -07:00
|
|
|
until this operation completes.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
The amount of data actually transferred is controlled by the behavior
|
2017-07-08 19:25:30 -07:00
|
|
|
of the underlying stream, subject to the buffer size limit of the
|
|
|
|
serializer obtained or set through a call to @ref serializer::limit.
|
|
|
|
Setting a limit and performing bounded work helps applications set
|
|
|
|
reasonable timeouts. It also allows application-level flow control
|
|
|
|
to function correctly. For example when using a TCP/IP based
|
2017-05-31 08:01:55 -07:00
|
|
|
stream.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>AsyncWriteStream</em> concept.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@param sr The serializer to use.
|
2017-06-03 09:45:09 -07:00
|
|
|
The object must remain valid at least until the
|
|
|
|
handler is called; ownership is not transferred.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2019-02-20 18:55:01 -08:00
|
|
|
@param handler The completion handler to invoke when the operation
|
|
|
|
completes. The implementation takes ownership of the handler by
|
|
|
|
performing a decay-copy. The equivalent function signature of
|
|
|
|
the handler must be:
|
|
|
|
@code
|
|
|
|
void handler(
|
2017-09-03 18:06:09 -07:00
|
|
|
error_code const& error, // result of operation
|
|
|
|
std::size_t bytes_transferred // the number of bytes written to the stream
|
2019-02-20 18:55:01 -08:00
|
|
|
);
|
|
|
|
@endcode
|
2017-05-28 17:04:39 -07:00
|
|
|
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
|
2019-02-20 18:55:01 -08:00
|
|
|
manner equivalent to using `net::post`.
|
2017-05-08 12:41:45 -07:00
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see serializer
|
2017-05-28 17:04:39 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class AsyncWriteStream,
|
2017-05-28 17:04:39 -07:00
|
|
|
bool isRequest, class Body, class Fields,
|
2017-07-09 20:09:30 -07:00
|
|
|
class WriteHandler>
|
2019-03-04 23:13:42 -08:00
|
|
|
BOOST_BEAST_ASYNC_RESULT2(WriteHandler)
|
2017-07-09 20:09:30 -07:00
|
|
|
async_write_some(
|
|
|
|
AsyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr,
|
|
|
|
WriteHandler&& handler);
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/** Write a header to a stream using a serializer.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This function is used to write a header to a stream using a
|
|
|
|
caller-provided HTTP/1 serializer. The call will block until one
|
|
|
|
of the following conditions is true:
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@li The function @ref serializer::is_header_done returns `true`
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
@param sr The serializer to use.
|
|
|
|
|
2017-09-03 18:06:09 -07:00
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@throws system_error Thrown on failure.
|
|
|
|
|
|
|
|
@note The implementation will call @ref serializer::split with
|
|
|
|
the value `true` on the serializer passed in.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see serializer
|
2017-05-31 08:01:55 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields>
|
2017-09-03 18:06:09 -07:00
|
|
|
std::size_t
|
2017-07-09 20:09:30 -07:00
|
|
|
write_header(
|
|
|
|
SyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr);
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
/** Write a header to a stream using a serializer.
|
|
|
|
|
|
|
|
This function is used to write a header to a stream using a
|
|
|
|
caller-provided HTTP/1 serializer. The call will block until one
|
|
|
|
of the following conditions is true:
|
|
|
|
|
|
|
|
@li The function @ref serializer::is_header_done returns `true`
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
@param sr The serializer to use.
|
|
|
|
|
|
|
|
@param ec Set to indicate what error occurred, if any.
|
|
|
|
|
2017-09-03 18:06:09 -07:00
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@note The implementation will call @ref serializer::split with
|
|
|
|
the value `true` on the serializer passed in.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see serializer
|
2017-05-31 08:01:55 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields>
|
2017-09-03 18:06:09 -07:00
|
|
|
std::size_t
|
2017-07-09 20:09:30 -07:00
|
|
|
write_header(
|
|
|
|
SyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr,
|
|
|
|
error_code& ec);
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
/** Write a header to a stream asynchronously using a serializer.
|
|
|
|
|
|
|
|
This function is used to write a header to a stream asynchronously
|
|
|
|
using a caller-provided HTTP/1 serializer. The function call always
|
|
|
|
returns immediately. The asynchronous operation will continue until
|
|
|
|
one of the following conditions is true:
|
|
|
|
|
|
|
|
@li The function @ref serializer::is_header_done returns `true`
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of zero or more calls to the stream's
|
|
|
|
`async_write_some` function, and is known as a <em>composed operation</em>.
|
2017-11-05 09:29:33 -08:00
|
|
|
The program must ensure that the stream performs no other writes
|
2017-05-31 08:01:55 -07:00
|
|
|
until this operation completes.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>AsyncWriteStream</em> concept.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
@param sr The serializer to use.
|
2017-06-03 09:45:09 -07:00
|
|
|
The object must remain valid at least until the
|
|
|
|
handler is called; ownership is not transferred.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
2019-02-20 18:55:01 -08:00
|
|
|
@param handler The completion handler to invoke when the operation
|
|
|
|
completes. The implementation takes ownership of the handler by
|
|
|
|
performing a decay-copy. The equivalent function signature of
|
|
|
|
the handler must be:
|
|
|
|
@code
|
|
|
|
void handler(
|
2017-09-03 18:06:09 -07:00
|
|
|
error_code const& error, // result of operation
|
|
|
|
std::size_t bytes_transferred // the number of bytes written to the stream
|
2019-02-20 18:55:01 -08:00
|
|
|
);
|
|
|
|
@endcode
|
2017-05-31 08:01:55 -07:00
|
|
|
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
|
2019-02-20 18:55:01 -08:00
|
|
|
manner equivalent to using `net::post`.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
@note The implementation will call @ref serializer::split with
|
|
|
|
the value `true` on the serializer passed in.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see serializer
|
2017-05-31 08:01:55 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class AsyncWriteStream,
|
2017-05-31 08:01:55 -07:00
|
|
|
bool isRequest, class Body, class Fields,
|
2017-07-09 20:09:30 -07:00
|
|
|
class WriteHandler>
|
2019-03-04 23:13:42 -08:00
|
|
|
BOOST_BEAST_ASYNC_RESULT2(WriteHandler)
|
2017-07-09 20:09:30 -07:00
|
|
|
async_write_header(
|
|
|
|
AsyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr,
|
|
|
|
WriteHandler&& handler);
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/** Write a complete message to a stream using a serializer.
|
|
|
|
|
|
|
|
This function is used to write a complete message to a stream using
|
|
|
|
a caller-provided HTTP/1 serializer. The call will block until one
|
|
|
|
of the following conditions is true:
|
|
|
|
|
|
|
|
@li The function @ref serializer::is_done returns `true`
|
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.
|
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
@param sr The serializer to use.
|
|
|
|
|
2017-09-03 18:06:09 -07:00
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
@throws system_error Thrown on failure.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see serializer
|
2017-05-31 08:01:55 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields>
|
2017-09-03 18:06:09 -07:00
|
|
|
std::size_t
|
2017-07-09 20:09:30 -07:00
|
|
|
write(
|
|
|
|
SyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr);
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
/** Write a complete message to a stream using a serializer.
|
|
|
|
|
|
|
|
This function is used to write a complete message to a stream using
|
|
|
|
a caller-provided HTTP/1 serializer. The call will block until one
|
|
|
|
of the following conditions is true:
|
|
|
|
|
|
|
|
@li The function @ref serializer::is_done returns `true`
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls
|
|
|
|
to the stream's `write_some` function.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
@param sr The serializer to use.
|
|
|
|
|
|
|
|
@param ec Set to the error, if any occurred.
|
|
|
|
|
2017-09-03 18:06:09 -07:00
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see serializer
|
2017-05-31 08:01:55 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields>
|
2017-09-03 18:06:09 -07:00
|
|
|
std::size_t
|
2017-07-09 20:09:30 -07:00
|
|
|
write(
|
|
|
|
SyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr,
|
|
|
|
error_code& ec);
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
/** Write a complete message to a stream asynchronously using a serializer.
|
|
|
|
|
|
|
|
This function is used to write a complete message to a stream
|
|
|
|
asynchronously using a caller-provided HTTP/1 serializer. The
|
|
|
|
function call always returns immediately. The asynchronous
|
|
|
|
operation will continue until one of the following conditions is true:
|
|
|
|
|
|
|
|
@li The function @ref serializer::is_done returns `true`
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of zero or more calls to the stream's
|
|
|
|
`async_write_some` function, and is known as a <em>composed operation</em>.
|
2017-11-05 09:29:33 -08:00
|
|
|
The program must ensure that the stream performs no other writes
|
2017-05-31 08:01:55 -07:00
|
|
|
until this operation completes.
|
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>AsyncWriteStream</em> concept.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
@param sr The serializer to use.
|
2017-06-03 09:45:09 -07:00
|
|
|
The object must remain valid at least until the
|
|
|
|
handler is called; ownership is not transferred.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
2019-02-20 18:55:01 -08:00
|
|
|
@param handler The completion handler to invoke when the operation
|
|
|
|
completes. The implementation takes ownership of the handler by
|
|
|
|
performing a decay-copy. The equivalent function signature of
|
|
|
|
the handler must be:
|
|
|
|
@code
|
|
|
|
void handler(
|
2017-09-03 18:06:09 -07:00
|
|
|
error_code const& error, // result of operation
|
|
|
|
std::size_t bytes_transferred // the number of bytes written to the stream
|
2019-02-20 18:55:01 -08:00
|
|
|
);
|
|
|
|
@endcode
|
2017-05-31 08:01:55 -07:00
|
|
|
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
|
2019-02-20 18:55:01 -08:00
|
|
|
manner equivalent to using `net::post`.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see serializer
|
2017-05-31 08:01:55 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class AsyncWriteStream,
|
2017-05-31 08:01:55 -07:00
|
|
|
bool isRequest, class Body, class Fields,
|
2017-07-09 20:09:30 -07:00
|
|
|
class WriteHandler>
|
2019-03-04 23:13:42 -08:00
|
|
|
BOOST_BEAST_ASYNC_RESULT2(WriteHandler)
|
2017-07-09 20:09:30 -07:00
|
|
|
async_write(
|
|
|
|
AsyncWriteStream& stream,
|
|
|
|
serializer<isRequest, Body, Fields>& sr,
|
|
|
|
WriteHandler&& handler);
|
2017-05-31 08:01:55 -07:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/** Write a complete message to a stream.
|
|
|
|
|
|
|
|
This function is used to write a complete message to a stream using
|
|
|
|
HTTP/1. The call will block until one of the following conditions is true:
|
|
|
|
|
|
|
|
@li The entire message is written.
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls to the stream's
|
|
|
|
`write_some` function. The algorithm will use a temporary @ref serializer
|
2017-10-20 10:19:58 -07:00
|
|
|
with an empty chunk decorator to produce buffers.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2018-05-04 19:23:58 -07:00
|
|
|
@note This function only participates in overload resolution
|
2019-03-05 12:05:00 -08:00
|
|
|
if @ref is_mutable_body_writer for <em>Body</em> returns `true`.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
@param msg The message to write.
|
|
|
|
|
2017-09-03 18:06:09 -07:00
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2016-10-04 18:00:11 -04:00
|
|
|
@throws system_error Thrown on failure.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see message
|
2017-07-20 08:01:46 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields>
|
2018-05-04 19:23:58 -07:00
|
|
|
#if BOOST_BEAST_DOXYGEN
|
2017-09-03 18:06:09 -07:00
|
|
|
std::size_t
|
2018-05-04 19:23:58 -07:00
|
|
|
#else
|
|
|
|
typename std::enable_if<
|
|
|
|
is_mutable_body_writer<Body>::value,
|
|
|
|
std::size_t>::type
|
|
|
|
#endif
|
|
|
|
write(
|
|
|
|
SyncWriteStream& stream,
|
|
|
|
message<isRequest, Body, Fields>& msg);
|
|
|
|
|
|
|
|
/** Write a complete message to a stream.
|
|
|
|
|
|
|
|
This function is used to write a complete message to a stream using
|
|
|
|
HTTP/1. The call will block until one of the following conditions is true:
|
|
|
|
|
|
|
|
@li The entire message is written.
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls to the stream's
|
|
|
|
`write_some` function. The algorithm will use a temporary @ref serializer
|
|
|
|
with an empty chunk decorator to produce buffers.
|
|
|
|
|
|
|
|
@note This function only participates in overload resolution
|
2019-03-05 12:05:00 -08:00
|
|
|
if @ref is_mutable_body_writer for <em>Body</em> returns `false`.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
|
|
|
@param msg The message to write.
|
|
|
|
|
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
|
|
|
@throws system_error Thrown on failure.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see message
|
2018-05-04 19:23:58 -07:00
|
|
|
*/
|
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields>
|
|
|
|
#if BOOST_BEAST_DOXYGEN
|
|
|
|
std::size_t
|
|
|
|
#else
|
|
|
|
typename std::enable_if<
|
|
|
|
! is_mutable_body_writer<Body>::value,
|
|
|
|
std::size_t>::type
|
|
|
|
#endif
|
2017-07-09 20:09:30 -07:00
|
|
|
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
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
/** Write a complete message to a stream.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This function is used to write a complete message to a stream using
|
|
|
|
HTTP/1. 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.
|
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This operation is implemented in terms of one or more calls to the stream's
|
|
|
|
`write_some` function. The algorithm will use a temporary @ref serializer
|
2017-10-20 10:19:58 -07:00
|
|
|
with an empty chunk decorator to produce buffers.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2018-05-04 19:23:58 -07:00
|
|
|
@note This function only participates in overload resolution
|
2019-03-05 12:05:00 -08:00
|
|
|
if @ref is_mutable_body_writer for <em>Body</em> returns `true`.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
|
|
|
@param msg The message to write.
|
|
|
|
|
|
|
|
@param ec Set to the error, if any occurred.
|
|
|
|
|
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see message
|
2018-05-04 19:23:58 -07:00
|
|
|
*/
|
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields>
|
|
|
|
#if BOOST_BEAST_DOXYGEN
|
|
|
|
std::size_t
|
|
|
|
#else
|
|
|
|
typename std::enable_if<
|
|
|
|
is_mutable_body_writer<Body>::value,
|
|
|
|
std::size_t>::type
|
|
|
|
#endif
|
|
|
|
write(
|
|
|
|
SyncWriteStream& stream,
|
|
|
|
message<isRequest, Body, Fields>& msg,
|
|
|
|
error_code& ec);
|
|
|
|
|
|
|
|
/** Write a complete message to a stream.
|
|
|
|
|
|
|
|
This function is used to write a complete message to a stream using
|
|
|
|
HTTP/1. The call will block until one of the following conditions is true:
|
|
|
|
|
|
|
|
@li The entire message is written.
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls to the stream's
|
|
|
|
`write_some` function. The algorithm will use a temporary @ref serializer
|
|
|
|
with an empty chunk decorator to produce buffers.
|
|
|
|
|
|
|
|
@note This function only participates in overload resolution
|
2019-03-05 12:05:00 -08:00
|
|
|
if @ref is_mutable_body_writer for <em>Body</em> returns `false`.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>SyncWriteStream</em> concept.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
|
|
|
@param msg The message to write.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
@param ec Set to the error, if any occurred.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
2017-09-03 18:06:09 -07:00
|
|
|
@return The number of bytes written to the stream.
|
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see message
|
2017-07-20 08:01:46 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class SyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields>
|
2018-05-04 19:23:58 -07:00
|
|
|
#if BOOST_BEAST_DOXYGEN
|
2017-09-03 18:06:09 -07:00
|
|
|
std::size_t
|
2018-05-04 19:23:58 -07:00
|
|
|
#else
|
|
|
|
typename std::enable_if<
|
|
|
|
! is_mutable_body_writer<Body>::value,
|
|
|
|
std::size_t>::type
|
|
|
|
#endif
|
2017-07-09 20:09:30 -07:00
|
|
|
write(
|
|
|
|
SyncWriteStream& stream,
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields> const& msg,
|
2017-07-09 20:09:30 -07:00
|
|
|
error_code& ec);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
/** Write a complete message to a stream asynchronously.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This function is used to write a complete message to a stream asynchronously
|
|
|
|
using HTTP/1. 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.
|
|
|
|
|
2017-05-31 08:01:55 -07:00
|
|
|
This operation is implemented in terms of zero or more calls to the stream's
|
|
|
|
`async_write_some` function, and is known as a <em>composed operation</em>.
|
2017-11-05 09:29:33 -08:00
|
|
|
The program must ensure that the stream performs no other writes
|
2017-05-31 08:01:55 -07:00
|
|
|
until this operation completes. The algorithm will use a temporary
|
2017-10-20 10:19:58 -07:00
|
|
|
@ref serializer with an empty chunk decorator to produce buffers.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2018-05-04 19:23:58 -07:00
|
|
|
@note This function only participates in overload resolution
|
2019-03-05 12:05:00 -08:00
|
|
|
if @ref is_mutable_body_writer for <em>Body</em> returns `true`.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>AsyncWriteStream</em> concept.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-06-03 09:45:09 -07:00
|
|
|
@param msg The message to write.
|
|
|
|
The object must remain valid at least until the
|
|
|
|
handler is called; ownership is not transferred.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2019-02-20 18:55:01 -08:00
|
|
|
@param handler The completion handler to invoke when the operation
|
|
|
|
completes. The implementation takes ownership of the handler by
|
|
|
|
performing a decay-copy. The equivalent function signature of
|
|
|
|
the handler must be:
|
|
|
|
@code
|
|
|
|
void handler(
|
2017-09-03 18:06:09 -07:00
|
|
|
error_code const& error, // result of operation
|
|
|
|
std::size_t bytes_transferred // the number of bytes written to the stream
|
2019-02-20 18:55:01 -08:00
|
|
|
);
|
|
|
|
@endcode
|
2017-07-20 08:01:46 -07:00
|
|
|
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
|
2019-02-20 18:55:01 -08:00
|
|
|
manner equivalent to using `net::post`.
|
2017-05-31 08:01:55 -07:00
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see message
|
2017-07-20 08:01:46 -07:00
|
|
|
*/
|
2017-07-09 20:09:30 -07:00
|
|
|
template<
|
|
|
|
class AsyncWriteStream,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields,
|
2017-07-09 20:09:30 -07:00
|
|
|
class WriteHandler>
|
2018-05-04 19:23:58 -07:00
|
|
|
#if BOOST_BEAST_DOXYGEN
|
2019-03-04 23:13:42 -08:00
|
|
|
BOOST_BEAST_ASYNC_RESULT2(WriteHandler)
|
2018-05-04 19:23:58 -07:00
|
|
|
#else
|
|
|
|
typename std::enable_if<
|
|
|
|
is_mutable_body_writer<Body>::value,
|
2019-03-04 23:13:42 -08:00
|
|
|
BOOST_BEAST_ASYNC_RESULT2(WriteHandler)>::type
|
2018-05-04 19:23:58 -07:00
|
|
|
#endif
|
2017-07-09 20:09:30 -07:00
|
|
|
async_write(
|
|
|
|
AsyncWriteStream& stream,
|
2017-06-21 11:50:50 -07:00
|
|
|
message<isRequest, Body, Fields>& msg,
|
2017-07-09 20:09:30 -07:00
|
|
|
WriteHandler&& handler);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2018-05-04 19:23:58 -07:00
|
|
|
/** Write a complete message to a stream asynchronously.
|
|
|
|
|
|
|
|
This function is used to write a complete message to a stream asynchronously
|
|
|
|
using HTTP/1. The function call always returns immediately. The asynchronous
|
|
|
|
operation will continue until one of the following conditions is true:
|
|
|
|
|
|
|
|
@li The entire message is written.
|
|
|
|
|
|
|
|
@li An error occurs.
|
|
|
|
|
|
|
|
This operation is implemented in terms of zero or more calls to the stream's
|
|
|
|
`async_write_some` function, and is known as a <em>composed operation</em>.
|
|
|
|
The program must ensure that the stream performs no other writes
|
|
|
|
until this operation completes. The algorithm will use a temporary
|
|
|
|
@ref serializer with an empty chunk decorator to produce buffers.
|
|
|
|
|
|
|
|
@note This function only participates in overload resolution
|
2019-03-05 12:05:00 -08:00
|
|
|
if @ref is_mutable_body_writer for <em>Body</em> returns `false`.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
|
|
|
@param stream The stream to which the data is to be written.
|
2019-03-05 12:05:00 -08:00
|
|
|
The type must support the <em>AsyncWriteStream</em> concept.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
|
|
|
@param msg The message to write.
|
|
|
|
The object must remain valid at least until the
|
|
|
|
handler is called; ownership is not transferred.
|
|
|
|
|
2019-02-20 18:55:01 -08:00
|
|
|
@param handler The completion handler to invoke when the operation
|
|
|
|
completes. The implementation takes ownership of the handler by
|
|
|
|
performing a decay-copy. The equivalent function signature of
|
|
|
|
the handler must be:
|
|
|
|
@code
|
|
|
|
void handler(
|
2018-05-04 19:23:58 -07:00
|
|
|
error_code const& error, // result of operation
|
|
|
|
std::size_t bytes_transferred // the number of bytes written to the stream
|
2019-02-20 18:55:01 -08:00
|
|
|
);
|
|
|
|
@endcode
|
2018-05-04 19:23:58 -07:00
|
|
|
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
|
2019-02-20 18:55:01 -08:00
|
|
|
manner equivalent to using `net::post`.
|
2018-05-04 19:23:58 -07:00
|
|
|
|
2019-03-05 12:05:00 -08:00
|
|
|
@see message
|
2018-05-04 19:23:58 -07:00
|
|
|
*/
|
|
|
|
template<
|
|
|
|
class AsyncWriteStream,
|
|
|
|
bool isRequest, class Body, class Fields,
|
|
|
|
class WriteHandler>
|
|
|
|
#if BOOST_BEAST_DOXYGEN
|
2019-03-04 23:13:42 -08:00
|
|
|
BOOST_BEAST_ASYNC_RESULT2(WriteHandler)
|
2018-05-04 19:23:58 -07:00
|
|
|
#else
|
|
|
|
typename std::enable_if<
|
|
|
|
! is_mutable_body_writer<Body>::value,
|
2019-03-04 23:13:42 -08:00
|
|
|
BOOST_BEAST_ASYNC_RESULT2(WriteHandler)>::type
|
2018-05-04 19:23:58 -07:00
|
|
|
#endif
|
|
|
|
async_write(
|
|
|
|
AsyncWriteStream& stream,
|
|
|
|
message<isRequest, Body, Fields> const& msg,
|
|
|
|
WriteHandler&& handler);
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2017-05-28 19:49:41 -07:00
|
|
|
/** Serialize an 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
|
|
|
|
2017-05-28 19:49:41 -07:00
|
|
|
/** Serialize an 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
|
2017-07-20 13:40:34 -07:00
|
|
|
} // boost
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2019-02-22 13:06:43 -08:00
|
|
|
#include <boost/beast/http/impl/write.hpp>
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
#endif
|