1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
//
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.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)
//
// Official repository: https://github.com/boostorg/json
//
#include <boost/json/monotonic_resource.hpp>
#include <boost/json/value.hpp>
#include <boost/container/pmr/vector.hpp>
#include <vector>
#include "test_suite.hpp"
namespace boost {
namespace json {
class memory_resource_test
{
public:
void
testBoostPmr()
{
using allocator_type = container::pmr::polymorphic_allocator<value>;
// pass polymorphic_allocator
// where storage_ptr is expected
{
monotonic_resource mr;
value jv( allocator_type{&mr} );
object o( allocator_type{&mr} );
array a( allocator_type{&mr} );
string s( allocator_type{&mr} );
}
{
monotonic_resource mr;
allocator_type a(&mr);
boost::container::pmr::vector<value> v1(a);
v1.resize(3);
BOOST_TEST(v1[1].storage().get() == &mr);
std::vector<value, allocator_type> v2(3, {}, a);
BOOST_TEST(v2[1].storage().get() == &mr);
}
}
// These are here instead of the type-specific
// test TUs, so that we only need to link to
// Boost.Container from one file.
void
testPmr()
{
// array
{
// get_allocator
{
monotonic_resource mr;
array a(&mr);
BOOST_TEST(a.get_allocator().resource() == &mr);
}
}
// object
{
// get_allocator
{
monotonic_resource mr;
object o(&mr);
BOOST_TEST(o.get_allocator().resource() == &mr);
}
}
// string
{
// get_allocator
{
monotonic_resource mr;
string s(&mr);
BOOST_TEST(s.get_allocator().resource() == &mr);
}
}
// value
{
// get_allocator
{
monotonic_resource mr;
value jv(&mr);
BOOST_TEST(jv.get_allocator().resource() == &mr);
}
}
}
void
run()
{
testBoostPmr();
testPmr();
}
};
TEST_SUITE(memory_resource_test, "boost.json.memory_resource");
} // namespace json
} // namespace boost
|