2011-12-16 00:04:31 +05:30
|
|
|
// Copyright (C) 2011 Red Hat, Inc. All rights reserved.
|
2011-12-06 19:23:05 +05:30
|
|
|
//
|
2011-12-06 19:13:56 +05:30
|
|
|
// This file is part of the thin-provisioning-tools source.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools is free software: you can redistribute it
|
|
|
|
// and/or modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation, either version 3 of
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools is distributed in the hope that it will be
|
|
|
|
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
|
|
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with thin-provisioning-tools. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
|
2013-01-10 01:54:11 +05:30
|
|
|
#include "persistent-data/transaction_manager.h"
|
2013-01-11 03:06:38 +05:30
|
|
|
#include "persistent-data/space-maps/core.h"
|
2013-01-12 00:56:51 +05:30
|
|
|
#include "persistent-data/data-structures/btree.h"
|
2011-07-15 19:51:28 +05:30
|
|
|
|
|
|
|
#define BOOST_TEST_MODULE BTreeTests
|
|
|
|
#include <boost/test/included/unit_test.hpp>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace boost;
|
|
|
|
using namespace persistent_data;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
block_address const NR_BLOCKS = 102400;
|
|
|
|
|
2011-08-31 17:18:41 +05:30
|
|
|
transaction_manager::ptr
|
2011-07-15 19:51:28 +05:30
|
|
|
create_tm() {
|
2011-11-01 17:01:03 +05:30
|
|
|
block_manager<>::ptr bm(new block_manager<>("./test.data", NR_BLOCKS, 4, true));
|
2011-07-15 19:51:28 +05:30
|
|
|
space_map::ptr sm(new core_map(NR_BLOCKS));
|
2011-08-31 17:18:41 +05:30
|
|
|
transaction_manager::ptr tm(new transaction_manager(bm, sm));
|
2011-07-15 19:51:28 +05:30
|
|
|
return tm;
|
|
|
|
}
|
|
|
|
|
2011-08-31 17:18:41 +05:30
|
|
|
btree<1, uint64_traits>::ptr
|
2011-07-15 19:51:28 +05:30
|
|
|
create_btree() {
|
2011-08-30 17:17:42 +05:30
|
|
|
uint64_traits::ref_counter rc;
|
2011-07-22 20:39:56 +05:30
|
|
|
|
2011-08-31 17:18:41 +05:30
|
|
|
return btree<1, uint64_traits>::ptr(
|
|
|
|
new btree<1, uint64_traits>(create_tm(), rc));
|
2011-07-15 19:51:28 +05:30
|
|
|
}
|
2011-08-22 16:25:55 +05:30
|
|
|
|
2011-08-22 18:44:10 +05:30
|
|
|
// Checks that a btree is well formed.
|
|
|
|
//
|
|
|
|
// i) No block should be in the tree more than once.
|
|
|
|
//
|
2011-08-31 17:18:41 +05:30
|
|
|
class constraint_visitor : public btree<1, uint64_traits>::visitor {
|
2011-08-22 18:44:10 +05:30
|
|
|
public:
|
2011-11-01 17:01:03 +05:30
|
|
|
typedef btree_detail::node_ref<uint64_traits> internal_node;
|
|
|
|
typedef btree_detail::node_ref<uint64_traits> leaf_node;
|
|
|
|
|
|
|
|
bool visit_internal(unsigned level, bool sub_root,
|
|
|
|
boost::optional<uint64_t> key,
|
|
|
|
internal_node const &n) {
|
2011-08-22 18:44:10 +05:30
|
|
|
check_duplicate_block(n.get_location());
|
2011-08-30 17:17:42 +05:30
|
|
|
return true;
|
2011-08-22 16:25:55 +05:30
|
|
|
}
|
|
|
|
|
2011-11-01 17:01:03 +05:30
|
|
|
bool visit_internal_leaf(unsigned level, bool sub_root,
|
|
|
|
boost::optional<uint64_t> key,
|
|
|
|
internal_node const &n) {
|
2011-08-22 18:44:10 +05:30
|
|
|
check_duplicate_block(n.get_location());
|
2011-08-30 17:17:42 +05:30
|
|
|
return true;
|
2011-08-22 16:25:55 +05:30
|
|
|
}
|
|
|
|
|
2011-11-01 17:01:03 +05:30
|
|
|
bool visit_leaf(unsigned level, bool sub_root,
|
|
|
|
boost::optional<uint64_t> key,
|
|
|
|
leaf_node const &n) {
|
2011-08-22 18:44:10 +05:30
|
|
|
check_duplicate_block(n.get_location());
|
2011-08-30 17:17:42 +05:30
|
|
|
return true;
|
2011-08-22 18:44:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void check_duplicate_block(block_address b) {
|
|
|
|
if (seen_.count(b)) {
|
|
|
|
ostringstream out;
|
|
|
|
out << "duplicate block in btree: " << b;
|
|
|
|
throw runtime_error(out.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
seen_.insert(b);
|
2011-08-22 16:25:55 +05:30
|
|
|
}
|
2011-08-22 18:44:10 +05:30
|
|
|
|
|
|
|
set<block_address> seen_;
|
2011-08-22 16:25:55 +05:30
|
|
|
};
|
|
|
|
|
2011-08-31 17:18:41 +05:30
|
|
|
void check_constraints(btree<1, uint64_traits>::ptr tree) {
|
|
|
|
typedef btree<1, uint64_traits> tree_type;
|
2011-08-22 16:25:55 +05:30
|
|
|
|
2011-08-30 17:17:42 +05:30
|
|
|
tree_type::visitor::ptr v(new constraint_visitor);
|
2011-08-22 16:25:55 +05:30
|
|
|
tree->visit(v);
|
|
|
|
}
|
2011-07-15 19:51:28 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(empty_btree_contains_nothing)
|
|
|
|
{
|
2011-11-01 17:01:03 +05:30
|
|
|
btree<1, uint64_traits>::ptr tree = create_btree();
|
2011-08-22 18:44:10 +05:30
|
|
|
check_constraints(tree);
|
2011-07-15 19:51:28 +05:30
|
|
|
|
|
|
|
for (uint64_t i = 0; i < 1000; i++) {
|
|
|
|
uint64_t key[1] = {i};
|
|
|
|
BOOST_CHECK(!tree->lookup(key));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(insert_works)
|
|
|
|
{
|
2011-08-22 18:44:10 +05:30
|
|
|
unsigned const COUNT = 100000;
|
2011-07-15 19:51:28 +05:30
|
|
|
|
2011-11-01 17:01:03 +05:30
|
|
|
btree<1, uint64_traits>::ptr tree = create_btree();
|
2011-07-15 19:51:28 +05:30
|
|
|
for (uint64_t i = 0; i < COUNT; i++) {
|
|
|
|
uint64_t key[1] = {i * 7};
|
|
|
|
uint64_t value = i;
|
2011-08-22 18:44:10 +05:30
|
|
|
|
2011-07-15 19:51:28 +05:30
|
|
|
tree->insert(key, value);
|
|
|
|
|
2011-11-01 17:01:03 +05:30
|
|
|
btree<1, uint64_traits>::maybe_value l = tree->lookup(key);
|
|
|
|
BOOST_REQUIRE(l);
|
2011-07-15 19:51:28 +05:30
|
|
|
BOOST_CHECK_EQUAL(*l, i);
|
|
|
|
}
|
2011-08-22 18:44:10 +05:30
|
|
|
|
|
|
|
check_constraints(tree);
|
2011-07-15 19:51:28 +05:30
|
|
|
}
|
2011-07-22 21:04:24 +05:30
|
|
|
|
2011-11-01 17:01:03 +05:30
|
|
|
BOOST_AUTO_TEST_CASE(insert_does_not_insert_imaginary_values)
|
|
|
|
{
|
|
|
|
btree<1, uint64_traits>::ptr tree = create_btree();
|
|
|
|
uint64_t key[1] = {0};
|
|
|
|
uint64_t value = 100;
|
|
|
|
|
|
|
|
btree<1, uint64_traits>::maybe_value l = tree->lookup(key);
|
|
|
|
BOOST_CHECK(!l);
|
|
|
|
|
|
|
|
key[0] = 1;
|
|
|
|
l = tree->lookup(key);
|
|
|
|
BOOST_CHECK(!l);
|
|
|
|
|
|
|
|
key[0] = 0;
|
|
|
|
tree->insert(key, value);
|
|
|
|
|
|
|
|
l = tree->lookup(key);
|
|
|
|
BOOST_REQUIRE(l);
|
|
|
|
BOOST_CHECK_EQUAL(*l, 100);
|
|
|
|
|
|
|
|
key[0] = 1;
|
|
|
|
l = tree->lookup(key);
|
|
|
|
BOOST_CHECK(!l);
|
|
|
|
|
|
|
|
check_constraints(tree);
|
|
|
|
}
|
|
|
|
|
2011-07-22 21:04:24 +05:30
|
|
|
//----------------------------------------------------------------
|