mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-25 05:25:55 +00:00
New classes:
class async_completion:
Helper class for implementing asynchronous initiation functions.
See n3964:
Library Foundations for Asynchronous Operations, Revision 1
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3964.pdf
class basic_streambuf:
Meets the requirements of Streambuf.
class buffered_readstream:
Buffers a ReadStream with a ConstBufferSequence.
class consuming_buffers:
Adapts a BufferSequence which wraps the underlying buffer
sequence and presents fewer bytes, with the retained bytes
occurring at the end of the sequence.
class handler_alloc:
A C++ Allocator the uses asio handler allocation hooks.
class static_streambuf:
An implementation of the Streambuf concept that uses a
fixed size buffer with size determined at compile-time.
class streambuf_readstream:
Buffers a ReadStream with a Streambuf.
New functions:
append_buffers()
Returns a new BufferSequence which efficiently concatenates
two or more buffer sequences together.
prepare_buffers()
Shortens a buffer sequence. The bytes excluded are at the
end of the underlying buffer sequence.
boost::asio::read_until()
A copy of boost::asio::read_until overloads, modified to work
with a beast::asio::basic_streambuf.
Debugging:
buffers_to_string()
Convert a ConstBufferSequence to a human readable string
suitable for diagnostics.
type_check.h:
Metafunctions for checking asio concepts:
AsyncReadStream, AsyncWriteStream
SyncReadStream, SyncWriteStream
ConstBufferSequence, MutableBufferSequence
Streambuf
Handler
Changes:
* All symbols moved up a namespace level.
* streambuf provides all move and copy special members,
behavior of moved from objects is well-defined.
Fixes:
* Fix basic_streambuf iterator category.
98 lines
2.7 KiB
C++
98 lines
2.7 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)
|
|
//
|
|
|
|
// Test that header file is self-contained.
|
|
#include <beast/asio/consuming_buffers.h>
|
|
|
|
#include <beast/unit_test/suite.h>
|
|
#include <boost/asio/buffer.hpp>
|
|
#include <string>
|
|
|
|
namespace beast {
|
|
namespace asio {
|
|
namespace test {
|
|
|
|
class consuming_buffers_test : public unit_test::suite
|
|
{
|
|
public:
|
|
template<class ConstBufferSequence>
|
|
static
|
|
std::string
|
|
to_string(ConstBufferSequence const& bs)
|
|
{
|
|
using boost::asio::buffer_cast;
|
|
using boost::asio::buffer_size;
|
|
std::string s;
|
|
s.reserve(buffer_size(bs));
|
|
for(auto const& b : bs)
|
|
s.append(buffer_cast<char const*>(b),
|
|
buffer_size(b));
|
|
return s;
|
|
}
|
|
|
|
void testBuffers()
|
|
{
|
|
using boost::asio::buffer;
|
|
using boost::asio::const_buffer;
|
|
char buf[12];
|
|
std::string const s = "Hello, world";
|
|
expect(s.size() == sizeof(buf));
|
|
buffer_copy(buffer(buf), buffer(s));
|
|
expect(to_string(buffer(buf)) == s);
|
|
for(std::size_t i = 1; i < 4; ++i) {
|
|
for(std::size_t j = 1; j < 4; ++j) {
|
|
for(std::size_t x = 1; x < 4; ++x) {
|
|
for(std::size_t y = 1; y < 4; ++y) {
|
|
std::size_t k = sizeof(buf) - (i + j);
|
|
std::size_t z = sizeof(buf) - (x + y);
|
|
{
|
|
std::array<const_buffer, 3> bs{{
|
|
const_buffer{&buf[0], i},
|
|
const_buffer{&buf[i], j},
|
|
const_buffer{&buf[i+j], k}}};
|
|
consuming_buffers<decltype(bs)> cb(bs);
|
|
expect(to_string(cb) == s);
|
|
cb.consume(0);
|
|
expect(to_string(cb) == s);
|
|
cb.consume(x);
|
|
expect(to_string(cb) == s.substr(x));
|
|
cb.consume(y);
|
|
expect(to_string(cb) == s.substr(x+y));
|
|
cb.consume(z);
|
|
expect(to_string(cb) == "");
|
|
cb.consume(1);
|
|
expect(to_string(cb) == "");
|
|
}
|
|
}}}}
|
|
}
|
|
|
|
void testNullBuffers()
|
|
{
|
|
using boost::asio::buffer_copy;
|
|
using boost::asio::buffer_size;
|
|
using boost::asio::null_buffers;
|
|
consuming_buffers<null_buffers> cb(
|
|
null_buffers{});
|
|
expect(buffer_size(cb) == 0);
|
|
consuming_buffers<null_buffers> cb2(
|
|
null_buffers{});
|
|
expect(buffer_copy(cb2, cb) == 0);
|
|
}
|
|
|
|
void run() override
|
|
{
|
|
testBuffers();
|
|
testNullBuffers();
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(consuming_buffers,asio,beast);
|
|
|
|
} // test
|
|
} // asio
|
|
} // beast
|