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
|
// SPDX-License-Identifier: BSD-3-Clause
/* Copyright 2019-2020, Intel Corporation */
/*
* temp_value.c -- temp_value caching struct test
*/
#include "unittest.hpp"
#include <libpmemobj++/detail/temp_value.hpp>
#include <libpmemobj++/pool.hpp>
#include <libpmemobj++/transaction.hpp>
#include <libpmemobj/pool_base.h>
namespace nvobj = pmem::obj;
namespace det = pmem::detail;
const unsigned big_stack_alloc =
LIBPMEMOBJ_CPP_MAX_STACK_ALLOC_SIZE / sizeof(int) + 1;
struct root {
};
struct test_small {
test_small() noexcept {};
test_small(int a){}; /* may throw */
};
struct test_big {
int a[big_stack_alloc];
test_big() noexcept {};
test_big(int a){}; /* may throw */
};
using temp_noexcept_small = det::temp_value<test_small, noexcept(test_small())>;
using temp_throw_small = det::temp_value<test_small, noexcept(test_small(1))>;
using temp_noexcept_big = det::temp_value<test_big, noexcept(test_big())>;
using temp_throw_big = det::temp_value<test_big, noexcept(test_big(1))>;
template <typename T>
bool
is_pmem(T &ptr)
{
return nullptr != pmemobj_pool_by_ptr(static_cast<void *>(&ptr));
}
static void
test(int argc, char *argv[])
{
if (argc != 2)
UT_FATAL("usage: %s file-name", argv[0]);
const char *path = argv[1];
nvobj::pool<root> pop;
try {
pop = nvobj::pool<struct root>::create(path, "temp_value test",
PMEMOBJ_MIN_POOL,
S_IWUSR | S_IRUSR);
} catch (pmem::pool_error &pe) {
UT_FATAL("!pool::create: %s %s", pe.what(), path);
}
try {
nvobj::transaction::run(pop, [&] {
temp_noexcept_small tmp1;
UT_ASSERT(!is_pmem<test_small>(tmp1.get()));
temp_throw_small tmp2;
UT_ASSERT(is_pmem<test_small>(tmp2.get()));
temp_noexcept_big tmp3;
UT_ASSERT(is_pmem<test_big>(tmp3.get()));
temp_throw_big tmp4;
UT_ASSERT(is_pmem<test_big>(tmp3.get()));
});
} catch (std::exception &e) {
UT_FATALexc(e);
}
pop.close();
}
int
main(int argc, char *argv[])
{
return run_test([&] { test(argc, argv); });
}
|