1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300
|
/* chert_table.cc: Btree implementation
*
* Copyright 1999,2000,2001 BrightStation PLC
* Copyright 2002 Ananova Ltd
* Copyright 2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Olly Betts
* Copyright 2008 Lemur Consulting Ltd
* Copyright 2010 Richard Boulton
*
* This program 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 2 of the
* License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#include <config.h>
#include "chert_table.h"
#include <xapian/error.h>
#include "safeerrno.h"
#include "errno_to_string.h"
#include "omassert.h"
#include "stringutils.h" // For STRINGIZE().
// Define to use "dangerous" mode - in this mode we write modified btree
// blocks back in place. This is somewhat faster (especially once we're
// I/O bound) but the database can't be safely searched during indexing
// and if indexing is terminated uncleanly, the database may be corrupt.
//
// Despite the risks, it's useful for speeding up a full rebuild.
//
// FIXME: make this mode run-time selectable, and record that it is currently
// in use somewhere on disk, so readers can check and refuse to open the
// database.
//
// #define DANGEROUS
#include <sys/types.h>
#include <cstring> /* for memmove */
#include <climits> /* for CHAR_BIT */
#include "chert_btreebase.h"
#include "chert_cursor.h"
#include "filetests.h"
#include "io_utils.h"
#include "debuglog.h"
#include "pack.h"
#include "str.h"
#include "wordaccess.h"
#include <algorithm> // for std::min()
#include <string>
using namespace std;
// Only try to compress tags longer than this many bytes.
const size_t COMPRESS_MIN = 4;
//#define BTREE_DEBUG_FULL 1
#undef BTREE_DEBUG_FULL
#ifdef BTREE_DEBUG_FULL
/*------debugging aids from here--------*/
static void print_key(const byte * p, int c, int j);
static void print_tag(const byte * p, int c, int j);
/*
static void report_cursor(int N, Btree * B, Cursor * C)
{
int i;
printf("%d)\n", N);
for (i = 0; i <= B->level; i++)
printf("p=%d, c=%d, n=[%d], rewrite=%d\n",
C[i].p, C[i].c, C[i].n, C[i].rewrite);
}
*/
/*------to here--------*/
#endif /* BTREE_DEBUG_FULL */
static inline byte *zeroed_new(size_t size)
{
byte *temp = new byte[size];
memset(temp, 0, size);
return temp;
}
/* A B-tree comprises (a) a base file, containing essential information (Block
size, number of the B-tree root block etc), (b) a bitmap, the Nth bit of the
bitmap being set if the Nth block of the B-tree file is in use, and (c) a
file DB containing the B-tree proper. The DB file is divided into a sequence
of equal sized blocks, numbered 0, 1, 2 ... some of which are free, some in
use. Those in use are arranged in a tree.
Each block, b, has a structure like this:
R L M T D o1 o2 o3 ... oN <gap> [item] .. [item] .. [item] ...
<---------- D ----------> <-M->
And then,
R = REVISION(b) is the revision number the B-tree had when the block was
written into the DB file.
L = GET_LEVEL(b) is the level of the block, which is the number of levels
towards the root of the B-tree structure. So leaf blocks
have level 0 and the one root block has the highest level
equal to the number of levels in the B-tree.
M = MAX_FREE(b) is the size of the gap between the end of the directory and
the first item of data. (It is not necessarily the maximum
size among the bits of space that are free, but I can't
think of a better name.)
T = TOTAL_FREE(b)is the total amount of free space left in b.
D = DIR_END(b) gives the offset to the end of the directory.
o1, o2 ... oN are a directory of offsets to the N items held in the block.
The items are key-tag pairs, and as they occur in the directory are ordered
by the keys.
An item has this form:
I K key x C tag
<--K-->
<------I------>
A long tag presented through the API is split up into C tags small enough to
be accommodated in the blocks of the B-tree. The key is extended to include
a counter, x, which runs from 1 to C. The key is preceded by a length, K,
and the whole item with a length, I, as depicted above.
Here are the corresponding definitions:
*/
/** Flip to sequential addition block-splitting after this number of observed
* sequential additions (in negated form). */
#define SEQ_START_POINT (-10)
/* There are two bit maps in bit_map0 and bit_map. The nth bit of bitmap is 0
if the nth block is free, otherwise 1. bit_map0 is the initial state of
bitmap at the start of the current transaction.
Note use of the limits.h values:
UCHAR_MAX = 255, an unsigned with all bits set, and
CHAR_BIT = 8, the number of bits per byte
BYTE_PAIR_RANGE below is the smallest +ve number that can't be held in two
bytes -- 64K effectively.
*/
#define BYTE_PAIR_RANGE (1 << 2 * CHAR_BIT)
/// read_block(n, p) reads block n of the DB file to address p.
void
ChertTable::read_block(uint4 n, byte * p) const
{
// Log the value of p, not the contents of the block it points to...
LOGCALL_VOID(DB, "ChertTable::read_block", n | (void*)p);
if (rare(handle == -2))
ChertTable::throw_database_closed();
/* Use the base bit_map_size not the bitmap's size, because
* the latter is uninitialised in readonly mode.
*/
Assert(n / CHAR_BIT < base.get_bit_map_size());
io_read_block(handle, reinterpret_cast<char *>(p), block_size, n);
int dir_end = DIR_END(p);
if (rare(dir_end < DIR_START || unsigned(dir_end) > block_size)) {
string msg("dir_end invalid in block ");
msg += str(n);
throw Xapian::DatabaseCorruptError(msg);
}
}
/** write_block(n, p) writes block n in the DB file from address p.
* When writing we check to see if the DB file has already been
* modified. If not (so this is the first write) the old base is
* deleted. This prevents the possibility of it being opened
* subsequently as an invalid base.
*/
void
ChertTable::write_block(uint4 n, const byte * p) const
{
LOGCALL_VOID(DB, "ChertTable::write_block", n | p);
Assert(writable);
/* Check that n is in range. */
Assert(n / CHAR_BIT < base.get_bit_map_size());
/* don't write to non-free */;
AssertParanoid(base.block_free_at_start(n));
/* write revision is okay */
AssertEqParanoid(REVISION(p), latest_revision_number + 1);
if (both_bases) {
// Delete the old base before modifying the database.
//
// If the file is on NFS, then io_unlink() may return false even if
// the file was removed, so on balance throwing an exception in this
// case is unhelpful, since we wanted the file gone anyway! The
// likely explanation is that somebody moved, deleted, or changed a
// symlink to the database directory.
(void)io_unlink(name + "base" + other_base_letter());
both_bases = false;
latest_revision_number = revision_number;
}
io_write_block(handle, reinterpret_cast<const char *>(p), block_size, n);
}
/* A note on cursors:
Each B-tree level has a corresponding array element C[j] in a
cursor, C. C[0] is the leaf (or data) level, and C[B->level] is the
root block level. Within a level j,
C[j].p addresses the block
C[j].c is the offset into the directory entry in the block
C[j].n is the number of the block at C[j].p
A look up in the B-tree causes navigation of the blocks starting
from the root. In each block, p, we find an offset, c, to an item
which gives the number, n, of the block for the next level. This
leads to an array of values p,c,n which are held inside the cursor.
Any Btree object B has a built-in cursor, at B->C. But other cursors may
be created. If BC is a created cursor, BC->C is the cursor in the
sense given above, and BC->B is the handle for the B-tree again.
*/
void
ChertTable::set_overwritten() const
{
LOGCALL_VOID(DB, "ChertTable::set_overwritten", NO_ARGS);
// If we're writable, there shouldn't be another writer who could cause
// overwritten to be flagged, so that's a DatabaseCorruptError.
if (writable)
throw Xapian::DatabaseCorruptError("Db block overwritten - are there multiple writers?");
throw Xapian::DatabaseModifiedError("The revision being read has been discarded - you should call Xapian::Database::reopen() and retry the operation");
}
/* block_to_cursor(C, j, n) puts block n into position C[j] of cursor
C, writing the block currently at C[j] back to disk if necessary.
Note that
C[j].rewrite
is true iff C[j].n is different from block n in file DB. If it is
false no rewriting is necessary.
*/
void
ChertTable::block_to_cursor(Cursor * C_, int j, uint4 n) const
{
LOGCALL_VOID(DB, "ChertTable::block_to_cursor", (void*)C_ | j | n);
if (n == C_[j].n) return;
byte * p = C_[j].p;
Assert(p);
// FIXME: only needs to be done in write mode
if (C_[j].rewrite) {
Assert(writable);
Assert(C == C_);
write_block(C_[j].n, p);
C_[j].rewrite = false;
}
// Check if the block is in the built-in cursor (potentially in
// modified form).
if (n == C[j].n) {
if (p != C[j].p)
memcpy(p, C[j].p, block_size);
} else {
read_block(n, p);
}
C_[j].n = n;
if (j < level) {
/* unsigned comparison */
if (rare(REVISION(p) > REVISION(C_[j + 1].p))) {
set_overwritten();
return;
}
}
if (rare(j != GET_LEVEL(p))) {
string msg = "Expected block ";
msg += str(n);
msg += " to be level ";
msg += str(j);
msg += ", not ";
msg += str(GET_LEVEL(p));
throw Xapian::DatabaseCorruptError(msg);
}
}
/** Btree::alter(); is called when the B-tree is to be altered.
It causes new blocks to be forced for the current set of blocks in
the cursor.
The point is that if a block at level 0 is to be altered it may get
a new number. Then the pointer to this block from level 1 will need
changing. So the block at level 1 needs altering and may get a new
block number. Then the pointer to this block from level 2 will need
changing ... and so on back to the root.
The clever bit here is spotting the cases when we can make an early
exit from this process. If C[j].rewrite is true, C[j+k].rewrite
will be true for k = 1,2 ... We have been through all this before,
and there is no need to do it again. If C[j].n was free at the
start of the transaction, we can copy it back to the same place
without violating the integrity of the B-tree. We don't then need a
new n and can return. The corresponding C[j].rewrite may be true or
false in that case.
*/
void
ChertTable::alter()
{
LOGCALL_VOID(DB, "ChertTable::alter", NO_ARGS);
Assert(writable);
#ifdef DANGEROUS
C[0].rewrite = true;
#else
int j = 0;
byte * p = C[j].p;
while (true) {
if (C[j].rewrite) return; /* all new, so return */
C[j].rewrite = true;
uint4 n = C[j].n;
if (base.block_free_at_start(n)) {
Assert(REVISION(p) == latest_revision_number + 1);
return;
}
Assert(REVISION(p) < latest_revision_number + 1);
base.free_block(n);
n = base.next_free_block();
C[j].n = n;
SET_REVISION(p, latest_revision_number + 1);
if (j == level) return;
j++;
p = C[j].p;
Item_wr(p, C[j].c).set_block_given_by(n);
}
#endif
}
/** find_in_block(p, key, leaf, c) searches for the key in the block at p.
leaf is true for a data block, and false for an index block (when the
first key is dummy and never needs to be tested). What we get is the
directory entry to the last key <= the key being searched for.
The lookup is by binary chop, with i and j set to the left and
right ends of the search area. In sequential addition, c will often
be the answer, so we test the keys round c and move i and j towards
c if possible.
The returned value is < DIR_END(p). If leaf is false, the returned
value is >= DIR_START; if leaf is true, it can also be == DIR_START - D2.
*/
int
ChertTable::find_in_block(const byte * p, Key key, bool leaf, int c)
{
LOGCALL_STATIC(DB, int, "ChertTable::find_in_block", (const void*)p | (const void *)key.get_address() | leaf | c);
// c should be odd (either -1, or an even offset from DIR_START).
Assert((c & 1) == 1);
int i = DIR_START;
if (leaf) i -= D2;
if (c != -1) {
AssertRel(i,<=,c);
}
int j = DIR_END(p);
if (c != -1) {
if (c < j && i < c && Item(p, c).key() <= key)
i = c;
c += D2;
if (c < j && i < c && key < Item(p, c).key())
j = c;
}
while (j - i > D2) {
int k = i + ((j - i)/(D2 * 2))*D2; /* mid way */
if (key < Item(p, k).key()) j = k; else i = k;
}
if (leaf) {
AssertRel(DIR_START - D2,<=,i);
} else {
AssertRel(DIR_START,<=,i);
}
AssertRel(i,<,DIR_END(p));
RETURN(i);
}
/** find(C_) searches for the key of B->kt in the B-tree.
Result is true if found, false otherwise. When false, the B_tree
cursor is positioned at the last key in the B-tree <= the search
key. Goes to first (null) item in B-tree when key length == 0.
Note: The cursor can be left with C_[0].c == DIR_START - D2 if the
requested key doesn't exist and is less than the smallest key in a
leaf block, but after the dividing key. The caller needs to fix up
C_[0].c in this case, either explicitly or by performing an
operation which gives C_[0].c a valid value.
*/
bool
ChertTable::find(Cursor * C_) const
{
LOGCALL(DB, bool, "ChertTable::find", (void*)C_);
// Note: the parameter is needed when we're called by ChertCursor
const byte * p;
int c;
Key key = kt.key();
for (int j = level; j > 0; --j) {
p = C_[j].p;
c = find_in_block(p, key, false, C_[j].c);
#ifdef BTREE_DEBUG_FULL
printf("Block in ChertTable:find - code position 1");
report_block_full(j, C_[j].n, p);
#endif /* BTREE_DEBUG_FULL */
C_[j].c = c;
block_to_cursor(C_, j - 1, Item(p, c).block_given_by());
}
p = C_[0].p;
c = find_in_block(p, key, true, C_[0].c);
#ifdef BTREE_DEBUG_FULL
printf("Block in ChertTable:find - code position 2");
report_block_full(0, C_[0].n, p);
#endif /* BTREE_DEBUG_FULL */
C_[0].c = c;
if (c < DIR_START) {
RETURN(false);
}
RETURN(Item(p, c).key() == key);
}
/** compact(p) compact the block at p by shuffling all the items up to the end.
MAX_FREE(p) is then maximized, and is equal to TOTAL_FREE(p).
*/
void
ChertTable::compact(byte * p)
{
LOGCALL_VOID(DB, "ChertTable::compact", (void*)p);
Assert(writable);
int e = block_size;
byte * b = buffer;
int dir_end = DIR_END(p);
for (int c = DIR_START; c < dir_end; c += D2) {
Item item(p, c);
int l = item.size();
e -= l;
memmove(b + e, item.get_address(), l);
setD(p, c, e); /* reform in b */
}
memmove(p + e, b + e, block_size - e); /* copy back */
e -= dir_end;
SET_TOTAL_FREE(p, e);
SET_MAX_FREE(p, e);
}
/** Btree needs to gain a new level to insert more items: so split root block
* and construct a new one.
*/
void
ChertTable::split_root(uint4 split_n)
{
LOGCALL_VOID(DB, "ChertTable::split_root", split_n);
/* gain a level */
++level;
/* check level overflow - this isn't something that should ever happen
* but deserves more than an Assert()... */
if (level == BTREE_CURSOR_LEVELS) {
throw Xapian::DatabaseCorruptError("Btree has grown impossibly large (" STRINGIZE(BTREE_CURSOR_LEVELS) " levels)");
}
byte * q = zeroed_new(block_size);
C[level].p = q;
C[level].c = DIR_START;
C[level].n = base.next_free_block();
C[level].rewrite = true;
SET_REVISION(q, latest_revision_number + 1);
SET_LEVEL(q, level);
SET_DIR_END(q, DIR_START);
compact(q); /* to reset TOTAL_FREE, MAX_FREE */
/* form a null key in b with a pointer to the old root */
byte b[10]; /* 7 is exact */
Item_wr item(b);
item.form_null_key(split_n);
add_item(item, level);
}
/** enter_key(j, prevkey, newkey) is called after a block split.
It enters in the block at level C[j] a separating key for the block
at level C[j - 1]. The key itself is newkey. prevkey is the
preceding key, and at level 1 newkey can be trimmed down to the
first point of difference to prevkey for entry in C[j].
This code looks longer than it really is. If j exceeds the number
of B-tree levels the root block has split and we have to construct
a new one, but this is a rare event.
The key is constructed in b, with block number C[j - 1].n as tag,
and this is added in with add_item. add_item may itself cause a
block split, with a further call to enter_key. Hence the recursion.
*/
void
ChertTable::enter_key(int j, Key prevkey, Key newkey)
{
LOGCALL_VOID(DB, "ChertTable::enter_key", j | Literal("prevkey") | Literal("newkey"));
Assert(writable);
Assert(prevkey < newkey);
AssertRel(j,>=,1);
uint4 blocknumber = C[j - 1].n;
// FIXME update to use Key
// Keys are truncated here: but don't truncate the count at the end away.
const int newkey_len = newkey.length();
AssertRel(newkey_len,>,0);
int i;
if (j == 1) {
// Truncate the key to the minimal key which differs from prevkey,
// the preceding key in the block.
i = 0;
const int min_len = min(newkey_len, prevkey.length());
while (i < min_len && prevkey[i] == newkey[i]) {
i++;
}
// Want one byte of difference.
if (i < newkey_len) i++;
} else {
/* Can't truncate between branch levels, since the separated keys
* are in at the leaf level, and truncating again will change the
* branch point.
*/
i = newkey_len;
}
byte b[UCHAR_MAX + 6];
Item_wr item(b);
Assert(i <= 256 - I2 - C2);
Assert(i <= (int)sizeof(b) - I2 - C2 - 4);
item.set_key_and_block(newkey, i, blocknumber);
// When j > 1 we can make the first key of block p null. This is probably
// worthwhile as it trades a small amount of CPU and RAM use for a small
// saving in disk use. Other redundant keys will still creep in though.
if (j > 1) {
byte * p = C[j - 1].p;
uint4 n = getint4(newkey.get_address(), newkey_len + K1 + C2);
int new_total_free = TOTAL_FREE(p) + newkey_len + C2;
// FIXME: incredibly icky going from key to item like this...
Item_wr(const_cast<byte*>(newkey.get_address()) - I2).form_null_key(n);
SET_TOTAL_FREE(p, new_total_free);
}
// The split block gets inserted into the parent after the pointer to the
// current child.
AssertEq(C[j].c, find_in_block(C[j].p, item.key(), false, C[j].c));
C[j].c += D2;
C[j].rewrite = true; /* a subtle point: this *is* required. */
add_item(item, j);
}
/** mid_point(p) finds the directory entry in c that determines the
approximate mid point of the data in the block at p.
*/
int
ChertTable::mid_point(byte * p) const
{
LOGCALL(DB, int, "ChertTable::mid_point", (void*)p);
int n = 0;
int dir_end = DIR_END(p);
int size = block_size - TOTAL_FREE(p) - dir_end;
for (int c = DIR_START; c < dir_end; c += D2) {
int l = Item(p, c).size();
n += 2 * l;
if (n >= size) {
if (l < n - size) RETURN(c);
RETURN(c + D2);
}
}
/* This shouldn't happen, as the sum of the item sizes should be the same
* as the value calculated in size, so assert but return a sane value just
* in case. */
Assert(false);
RETURN(dir_end);
}
/** add_item_to_block(p, kt_, c) adds item kt_ to the block at p.
c is the offset in the directory that needs to be expanded to accommodate
the new entry for the item. We know before this is called that there is
enough contiguous room for the item in the block, so it's just a matter of
shuffling up any directory entries after where we're inserting and copying
in the item.
*/
void
ChertTable::add_item_to_block(byte * p, Item_wr kt_, int c)
{
LOGCALL_VOID(DB, "ChertTable::add_item_to_block", (void*)p | Literal("kt_") | c);
Assert(writable);
int dir_end = DIR_END(p);
int kt_len = kt_.size();
int needed = kt_len + D2;
int new_total = TOTAL_FREE(p) - needed;
int new_max = MAX_FREE(p) - needed;
Assert(new_total >= 0);
AssertRel(MAX_FREE(p),>=,needed);
AssertRel(DIR_START,<=,c);
AssertRel(c,<=,dir_end);
memmove(p + c + D2, p + c, dir_end - c);
dir_end += D2;
SET_DIR_END(p, dir_end);
int o = dir_end + new_max;
setD(p, c, o);
memmove(p + o, kt_.get_address(), kt_len);
SET_MAX_FREE(p, new_max);
SET_TOTAL_FREE(p, new_total);
}
/** ChertTable::add_item(kt_, j) adds item kt_ to the block at cursor level C[j].
*
* If there is not enough room the block splits and the item is then
* added to the appropriate half.
*/
void
ChertTable::add_item(Item_wr kt_, int j)
{
LOGCALL_VOID(DB, "ChertTable::add_item", Literal("kt_") | j);
Assert(writable);
byte * p = C[j].p;
int c = C[j].c;
uint4 n;
int needed = kt_.size() + D2;
if (TOTAL_FREE(p) < needed) {
int m;
// Prepare to split p. After splitting, the block is in two halves, the
// lower half is split_p, the upper half p again. add_to_upper_half
// becomes true when the item gets added to p, false when it gets added
// to split_p.
if (seq_count < 0) {
// If we're not in sequential mode, we split at the mid point
// of the node.
m = mid_point(p);
} else {
// During sequential addition, split at the insert point
AssertRel(c,>=,DIR_START);
m = c;
}
uint4 split_n = C[j].n;
C[j].n = base.next_free_block();
memcpy(split_p, p, block_size); // replicate the whole block in split_p
SET_DIR_END(split_p, m);
compact(split_p); /* to reset TOTAL_FREE, MAX_FREE */
{
int residue = DIR_END(p) - m;
int new_dir_end = DIR_START + residue;
memmove(p + DIR_START, p + m, residue);
SET_DIR_END(p, new_dir_end);
}
compact(p); /* to reset TOTAL_FREE, MAX_FREE */
bool add_to_upper_half;
if (seq_count < 0) {
add_to_upper_half = (c >= m);
} else {
// And add item to lower half if split_p has room, otherwise upper
// half
add_to_upper_half = (TOTAL_FREE(split_p) < needed);
}
if (add_to_upper_half) {
c -= (m - DIR_START);
Assert(seq_count < 0 || c <= DIR_START + D2);
Assert(c >= DIR_START);
Assert(c <= DIR_END(p));
add_item_to_block(p, kt_, c);
n = C[j].n;
} else {
Assert(c >= DIR_START);
Assert(c <= DIR_END(split_p));
add_item_to_block(split_p, kt_, c);
n = split_n;
}
write_block(split_n, split_p);
// Check if we're splitting the root block.
if (j == level) split_root(split_n);
/* Enter a separating key at level j + 1 between */
/* the last key of block split_p, and the first key of block p */
enter_key(j + 1,
Item(split_p, DIR_END(split_p) - D2).key(),
Item(p, DIR_START).key());
} else {
AssertRel(TOTAL_FREE(p),>=,needed);
if (MAX_FREE(p) < needed) {
compact(p);
AssertRel(MAX_FREE(p),>=,needed);
}
add_item_to_block(p, kt_, c);
n = C[j].n;
}
if (j == 0) {
changed_n = n;
changed_c = c;
}
}
/** ChertTable::delete_item(j, repeatedly) is (almost) the converse of add_item.
*
* If repeatedly is true, the process repeats at the next level when a
* block has been completely emptied, freeing the block and taking out
* the pointer to it. Emptied root blocks are also removed, which
* reduces the number of levels in the B-tree.
*/
void
ChertTable::delete_item(int j, bool repeatedly)
{
LOGCALL_VOID(DB, "ChertTable::delete_item", j | repeatedly);
Assert(writable);
byte * p = C[j].p;
int c = C[j].c;
AssertRel(DIR_START,<=,c);
AssertRel(c,<,DIR_END(p));
int kt_len = Item(p, c).size(); /* size of the item to be deleted */
int dir_end = DIR_END(p) - D2; /* directory length will go down by 2 bytes */
memmove(p + c, p + c + D2, dir_end - c);
SET_DIR_END(p, dir_end);
SET_MAX_FREE(p, MAX_FREE(p) + D2);
SET_TOTAL_FREE(p, TOTAL_FREE(p) + kt_len + D2);
if (!repeatedly) return;
if (j < level) {
if (dir_end == DIR_START) {
base.free_block(C[j].n);
C[j].rewrite = false;
C[j].n = BLK_UNUSED;
C[j + 1].rewrite = true; /* *is* necessary */
delete_item(j + 1, true);
}
} else {
Assert(j == level);
while (dir_end == DIR_START + D2 && level > 0) {
/* single item in the root block, so lose a level */
uint4 new_root = Item(p, DIR_START).block_given_by();
delete [] p;
C[level].p = 0;
base.free_block(C[level].n);
C[level].rewrite = false;
C[level].n = BLK_UNUSED;
level--;
block_to_cursor(C, level, new_root);
p = C[level].p;
dir_end = DIR_END(p); /* prepare for the loop */
}
}
}
/* debugging aid:
static addcount = 0;
*/
/** add_kt(found) adds the item (key-tag pair) at B->kt into the
B-tree, using cursor C.
found == find() is handed over as a parameter from Btree::add.
Btree::alter() prepares for the alteration to the B-tree. Then
there are a number of cases to consider:
If an item with the same key is in the B-tree (found is true),
the new kt replaces it.
If then kt is smaller, or the same size as, the item it replaces,
kt is put in the same place as the item it replaces, and the
TOTAL_FREE measure is reduced.
If kt is larger than the item it replaces it is put in the
MAX_FREE space if there is room, and the directory entry and
space counts are adjusted accordingly.
- But if there is not room we do it the long way: the old item is
deleted with delete_item and kt is added in with add_item.
If the key of kt is not in the B-tree (found is false), the new
kt is added in with add_item.
*/
int
ChertTable::add_kt(bool found)
{
LOGCALL(DB, int, "ChertTable::add_kt", found);
Assert(writable);
int components = 0;
/*
{
printf("%d) %s ", addcount++, (found ? "replacing" : "adding"));
print_bytes(kt[I2] - K1 - C2, kt + I2 + K1); putchar('\n');
}
*/
alter();
if (found) { /* replacement */
seq_count = SEQ_START_POINT;
sequential = false;
byte * p = C[0].p;
int c = C[0].c;
AssertRel(DIR_START,<=,c);
AssertRel(c,<,DIR_END(p));
Item item(p, c);
int kt_size = kt.size();
int needed = kt_size - item.size();
components = item.components_of();
if (needed <= 0) {
/* simple replacement */
memmove(const_cast<byte *>(item.get_address()),
kt.get_address(), kt_size);
SET_TOTAL_FREE(p, TOTAL_FREE(p) - needed);
} else {
/* new item into the block's freespace */
int new_max = MAX_FREE(p) - kt_size;
if (new_max >= 0) {
int o = DIR_END(p) + new_max;
memmove(p + o, kt.get_address(), kt_size);
setD(p, c, o);
SET_MAX_FREE(p, new_max);
SET_TOTAL_FREE(p, TOTAL_FREE(p) - needed);
} else {
/* do it the long way */
delete_item(0, false);
add_item(kt, 0);
}
}
} else {
/* addition */
if (changed_n == C[0].n && changed_c == C[0].c) {
if (seq_count < 0) seq_count++;
} else {
seq_count = SEQ_START_POINT;
sequential = false;
}
C[0].c += D2;
add_item(kt, 0);
}
RETURN(components);
}
/* delete_kt() corresponds to add_kt(found), but there are only
two cases: if the key is not found nothing is done, and if it is
found the corresponding item is deleted with delete_item.
*/
int
ChertTable::delete_kt()
{
LOGCALL(DB, int, "ChertTable::delete_kt", NO_ARGS);
Assert(writable);
bool found = find(C);
int components = 0;
seq_count = SEQ_START_POINT;
sequential = false;
/*
{
printf("%d) %s ", addcount++, (found ? "deleting " : "ignoring "));
print_bytes(B->kt[I2] - K1 - C2, B->kt + I2 + K1); putchar('\n');
}
*/
if (found) {
components = Item(C[0].p, C[0].c).components_of();
alter();
delete_item(0, true);
}
RETURN(components);
}
/* ChertTable::form_key(key) treats address kt as an item holder and fills in
the key part:
(I) K key c (C tag)
The bracketed parts are left blank. The key is filled in with key_len bytes and
K set accordingly. c is set to 1.
*/
void ChertTable::form_key(const string & key) const
{
LOGCALL_VOID(DB, "ChertTable::form_key", key);
kt.form_key(key);
}
/* ChertTable::add(key, tag) adds the key/tag item to the
B-tree, replacing any existing item with the same key.
For a long tag, we end up having to add m components, of the form
key 1 m tag1
key 2 m tag2
...
key m m tagm
and tag1+tag2+...+tagm are equal to tag. These in their turn may be replacing
n components of the form
key 1 n TAG1
key 2 n TAG2
...
key n n TAGn
and n may be greater than, equal to, or less than m. These cases are dealt
with in the code below. If m < n for example, we end up with a series of
deletions.
*/
void
ChertTable::add(const string &key, string tag, bool already_compressed)
{
LOGCALL_VOID(DB, "ChertTable::add", key | tag | already_compressed);
Assert(writable);
if (handle < 0) create_and_open(block_size);
form_key(key);
bool compressed = false;
if (already_compressed) {
compressed = true;
} else if (compress_strategy != DONT_COMPRESS && tag.size() > COMPRESS_MIN) {
static_assert(DONT_COMPRESS != Z_DEFAULT_STRATEGY,
"DONT_COMPRESS clashes with zlib constant");
static_assert(DONT_COMPRESS != Z_FILTERED,
"DONT_COMPRESS clashes with zlib constant");
static_assert(DONT_COMPRESS != Z_HUFFMAN_ONLY,
"DONT_COMPRESS clashes with zlib constant");
#ifdef Z_RLE
static_assert(DONT_COMPRESS != Z_RLE,
"DONT_COMPRESS clashes with zlib constant");
#endif
lazy_alloc_deflate_zstream();
deflate_zstream->next_in =
reinterpret_cast<Bytef *>(const_cast<char *>(tag.data()));
deflate_zstream->avail_in = static_cast<uInt>(tag.size());
// If compressed size is >= tag.size(), we don't want to compress.
unsigned long blk_len = tag.size() - 1;
unsigned char * blk = new unsigned char[blk_len];
deflate_zstream->next_out = blk;
deflate_zstream->avail_out = static_cast<uInt>(blk_len);
int err = deflate(deflate_zstream, Z_FINISH);
if (err == Z_STREAM_END) {
// If deflate succeeded, then the output was at least one byte
// smaller than the input.
tag.assign(reinterpret_cast<const char *>(blk), deflate_zstream->total_out);
compressed = true;
} else {
// Deflate failed - presumably the data wasn't compressible.
}
delete [] blk;
}
// sort of matching kt.append_chunk(), but setting the chunk
const size_t cd = kt.key().length() + K1 + I2 + C2 + C2; // offset to the tag data
const size_t L = max_item_size - cd; // largest amount of tag data for any chunk
size_t first_L = L; // - amount for tag1
bool found = find(C);
if (!found) {
byte * p = C[0].p;
size_t n = TOTAL_FREE(p) % (max_item_size + D2);
if (n > D2 + cd) {
n -= (D2 + cd);
// if n >= last then fully filling this block won't produce
// an extra item, so we might as well do this even if
// full_compaction isn't active.
//
// In the full_compaction case, it turns out we shouldn't always
// try to fill every last byte. Doing so can actually increase the
// total space required (I believe this effect is due to longer
// dividing keys being required in the index blocks). Empirically,
// n >= key.size() + K appears a good criterion for K ~= 34. This
// seems to save about 0.2% in total database size over always
// splitting the tag. It'll also give be slightly faster retrieval
// as we can avoid reading an extra block occasionally.
size_t last = tag.length() % L;
if (n >= last || (full_compaction && n >= key.size() + 34))
first_L = n;
}
}
// a null tag must be added in of course
int m = tag.empty() ? 1 : (tag.length() - first_L + L - 1) / L + 1;
// there are m items to add
/* FIXME: sort out this error higher up and turn this into
* an assert.
*/
if (m >= BYTE_PAIR_RANGE)
throw Xapian::UnimplementedError("Can't handle insanely large tags");
int n = 0; // initialise to shut off warning
// - and there will be n to delete
int o = 0; // Offset into the tag
size_t residue = tag.length(); // Bytes of the tag remaining to add in
int replacement = false; // Has there been a replacement ?
int i;
kt.set_components_of(m);
for (i = 1; i <= m; i++) {
size_t l = (i == m ? residue : (i == 1 ? first_L : L));
Assert(cd + l <= block_size);
Assert(string::size_type(o + l) <= tag.length());
kt.set_tag(cd, tag.data() + o, l, compressed);
kt.set_component_of(i);
o += l;
residue -= l;
if (i > 1) found = find(C);
n = add_kt(found);
if (n > 0) replacement = true;
}
/* o == tag.length() here, and n may be zero */
for (i = m + 1; i <= n; i++) {
kt.set_component_of(i);
delete_kt();
}
if (!replacement) ++item_count;
Btree_modified = true;
if (cursor_created_since_last_modification) {
cursor_created_since_last_modification = false;
++cursor_version;
}
}
/* ChertTable::del(key) returns false if the key is not in the B-tree,
otherwise deletes it and returns true.
Again, this is parallel to ChertTable::add, but simpler in form.
*/
bool
ChertTable::del(const string &key)
{
LOGCALL(DB, bool, "ChertTable::del", key);
Assert(writable);
if (handle < 0) {
if (handle == -2) {
ChertTable::throw_database_closed();
}
RETURN(false);
}
// We can't delete a key which we is too long for us to store.
if (key.size() > CHERT_BTREE_MAX_KEY_LEN) RETURN(false);
if (key.empty()) RETURN(false);
form_key(key);
int n = delete_kt(); /* there are n items to delete */
if (n <= 0) RETURN(false);
for (int i = 2; i <= n; i++) {
kt.set_component_of(i);
delete_kt();
}
item_count--;
Btree_modified = true;
if (cursor_created_since_last_modification) {
cursor_created_since_last_modification = false;
++cursor_version;
}
RETURN(true);
}
bool
ChertTable::readahead_key(const string &key) const
{
LOGCALL(DB, bool, "ChertTable::readahead_key", key);
Assert(!key.empty());
// Two cases:
//
// handle = -1: Lazy table which isn't yet open
//
// handle = -2: Table has been closed. Since the readahead is just a
// hint, we can safely ignore it for a closed table.
if (handle < 0)
RETURN(false);
// If the table only has one level, there are no branch blocks to preread.
if (level == 0)
RETURN(false);
form_key(key);
Key ktkey = kt.key();
// We'll only readahead the first level, since descending the B-tree would
// require actual reads that would likely hurt performance more than help.
const byte * p = C[level].p;
int c = find_in_block(p, ktkey, false, C[level].c);
uint4 n = Item(p, c).block_given_by();
// Don't preread if it's the block we last preread or already in the
// cursor.
if (n != last_readahead && n != C[level - 1].n) {
/* Use the base bit_map_size not the bitmap's size, because the latter
* is uninitialised in readonly mode.
*/
Assert(n / CHAR_BIT < base.get_bit_map_size());
last_readahead = n;
if (!io_readahead_block(handle, block_size, n))
RETURN(false);
}
RETURN(true);
}
bool
ChertTable::get_exact_entry(const string &key, string & tag) const
{
LOGCALL(DB, bool, "ChertTable::get_exact_entry", key | tag);
Assert(!key.empty());
if (handle < 0) {
if (handle == -2) {
ChertTable::throw_database_closed();
}
RETURN(false);
}
// An oversized key can't exist, so attempting to search for it should fail.
if (key.size() > CHERT_BTREE_MAX_KEY_LEN) RETURN(false);
form_key(key);
if (!find(C)) RETURN(false);
(void)read_tag(C, &tag, false);
RETURN(true);
}
bool
ChertTable::key_exists(const string &key) const
{
LOGCALL(DB, bool, "ChertTable::key_exists", key);
Assert(!key.empty());
// An oversized key can't exist, so attempting to search for it should fail.
if (key.size() > CHERT_BTREE_MAX_KEY_LEN) RETURN(false);
form_key(key);
RETURN(find(C));
}
bool
ChertTable::read_tag(Cursor * C_, string *tag, bool keep_compressed) const
{
LOGCALL(DB, bool, "ChertTable::read_tag", Literal("C_") | tag | keep_compressed);
Item item(C_[0].p, C_[0].c);
/* n components to join */
int n = item.components_of();
tag->resize(0);
// max_item_size also includes K1 + I2 + C2 + C2 bytes overhead and the key
// (which is at least 1 byte long).
if (n > 1) tag->reserve((max_item_size - (1 + K1 + I2 + C2 + C2)) * n);
item.append_chunk(tag);
bool compressed = item.get_compressed();
for (int i = 2; i <= n; i++) {
if (!next(C_, 0)) {
throw Xapian::DatabaseCorruptError("Unexpected end of table when reading continuation of tag");
}
(void)Item(C_[0].p, C_[0].c).append_chunk(tag);
}
// At this point the cursor is on the last item - calling next will move
// it to the next key (ChertCursor::get_tag() relies on this).
if (!compressed || keep_compressed) RETURN(compressed);
// FIXME: Perhaps we should decompress each chunk as we read it so we
// don't need both the full compressed and uncompressed tags in memory
// at once.
string utag;
// May not be enough for a compressed tag, but it's a reasonable guess.
utag.reserve(tag->size() + tag->size() / 2);
Bytef buf[8192];
lazy_alloc_inflate_zstream();
inflate_zstream->next_in =
reinterpret_cast<Bytef*>(const_cast<char *>(tag->data()));
inflate_zstream->avail_in = static_cast<uInt>(tag->size());
int err = Z_OK;
while (err != Z_STREAM_END) {
inflate_zstream->next_out = buf;
inflate_zstream->avail_out = static_cast<uInt>(sizeof(buf));
err = inflate(inflate_zstream, Z_SYNC_FLUSH);
if (err == Z_BUF_ERROR && inflate_zstream->avail_in == 0) {
LOGLINE(DB, "Z_BUF_ERROR - faking checksum of " << inflate_zstream->adler);
Bytef header2[4];
aligned_write4(header2, inflate_zstream->adler);
inflate_zstream->next_in = header2;
inflate_zstream->avail_in = 4;
err = inflate(inflate_zstream, Z_SYNC_FLUSH);
if (err == Z_STREAM_END) break;
}
if (err != Z_OK && err != Z_STREAM_END) {
if (err == Z_MEM_ERROR) throw std::bad_alloc();
string msg = "inflate failed";
if (inflate_zstream->msg) {
msg += " (";
msg += inflate_zstream->msg;
msg += ')';
}
throw Xapian::DatabaseError(msg);
}
utag.append(reinterpret_cast<const char *>(buf),
inflate_zstream->next_out - buf);
}
if (utag.size() != inflate_zstream->total_out) {
string msg = "compressed tag didn't expand to the expected size: ";
msg += str(utag.size());
msg += " != ";
// OpenBSD's zlib.h uses off_t instead of uLong for total_out.
msg += str(size_t(inflate_zstream->total_out));
throw Xapian::DatabaseCorruptError(msg);
}
swap(*tag, utag);
RETURN(false);
}
void
ChertTable::set_full_compaction(bool parity)
{
LOGCALL_VOID(DB, "ChertTable::set_full_compaction", parity);
Assert(writable);
if (parity) seq_count = 0;
full_compaction = parity;
}
ChertCursor * ChertTable::cursor_get() const {
LOGCALL(DB, ChertCursor *, "ChertTable::cursor_get", NO_ARGS);
if (handle < 0) {
if (handle == -2) {
ChertTable::throw_database_closed();
}
RETURN(NULL);
}
// FIXME Ick - casting away const is nasty
RETURN(new ChertCursor(const_cast<ChertTable *>(this)));
}
/************ B-tree opening and closing ************/
bool
ChertTable::basic_open(bool revision_supplied, chert_revision_number_t revision_)
{
LOGCALL(DB, bool, "ChertTable::basic_open", revision_supplied | revision_);
int ch = 'X'; /* will be 'A' or 'B' */
{
const size_t BTREE_BASES = 2;
string err_msg;
static const char basenames[BTREE_BASES] = { 'A', 'B' };
ChertTable_base bases[BTREE_BASES];
bool base_ok[BTREE_BASES];
both_bases = true;
bool valid_base = false;
{
for (size_t i = 0; i < BTREE_BASES; ++i) {
bool ok = bases[i].read(name, basenames[i], writable, err_msg);
base_ok[i] = ok;
if (ok) {
valid_base = true;
} else {
both_bases = false;
}
}
}
if (!valid_base) {
if (handle >= 0) {
::close(handle);
handle = -1;
}
string message = "Error opening table '";
message += name;
message += "':\n";
message += err_msg;
throw Xapian::DatabaseOpeningError(message);
}
if (revision_supplied) {
bool found_revision = false;
for (size_t i = 0; i < BTREE_BASES; ++i) {
if (base_ok[i] && bases[i].get_revision() == revision_) {
ch = basenames[i];
found_revision = true;
break;
}
}
if (!found_revision) {
/* Couldn't open the revision that was asked for.
* This shouldn't throw an exception, but should just return
* false to upper levels.
*/
RETURN(false);
}
} else {
chert_revision_number_t highest_revision = 0;
for (size_t i = 0; i < BTREE_BASES; ++i) {
if (base_ok[i] && bases[i].get_revision() >= highest_revision) {
ch = basenames[i];
highest_revision = bases[i].get_revision();
}
}
}
ChertTable_base *basep = 0;
ChertTable_base *other_base = 0;
for (size_t i = 0; i < BTREE_BASES; ++i) {
LOGLINE(DB, "Checking (ch == " << ch << ") against "
"basenames[" << i << "] == " << basenames[i]);
LOGLINE(DB, "bases[" << i << "].get_revision() == " <<
bases[i].get_revision());
LOGLINE(DB, "base_ok[" << i << "] == " << base_ok[i]);
if (ch == basenames[i]) {
basep = &bases[i];
// FIXME: assuming only two bases for other_base
size_t otherbase_num = 1 - i;
if (base_ok[otherbase_num]) {
other_base = &bases[otherbase_num];
}
break;
}
}
Assert(basep);
/* basep now points to the most recent base block */
/* Avoid copying the bitmap etc. - swap contents with the base
* object in the vector, since it'll be destroyed anyway soon.
*/
base.swap(*basep);
revision_number = base.get_revision();
block_size = base.get_block_size();
root = base.get_root();
level = base.get_level();
//bit_map_size = basep->get_bit_map_size();
item_count = base.get_item_count();
faked_root_block = base.get_have_fakeroot();
sequential = base.get_sequential();
if (other_base != 0) {
latest_revision_number = other_base->get_revision();
if (revision_number > latest_revision_number)
latest_revision_number = revision_number;
} else {
latest_revision_number = revision_number;
}
}
/* kt holds constructed items as well as keys */
kt = Item_wr(zeroed_new(block_size));
set_max_item_size(BLOCK_CAPACITY);
base_letter = ch;
if (cursor_created_since_last_modification) {
cursor_created_since_last_modification = false;
++cursor_version;
}
/* ready to open the main file */
RETURN(true);
}
void
ChertTable::read_root()
{
LOGCALL_VOID(DB, "ChertTable::read_root", NO_ARGS);
if (faked_root_block) {
/* root block for an unmodified database. */
byte * p = C[0].p;
Assert(p);
/* clear block - shouldn't be necessary, but is a bit nicer,
* and means that the same operations should always produce
* the same database. */
memset(p, 0, block_size);
int o = block_size - I2 - K1 - C2 - C2;
Item_wr(p + o).fake_root_item();
setD(p, DIR_START, o); // its directory entry
SET_DIR_END(p, DIR_START + D2);// the directory size
o -= (DIR_START + D2);
SET_MAX_FREE(p, o);
SET_TOTAL_FREE(p, o);
SET_LEVEL(p, 0);
if (!writable) {
/* reading - revision number doesn't matter as long as
* it's not greater than the current one. */
SET_REVISION(p, 0);
C[0].n = 0;
} else {
/* writing - */
SET_REVISION(p, latest_revision_number + 1);
C[0].n = base.next_free_block();
}
} else {
/* using a root block stored on disk */
block_to_cursor(C, level, root);
if (REVISION(C[level].p) > revision_number) set_overwritten();
/* although this is unlikely */
}
}
bool
ChertTable::do_open_to_write(bool revision_supplied,
chert_revision_number_t revision_,
bool create_db)
{
LOGCALL(DB, bool, "ChertTable::do_open_to_write", revision_supplied | revision_ | create_db);
if (handle == -2) {
ChertTable::throw_database_closed();
}
handle = io_open_block_wr(name + "DB", create_db);
if (handle < 0) {
// lazy doesn't make a lot of sense with create_db anyway, but ENOENT
// with O_CREAT means a parent directory doesn't exist.
if (lazy && !create_db && errno == ENOENT) {
revision_number = revision_;
RETURN(true);
}
string message(create_db ? "Couldn't create " : "Couldn't open ");
message += name;
message += "DB read/write: ";
errno_to_string(errno, message);
throw Xapian::DatabaseOpeningError(message);
}
if (!basic_open(revision_supplied, revision_)) {
::close(handle);
handle = -1;
if (!revision_supplied) {
throw Xapian::DatabaseOpeningError("Failed to open for writing");
}
/* When the revision is supplied, it's not an exceptional
* case when open failed, so we just return false here.
*/
RETURN(false);
}
writable = true;
for (int j = 0; j <= level; j++) {
C[j].n = BLK_UNUSED;
C[j].p = new byte[block_size];
}
split_p = new byte[block_size];
read_root();
buffer = zeroed_new(block_size);
changed_n = 0;
changed_c = DIR_START;
seq_count = SEQ_START_POINT;
RETURN(true);
}
ChertTable::ChertTable(const char * tablename_, const string & path_,
bool readonly_, int compress_strategy_, bool lazy_)
: tablename(tablename_),
revision_number(0),
item_count(0),
block_size(0),
latest_revision_number(0),
both_bases(false),
base_letter('A'),
faked_root_block(true),
sequential(true),
handle(-1),
level(0),
root(0),
kt(0),
buffer(0),
base(),
name(path_),
seq_count(0),
changed_n(0),
changed_c(0),
max_item_size(0),
Btree_modified(false),
full_compaction(false),
writable(!readonly_),
cursor_created_since_last_modification(false),
cursor_version(0),
split_p(0),
compress_strategy(compress_strategy_),
deflate_zstream(NULL),
inflate_zstream(NULL),
lazy(lazy_),
last_readahead(BLK_UNUSED)
{
LOGCALL_CTOR(DB, "ChertTable", tablename_ | path_ | readonly_ | compress_strategy_ | lazy_);
}
bool
ChertTable::really_empty() const
{
if (handle < 0) {
if (handle == -2) {
ChertTable::throw_database_closed();
}
return true;
}
ChertCursor cur(const_cast<ChertTable*>(this));
cur.find_entry(string());
return !cur.next();
}
void
ChertTable::lazy_alloc_deflate_zstream() const {
if (usual(deflate_zstream)) {
if (usual(deflateReset(deflate_zstream) == Z_OK)) return;
// Try to recover by deleting the stream and starting from scratch.
delete deflate_zstream;
}
deflate_zstream = new z_stream;
deflate_zstream->zalloc = Z_NULL;
deflate_zstream->zfree = Z_NULL;
deflate_zstream->opaque = Z_NULL;
// -15 means raw deflate with 32K LZ77 window (largest)
// memLevel 9 is the highest (8 is default)
int err;
err = deflateInit2(deflate_zstream, Z_DEFAULT_COMPRESSION, Z_DEFLATED,
-15, 9, compress_strategy);
if (rare(err != Z_OK)) {
if (err == Z_MEM_ERROR) {
delete deflate_zstream;
deflate_zstream = 0;
throw std::bad_alloc();
}
string msg = "deflateInit2 failed (";
if (deflate_zstream->msg) {
msg += deflate_zstream->msg;
} else {
msg += str(err);
}
msg += ')';
delete deflate_zstream;
deflate_zstream = 0;
throw Xapian::DatabaseError(msg);
}
}
void
ChertTable::lazy_alloc_inflate_zstream() const {
if (usual(inflate_zstream)) {
if (usual(inflateReset(inflate_zstream) == Z_OK)) return;
// Try to recover by deleting the stream and starting from scratch.
delete inflate_zstream;
}
inflate_zstream = new z_stream;
inflate_zstream->zalloc = Z_NULL;
inflate_zstream->zfree = Z_NULL;
inflate_zstream->opaque = Z_NULL;
inflate_zstream->next_in = Z_NULL;
inflate_zstream->avail_in = 0;
int err = inflateInit2(inflate_zstream, -15);
if (rare(err != Z_OK)) {
if (err == Z_MEM_ERROR) {
delete inflate_zstream;
inflate_zstream = 0;
throw std::bad_alloc();
}
string msg = "inflateInit2 failed (";
if (inflate_zstream->msg) {
msg += inflate_zstream->msg;
} else {
msg += str(err);
}
msg += ')';
delete inflate_zstream;
inflate_zstream = 0;
throw Xapian::DatabaseError(msg);
}
}
bool
ChertTable::exists() const {
LOGCALL(DB, bool, "ChertTable::exists", NO_ARGS);
RETURN(file_exists(name + "DB") &&
(file_exists(name + "baseA") || file_exists(name + "baseB")));
}
void
ChertTable::erase()
{
LOGCALL_VOID(DB, "ChertTable::erase", NO_ARGS);
close();
(void)io_unlink(name + "baseA");
(void)io_unlink(name + "baseB");
(void)io_unlink(name + "DB");
}
void
ChertTable::set_block_size(unsigned int block_size_)
{
LOGCALL_VOID(DB, "ChertTable::set_block_size", block_size_);
// Block size must in the range 2048..BYTE_PAIR_RANGE, and a power of two.
if (block_size_ < 2048 || block_size_ > BYTE_PAIR_RANGE ||
(block_size_ & (block_size_ - 1)) != 0) {
block_size_ = CHERT_DEFAULT_BLOCK_SIZE;
}
block_size = block_size_;
}
void
ChertTable::create_and_open(unsigned int block_size_)
{
LOGCALL_VOID(DB, "ChertTable::create_and_open", block_size_);
if (handle == -2) {
ChertTable::throw_database_closed();
}
Assert(writable);
close();
set_block_size(block_size_);
// FIXME: it would be good to arrange that this works such that there's
// always a valid table in place if you run create_and_open() on an
// existing table.
/* write initial values to files */
/* create the base file */
ChertTable_base base_;
base_.set_revision(revision_number);
base_.set_block_size(block_size);
base_.set_have_fakeroot(true);
base_.set_sequential(true);
// Doing a full sync here would be overly paranoid, as an empty table
// contains no precious data and xapian-check can recreate lost base
// files.
base_.write_to_file(name + "baseA", 'A', string(), -1, NULL);
/* remove the alternative base file, if any */
(void)io_unlink(name + "baseB");
// Any errors are thrown if revision_supplied is false.
(void)do_open_to_write(false, 0, true);
}
ChertTable::~ChertTable() {
LOGCALL_DTOR(DB, "ChertTable");
ChertTable::close();
if (deflate_zstream) {
// Errors which we care about have already been handled, so just ignore
// any which get returned here.
(void) deflateEnd(deflate_zstream);
delete deflate_zstream;
}
if (inflate_zstream) {
// Errors which we care about have already been handled, so just ignore
// any which get returned here.
(void) inflateEnd(inflate_zstream);
delete inflate_zstream;
}
}
void ChertTable::close(bool permanent) {
LOGCALL_VOID(DB, "ChertTable::close", permanent);
if (handle >= 0) {
// If an error occurs here, we just ignore it, since we're just
// trying to free everything.
(void)::close(handle);
handle = -1;
}
if (permanent) {
handle = -2;
// Don't delete the resources in the table, since they may
// still be used to look up cached content.
return;
}
for (int j = level; j >= 0; j--) {
delete [] C[j].p;
C[j].p = 0;
}
delete [] split_p;
split_p = 0;
delete [] kt.get_address();
kt = Item_wr(0);
delete [] buffer;
buffer = 0;
}
void
ChertTable::flush_db()
{
LOGCALL_VOID(DB, "ChertTable::flush_db", NO_ARGS);
Assert(writable);
if (handle < 0) {
if (handle == -2) {
ChertTable::throw_database_closed();
}
return;
}
for (int j = level; j >= 0; j--) {
if (C[j].rewrite) {
write_block(C[j].n, C[j].p);
}
}
if (Btree_modified) {
faked_root_block = false;
}
}
void
ChertTable::commit(chert_revision_number_t revision, int changes_fd,
const string * changes_tail)
{
LOGCALL_VOID(DB, "ChertTable::commit", revision | changes_fd | changes_tail);
Assert(writable);
if (revision <= revision_number) {
throw Xapian::DatabaseError("New revision too low");
}
if (handle < 0) {
if (handle == -2) {
ChertTable::throw_database_closed();
}
latest_revision_number = revision_number = revision;
return;
}
try {
if (faked_root_block) {
/* We will use a dummy bitmap. */
base.clear_bit_map();
}
base.set_revision(revision);
base.set_root(C[level].n);
base.set_level(level);
base.set_item_count(item_count);
base.set_have_fakeroot(faked_root_block);
base.set_sequential(sequential);
base_letter = other_base_letter();
both_bases = true;
latest_revision_number = revision_number = revision;
root = C[level].n;
Btree_modified = false;
for (int i = 0; i < BTREE_CURSOR_LEVELS; ++i) {
C[i].n = BLK_UNUSED;
C[i].c = -1;
C[i].rewrite = false;
}
// Save to "<table>.tmp" and then rename to "<table>.base<letter>" so
// that a reader can't try to read a partially written base file.
string tmp = name;
tmp += "tmp";
string basefile = name;
basefile += "base";
basefile += char(base_letter);
base.write_to_file(tmp, base_letter, tablename, changes_fd, changes_tail);
// Do this as late as possible to allow maximum time for writes to
// happen, and so the calls to io_sync() are adjacent which may be
// more efficient, at least with some Linux kernel versions.
if (changes_tail ? !io_full_sync(handle) : !io_sync(handle)) {
(void)::close(handle);
handle = -1;
(void)unlink(tmp.c_str());
throw Xapian::DatabaseError("Can't commit new revision - failed to flush DB to disk");
}
if (!io_tmp_rename(tmp, basefile)) {
string msg("Couldn't update base file ");
msg += basefile;
throw Xapian::DatabaseError(msg, errno);
}
base.commit();
read_root();
changed_n = 0;
changed_c = DIR_START;
seq_count = SEQ_START_POINT;
} catch (...) {
ChertTable::close();
throw;
}
}
void
ChertTable::write_changed_blocks(int changes_fd)
{
LOGCALL_VOID(DB, "ChertTable::write_changed_blocks", changes_fd);
Assert(changes_fd >= 0);
if (handle < 0) return;
if (faked_root_block) return;
string buf;
pack_uint(buf, 2u); // Indicate the item is a list of blocks
pack_string(buf, tablename);
pack_uint(buf, block_size);
io_write(changes_fd, buf.data(), buf.size());
// Compare the old and new bitmaps to find blocks which have changed, and
// write them to the file descriptor.
uint4 n = 0;
byte * p = new byte[block_size];
try {
base.calculate_last_block();
while (base.find_changed_block(&n)) {
buf.resize(0);
pack_uint(buf, n + 1);
io_write(changes_fd, buf.data(), buf.size());
// Read block n.
read_block(n, p);
// Write block n to the file.
io_write(changes_fd, reinterpret_cast<const char *>(p),
block_size);
++n;
}
delete[] p;
p = 0;
} catch (...) {
delete[] p;
throw;
}
buf.resize(0);
pack_uint(buf, 0u);
io_write(changes_fd, buf.data(), buf.size());
}
void
ChertTable::cancel()
{
LOGCALL_VOID(DB, "ChertTable::cancel", NO_ARGS);
Assert(writable);
if (handle < 0) {
if (handle == -2) {
ChertTable::throw_database_closed();
}
latest_revision_number = revision_number; // FIXME: we can end up reusing a revision if we opened a btree at an older revision, start to modify it, then cancel...
return;
}
// This causes problems: if (!Btree_modified) return;
string err_msg;
if (!base.read(name, base_letter, writable, err_msg)) {
throw Xapian::DatabaseCorruptError(string("Couldn't reread base ") + base_letter);
}
revision_number = base.get_revision();
block_size = base.get_block_size();
root = base.get_root();
level = base.get_level();
//bit_map_size = basep->get_bit_map_size();
item_count = base.get_item_count();
faked_root_block = base.get_have_fakeroot();
sequential = base.get_sequential();
latest_revision_number = revision_number; // FIXME: we can end up reusing a revision if we opened a btree at an older revision, start to modify it, then cancel...
Btree_modified = false;
for (int j = 0; j <= level; j++) {
C[j].n = BLK_UNUSED;
C[j].rewrite = false;
}
read_root();
changed_n = 0;
changed_c = DIR_START;
seq_count = SEQ_START_POINT;
if (cursor_created_since_last_modification) {
cursor_created_since_last_modification = false;
++cursor_version;
}
}
/************ B-tree reading ************/
bool
ChertTable::do_open_to_read(bool revision_supplied, chert_revision_number_t revision_)
{
LOGCALL(DB, bool, "ChertTable::do_open_to_read", revision_supplied | revision_);
if (handle == -2) {
ChertTable::throw_database_closed();
}
handle = io_open_block_rd(name + "DB");
if (handle < 0) {
if (lazy) {
// This table is optional when reading!
revision_number = revision_;
RETURN(true);
}
string message("Couldn't open ");
message += name;
message += "DB to read: ";
errno_to_string(errno, message);
throw Xapian::DatabaseOpeningError(message);
}
if (!basic_open(revision_supplied, revision_)) {
::close(handle);
handle = -1;
if (revision_supplied) {
// The requested revision was not available.
// This could be because the database was modified underneath us, or
// because a base file is missing. Return false, and work out what
// the problem was at a higher level.
RETURN(false);
}
throw Xapian::DatabaseOpeningError("Failed to open table for reading");
}
for (int j = 0; j <= level; j++) {
C[j].n = BLK_UNUSED;
C[j].p = new byte[block_size];
}
read_root();
RETURN(true);
}
void
ChertTable::open()
{
LOGCALL_VOID(DB, "ChertTable::open", NO_ARGS);
LOGLINE(DB, "opening at path " << name);
close();
if (!writable) {
// Any errors are thrown if revision_supplied is false
(void)do_open_to_read(false, 0);
return;
}
// Any errors are thrown if revision_supplied is false.
(void)do_open_to_write(false, 0);
}
bool
ChertTable::open(chert_revision_number_t revision)
{
LOGCALL(DB, bool, "ChertTable::open", revision);
LOGLINE(DB, "opening for particular revision at path " << name);
close();
if (!writable) {
if (do_open_to_read(true, revision)) {
AssertEq(revision_number, revision);
RETURN(true);
} else {
close();
RETURN(false);
}
}
if (!do_open_to_write(true, revision)) {
// Can't open at the requested revision.
close();
RETURN(false);
}
AssertEq(revision_number, revision);
RETURN(true);
}
bool
ChertTable::prev_for_sequential(Cursor * C_, int /*dummy*/) const
{
LOGCALL(DB, bool, "ChertTable::prev_for_sequential", Literal("C_") | Literal("/*dummy*/"));
int c = C_[0].c;
AssertRel(DIR_START,<=,c);
AssertRel(c,<,DIR_END(C_[0].p));
if (c == DIR_START) {
byte * p = C_[0].p;
Assert(p);
uint4 n = C_[0].n;
while (true) {
if (n == 0) RETURN(false);
n--;
if (writable) {
if (n == C[0].n) {
// Block is a leaf block in the built-in cursor
// (potentially in modified form).
memcpy(p, C[0].p, block_size);
} else {
// Blocks in the built-in cursor may not have been written
// to disk yet, so we have to check that the block number
// isn't in the built-in cursor or we'll read an
// uninitialised block (for which GET_LEVEL(p) will
// probably return 0).
int j;
for (j = 1; j <= level; ++j) {
if (n == C[j].n) break;
}
if (j <= level) continue;
// Block isn't in the built-in cursor, so the form on disk
// is valid, so read it to check if it's the next level 0
// block.
read_block(n, p);
}
} else {
read_block(n, p);
}
if (writable) AssertEq(revision_number, latest_revision_number);
if (REVISION(p) > revision_number + writable) {
set_overwritten();
RETURN(false);
}
if (GET_LEVEL(p) == 0) break;
}
c = DIR_END(p);
C_[0].n = n;
AssertRel(DIR_START,<,c);
}
c -= D2;
C_[0].c = c;
RETURN(true);
}
bool
ChertTable::next_for_sequential(Cursor * C_, int /*dummy*/) const
{
LOGCALL(DB, bool, "ChertTable::next_for_sequential", Literal("C_") | Literal("/*dummy*/"));
byte * p = C_[0].p;
Assert(p);
int c = C_[0].c;
AssertRel(c,<,DIR_END(p));
c += D2;
Assert((unsigned)c < block_size);
if (c == DIR_END(p)) {
uint4 n = C_[0].n;
while (true) {
n++;
if (n > base.get_last_block()) RETURN(false);
if (writable) {
if (n == C[0].n) {
// Block is a leaf block in the built-in cursor
// (potentially in modified form).
memcpy(p, C[0].p, block_size);
} else {
// Blocks in the built-in cursor may not have been written
// to disk yet, so we have to check that the block number
// isn't in the built-in cursor or we'll read an
// uninitialised block (for which GET_LEVEL(p) will
// probably return 0).
int j;
for (j = 1; j <= level; ++j) {
if (n == C[j].n) break;
}
if (j <= level) continue;
// Block isn't in the built-in cursor, so the form on disk
// is valid, so read it to check if it's the next level 0
// block.
read_block(n, p);
}
} else {
read_block(n, p);
}
if (writable) AssertEq(revision_number, latest_revision_number);
if (REVISION(p) > revision_number + writable) {
set_overwritten();
RETURN(false);
}
if (GET_LEVEL(p) == 0) break;
}
c = DIR_START;
C_[0].n = n;
}
C_[0].c = c;
RETURN(true);
}
bool
ChertTable::prev_default(Cursor * C_, int j) const
{
LOGCALL(DB, bool, "ChertTable::prev_default", Literal("C_") | j);
byte * p = C_[j].p;
int c = C_[j].c;
AssertRel(DIR_START,<=,c);
AssertRel(c,<,DIR_END(p));
AssertRel((unsigned)DIR_END(p),<=,block_size);
if (c == DIR_START) {
if (j == level) RETURN(false);
if (!prev_default(C_, j + 1)) RETURN(false);
c = DIR_END(p);
AssertRel(DIR_START,<,c);
}
c -= D2;
C_[j].c = c;
if (j > 0) {
block_to_cursor(C_, j - 1, Item(p, c).block_given_by());
}
RETURN(true);
}
bool
ChertTable::next_default(Cursor * C_, int j) const
{
LOGCALL(DB, bool, "ChertTable::next_default", Literal("C_") | j);
byte * p = C_[j].p;
int c = C_[j].c;
AssertRel(c,<,DIR_END(p));
AssertRel((unsigned)DIR_END(p),<=,block_size);
c += D2;
if (j > 0) {
AssertRel(DIR_START,<,c);
} else {
AssertRel(DIR_START,<=,c);
}
// Sometimes c can be DIR_END(p) + 2 here it appears...
if (c >= DIR_END(p)) {
if (j == level) RETURN(false);
if (!next_default(C_, j + 1)) RETURN(false);
c = DIR_START;
}
C_[j].c = c;
if (j > 0) {
block_to_cursor(C_, j - 1, Item(p, c).block_given_by());
#ifdef BTREE_DEBUG_FULL
printf("Block in ChertTable:next_default");
report_block_full(j - 1, C_[j - 1].n, C_[j - 1].p);
#endif /* BTREE_DEBUG_FULL */
}
RETURN(true);
}
void
ChertTable::throw_database_closed()
{
throw Xapian::DatabaseError("Database has been closed");
}
/** Compares this key with key2.
The result is true if this key precedes key2. The comparison is for byte
sequence collating order, taking lengths into account. So if the keys are
made up of lower case ASCII letters we get alphabetical ordering.
Now remember that items are added into the B-tree in fastest time
when they are preordered by their keys. This is therefore the piece
of code that needs to be followed to arrange for the preordering.
This is complicated by the fact that keys have two parts - a value
and then a count. We first compare the values, and only if they
are equal do we compare the counts.
*/
bool Key::operator<(Key key2) const
{
LOGCALL(DB, bool, "Key::operator<", static_cast<const void*>(key2.p));
int key1_len = length();
int key2_len = key2.length();
if (key1_len == key2_len) {
// The keys are the same length, so we can compare the counts
// in the same operation since they're stored as 2 byte
// bigendian numbers.
RETURN(memcmp(p + K1, key2.p + K1, key1_len + C2) < 0);
}
int k_smaller = (key2_len < key1_len ? key2_len : key1_len);
// Compare the common part of the keys
int diff = memcmp(p + K1, key2.p + K1, k_smaller);
if (diff != 0) RETURN(diff < 0);
// We dealt with the "same length" case above so we never need to check
// the count here.
RETURN(key1_len < key2_len);
}
bool Key::operator==(Key key2) const
{
LOGCALL(DB, bool, "Key::operator==", static_cast<const void*>(key2.p));
int key1_len = length();
if (key1_len != key2.length()) RETURN(false);
// The keys are the same length, so we can compare the counts
// in the same operation since they're stored as 2 byte
// bigendian numbers.
RETURN(memcmp(p + K1, key2.p + K1, key1_len + C2) == 0);
}
|