|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
#include "port/port.h"
|
|
|
|
#include "port/stack_trace.h"
|
|
|
|
#include "rocksdb/iostats_context.h"
|
|
|
|
#include "rocksdb/perf_context.h"
|
|
|
|
#include "util/testharness.h"
|
|
|
|
#include "util/testutil.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
class CleanableTest : public testing::Test {};
|
|
|
|
|
|
|
|
// Use this to keep track of the cleanups that were actually performed
|
|
|
|
void Multiplier(void* arg1, void* arg2) {
|
|
|
|
int* res = reinterpret_cast<int*>(arg1);
|
|
|
|
int* num = reinterpret_cast<int*>(arg2);
|
|
|
|
*res *= *num;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the first Cleanup is on stack and the rest on heap, so test with both cases
|
|
|
|
TEST_F(CleanableTest, Register) {
|
|
|
|
int n2 = 2, n3 = 3;
|
|
|
|
int res = 1;
|
|
|
|
{ Cleanable c1; }
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(2, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3;
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(6, res);
|
|
|
|
|
|
|
|
// Test the Reset does cleanup
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3;
|
|
|
|
c1.Reset();
|
|
|
|
ASSERT_EQ(6, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(6, res);
|
|
|
|
|
|
|
|
// Test Clenable is usable after Reset
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
c1.Reset();
|
|
|
|
ASSERT_EQ(2, res);
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3;
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(6, res);
|
|
|
|
}
|
|
|
|
|
|
|
|
// the first Cleanup is on stack and the rest on heap,
|
|
|
|
// so test all the combinations of them
|
|
|
|
TEST_F(CleanableTest, Delegation) {
|
|
|
|
int n2 = 2, n3 = 3, n5 = 5, n7 = 7;
|
|
|
|
int res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c2;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
c1.DelegateCleanupsTo(&c2);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(2, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c2;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.DelegateCleanupsTo(&c2);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c2;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3;
|
|
|
|
c1.DelegateCleanupsTo(&c2);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(6, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c2;
|
|
|
|
c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3;
|
|
|
|
c1.DelegateCleanupsTo(&c2); // res = 2 * 3 * 5;
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(30, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c2;
|
|
|
|
c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5;
|
|
|
|
c2.RegisterCleanup(Multiplier, &res, &n7); // res = 5 * 7;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n3); // res = 2 * 3;
|
|
|
|
c1.DelegateCleanupsTo(&c2); // res = 2 * 3 * 5 * 7;
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(210, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c2;
|
|
|
|
c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5;
|
|
|
|
c2.RegisterCleanup(Multiplier, &res, &n7); // res = 5 * 7;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
c1.DelegateCleanupsTo(&c2); // res = 2 * 5 * 7;
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(70, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c2;
|
|
|
|
c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5;
|
|
|
|
c2.RegisterCleanup(Multiplier, &res, &n7); // res = 5 * 7;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.DelegateCleanupsTo(&c2); // res = 5 * 7;
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(35, res);
|
|
|
|
|
|
|
|
res = 1;
|
|
|
|
{
|
|
|
|
Cleanable c2;
|
|
|
|
c2.RegisterCleanup(Multiplier, &res, &n5); // res = 5;
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.DelegateCleanupsTo(&c2); // res = 5;
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(5, res);
|
|
|
|
}
|
|
|
|
|
|
|
|
class PinnableSlice4Test : public PinnableSlice {
|
|
|
|
public:
|
|
|
|
void TestCharStrIsRegistered(char* s) {
|
|
|
|
ASSERT_EQ(cleanup_.function, ReleaseCharStrHeap);
|
|
|
|
ASSERT_EQ(cleanup_.arg1, s);
|
|
|
|
ASSERT_EQ(cleanup_.arg2, nullptr);
|
|
|
|
ASSERT_EQ(cleanup_.next, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TestStringIsRegistered(std::string* s) {
|
|
|
|
ASSERT_EQ(cleanup_.function, ReleaseStringHeap);
|
|
|
|
ASSERT_EQ(cleanup_.arg1, s);
|
|
|
|
ASSERT_EQ(cleanup_.arg2, nullptr);
|
|
|
|
ASSERT_EQ(cleanup_.next, nullptr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Putting the PinnableSlice tests here due to similarity to Cleanable tests
|
|
|
|
TEST_F(CleanableTest, PinnableSlice) {
|
|
|
|
int n2 = 2;
|
|
|
|
int res = 1;
|
|
|
|
const std::string const_str = "123";
|
|
|
|
const char* const_s = "123";
|
|
|
|
|
|
|
|
{
|
|
|
|
PinnableSlice4Test pSlice;
|
|
|
|
char* s = strdup(const_s);
|
|
|
|
pSlice.PinHeap(s, strlen(const_s));
|
|
|
|
std::string str;
|
|
|
|
str.assign(pSlice.data(), pSlice.size());
|
|
|
|
ASSERT_EQ(const_s, str);
|
|
|
|
pSlice.TestCharStrIsRegistered(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
PinnableSlice4Test pSlice;
|
|
|
|
std::string* heap_str = new std::string(const_str);
|
|
|
|
pSlice.PinHeap(heap_str);
|
|
|
|
std::string str;
|
|
|
|
str.assign(pSlice.data(), pSlice.size());
|
|
|
|
ASSERT_EQ(const_str, str);
|
|
|
|
pSlice.TestStringIsRegistered(heap_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
res = 1;
|
|
|
|
PinnableSlice4Test pSlice;
|
|
|
|
Slice slice(const_str);
|
|
|
|
pSlice.PinSlice(slice, Multiplier, &res, &n2);
|
|
|
|
std::string str;
|
|
|
|
str.assign(pSlice.data(), pSlice.size());
|
|
|
|
ASSERT_EQ(const_str, str);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(2, res);
|
|
|
|
|
|
|
|
{
|
|
|
|
res = 1;
|
|
|
|
PinnableSlice4Test pSlice;
|
|
|
|
Slice slice(const_str);
|
|
|
|
{
|
|
|
|
Cleanable c1;
|
|
|
|
c1.RegisterCleanup(Multiplier, &res, &n2); // res = 2;
|
|
|
|
pSlice.PinSlice(slice, &c1);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(1, res); // cleanups must have be delegated to pSlice
|
|
|
|
std::string str;
|
|
|
|
str.assign(pSlice.data(), pSlice.size());
|
|
|
|
ASSERT_EQ(const_str, str);
|
|
|
|
}
|
|
|
|
// ~Cleanable
|
|
|
|
ASSERT_EQ(2, res);
|
|
|
|
|
|
|
|
{
|
|
|
|
PinnableSlice4Test pSlice;
|
|
|
|
Slice slice(const_str);
|
|
|
|
pSlice.PinSelf(slice);
|
|
|
|
std::string str;
|
|
|
|
str.assign(pSlice.data(), pSlice.size());
|
|
|
|
ASSERT_EQ(const_str, str);
|
|
|
|
ASSERT_EQ(false, pSlice.IsPinned()); // self pinned
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
PinnableSlice4Test pSlice;
|
|
|
|
std::string* self_str_ptr = pSlice.GetSelf();
|
|
|
|
self_str_ptr->assign(const_str);
|
|
|
|
pSlice.PinSelf();
|
|
|
|
std::string str;
|
|
|
|
str.assign(pSlice.data(), pSlice.size());
|
|
|
|
ASSERT_EQ(const_str, str);
|
|
|
|
ASSERT_EQ(false, pSlice.IsPinned()); // self pinned
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace rocksdb
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
rocksdb::port::InstallStackTraceHandler();
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|