LCOV - code coverage report
Current view: top level - backends/brass - brass_check.cc (source / functions) Hit Total Coverage
Test: Test Coverage for xapian-core r Lines: 44 133 33.1 %
Date: 2011-08-21 Functions: 4 13 30.8 %
Branches: 27 116 23.3 %

           Branch data     Line data    Source code
       1                 :            : /* brass_check.cc: Btree checking
       2                 :            :  *
       3                 :            :  * Copyright 1999,2000,2001 BrightStation PLC
       4                 :            :  * Copyright 2002 Ananova Ltd
       5                 :            :  * Copyright 2002,2004,2005,2008,2009 Olly Betts
       6                 :            :  * Copyright 2008 Lemur Consulting Ltd
       7                 :            :  *
       8                 :            :  * This program is free software; you can redistribute it and/or
       9                 :            :  * modify it under the terms of the GNU General Public License as
      10                 :            :  * published by the Free Software Foundation; either version 2 of the
      11                 :            :  * License, or (at your option) any later version.
      12                 :            :  *
      13                 :            :  * This program is distributed in the hope that it will be useful,
      14                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      15                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      16                 :            :  * GNU General Public License for more details.
      17                 :            :  *
      18                 :            :  * You should have received a copy of the GNU General Public License
      19                 :            :  * along with this program; if not, write to the Free Software
      20                 :            :  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
      21                 :            :  * USA
      22                 :            :  */
      23                 :            : 
      24                 :            : #include <config.h>
      25                 :            : 
      26                 :            : #include "brass_check.h"
      27                 :            : 
      28                 :            : #include <climits>
      29                 :            : 
      30                 :            : using namespace Brass;
      31                 :            : using namespace std;
      32                 :            : 
      33                 :          0 : void BrassTableCheck::print_spaces(int n) const
      34                 :            : {
      35         [ #  # ]:          0 :     while (n--) out.put(' ');
      36                 :          0 : }
      37                 :            : 
      38                 :          0 : void BrassTableCheck::print_bytes(int n, const byte * p) const
      39                 :            : {
      40                 :          0 :     out.write(reinterpret_cast<const char *>(p), n);
      41                 :          0 : }
      42                 :            : 
      43                 :          0 : void BrassTableCheck::print_key(const byte * p, int c, int j) const
      44                 :            : {
      45                 :          0 :     Item item(p, c);
      46                 :          0 :     string key;
      47         [ #  # ]:          0 :     if (item.key().length() >= 0)
      48                 :          0 :         item.key().read(&key);
      49         [ #  # ]:          0 :     if (j == 0) {
      50                 :          0 :         out << key << '/' << item.component_of();
      51                 :            :     } else {
      52         [ #  # ]:          0 :         for (string::const_iterator i = key.begin(); i != key.end(); ++i) {
      53                 :            :             // out << (*i < 32 ? '.' : *i);
      54                 :          0 :             char ch = *i;
      55         [ #  # ]:          0 :             if (ch < 32) out << '/' << unsigned(ch); else out << ch;
      56                 :            :         }
      57                 :          0 :     }
      58                 :          0 : }
      59                 :            : 
      60                 :          0 : void BrassTableCheck::print_tag(const byte * p, int c, int j) const
      61                 :            : {
      62                 :          0 :     Item item(p, c);
      63                 :          0 :     string tag;
      64                 :          0 :     item.append_chunk(&tag);
      65         [ #  # ]:          0 :     if (j == 0) {
      66                 :          0 :         out << "/" << item.components_of() << tag;
      67                 :            :     } else {
      68                 :            :         out << "--> [" << getint4(reinterpret_cast<const byte*>(tag.data()), 0)
      69                 :          0 :             << ']';
      70                 :          0 :     }
      71                 :          0 : }
      72                 :            : 
      73                 :          0 : void BrassTableCheck::report_block_full(int m, int n, const byte * p) const
      74                 :            : {
      75                 :          0 :     int j = GET_LEVEL(p);
      76                 :          0 :     int dir_end = DIR_END(p);
      77                 :          0 :     out << '\n';
      78                 :          0 :     print_spaces(m);
      79                 :            :     out << "Block [" << n << "] level " << j << ", revision *" << REVISION(p)
      80                 :            :          << " items (" << (dir_end - DIR_START)/D2 << ") usage "
      81                 :          0 :          << block_usage(p) << "%:\n";
      82         [ #  # ]:          0 :     for (int c = DIR_START; c < dir_end; c += D2) {
      83                 :          0 :         print_spaces(m);
      84                 :          0 :         print_key(p, c, j);
      85                 :          0 :         out << ' ';
      86                 :          0 :         print_tag(p, c, j);
      87                 :          0 :         out << '\n';
      88                 :            :     }
      89                 :          0 : }
      90                 :            : 
      91                 :          0 : int BrassTableCheck::block_usage(const byte * p) const
      92                 :            : {
      93                 :          0 :     int space = block_size - DIR_END(p);
      94                 :          0 :     int free = TOTAL_FREE(p);
      95                 :          0 :     return (space - free) * 100 / space;  /* a percentage */
      96                 :            : }
      97                 :            : 
      98                 :            : /** BrassTableCheck::report_block(m, n, p) prints the block at p, block number n,
      99                 :            :  *  indented by m spaces.
     100                 :            :  */
     101                 :          0 : void BrassTableCheck::report_block(int m, int n, const byte * p) const
     102                 :            : {
     103                 :          0 :     int j = GET_LEVEL(p);
     104                 :          0 :     int dir_end = DIR_END(p);
     105                 :            :     int c;
     106                 :          0 :     print_spaces(m);
     107                 :            :     out << "[" << n << "] *" << REVISION(p) << " ("
     108                 :          0 :         << (dir_end - DIR_START)/D2 << ") " << block_usage(p) << "% ";
     109                 :            : 
     110         [ #  # ]:          0 :     for (c = DIR_START; c < dir_end; c += D2) {
     111         [ #  # ]:          0 :         if (c == DIR_START + 6) out << "... ";
     112 [ #  # ][ #  # ]:          0 :         if (c >= DIR_START + 6 && c < dir_end - 6) continue;
     113                 :            : 
     114                 :          0 :         print_key(p, c, j);
     115                 :          0 :         out << ' ';
     116                 :            :     }
     117                 :          0 :     out << endl;
     118                 :          0 : }
     119                 :            : 
     120                 :          0 : void BrassTableCheck::failure(int n) const
     121                 :            : {
     122                 :          0 :     out << "B-tree error " << n << endl;
     123                 :          0 :     throw "btree error";
     124                 :            : }
     125                 :            : 
     126                 :            : void
     127                 :          3 : BrassTableCheck::block_check(Brass::Cursor * C_, int j, int opts)
     128                 :            : {
     129                 :          3 :     byte * p = C_[j].p;
     130                 :          3 :     uint4 n = C_[j].n;
     131                 :            :     size_t c;
     132         [ +  - ]:          3 :     size_t significant_c = j == 0 ? DIR_START : DIR_START + D2;
     133                 :            :         /* the first key in an index block is dummy, remember */
     134                 :            : 
     135                 :          3 :     size_t max_free = MAX_FREE(p);
     136                 :          3 :     size_t dir_end = DIR_END(p);
     137                 :          3 :     int total_free = block_size - dir_end;
     138                 :            : 
     139         [ -  + ]:          3 :     if (base.block_free_at_start(n)) failure(0);
     140         [ -  + ]:          3 :     if (base.block_free_now(n)) failure(1);
     141                 :          3 :     base.free_block(n);
     142                 :            : 
     143         [ -  + ]:          3 :     if (j != GET_LEVEL(p)) failure(10);
     144 [ +  - ][ -  + ]:          3 :     if (dir_end <= DIR_START || dir_end > block_size) failure(20);
     145                 :            : 
     146         [ -  + ]:          3 :     if (opts & OPT_SHORT_TREE) report_block(3*(level - j), n, p);
     147                 :            : 
     148         [ -  + ]:          3 :     if (opts & OPT_FULL_TREE) report_block_full(3*(level - j), n, p);
     149                 :            : 
     150         [ +  + ]:          7 :     for (c = DIR_START; c < dir_end; c += D2) {
     151                 :          4 :         Item item(p, c);
     152                 :          4 :         int o = item.get_address() - p;
     153         [ -  + ]:          4 :         if (o > int(block_size)) failure(21);
     154         [ -  + ]:          4 :         if (o - dir_end < max_free) failure(30);
     155                 :            : 
     156                 :          4 :         int kt_len = item.size();
     157         [ -  + ]:          4 :         if (o + kt_len > int(block_size)) failure(40);
     158                 :          4 :         total_free -= kt_len;
     159                 :            : 
     160 [ +  + ][ -  + ]:          4 :         if (c > significant_c && Item(p, c - D2).key() >= item.key())
                 [ -  + ]
     161                 :          0 :             failure(50);
     162                 :            :     }
     163         [ -  + ]:          3 :     if (total_free != TOTAL_FREE(p))
     164                 :          0 :         failure(60);
     165                 :            : 
     166         [ +  - ]:          3 :     if (j == 0) return;
     167         [ #  # ]:          3 :     for (c = DIR_START; c < dir_end; c += D2) {
     168                 :          0 :         C_[j].c = c;
     169                 :          0 :         block_to_cursor(C_, j - 1, Item(p, c).block_given_by());
     170                 :            : 
     171                 :          0 :         block_check(C_, j - 1, opts);
     172                 :            : 
     173                 :          0 :         byte * q = C_[j - 1].p;
     174                 :            :         /* if j == 1, and c > DIR_START, the first key of level j - 1 must be
     175                 :            :          * >= the key of p, c: */
     176                 :            : 
     177   [ #  #  #  # ]:          0 :         if (j == 1 && c > DIR_START)
     178         [ #  # ]:          0 :             if (Item(q, DIR_START).key() < Item(p, c).key())
     179                 :          0 :                 failure(70);
     180                 :            : 
     181                 :            :         /* if j > 1, and c > DIR_START, the second key of level j - 1 must be
     182                 :            :          * >= the key of p, c: */
     183                 :            : 
     184 [ #  # ][ #  # ]:          0 :         if (j > 1 && c > DIR_START && DIR_END(q) > DIR_START + D2 &&
         [ #  # ][ #  # ]
                 [ #  # ]
     185                 :            :             Item(q, DIR_START + D2).key() < Item(p, c).key())
     186                 :          0 :             failure(80);
     187                 :            : 
     188                 :            :         /* the last key of level j - 1 must be < the key of p, c + D2, if c +
     189                 :            :          * D2 < dir_end: */
     190                 :            : 
     191 [ #  # ][ #  # ]:          0 :         if (c + D2 < dir_end &&
         [ #  # ][ #  # ]
                 [ #  # ]
     192                 :            :             (j == 1 || DIR_START + D2 < DIR_END(q)) &&
     193                 :            :             Item(q, DIR_END(q) - D2).key() >= Item(p, c + D2).key())
     194                 :          0 :             failure(90);
     195                 :            : 
     196         [ #  # ]:          0 :         if (REVISION(q) > REVISION(p)) failure(91);
     197                 :            :     }
     198                 :            : }
     199                 :            : 
     200                 :            : void
     201                 :          3 : BrassTableCheck::check(const char * tablename, const string & path, int opts,
     202                 :            :                        ostream &out)
     203                 :            : {
     204                 :          3 :     BrassTableCheck B(tablename, path, false, out);
     205                 :          3 :     B.open(); // throws exception if open fails
     206                 :          3 :     Brass::Cursor * C = B.C;
     207                 :            : 
     208         [ +  - ]:          3 :     if (opts & OPT_SHOW_STATS) {
     209                 :            :         out << "base" << (char)B.base_letter
     210                 :            :             << " blocksize=" << B.block_size / 1024 << "K"
     211                 :            :                " items=" << B.item_count
     212                 :            :             << " lastblock=" << B.base.get_last_block()
     213                 :            :             << " revision=" << B.revision_number
     214                 :            :             << " levels=" << B.level
     215                 :          3 :             << " root=";
     216         [ -  + ]:          3 :         if (B.faked_root_block)
     217                 :          0 :             out << "(faked)";
     218                 :            :         else
     219                 :          3 :             out << C[B.level].n;
     220                 :          3 :         out << endl;
     221                 :            :     }
     222                 :            : 
     223                 :          3 :     int limit = B.base.get_bit_map_size() - 1;
     224                 :            : 
     225                 :          3 :     limit = limit * CHAR_BIT + CHAR_BIT - 1;
     226                 :            : 
     227         [ -  + ]:          3 :     if (opts & OPT_SHOW_BITMAP) {
     228         [ #  # ]:          0 :         for (int j = 0; j <= limit; j++) {
     229         [ #  # ]:          0 :             out << (B.base.block_free_at_start(j) ? '.' : '*');
     230         [ #  # ]:          0 :             if (j > 0) {
     231         [ #  # ]:          0 :                 if ((j + 1) % 100 == 0) {
     232                 :          0 :                     out << '\n';
     233         [ #  # ]:          0 :                 } else if ((j + 1) % 10 == 0) {
     234                 :          0 :                     out << ' ';
     235                 :            :                 }
     236                 :            :             }
     237                 :            :         }
     238                 :          0 :         out << '\n' << endl;
     239                 :            :     }
     240                 :            : 
     241         [ -  + ]:          3 :     if (B.faked_root_block) {
     242         [ #  # ]:          0 :         if (opts) out << "void ";
     243                 :            :     } else {
     244                 :          3 :         B.block_check(C, B.level, opts);
     245                 :            : 
     246                 :            :         /* the bit map should now be entirely clear: */
     247                 :            : 
     248         [ -  + ]:          3 :         if (!B.base.is_empty()) {
     249                 :          0 :             B.failure(100);
     250                 :            :         }
     251                 :            :     }
     252         [ +  - ]:          3 :     if (opts) out << "B-tree checked okay" << endl;
     253                 :          3 : }
     254                 :            : 
     255                 :          0 : void BrassTableCheck::report_cursor(int N, const Brass::Cursor * C_) const
     256                 :            : {
     257                 :          0 :     out << N << ")\n";
     258         [ #  # ]:          0 :     for (int i = 0; i <= level; i++)
     259                 :          0 :         out << "p=" << C_[i].p << ", c=" << C_[i].c << ", n=[" << C_[i].n
     260                 :          0 :             << "], rewrite=" << C_[i].rewrite << endl;
     261 [ +  - ][ +  - ]:         15 : }

Generated by: LCOV version 1.8