00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef OM_HGUARD_BTREECHECK_H
00024 #define OM_HGUARD_BTREECHECK_H
00025
00026 #include "btree.h"
00027
00028 #include <iostream>
00029 #include <string>
00030
00031 class BtreeCheck : public Btree {
00032 public:
00033 static void check(const string & name, int opts,
00034 std::ostream &out = std::cout);
00035 private:
00036 BtreeCheck(const std::string &name_, bool readonly, std::ostream &out_)
00037 : Btree(name_, readonly), out(out_) { }
00038
00039 void block_check(Cursor * C_, int j, int opts);
00040 int block_usage(const byte * p) const;
00041 void report_block(int m, int n, const byte * p) const;
00042 void report_block_full(int m, int n, const byte * p) const;
00043 void report_cursor(int N, const Cursor *C_) const;
00044
00045 void failure(int n) const;
00046 void print_key(const byte * p, int c, int j) const;
00047 void print_tag(const byte * p, int c, int j) const;
00048 void print_spaces(int n) const;
00049 void print_bytes(int n, const byte * p) const;
00050
00051 mutable std::ostream &out;
00052 };
00053
00054 #define OPT_SHORT_TREE 1
00055 #define OPT_FULL_TREE 2
00056 #define OPT_SHOW_BITMAP 4
00057 #define OPT_SHOW_STATS 8
00058
00059 #endif