mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-23 20:15:49 +00:00
Conform to the Networking TS by renaming the Streambuf concept to DynamicBuffer in all places. Values of types meeting the requirements of DynamicBuffer are renamed to dynabuf. See: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4478.html#requirements.dynamic_buffers * Headers renamed * Formal parameter names renamed * Template argument types renamed * Documentation updated
96 lines
2.0 KiB
C++
96 lines
2.0 KiB
C++
//
|
|
// 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_BASIC_DYNABUF_BODY_HPP
|
|
#define BEAST_HTTP_BASIC_DYNABUF_BODY_HPP
|
|
|
|
#include <beast/http/body_type.hpp>
|
|
#include <boost/asio/buffer.hpp>
|
|
|
|
namespace beast {
|
|
namespace http {
|
|
|
|
/** A message body represented by a @b `DynamicBuffer`
|
|
|
|
Meets the requirements of @b `Body`.
|
|
*/
|
|
template<class DynamicBuffer>
|
|
struct basic_dynabuf_body
|
|
{
|
|
/// The type of the `message::body` member
|
|
using value_type = DynamicBuffer;
|
|
|
|
#if GENERATING_DOCS
|
|
private:
|
|
#endif
|
|
|
|
class reader
|
|
{
|
|
value_type& sb_;
|
|
|
|
public:
|
|
template<bool isRequest, class Headers>
|
|
explicit
|
|
reader(message<isRequest,
|
|
basic_dynabuf_body, Headers>& m) noexcept
|
|
: sb_(m.body)
|
|
{
|
|
}
|
|
|
|
void
|
|
write(void const* data,
|
|
std::size_t size, error_code&) noexcept
|
|
{
|
|
using boost::asio::buffer;
|
|
using boost::asio::buffer_copy;
|
|
sb_.commit(buffer_copy(
|
|
sb_.prepare(size), buffer(data, size)));
|
|
}
|
|
};
|
|
|
|
class writer
|
|
{
|
|
DynamicBuffer const& body_;
|
|
|
|
public:
|
|
writer(writer const&) = delete;
|
|
writer& operator=(writer const&) = delete;
|
|
|
|
template<bool isRequest, class Headers>
|
|
explicit
|
|
writer(message<
|
|
isRequest, basic_dynabuf_body, Headers> const& m)
|
|
: body_(m.body)
|
|
{
|
|
}
|
|
|
|
void
|
|
init(error_code& ec)
|
|
{
|
|
}
|
|
|
|
std::uint64_t
|
|
content_length() const
|
|
{
|
|
return body_.size();
|
|
}
|
|
|
|
template<class Write>
|
|
boost::tribool
|
|
operator()(resume_context&&, error_code&, Write&& write)
|
|
{
|
|
write(body_.data());
|
|
return true;
|
|
}
|
|
};
|
|
};
|
|
|
|
} // http
|
|
} // beast
|
|
|
|
#endif
|