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_READ_HPP
|
|
|
|
|
#define BEAST_HTTP_READ_HPP
|
|
|
|
|
|
2017-04-10 19:24:27 -07:00
|
|
|
#include <beast/config.hpp>
|
2016-05-07 14:57:15 -04:00
|
|
|
#include <beast/core/async_completion.hpp>
|
2016-10-09 20:27:24 -04:00
|
|
|
#include <beast/core/error.hpp>
|
2016-11-20 07:32:41 -05:00
|
|
|
#include <beast/http/basic_parser.hpp>
|
2016-10-09 06:34:35 -04:00
|
|
|
#include <beast/http/message.hpp>
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
namespace beast {
|
|
|
|
|
namespace http {
|
|
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
/** Read some HTTP/1 message data from a stream.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
This function synchronously advances the state of the
|
|
|
|
|
parser using the provided dynamic buffer and reading
|
|
|
|
|
from the input stream as needed. The call will block
|
|
|
|
|
until one of the following conditions is true:
|
|
|
|
|
|
|
|
|
|
@li When expecting a message header, and the complete
|
|
|
|
|
header is received.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@li When expecting a chunk header, and the complete
|
|
|
|
|
chunk header is received.
|
|
|
|
|
|
|
|
|
|
@li When expecting body octets, one or more body octets
|
|
|
|
|
are received.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
|
|
|
|
@li An error occurs in the stream or parser.
|
|
|
|
|
|
|
|
|
|
This function is implemented in terms of one or more calls
|
|
|
|
|
to the stream's `read_some` function. The implementation may
|
2016-11-20 07:32:41 -05:00
|
|
|
read additional octets that lie past the end of the object
|
|
|
|
|
being parsed. This additional data is stored in the dynamic
|
|
|
|
|
buffer, which may be used in subsequent calls.
|
|
|
|
|
|
|
|
|
|
@param stream The stream from which the data is to be read.
|
|
|
|
|
The type must support the @b SyncReadStream concept.
|
|
|
|
|
|
|
|
|
|
@param dynabuf A @b DynamicBuffer holding additional bytes
|
|
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
|
|
|
|
dynamic buffer's input sequence will be given to the parser
|
|
|
|
|
first.
|
|
|
|
|
|
|
|
|
|
@param parser The parser to use.
|
|
|
|
|
|
|
|
|
|
@return The number of bytes processed from the dynamic
|
|
|
|
|
buffer. The caller should remove these bytes by calling
|
|
|
|
|
`consume` on the dynamic buffer.
|
|
|
|
|
|
|
|
|
|
@throws system_error Thrown on failure.
|
|
|
|
|
*/
|
|
|
|
|
template<
|
|
|
|
|
class SyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
|
|
|
|
bool isRequest, bool isDirect, class Derived>
|
|
|
|
|
std::size_t
|
|
|
|
|
read_some(
|
|
|
|
|
SyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
|
|
|
|
basic_parser<isRequest, isDirect, Derived>& parser);
|
|
|
|
|
|
|
|
|
|
/** Read some HTTP/1 message data from a stream.
|
|
|
|
|
|
|
|
|
|
This function synchronously advances the state of the
|
|
|
|
|
parser using the provided dynamic buffer and reading
|
|
|
|
|
from the input stream as needed. The call will block
|
|
|
|
|
until one of the following conditions is true:
|
|
|
|
|
|
|
|
|
|
@li When expecting a message header, and the complete
|
|
|
|
|
header is received.
|
|
|
|
|
|
|
|
|
|
@li When expecting a chunk header, and the complete
|
|
|
|
|
chunk header is received.
|
|
|
|
|
|
|
|
|
|
@li When expecting body octets, one or more body octets
|
|
|
|
|
are received.
|
|
|
|
|
|
|
|
|
|
@li An error occurs in the stream or parser.
|
|
|
|
|
|
|
|
|
|
This function is implemented in terms of one or more calls
|
|
|
|
|
to the stream's `read_some` function. The implementation may
|
|
|
|
|
read additional octets that lie past the end of the object
|
|
|
|
|
being parsed. This additional data is stored in the dynamic
|
|
|
|
|
buffer, which may be used in subsequent calls.
|
|
|
|
|
|
|
|
|
|
@param stream The stream from which the data is to be read.
|
|
|
|
|
The type must support the @b SyncReadStream concept.
|
|
|
|
|
|
|
|
|
|
@param dynabuf A @b DynamicBuffer holding additional bytes
|
|
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
|
|
|
|
dynamic buffer's input sequence will be given to the parser
|
|
|
|
|
first.
|
|
|
|
|
|
|
|
|
|
@param parser The parser to use.
|
|
|
|
|
|
|
|
|
|
@param ec Set to the error, if any occurred.
|
|
|
|
|
|
|
|
|
|
@return The number of bytes processed from the dynamic
|
|
|
|
|
buffer. The caller should remove these bytes by calling
|
|
|
|
|
`consume` on the dynamic buffer.
|
|
|
|
|
*/
|
|
|
|
|
template<
|
|
|
|
|
class SyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
|
|
|
|
bool isRequest, bool isDirect, class Derived>
|
|
|
|
|
std::size_t
|
|
|
|
|
read_some(
|
|
|
|
|
SyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
|
|
|
|
basic_parser<isRequest, isDirect, Derived>& parser,
|
|
|
|
|
error_code& ec);
|
|
|
|
|
|
|
|
|
|
/** Start an asynchronous operation to read some HTTP/1 message data from a stream.
|
|
|
|
|
|
|
|
|
|
This function asynchronously advances the state of the
|
|
|
|
|
parser using the provided dynamic buffer and reading from
|
|
|
|
|
the input stream as needed. The function call always
|
|
|
|
|
returns immediately. The asynchronous operation will
|
|
|
|
|
continue until one of the following conditions is true:
|
|
|
|
|
|
|
|
|
|
@li When expecting a message header, and the complete
|
|
|
|
|
header is received.
|
|
|
|
|
|
|
|
|
|
@li When expecting a chunk header, and the complete
|
|
|
|
|
chunk header is received.
|
|
|
|
|
|
|
|
|
|
@li When expecting body octets, one or more body octets
|
|
|
|
|
are received.
|
|
|
|
|
|
|
|
|
|
@li An error occurs in the stream or parser.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
This operation is implemented in terms of zero or more calls to
|
|
|
|
|
the next layer's `async_read_some` function, and is known as a
|
|
|
|
|
<em>composed operation</em>. The program must ensure that the
|
|
|
|
|
stream performs no other operations until this operation completes.
|
|
|
|
|
The implementation may read additional octets that lie past the
|
|
|
|
|
end of the object being parsed. This additional data is stored
|
|
|
|
|
in the stream buffer, which may be used in subsequent calls.
|
|
|
|
|
|
|
|
|
|
The completion handler will be called with the number of bytes
|
|
|
|
|
processed from the dynamic buffer. The caller should remove
|
|
|
|
|
these bytes by calling `consume` on the dynamic buffer.
|
2016-11-10 05:34:49 -05:00
|
|
|
|
2016-11-07 18:27:53 -05:00
|
|
|
@param stream The stream from which the data is to be read.
|
2016-11-20 07:32:41 -05:00
|
|
|
The type must support the @b AsyncReadStream concept.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@param dynabuf A @b DynamicBuffer holding additional bytes
|
2016-11-07 18:27:53 -05:00
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
2016-11-20 07:32:41 -05:00
|
|
|
dynamic buffer's input sequence will be given to the parser
|
2016-11-07 18:27:53 -05:00
|
|
|
first.
|
|
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@param parser The parser to use.
|
|
|
|
|
|
|
|
|
|
@param handler The handler to be called when the request
|
|
|
|
|
completes. Copies will be made of the handler as required.
|
|
|
|
|
The equivalent function signature of the handler must be:
|
|
|
|
|
@code void handler(
|
|
|
|
|
error_code const& error, // result of operation
|
|
|
|
|
std::size_t bytes_used // the number of bytes to consume
|
|
|
|
|
); @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 AsyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
|
|
|
|
bool isRequest, bool isDirect, class Derived,
|
|
|
|
|
class ReadHandler>
|
|
|
|
|
#if GENERATING_DOCS
|
|
|
|
|
void_or_deduced
|
|
|
|
|
#else
|
|
|
|
|
typename async_completion<
|
|
|
|
|
ReadHandler, void(error_code, std::size_t)>::result_type
|
|
|
|
|
#endif
|
|
|
|
|
async_read_some(
|
|
|
|
|
AsyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
|
|
|
|
basic_parser<isRequest, isDirect, Derived>& parser,
|
|
|
|
|
ReadHandler&& handler);
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/** Read an HTTP/1 message from a stream.
|
|
|
|
|
|
|
|
|
|
This function synchronously reads from a stream and passes
|
|
|
|
|
data to the specified parser. The call will block until one
|
|
|
|
|
of the following conditions is true:
|
|
|
|
|
|
|
|
|
|
@li The parser indicates no more additional data is needed.
|
|
|
|
|
|
|
|
|
|
@li An error occurs in the stream or parser.
|
|
|
|
|
|
|
|
|
|
This function is implemented in terms of one or more calls
|
|
|
|
|
to the stream's `read_some` function. The implementation may
|
|
|
|
|
read additional octets that lie past the end of the object
|
|
|
|
|
being parsed. This additional data is stored in the dynamic
|
|
|
|
|
buffer, which may be used in subsequent calls.
|
|
|
|
|
|
|
|
|
|
@param stream The stream from which the data is to be read.
|
|
|
|
|
The type must support the @b SyncReadStream concept.
|
|
|
|
|
|
|
|
|
|
@param dynabuf A @b DynamicBuffer holding additional bytes
|
|
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
|
|
|
|
dynamic buffer's input sequence will be given to the parser
|
|
|
|
|
first.
|
|
|
|
|
|
|
|
|
|
@param parser The parser to use.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
|
|
|
|
@throws system_error Thrown on failure.
|
|
|
|
|
*/
|
2016-11-20 07:32:41 -05:00
|
|
|
template<
|
|
|
|
|
class SyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
|
|
|
|
bool isRequest, bool isDirect, class Derived>
|
2016-11-07 18:27:53 -05:00
|
|
|
void
|
2016-11-20 07:32:41 -05:00
|
|
|
read(
|
|
|
|
|
SyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
|
|
|
|
basic_parser<isRequest, isDirect, Derived>& parser);
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
/** Read an HTTP/1 message from a stream.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
This function synchronously reads from a stream and passes
|
|
|
|
|
data to the specified parser. The call will block until one
|
|
|
|
|
of the following conditions is true:
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@li The parser indicates that no more data is needed.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
|
|
|
|
@li An error occurs in the stream or parser.
|
|
|
|
|
|
|
|
|
|
This function is implemented in terms of one or more calls
|
|
|
|
|
to the stream's `read_some` function. The implementation may
|
2016-11-20 07:32:41 -05:00
|
|
|
read additional octets that lie past the end of the object
|
|
|
|
|
being parsed. This additional data is stored in the dynamic
|
|
|
|
|
buffer, which may be used in subsequent calls.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
|
|
|
|
@param stream The stream from which the data is to be read.
|
2016-11-20 07:32:41 -05:00
|
|
|
The type must support the @b SyncReadStream concept.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@param dynabuf A @b DynamicBuffer holding additional bytes
|
2016-11-07 18:27:53 -05:00
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
2016-11-20 07:32:41 -05:00
|
|
|
dynamic buffer's input sequence will be given to the parser
|
2016-11-07 18:27:53 -05:00
|
|
|
first.
|
|
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@param parser The parser to use.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
|
|
|
|
@param ec Set to the error, if any occurred.
|
|
|
|
|
*/
|
2016-11-20 07:32:41 -05:00
|
|
|
template<
|
|
|
|
|
class SyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
|
|
|
|
bool isRequest, bool isDirect, class Derived>
|
2016-11-07 18:27:53 -05:00
|
|
|
void
|
2016-11-20 07:32:41 -05:00
|
|
|
read(
|
|
|
|
|
SyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
|
|
|
|
basic_parser<isRequest, isDirect, Derived>& parser,
|
|
|
|
|
error_code& ec);
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
/** Start an asynchronous operation to read an HTTP/1 message from a stream.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
This function is used to asynchronously read from a stream and
|
|
|
|
|
pass the data to the specified parser. The function call always
|
|
|
|
|
returns immediately. The asynchronous operation will continue
|
|
|
|
|
until one of the following conditions is true:
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@li The parser indicates that no more data is needed.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
|
|
|
|
@li An error occurs in the stream or parser.
|
|
|
|
|
|
|
|
|
|
This operation is implemented in terms of one or more calls to
|
2016-11-20 07:32:41 -05:00
|
|
|
the next layer's `async_read_some` function, and is known as a
|
2016-11-07 18:27:53 -05:00
|
|
|
<em>composed operation</em>. The program must ensure that the
|
|
|
|
|
stream performs no other operations until this operation completes.
|
|
|
|
|
The implementation may read additional octets that lie past the
|
2016-11-20 07:32:41 -05:00
|
|
|
end of the object being parsed. This additional data is stored
|
|
|
|
|
in the stream buffer, which may be used in subsequent calls.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@param stream The stream from which the data is to be read.
|
|
|
|
|
The type must support the @b AsyncReadStream concept.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@param dynabuf A @b DynamicBuffer holding additional bytes
|
2016-11-07 18:27:53 -05:00
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
2016-11-20 07:32:41 -05:00
|
|
|
dynamic buffer's input sequence will be given to the parser
|
2016-11-07 18:27:53 -05:00
|
|
|
first.
|
|
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@param parser The parser to use.
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
@param handler The handler to be called when the request
|
2016-11-10 05:34:49 -05:00
|
|
|
completes. Copies will be made of the handler as required.
|
|
|
|
|
The equivalent function signature of the handler must be:
|
2016-11-07 18:27:53 -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`.
|
|
|
|
|
*/
|
2016-11-20 07:32:41 -05:00
|
|
|
template<
|
|
|
|
|
class AsyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
|
|
|
|
bool isRequest, bool isDirect, class Derived,
|
|
|
|
|
class ReadHandler>
|
2017-04-22 14:56:09 -07:00
|
|
|
#if BEAST_DOXYGEN
|
2016-11-07 18:27:53 -05:00
|
|
|
void_or_deduced
|
|
|
|
|
#else
|
|
|
|
|
typename async_completion<
|
|
|
|
|
ReadHandler, void(error_code)>::result_type
|
|
|
|
|
#endif
|
2016-11-20 07:32:41 -05:00
|
|
|
async_read(
|
|
|
|
|
AsyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
|
|
|
|
basic_parser<isRequest, isDirect, Derived>& parser,
|
|
|
|
|
ReadHandler&& handler);
|
2016-11-07 18:27:53 -05:00
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
/** Read an HTTP/1 message from a stream.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
This function is used to synchronously read a message from
|
2016-11-10 05:34:49 -05:00
|
|
|
a stream. The call blocks until one of the following conditions
|
2016-05-01 12:33:35 -04:00
|
|
|
is true:
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
@li A complete message is read in.
|
|
|
|
|
|
2016-04-30 10:29:39 -04:00
|
|
|
@li An error occurs in the stream or parser.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2016-04-30 10:29:39 -04:00
|
|
|
This function is implemented in terms of one or more calls
|
|
|
|
|
to the stream's `read_some` function. The implementation may
|
|
|
|
|
read additional octets that lie past the end of the message
|
2016-11-20 07:32:41 -05:00
|
|
|
being parsed. This additional data is stored in the dynamic
|
2016-04-30 10:29:39 -04:00
|
|
|
buffer, which may be used in subsequent calls.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-04-30 10:29:39 -04:00
|
|
|
@param stream The stream from which the data is to be read.
|
2016-05-01 12:33:35 -04:00
|
|
|
The type must support the @b `SyncReadStream` concept.
|
|
|
|
|
|
2016-05-28 09:23:54 -04:00
|
|
|
@param dynabuf A @b `DynamicBuffer` holding additional bytes
|
2016-04-30 10:29:39 -04:00
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
2016-11-20 07:32:41 -05:00
|
|
|
dynamic buffer's input sequence will be given to the parser
|
2016-04-30 10:29:39 -04:00
|
|
|
first.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
|
|
|
|
@param msg An object used to store the message. Any
|
2016-11-07 18:27:53 -05:00
|
|
|
contents will be overwritten. The type must support
|
|
|
|
|
copy assignment or move assignment.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-10-04 18:00:11 -04:00
|
|
|
@throws system_error Thrown on failure.
|
2017-07-20 08:01:46 -07:00
|
|
|
*/
|
2016-11-20 07:32:41 -05:00
|
|
|
template<
|
|
|
|
|
class SyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields>
|
2017-07-20 08:01:46 -07:00
|
|
|
void
|
2016-11-20 07:32:41 -05:00
|
|
|
read(
|
|
|
|
|
SyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields>& msg);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
/** Read a HTTP/1 message from a stream.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
This function is used to synchronously read a message from
|
2016-11-10 05:34:49 -05:00
|
|
|
a stream. The call blocks until one of the following conditions
|
2016-05-01 12:33:35 -04:00
|
|
|
is true:
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-01 12:33:35 -04:00
|
|
|
@li A complete message is read in.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-04-30 10:29:39 -04:00
|
|
|
@li An error occurs in the stream or parser.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2016-04-30 10:29:39 -04:00
|
|
|
This function is implemented in terms of one or more calls
|
|
|
|
|
to the stream's `read_some` function. The implementation may
|
|
|
|
|
read additional octets that lie past the end of the message
|
2016-11-20 07:32:41 -05:00
|
|
|
being parsed. This additional data is stored in the dynamic
|
2016-04-30 10:29:39 -04:00
|
|
|
buffer, which may be used in subsequent calls.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2016-04-30 10:29:39 -04:00
|
|
|
@param stream The stream from which the data is to be read.
|
2016-05-01 12:33:35 -04:00
|
|
|
The type must support the @b `SyncReadStream` concept.
|
|
|
|
|
|
2016-05-28 09:23:54 -04:00
|
|
|
@param dynabuf A @b `DynamicBuffer` holding additional bytes
|
2016-04-30 10:29:39 -04:00
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
2016-11-20 07:32:41 -05:00
|
|
|
dynamic buffer's input sequence will be given to the parser
|
2016-04-30 10:29:39 -04:00
|
|
|
first.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2016-04-30 10:29:39 -04:00
|
|
|
@param msg An object used to store the message. Any
|
2016-11-07 18:27:53 -05:00
|
|
|
contents will be overwritten. The type must support
|
|
|
|
|
copy assignment or move assignment.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
@param ec Set to the error, if any occurred.
|
|
|
|
|
*/
|
2016-11-20 07:32:41 -05:00
|
|
|
template<
|
|
|
|
|
class SyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields>
|
2017-07-20 08:01:46 -07:00
|
|
|
void
|
2016-11-20 07:32:41 -05:00
|
|
|
read(
|
|
|
|
|
SyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields>& msg,
|
2016-11-20 07:32:41 -05:00
|
|
|
error_code& ec);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Read a HTTP/1 message asynchronously from a stream.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
This function is used to asynchronously read a message from
|
|
|
|
|
a stream. The function call always returns immediately. The
|
|
|
|
|
asynchronous operation will continue until one of the following
|
|
|
|
|
conditions is true:
|
2016-05-01 12:33:35 -04:00
|
|
|
|
|
|
|
|
@li A complete message is read in.
|
|
|
|
|
|
2016-04-30 10:29:39 -04:00
|
|
|
@li An error occurs in the stream or parser.
|
2016-05-01 12:33:35 -04:00
|
|
|
|
2016-11-07 18:27:53 -05:00
|
|
|
This operation is implemented in terms of one or more calls to
|
2016-11-10 05:34:49 -05:00
|
|
|
the stream's `async_read_some` function, and is known as a
|
2016-11-07 18:27:53 -05:00
|
|
|
<em>composed operation</em>. The program must ensure that the
|
|
|
|
|
stream performs no other operations until this operation completes.
|
|
|
|
|
The implementation may read additional octets that lie past the
|
|
|
|
|
end of the message being parsed. This additional data is stored
|
2016-11-20 07:32:41 -05:00
|
|
|
in the dynamic buffer, which may be used in subsequent calls.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
@param stream The stream to read the message from.
|
2016-05-01 12:33:35 -04:00
|
|
|
The type must support the @b `AsyncReadStream` concept.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-05-28 09:23:54 -04:00
|
|
|
@param dynabuf A @b `DynamicBuffer` holding additional bytes
|
2016-04-30 10:29:39 -04:00
|
|
|
read by the implementation from the stream. This is both
|
|
|
|
|
an input and an output parameter; on entry, any data in the
|
2016-11-20 07:32:41 -05:00
|
|
|
dynamic buffer's input sequence will be given to the parser
|
2016-04-30 10:29:39 -04:00
|
|
|
first.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param msg An object used to store the header. Any contents
|
2016-11-07 18:27:53 -05:00
|
|
|
will be overwritten. The type must support copy assignment or
|
2016-11-10 05:34:49 -05:00
|
|
|
move assignment. 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
|
|
|
*/
|
2016-11-20 07:32:41 -05:00
|
|
|
template<
|
|
|
|
|
class AsyncReadStream,
|
|
|
|
|
class DynamicBuffer,
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields,
|
2016-11-20 07:32:41 -05:00
|
|
|
class ReadHandler>
|
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<
|
|
|
|
|
ReadHandler, void(error_code)>::result_type
|
|
|
|
|
#endif
|
2016-11-20 07:32:41 -05:00
|
|
|
async_read(
|
|
|
|
|
AsyncReadStream& stream,
|
|
|
|
|
DynamicBuffer& dynabuf,
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields>& msg,
|
2016-11-20 07:32:41 -05:00
|
|
|
ReadHandler&& handler);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
} // http
|
|
|
|
|
} // beast
|
|
|
|
|
|
2016-11-20 07:32:41 -05:00
|
|
|
#include <beast/http/impl/async_read.ipp>
|
2017-07-20 08:01:46 -07:00
|
|
|
#include <beast/http/impl/read.ipp>
|
|
|
|
|
|
|
|
|
|
#endif
|