#ifndef BTREE_VALIDATOR_H #define BTREE_VALIDATOR_H #include "btree.h" #include "error_set.h" #include #include #include using namespace persistent_data; using namespace std; //---------------------------------------------------------------- namespace persistent_data { //---------------------------------------------------------------- // Little helper class that keeps track of how many times blocks // are referenced. //---------------------------------------------------------------- class block_counter { public: typedef typename std::map count_map; void inc(block_address b) { typename count_map::iterator it = counts_.find(b); if (it == counts_.end()) counts_.insert(make_pair(b, 1)); #if 0 else it->second++; #endif } unsigned get_count(block_address b) const { count_map::const_iterator it = counts_.find(b); return (it == counts_.end()) ? 0 : it->second; } count_map const &get_counts() const { return counts_; } private: count_map counts_; }; //---------------------------------------------------------------- // This class implements consistency checking for the btrees in // general. Derive from this if you want some additional checks. // It's worth summarising what is checked: // // Implemented // ----------- // // - block_nr // - nr_entries < max_entries // - max_entries fits in block // - max_entries is divisible by 3 // - nr_entries > minimum (except for root nodes) // // Not implemented // --------------- // // - checksum // - leaf | internal flags (this can be inferred from siblings) //---------------------------------------------------------------- template class btree_validator : public btree::visitor { public: btree_validator(block_counter &counter) : counter_(counter), errs_(new error_set("btree errors")) { } void visit_internal(unsigned level, bool is_root, btree_detail::node_ref const &n) { counter_.inc(n.get_location()); check_duplicate_block(n.get_location()); check_block_nr(n); check_max_entries(n); check_nr_entries(n, is_root); } void visit_internal_leaf(unsigned level, bool is_root, btree_detail::node_ref const &n) { counter_.inc(n.get_location()); check_duplicate_block(n.get_location()); check_block_nr(n); check_max_entries(n); check_nr_entries(n, is_root); } void visit_leaf(unsigned level, bool is_root, btree_detail::node_ref const &n) { counter_.inc(n.get_location()); check_duplicate_block(n.get_location()); check_block_nr(n); check_max_entries(n); check_nr_entries(n, is_root); } boost::optional get_errors() const { return errs_; } private: void check_duplicate_block(block_address b) { if (seen_.count(b)) { std::ostringstream out; out << "duplicate block in btree: " << b; errs_->add_child(out.str()); throw runtime_error(out.str()); } seen_.insert(b); } template void check_block_nr(node const &n) const { if (n.get_location() != n.get_block_nr()) { std::ostringstream out; out << "block number mismatch: actually " << n.get_location() << ", claims " << n.get_block_nr(); errs_->add_child(out.str()); throw runtime_error(out.str()); } } template void check_max_entries(node const &n) const { size_t elt_size = sizeof(uint64_t) + n.get_value_size(); if (elt_size * n.get_max_entries() + sizeof(node_header) > BlockSize) { std::ostringstream out; out << "max entries too large: " << n.get_max_entries(); errs_->add_child(out.str()); } if (n.get_max_entries() % 3) { std::ostringstream out; out << "max entries is not divisible by 3: " << n.get_max_entries(); errs_->add_child(out.str()); throw runtime_error(out.str()); } } template void check_nr_entries(node const &n, bool is_root) const { if (n.get_nr_entries() > n.get_max_entries()) { std::ostringstream out; out << "bad nr_entries: " << n.get_nr_entries() << " < " << n.get_max_entries(); errs_->add_child(out.str()); throw std::runtime_error(out.str()); } block_address min = n.get_max_entries() / 3; if (!is_root && (n.get_nr_entries() < min)) { ostringstream out; out << "too few entries in btree: " << n.get_nr_entries() << ", expected at least " << min; errs_->add_child(out.str()); throw runtime_error(out.str()); } } block_counter &counter_; std::set seen_; error_set::ptr errs_; }; } //---------------------------------------------------------------- #endif