Files
boost_beast/include/beast/http/empty_body.hpp

117 lines
2.6 KiB
C++
Raw Normal View History

//
// Copyright (c) 2013-2017 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_EMPTY_BODY_HPP
#define BEAST_HTTP_EMPTY_BODY_HPP
#include <beast/config.hpp>
#include <beast/http/error.hpp>
#include <beast/http/message.hpp>
#include <boost/optional.hpp>
namespace beast {
namespace http {
2017-06-04 15:05:23 -07:00
/** An empty message body.
2017-06-04 15:05:23 -07:00
This body is used to represent messages which do not have a
message body. If this body is used with a parser, and the
parser encounters octets corresponding to a message body,
the parser will fail with the error @ref http::unexpected_body.
2017-06-04 15:05:23 -07:00
Meets the requirements of @b Body. The Content-Length of this
body is always 0.
*/
struct empty_body
{
/// The type of the body member when used in a message.
struct value_type
{
// VFALCO We could stash boost::optional<std::uint64_t>
// for the content length here, set on init()
};
2017-06-05 21:11:33 -07:00
/// Returns the content length of the body in a message.
static
std::uint64_t
size(value_type)
2017-06-05 21:11:33 -07:00
{
return 0;
}
#if BEAST_DOXYGEN
/// The algorithm to obtain buffers representing the body
using reader = implementation_defined;
#else
struct reader
{
using const_buffers_type =
boost::asio::null_buffers;
template<bool isRequest, class Fields>
explicit
reader(message<isRequest,
empty_body, Fields> const&)
{
}
void
init(error_code& ec)
{
2017-06-19 16:57:12 -07:00
ec.assign(0, ec.category());
}
boost::optional<std::pair<const_buffers_type, bool>>
get(error_code& ec)
{
2017-06-19 16:57:12 -07:00
ec.assign(0, ec.category());
return boost::none;
}
};
#endif
#if BEAST_DOXYGEN
/// The algorithm used store buffers in this body
using writer = implementation_defined;
#else
struct writer
{
template<bool isRequest, class Fields>
explicit
writer(message<isRequest, empty_body, Fields>&)
{
}
void
init(boost::optional<std::uint64_t> const&, error_code& ec)
{
2017-06-19 16:57:12 -07:00
ec.assign(0, ec.category());
}
template<class ConstBufferSequence>
std::size_t
put(ConstBufferSequence const&,
error_code& ec)
{
2017-06-04 15:05:23 -07:00
ec = error::unexpected_body;
return 0;
}
void
2017-06-13 07:08:52 -07:00
finish(error_code& ec)
{
2017-06-19 16:57:12 -07:00
ec.assign(0, ec.category());
}
};
#endif
};
} // http
} // beast
#endif