forked from boostorg/beast
Add test_allocator to extras/test
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
* Refactor base64
|
* Refactor base64
|
||||||
* Use static_string for WebSocket handshakes
|
* Use static_string for WebSocket handshakes
|
||||||
* Simplify get_lowest_layer test
|
* Simplify get_lowest_layer test
|
||||||
|
* Add test_allocator to extras/test
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
138
extras/beast/test/test_allocator.hpp
Normal file
138
extras/beast/test/test_allocator.hpp
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
//
|
||||||
|
// 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_TEST_TEST_ALLOCATOR_HPP
|
||||||
|
#define BEAST_TEST_TEST_ALLOCATOR_HPP
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cstddef>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
namespace beast {
|
||||||
|
namespace test {
|
||||||
|
|
||||||
|
struct test_allocator_info
|
||||||
|
{
|
||||||
|
std::size_t ncopy = 0;
|
||||||
|
std::size_t nmove = 0;
|
||||||
|
std::size_t nselect = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
template<class T,
|
||||||
|
bool Assign, bool Move, bool Swap, bool Select>
|
||||||
|
class test_allocator;
|
||||||
|
|
||||||
|
template<class T,
|
||||||
|
bool Assign, bool Move, bool Swap, bool Select>
|
||||||
|
struct test_allocator_base
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
|
template<class T,
|
||||||
|
bool Assign, bool Move, bool Swap>
|
||||||
|
struct test_allocator_base<T, Assign, Move, Swap, true>
|
||||||
|
{
|
||||||
|
static
|
||||||
|
test_allocator<T, Assign, Move, Swap, true>
|
||||||
|
select_on_container_copy_construction(
|
||||||
|
test_allocator<T, Assign, Move, Swap, true> const& a)
|
||||||
|
{
|
||||||
|
return test_allocator<T, Assign, Move, Swap, true>{};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<class T,
|
||||||
|
bool Assign, bool Move, bool Swap, bool Select>
|
||||||
|
class test_allocator : public test_allocator_base<
|
||||||
|
T, Assign, Move, Swap, Select>
|
||||||
|
{
|
||||||
|
std::size_t id_;
|
||||||
|
std::shared_ptr<test_allocator_info> info_;
|
||||||
|
|
||||||
|
template<class, bool, bool, bool, bool>
|
||||||
|
friend class test_allocator;
|
||||||
|
|
||||||
|
public:
|
||||||
|
using value_type = T;
|
||||||
|
using propagate_on_container_copy_assignment =
|
||||||
|
std::integral_constant<bool, Assign>;
|
||||||
|
using propagate_on_container_move_assignment =
|
||||||
|
std::integral_constant<bool, Move>;
|
||||||
|
using propagate_on_container_swap =
|
||||||
|
std::integral_constant<bool, Swap>;
|
||||||
|
|
||||||
|
template<class U>
|
||||||
|
struct rebind
|
||||||
|
{
|
||||||
|
using other = test_allocator<
|
||||||
|
U, Assign, Move, Swap, Select>;
|
||||||
|
};
|
||||||
|
|
||||||
|
test_allocator()
|
||||||
|
: id_([]
|
||||||
|
{
|
||||||
|
static std::atomic<
|
||||||
|
std::size_t> sid(0);
|
||||||
|
return ++sid;
|
||||||
|
}())
|
||||||
|
, info_(std::make_shared<test_allocator_info>())
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
test_allocator(test_allocator const& u) noexcept
|
||||||
|
: id_(u.id_)
|
||||||
|
, info_(u.info_)
|
||||||
|
{
|
||||||
|
++info_->ncopy;
|
||||||
|
}
|
||||||
|
|
||||||
|
template<class U>
|
||||||
|
test_allocator(test_allocator<
|
||||||
|
U, Assign, Move, Swap, Select> const& u) noexcept
|
||||||
|
: id_(u.id_)
|
||||||
|
, info_(u.info_)
|
||||||
|
{
|
||||||
|
++info_->ncopy;
|
||||||
|
}
|
||||||
|
|
||||||
|
test_allocator(test_allocator&& t)
|
||||||
|
: id_(t.id_)
|
||||||
|
, info_(t.info_)
|
||||||
|
{
|
||||||
|
++info_->nmove;
|
||||||
|
}
|
||||||
|
|
||||||
|
value_type*
|
||||||
|
allocate(std::size_t n)
|
||||||
|
{
|
||||||
|
return static_cast<value_type*>(
|
||||||
|
::operator new (n*sizeof(value_type)));
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
deallocate(value_type* p, std::size_t) noexcept
|
||||||
|
{
|
||||||
|
::operator delete(p);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::size_t
|
||||||
|
id() const
|
||||||
|
{
|
||||||
|
return id_;
|
||||||
|
}
|
||||||
|
|
||||||
|
test_allocator_info const*
|
||||||
|
operator->() const
|
||||||
|
{
|
||||||
|
return info_.get();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
} // test
|
||||||
|
} // beast
|
||||||
|
|
||||||
|
#endif
|
@@ -11,6 +11,7 @@
|
|||||||
#include "buffer_test.hpp"
|
#include "buffer_test.hpp"
|
||||||
#include <beast/core/buffer_concepts.hpp>
|
#include <beast/core/buffer_concepts.hpp>
|
||||||
#include <beast/core/to_string.hpp>
|
#include <beast/core/to_string.hpp>
|
||||||
|
#include <beast/test/test_allocator.hpp>
|
||||||
#include <beast/unit_test/suite.hpp>
|
#include <beast/unit_test/suite.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
@@ -22,123 +23,6 @@ namespace beast {
|
|||||||
|
|
||||||
static_assert(is_DynamicBuffer<streambuf>::value, "");
|
static_assert(is_DynamicBuffer<streambuf>::value, "");
|
||||||
|
|
||||||
struct test_allocator_info
|
|
||||||
{
|
|
||||||
std::size_t ncopy = 0;
|
|
||||||
std::size_t nmove = 0;
|
|
||||||
std::size_t nselect = 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
template<class T,
|
|
||||||
bool Assign, bool Move, bool Swap, bool Select>
|
|
||||||
class test_allocator;
|
|
||||||
|
|
||||||
template<class T,
|
|
||||||
bool Assign, bool Move, bool Swap, bool Select>
|
|
||||||
struct test_allocator_base
|
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
template<class T,
|
|
||||||
bool Assign, bool Move, bool Swap>
|
|
||||||
struct test_allocator_base<T, Assign, Move, Swap, true>
|
|
||||||
{
|
|
||||||
static
|
|
||||||
test_allocator<T, Assign, Move, Swap, true>
|
|
||||||
select_on_container_copy_construction(
|
|
||||||
test_allocator<T, Assign, Move, Swap, true> const& a)
|
|
||||||
{
|
|
||||||
return test_allocator<T, Assign, Move, Swap, true>{};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<class T,
|
|
||||||
bool Assign, bool Move, bool Swap, bool Select>
|
|
||||||
class test_allocator : public test_allocator_base<
|
|
||||||
T, Assign, Move, Swap, Select>
|
|
||||||
{
|
|
||||||
std::size_t id_;
|
|
||||||
std::shared_ptr<test_allocator_info> info_;
|
|
||||||
|
|
||||||
template<class, bool, bool, bool, bool>
|
|
||||||
friend class test_allocator;
|
|
||||||
|
|
||||||
public:
|
|
||||||
using value_type = T;
|
|
||||||
using propagate_on_container_copy_assignment =
|
|
||||||
std::integral_constant<bool, Assign>;
|
|
||||||
using propagate_on_container_move_assignment =
|
|
||||||
std::integral_constant<bool, Move>;
|
|
||||||
using propagate_on_container_swap =
|
|
||||||
std::integral_constant<bool, Swap>;
|
|
||||||
|
|
||||||
template<class U>
|
|
||||||
struct rebind
|
|
||||||
{
|
|
||||||
using other = test_allocator<
|
|
||||||
U, Assign, Move, Swap, Select>;
|
|
||||||
};
|
|
||||||
|
|
||||||
test_allocator()
|
|
||||||
: id_([]
|
|
||||||
{
|
|
||||||
static std::atomic<
|
|
||||||
std::size_t> sid(0);
|
|
||||||
return ++sid;
|
|
||||||
}())
|
|
||||||
, info_(std::make_shared<test_allocator_info>())
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
test_allocator(test_allocator const& u) noexcept
|
|
||||||
: id_(u.id_)
|
|
||||||
, info_(u.info_)
|
|
||||||
{
|
|
||||||
++info_->ncopy;
|
|
||||||
}
|
|
||||||
|
|
||||||
template<class U>
|
|
||||||
test_allocator(test_allocator<
|
|
||||||
U, Assign, Move, Swap, Select> const& u) noexcept
|
|
||||||
: id_(u.id_)
|
|
||||||
, info_(u.info_)
|
|
||||||
{
|
|
||||||
++info_->ncopy;
|
|
||||||
}
|
|
||||||
|
|
||||||
test_allocator(test_allocator&& t)
|
|
||||||
: id_(t.id_)
|
|
||||||
, info_(t.info_)
|
|
||||||
{
|
|
||||||
++info_->nmove;
|
|
||||||
}
|
|
||||||
|
|
||||||
value_type*
|
|
||||||
allocate(std::size_t n)
|
|
||||||
{
|
|
||||||
return static_cast<value_type*>(
|
|
||||||
::operator new (n*sizeof(value_type)));
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
deallocate(value_type* p, std::size_t) noexcept
|
|
||||||
{
|
|
||||||
::operator delete(p);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::size_t
|
|
||||||
id() const
|
|
||||||
{
|
|
||||||
return id_;
|
|
||||||
}
|
|
||||||
|
|
||||||
test_allocator_info const*
|
|
||||||
operator->() const
|
|
||||||
{
|
|
||||||
return info_.get();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
class basic_streambuf_test : public beast::unit_test::suite
|
class basic_streambuf_test : public beast::unit_test::suite
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@@ -218,8 +102,10 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void testAllocator()
|
void
|
||||||
|
testAllocator()
|
||||||
{
|
{
|
||||||
|
using test::test_allocator;
|
||||||
// VFALCO This needs work
|
// VFALCO This needs work
|
||||||
{
|
{
|
||||||
using alloc_type =
|
using alloc_type =
|
||||||
|
Reference in New Issue
Block a user