2017-07-20 08:01:46 -07:00
|
|
|
//
|
|
|
|
// Copyright (c) 2013-2016 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
|
|
//
|
|
|
|
// 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_MESSAGE_HPP
|
|
|
|
#define BEAST_HTTP_MESSAGE_HPP
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
#include <beast/http/fields.hpp>
|
2016-05-07 15:18:22 -04:00
|
|
|
#include <beast/core/detail/integer_sequence.hpp>
|
2017-07-20 08:01:46 -07:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2016-05-07 15:18:22 -04:00
|
|
|
#include <tuple>
|
|
|
|
#include <utility>
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
namespace beast {
|
|
|
|
namespace http {
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
#if GENERATING_DOCS
|
2016-11-10 05:34:49 -05:00
|
|
|
/** A container for a HTTP request or response header.
|
|
|
|
|
|
|
|
A header includes the Start Line and Fields.
|
|
|
|
|
|
|
|
Some use-cases:
|
|
|
|
|
|
|
|
@li When the message has no body, such as a response to a HEAD request.
|
|
|
|
|
|
|
|
@li When the caller wishes to defer instantiation of the body.
|
|
|
|
|
|
|
|
@li Invoke algorithms which operate on the header only.
|
2016-10-09 06:34:35 -04:00
|
|
|
*/
|
2016-11-10 05:34:49 -05:00
|
|
|
template<bool isRequest, class Fields>
|
|
|
|
struct header
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
#else
|
2016-11-10 05:34:49 -05:00
|
|
|
template<bool isRequest, class Fields>
|
|
|
|
struct header;
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
template<class Fields>
|
|
|
|
struct header<true, Fields>
|
2016-11-07 12:20:39 -05:00
|
|
|
#endif
|
2017-07-20 08:01:46 -07:00
|
|
|
{
|
2016-11-10 05:34:49 -05:00
|
|
|
/// Indicates if the header is a request or response.
|
2016-11-07 12:20:39 -05:00
|
|
|
#if GENERATING_DOCS
|
|
|
|
static bool constexpr is_request = isRequest;
|
|
|
|
|
|
|
|
#else
|
|
|
|
static bool constexpr is_request = true;
|
|
|
|
#endif
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/// The type representing the fields.
|
|
|
|
using fields_type = Fields;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
|
|
|
/** The HTTP version.
|
|
|
|
|
|
|
|
This holds both the major and minor version numbers,
|
|
|
|
using these formulas:
|
|
|
|
@code
|
|
|
|
major = version / 10;
|
|
|
|
minor = version % 10;
|
|
|
|
@endcode
|
|
|
|
*/
|
|
|
|
int version;
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/** The Request Method
|
|
|
|
|
|
|
|
@note This field is present only if `isRequest == true`.
|
|
|
|
*/
|
2016-04-29 06:04:40 -04:00
|
|
|
std::string method;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/** The Request URI
|
|
|
|
|
|
|
|
@note This field is present only if `isRequest == true`.
|
|
|
|
*/
|
2017-07-20 08:01:46 -07:00
|
|
|
std::string url;
|
2016-05-28 07:56:38 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// The HTTP field values.
|
2016-11-10 05:34:49 -05:00
|
|
|
fields_type fields;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// Default constructor
|
2016-11-10 05:34:49 -05:00
|
|
|
header() = default;
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
/// Move constructor
|
2016-11-10 05:34:49 -05:00
|
|
|
header(header&&) = default;
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
/// Copy constructor
|
2016-11-10 05:34:49 -05:00
|
|
|
header(header const&) = default;
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
/// Move assignment
|
2016-11-10 05:34:49 -05:00
|
|
|
header& operator=(header&&) = default;
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
/// Copy assignment
|
2016-11-10 05:34:49 -05:00
|
|
|
header& operator=(header const&) = default;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Construct the header.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
All arguments are forwarded to the constructor
|
2016-11-10 05:34:49 -05:00
|
|
|
of the `fields` member.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@note This constructor participates in overload resolution
|
|
|
|
if and only if the first parameter is not convertible to
|
2016-11-10 05:34:49 -05:00
|
|
|
`header`.
|
2016-10-09 06:34:35 -04:00
|
|
|
*/
|
2016-11-07 12:20:39 -05:00
|
|
|
#if GENERATING_DOCS
|
|
|
|
template<class... Args>
|
|
|
|
explicit
|
2016-11-10 05:34:49 -05:00
|
|
|
header(Args&&... args);
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
#else
|
2016-10-09 06:34:35 -04:00
|
|
|
template<class Arg1, class... ArgN,
|
|
|
|
class = typename std::enable_if<
|
|
|
|
(sizeof...(ArgN) > 0) || ! std::is_convertible<
|
|
|
|
typename std::decay<Arg1>::type,
|
2016-11-10 05:34:49 -05:00
|
|
|
header>::value>::type>
|
2016-10-09 06:34:35 -04:00
|
|
|
explicit
|
2016-11-10 05:34:49 -05:00
|
|
|
header(Arg1&& arg1, ArgN&&... argn)
|
|
|
|
: fields(std::forward<Arg1>(arg1),
|
2016-10-09 06:34:35 -04:00
|
|
|
std::forward<ArgN>(argn)...)
|
2016-05-28 07:56:38 -04:00
|
|
|
{
|
|
|
|
}
|
2017-07-20 08:01:46 -07:00
|
|
|
};
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** A container for a HTTP request or response header.
|
|
|
|
|
|
|
|
A header includes the Start Line and Fields.
|
|
|
|
|
|
|
|
Some use-cases:
|
|
|
|
|
|
|
|
@li When the message has no body, such as a response to a HEAD request.
|
|
|
|
|
|
|
|
@li When the caller wishes to defer instantiation of the body.
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@li Invoke algorithms which operate on the header only.
|
2016-10-09 06:34:35 -04:00
|
|
|
*/
|
2016-11-10 05:34:49 -05:00
|
|
|
template<class Fields>
|
|
|
|
struct header<false, Fields>
|
2017-07-20 08:01:46 -07:00
|
|
|
{
|
2016-11-10 05:34:49 -05:00
|
|
|
/// Indicates if the header is a request or response.
|
2016-11-07 12:20:39 -05:00
|
|
|
static bool constexpr is_request = false;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/// The type representing the fields.
|
|
|
|
using fields_type = Fields;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
|
|
|
/** The HTTP version.
|
|
|
|
|
|
|
|
This holds both the major and minor version numbers,
|
|
|
|
using these formulas:
|
|
|
|
@code
|
|
|
|
major = version / 10;
|
|
|
|
minor = version % 10;
|
|
|
|
@endcode
|
|
|
|
*/
|
|
|
|
int version;
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// The HTTP field values.
|
2016-11-10 05:34:49 -05:00
|
|
|
fields_type fields;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// Default constructor
|
2016-11-10 05:34:49 -05:00
|
|
|
header() = default;
|
2016-10-19 18:47:03 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// Move constructor
|
2016-11-10 05:34:49 -05:00
|
|
|
header(header&&) = default;
|
2016-05-28 07:56:38 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// Copy constructor
|
2016-11-10 05:34:49 -05:00
|
|
|
header(header const&) = default;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// Move assignment
|
2016-11-10 05:34:49 -05:00
|
|
|
header& operator=(header&&) = default;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// Copy assignment
|
2016-11-10 05:34:49 -05:00
|
|
|
header& operator=(header const&) = default;
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Construct the header.
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
All arguments are forwarded to the constructor
|
2016-11-10 05:34:49 -05:00
|
|
|
of the `fields` member.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@note This constructor participates in overload resolution
|
|
|
|
if and only if the first parameter is not convertible to
|
2016-11-10 05:34:49 -05:00
|
|
|
`header`.
|
2016-11-07 12:20:39 -05:00
|
|
|
*/
|
2016-10-09 06:34:35 -04:00
|
|
|
template<class Arg1, class... ArgN,
|
|
|
|
class = typename std::enable_if<
|
|
|
|
(sizeof...(ArgN) > 0) || ! std::is_convertible<
|
|
|
|
typename std::decay<Arg1>::type,
|
2016-11-10 05:34:49 -05:00
|
|
|
header>::value>::type>
|
2016-10-09 06:34:35 -04:00
|
|
|
explicit
|
2016-11-10 05:34:49 -05:00
|
|
|
header(Arg1&& arg1, ArgN&&... argn)
|
|
|
|
: fields(std::forward<Arg1>(arg1),
|
2016-10-09 06:34:35 -04:00
|
|
|
std::forward<ArgN>(argn)...)
|
2016-05-28 07:56:38 -04:00
|
|
|
{
|
|
|
|
}
|
2016-11-07 12:20:39 -05:00
|
|
|
#endif
|
2016-10-19 18:47:03 -04:00
|
|
|
|
|
|
|
/** The Response Status-Code.
|
|
|
|
|
|
|
|
@note This field is present only if `isRequest == false`.
|
|
|
|
*/
|
|
|
|
int status;
|
|
|
|
|
|
|
|
/** The Response Reason-Phrase.
|
|
|
|
|
|
|
|
The Reason-Phrase is obsolete as of rfc7230.
|
|
|
|
|
2016-11-03 17:53:32 -04:00
|
|
|
@note This field is present only if `isRequest == false`.
|
2016-10-19 18:47:03 -04:00
|
|
|
*/
|
|
|
|
std::string reason;
|
|
|
|
};
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/** A container for a complete HTTP message.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
A message can be a request or response, depending on the
|
|
|
|
`isRequest` template argument value. Requests and responses
|
|
|
|
have different types; functions may be overloaded based on
|
|
|
|
the type if desired.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
The `Body` template argument type determines the model used
|
|
|
|
to read or write the content body of the message.
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
@tparam isRequest `true` if this represents a request,
|
|
|
|
or `false` if this represents a response. Some class data
|
|
|
|
members are conditionally present depending on this value.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
@tparam Body A type meeting the requirements of Body.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@tparam Fields The type of container used to hold the
|
2016-11-07 12:20:39 -05:00
|
|
|
field value pairs.
|
2017-07-20 08:01:46 -07:00
|
|
|
*/
|
2016-11-10 05:34:49 -05:00
|
|
|
template<bool isRequest, class Body, class Fields>
|
|
|
|
struct message : header<isRequest, Fields>
|
2017-07-20 08:01:46 -07:00
|
|
|
{
|
2016-11-10 05:34:49 -05:00
|
|
|
/// The base class used to hold the header portion of the message.
|
|
|
|
using base_type = header<isRequest, Fields>;
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/** The type providing the body traits.
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
The @ref message::body member will be of type `body_type::value_type`.
|
2017-07-20 08:01:46 -07:00
|
|
|
*/
|
|
|
|
using body_type = Body;
|
2016-05-01 11:14:10 -04:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
/// A value representing the body.
|
2016-05-01 11:14:10 -04:00
|
|
|
typename Body::value_type body;
|
2016-05-07 15:18:22 -04:00
|
|
|
|
|
|
|
/// Default constructor
|
|
|
|
message() = default;
|
|
|
|
|
2016-11-20 07:35:27 -05:00
|
|
|
/// Move constructor
|
|
|
|
message(message&&) = default;
|
|
|
|
|
|
|
|
/// Copy constructor
|
|
|
|
message(message const&) = default;
|
|
|
|
|
|
|
|
/// Move assignment
|
|
|
|
message& operator=(message&&) = default;
|
|
|
|
|
|
|
|
/// Copy assignment
|
|
|
|
message& operator=(message const&) = default;
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Construct a message from a header.
|
2016-10-09 06:34:35 -04:00
|
|
|
|
|
|
|
Additional arguments, if any, are forwarded to
|
|
|
|
the constructor of the body member.
|
|
|
|
*/
|
|
|
|
template<class... Args>
|
|
|
|
explicit
|
|
|
|
message(base_type&& base, Args&&... args)
|
|
|
|
: base_type(std::move(base))
|
|
|
|
, body(std::forward<Args>(args)...)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Construct a message from a header.
|
2016-10-09 06:34:35 -04:00
|
|
|
|
|
|
|
Additional arguments, if any, are forwarded to
|
|
|
|
the constructor of the body member.
|
|
|
|
*/
|
|
|
|
template<class... Args>
|
|
|
|
explicit
|
|
|
|
message(base_type const& base, Args&&... args)
|
|
|
|
: base_type(base)
|
|
|
|
, body(std::forward<Args>(args)...)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-05-07 15:18:22 -04:00
|
|
|
/** Construct a message.
|
|
|
|
|
|
|
|
@param u An argument forwarded to the body constructor.
|
2016-10-19 18:47:03 -04:00
|
|
|
|
|
|
|
@note This constructor participates in overload resolution
|
|
|
|
only if `u` is not convertible to `base_type`.
|
2016-05-07 15:18:22 -04:00
|
|
|
*/
|
2016-10-19 18:47:03 -04:00
|
|
|
template<class U
|
|
|
|
#if ! GENERATING_DOCS
|
2016-11-20 07:35:27 -05:00
|
|
|
, class = typename std::enable_if<
|
|
|
|
! std::is_convertible<typename
|
|
|
|
std::decay<U>::type, base_type>::value>::type
|
2016-10-19 18:47:03 -04:00
|
|
|
#endif
|
|
|
|
>
|
2016-05-07 15:18:22 -04:00
|
|
|
explicit
|
|
|
|
message(U&& u)
|
|
|
|
: body(std::forward<U>(u))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Construct a message.
|
|
|
|
|
|
|
|
@param u An argument forwarded to the body constructor.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param v An argument forwarded to the fields constructor.
|
2016-10-19 18:47:03 -04:00
|
|
|
|
|
|
|
@note This constructor participates in overload resolution
|
|
|
|
only if `u` is not convertible to `base_type`.
|
2016-05-07 15:18:22 -04:00
|
|
|
*/
|
2016-10-19 18:47:03 -04:00
|
|
|
template<class U, class V
|
|
|
|
#if ! GENERATING_DOCS
|
|
|
|
,class = typename std::enable_if<! std::is_convertible<
|
2016-11-20 07:35:27 -05:00
|
|
|
typename std::decay<U>::type, base_type>::value>::type
|
2016-10-19 18:47:03 -04:00
|
|
|
#endif
|
|
|
|
>
|
2016-05-07 15:18:22 -04:00
|
|
|
message(U&& u, V&& v)
|
2016-10-09 06:34:35 -04:00
|
|
|
: base_type(std::forward<V>(v))
|
2016-05-07 15:18:22 -04:00
|
|
|
, body(std::forward<U>(u))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Construct a message.
|
|
|
|
|
|
|
|
@param un A tuple forwarded as a parameter pack to the body constructor.
|
|
|
|
*/
|
|
|
|
template<class... Un>
|
|
|
|
message(std::piecewise_construct_t, std::tuple<Un...> un)
|
|
|
|
: message(std::piecewise_construct, un,
|
|
|
|
beast::detail::make_index_sequence<sizeof...(Un)>{})
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Construct a message.
|
|
|
|
|
|
|
|
@param un A tuple forwarded as a parameter pack to the body constructor.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param vn A tuple forwarded as a parameter pack to the fields constructor.
|
2016-05-07 15:18:22 -04:00
|
|
|
*/
|
|
|
|
template<class... Un, class... Vn>
|
|
|
|
message(std::piecewise_construct_t,
|
|
|
|
std::tuple<Un...>&& un, std::tuple<Vn...>&& vn)
|
|
|
|
: message(std::piecewise_construct, un, vn,
|
|
|
|
beast::detail::make_index_sequence<sizeof...(Un)>{},
|
|
|
|
beast::detail::make_index_sequence<sizeof...(Vn)>{})
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/// Returns the header portion of the message
|
2016-11-07 12:20:39 -05:00
|
|
|
base_type&
|
|
|
|
base()
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/// Returns the header portion of the message
|
2016-11-07 12:20:39 -05:00
|
|
|
base_type const&
|
|
|
|
base() const
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2016-05-07 15:18:22 -04:00
|
|
|
private:
|
|
|
|
template<class... Un, size_t... IUn>
|
|
|
|
message(std::piecewise_construct_t,
|
|
|
|
std::tuple<Un...>& tu, beast::detail::index_sequence<IUn...>)
|
|
|
|
: body(std::forward<Un>(std::get<IUn>(tu))...)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class... Un, class... Vn,
|
|
|
|
std::size_t... IUn, std::size_t... IVn>
|
|
|
|
message(std::piecewise_construct_t,
|
|
|
|
std::tuple<Un...>& tu, std::tuple<Vn...>& tv,
|
|
|
|
beast::detail::index_sequence<IUn...>,
|
|
|
|
beast::detail::index_sequence<IVn...>)
|
2016-10-09 06:34:35 -04:00
|
|
|
: base_type(std::forward<Vn>(std::get<IVn>(tv))...)
|
2016-05-07 15:18:22 -04:00
|
|
|
, body(std::forward<Un>(std::get<IUn>(tu))...)
|
|
|
|
{
|
|
|
|
}
|
2017-07-20 08:01:46 -07:00
|
|
|
};
|
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if GENERATING_DOCS
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Swap two header objects.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@par Requirements
|
2016-11-10 05:34:49 -05:00
|
|
|
`Fields` is @b Swappable.
|
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
|
|
|
void
|
|
|
|
swap(
|
2016-11-10 05:34:49 -05:00
|
|
|
header<isRequest, Fields>& m1,
|
|
|
|
header<isRequest, Fields>& m2);
|
2016-11-07 12:20:39 -05:00
|
|
|
#endif
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Swap two message objects.
|
2016-11-07 12:20:39 -05:00
|
|
|
|
|
|
|
@par Requirements:
|
2016-11-10 05:34:49 -05:00
|
|
|
`Body::value_type` and `Fields` are @b Swappable.
|
2016-11-07 12:20:39 -05:00
|
|
|
*/
|
2016-11-10 05:34:49 -05:00
|
|
|
template<bool isRequest, class Body, class Fields>
|
2016-05-28 07:56:38 -04:00
|
|
|
void
|
2016-10-09 06:34:35 -04:00
|
|
|
swap(
|
2016-11-10 05:34:49 -05:00
|
|
|
message<isRequest, Body, Fields>& m1,
|
|
|
|
message<isRequest, Body, Fields>& m2);
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/// A typical HTTP request header
|
|
|
|
using request_header = header<true, fields>;
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/// Typical HTTP response header
|
|
|
|
using response_header = header<false, fields>;
|
2016-11-07 12:20:39 -05:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/// A typical HTTP request
|
|
|
|
template<class Body, class Fields = fields>
|
|
|
|
using request = message<true, Body, Fields>;
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/// A typical HTTP response
|
|
|
|
template<class Body, class Fields = fields>
|
|
|
|
using response = message<false, Body, Fields>;
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2016-11-07 12:20:39 -05:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Returns `true` if the HTTP/1 message indicates a keep alive.
|
2016-10-09 06:34:35 -04:00
|
|
|
|
|
|
|
Undefined behavior if version is greater than 11.
|
|
|
|
*/
|
2016-11-10 05:34:49 -05:00
|
|
|
template<bool isRequest, class Fields>
|
2016-10-09 06:34:35 -04:00
|
|
|
bool
|
2016-11-10 05:34:49 -05:00
|
|
|
is_keep_alive(header<isRequest, Fields> const& msg);
|
2016-10-09 06:34:35 -04:00
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
/** Returns `true` if the HTTP/1 message indicates an Upgrade request or response.
|
2016-10-09 06:34:35 -04:00
|
|
|
|
|
|
|
Undefined behavior if version is greater than 11.
|
|
|
|
*/
|
2016-11-10 05:34:49 -05:00
|
|
|
template<bool isRequest, class Fields>
|
2016-10-09 06:34:35 -04:00
|
|
|
bool
|
2016-11-10 05:34:49 -05:00
|
|
|
is_upgrade(header<isRequest, Fields> const& msg);
|
2016-10-09 06:34:35 -04:00
|
|
|
|
|
|
|
/** HTTP/1 connection prepare options.
|
|
|
|
|
|
|
|
@note These values are used with @ref prepare.
|
|
|
|
*/
|
|
|
|
enum class connection
|
|
|
|
{
|
|
|
|
/// Specify Connection: close.
|
|
|
|
close,
|
|
|
|
|
|
|
|
/// Specify Connection: keep-alive where possible.
|
|
|
|
keep_alive,
|
|
|
|
|
|
|
|
/// Specify Connection: upgrade.
|
|
|
|
upgrade
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Prepare a HTTP message.
|
|
|
|
|
|
|
|
This function will adjust the Content-Length, Transfer-Encoding,
|
2016-11-10 05:34:49 -05:00
|
|
|
and Connection fields of the message based on the properties of
|
2016-10-09 06:34:35 -04:00
|
|
|
the body and the options passed in.
|
|
|
|
|
2016-11-10 05:34:49 -05:00
|
|
|
@param msg The message to prepare. The fields may be modified.
|
2016-10-09 06:34:35 -04:00
|
|
|
|
|
|
|
@param options A list of prepare options.
|
|
|
|
*/
|
|
|
|
template<
|
2016-11-10 05:34:49 -05:00
|
|
|
bool isRequest, class Body, class Fields,
|
2016-10-09 06:34:35 -04:00
|
|
|
class... Options>
|
|
|
|
void
|
2016-11-10 05:34:49 -05:00
|
|
|
prepare(message<isRequest, Body, Fields>& msg,
|
2016-10-09 06:34:35 -04:00
|
|
|
Options&&... options);
|
|
|
|
|
2017-07-20 08:01:46 -07:00
|
|
|
} // http
|
|
|
|
} // beast
|
|
|
|
|
2016-10-09 06:34:35 -04:00
|
|
|
#include <beast/http/impl/message.ipp>
|
|
|
|
|
2017-07-20 08:01:46 -07:00
|
|
|
#endif
|