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
|
package DBM::Deep::09830;
##
# DBM::Deep
#
# Description:
# Multi-level database module for storing hash trees, arrays and simple
# key/value pairs into FTP-able, cross-platform binary database files.
#
# Type `perldoc DBM::Deep` for complete documentation.
#
# Usage Examples:
# my %db;
# tie %db, 'DBM::Deep', 'my_database.db'; # standard tie() method
#
# my $db = new DBM::Deep( 'my_database.db' ); # preferred OO method
#
# $db->{my_scalar} = 'hello world';
# $db->{my_hash} = { larry => 'genius', hashes => 'fast' };
# $db->{my_array} = [ 1, 2, 3, time() ];
# $db->{my_complex} = [ 'hello', { perl => 'rules' }, 42, 99 ];
# push @{$db->{my_array}}, 'another value';
# my @key_list = keys %{$db->{my_hash}};
# print "This module " . $db->{my_complex}->[1]->{perl} . "!\n";
#
# Copyright:
# (c) 2002-2006 Joseph Huckaby. All Rights Reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
##
use strict;
use Fcntl qw( :DEFAULT :flock :seek );
use Digest::MD5 ();
use Scalar::Util ();
use vars qw( $VERSION );
$VERSION = q(0.983);
##
# Set to 4 and 'N' for 32-bit offset tags (default). Theoretical limit of 4 GB per file.
# (Perl must be compiled with largefile support for files > 2 GB)
#
# Set to 8 and 'Q' for 64-bit offsets. Theoretical limit of 16 XB per file.
# (Perl must be compiled with largefile and 64-bit long support)
##
#my $LONG_SIZE = 4;
#my $LONG_PACK = 'N';
##
# Set to 4 and 'N' for 32-bit data length prefixes. Limit of 4 GB for each key/value.
# Upgrading this is possible (see above) but probably not necessary. If you need
# more than 4 GB for a single key or value, this module is really not for you :-)
##
#my $DATA_LENGTH_SIZE = 4;
#my $DATA_LENGTH_PACK = 'N';
our ($LONG_SIZE, $LONG_PACK, $DATA_LENGTH_SIZE, $DATA_LENGTH_PACK);
##
# Maximum number of buckets per list before another level of indexing is done.
# Increase this value for slightly greater speed, but larger database files.
# DO NOT decrease this value below 16, due to risk of recursive reindex overrun.
##
my $MAX_BUCKETS = 16;
##
# Better not adjust anything below here, unless you're me :-)
##
##
# Setup digest function for keys
##
our ($DIGEST_FUNC, $HASH_SIZE);
#my $DIGEST_FUNC = \&Digest::MD5::md5;
##
# Precalculate index and bucket sizes based on values above.
##
#my $HASH_SIZE = 16;
my ($INDEX_SIZE, $BUCKET_SIZE, $BUCKET_LIST_SIZE);
set_digest();
#set_pack();
#_precalc_sizes();
##
# Setup file and tag signatures. These should never change.
##
sub SIG_FILE () { 'DPDB' }
sub SIG_HASH () { 'H' }
sub SIG_ARRAY () { 'A' }
sub SIG_NULL () { 'N' }
sub SIG_DATA () { 'D' }
sub SIG_INDEX () { 'I' }
sub SIG_BLIST () { 'B' }
sub SIG_SIZE () { 1 }
##
# Setup constants for users to pass to new()
##
sub TYPE_HASH () { SIG_HASH }
sub TYPE_ARRAY () { SIG_ARRAY }
sub _get_args {
my $proto = shift;
my $args;
if (scalar(@_) > 1) {
if ( @_ % 2 ) {
$proto->_throw_error( "Odd number of parameters to " . (caller(1))[2] );
}
$args = {@_};
}
elsif ( ref $_[0] ) {
unless ( eval { local $SIG{'__DIE__'}; %{$_[0]} || 1 } ) {
$proto->_throw_error( "Not a hashref in args to " . (caller(1))[2] );
}
$args = $_[0];
}
else {
$args = { file => shift };
}
return $args;
}
sub new {
##
# Class constructor method for Perl OO interface.
# Calls tie() and returns blessed reference to tied hash or array,
# providing a hybrid OO/tie interface.
##
my $class = shift;
my $args = $class->_get_args( @_ );
##
# Check if we want a tied hash or array.
##
my $self;
if (defined($args->{type}) && $args->{type} eq TYPE_ARRAY) {
$class = 'DBM::Deep::09830::Array';
#require DBM::Deep::09830::Array;
tie @$self, $class, %$args;
}
else {
$class = 'DBM::Deep::09830::Hash';
#require DBM::Deep::09830::Hash;
tie %$self, $class, %$args;
}
return bless $self, $class;
}
sub _init {
##
# Setup $self and bless into this class.
##
my $class = shift;
my $args = shift;
# These are the defaults to be optionally overridden below
my $self = bless {
type => TYPE_HASH,
base_offset => length(SIG_FILE),
}, $class;
foreach my $param ( keys %$self ) {
next unless exists $args->{$param};
$self->{$param} = delete $args->{$param}
}
# locking implicitly enables autoflush
if ($args->{locking}) { $args->{autoflush} = 1; }
$self->{root} = exists $args->{root}
? $args->{root}
: DBM::Deep::09830::_::Root->new( $args );
if (!defined($self->_fh)) { $self->_open(); }
return $self;
}
sub TIEHASH {
shift;
#require DBM::Deep::09830::Hash;
return DBM::Deep::09830::Hash->TIEHASH( @_ );
}
sub TIEARRAY {
shift;
#require DBM::Deep::09830::Array;
return DBM::Deep::09830::Array->TIEARRAY( @_ );
}
#XXX Unneeded now ...
#sub DESTROY {
#}
sub _open {
##
# Open a fh to the database, create if nonexistent.
# Make sure file signature matches DBM::Deep spec.
##
my $self = $_[0]->_get_self;
local($/,$\);
if (defined($self->_fh)) { $self->_close(); }
my $flags = O_RDWR | O_CREAT | O_BINARY;
my $fh;
sysopen( $fh, $self->_root->{file}, $flags )
or $self->_throw_error( "Cannot sysopen file: " . $self->_root->{file} . ": $!" );
$self->_root->{fh} = $fh;
if ($self->_root->{autoflush}) {
my $old = select $fh;
$|=1;
select $old;
}
seek($fh, 0 + $self->_root->{file_offset}, SEEK_SET);
my $signature;
my $bytes_read = read( $fh, $signature, length(SIG_FILE));
##
# File is empty -- write signature and master index
##
if (!$bytes_read) {
seek($fh, 0 + $self->_root->{file_offset}, SEEK_SET);
print( $fh SIG_FILE);
$self->_create_tag($self->_base_offset, $self->_type, chr(0) x $INDEX_SIZE);
my $plain_key = "[base]";
print( $fh pack($DATA_LENGTH_PACK, length($plain_key)) . $plain_key );
# Flush the filehandle
my $old_fh = select $fh;
my $old_af = $|; $| = 1; $| = $old_af;
select $old_fh;
my @stats = stat($fh);
$self->_root->{inode} = $stats[1];
$self->_root->{end} = $stats[7];
return 1;
}
##
# Check signature was valid
##
unless ($signature eq SIG_FILE) {
$self->_close();
return $self->_throw_error("Signature not found -- file is not a Deep DB");
}
my @stats = stat($fh);
$self->_root->{inode} = $stats[1];
$self->_root->{end} = $stats[7];
##
# Get our type from master index signature
##
my $tag = $self->_load_tag($self->_base_offset);
#XXX We probably also want to store the hash algorithm name and not assume anything
#XXX The cool thing would be to allow a different hashing algorithm at every level
if (!$tag) {
return $self->_throw_error("Corrupted file, no master index record");
}
if ($self->{type} ne $tag->{signature}) {
return $self->_throw_error("File type mismatch");
}
return 1;
}
sub _close {
##
# Close database fh
##
my $self = $_[0]->_get_self;
close $self->_root->{fh} if $self->_root->{fh};
$self->_root->{fh} = undef;
}
sub _create_tag {
##
# Given offset, signature and content, create tag and write to disk
##
my ($self, $offset, $sig, $content) = @_;
my $size = length($content);
local($/,$\);
my $fh = $self->_fh;
seek($fh, $offset + $self->_root->{file_offset}, SEEK_SET);
print( $fh $sig . pack($DATA_LENGTH_PACK, $size) . $content );
if ($offset == $self->_root->{end}) {
$self->_root->{end} += SIG_SIZE + $DATA_LENGTH_SIZE + $size;
}
return {
signature => $sig,
size => $size,
offset => $offset + SIG_SIZE + $DATA_LENGTH_SIZE,
content => $content
};
}
sub _load_tag {
##
# Given offset, load single tag and return signature, size and data
##
my $self = shift;
my $offset = shift;
local($/,$\);
my $fh = $self->_fh;
seek($fh, $offset + $self->_root->{file_offset}, SEEK_SET);
if (eof $fh) { return undef; }
my $b;
read( $fh, $b, SIG_SIZE + $DATA_LENGTH_SIZE );
my ($sig, $size) = unpack( "A $DATA_LENGTH_PACK", $b );
my $buffer;
read( $fh, $buffer, $size);
return {
signature => $sig,
size => $size,
offset => $offset + SIG_SIZE + $DATA_LENGTH_SIZE,
content => $buffer
};
}
sub _index_lookup {
##
# Given index tag, lookup single entry in index and return .
##
my $self = shift;
my ($tag, $index) = @_;
my $location = unpack($LONG_PACK, substr($tag->{content}, $index * $LONG_SIZE, $LONG_SIZE) );
if (!$location) { return; }
return $self->_load_tag( $location );
}
sub _add_bucket {
##
# Adds one key/value pair to bucket list, given offset, MD5 digest of key,
# plain (undigested) key and value.
##
my $self = shift;
my ($tag, $md5, $plain_key, $value) = @_;
my $keys = $tag->{content};
my $location = 0;
my $result = 2;
local($/,$\);
# This verifies that only supported values will be stored.
{
my $r = Scalar::Util::reftype( $value );
last if !defined $r;
last if $r eq 'HASH';
last if $r eq 'ARRAY';
$self->_throw_error(
"Storage of variables of type '$r' is not supported."
);
}
my $root = $self->_root;
my $is_dbm_deep = eval { local $SIG{'__DIE__'}; $value->isa( 'DBM::Deep::09830' ) };
my $internal_ref = $is_dbm_deep && ($value->_root eq $root);
my $fh = $self->_fh;
##
# Iterate through buckets, seeing if this is a new entry or a replace.
##
for (my $i=0; $i<$MAX_BUCKETS; $i++) {
my $subloc = unpack($LONG_PACK, substr($keys, ($i * $BUCKET_SIZE) + $HASH_SIZE, $LONG_SIZE));
if (!$subloc) {
##
# Found empty bucket (end of list). Populate and exit loop.
##
$result = 2;
$location = $internal_ref
? $value->_base_offset
: $root->{end};
seek($fh, $tag->{offset} + ($i * $BUCKET_SIZE) + $root->{file_offset}, SEEK_SET);
print( $fh $md5 . pack($LONG_PACK, $location) );
last;
}
my $key = substr($keys, $i * $BUCKET_SIZE, $HASH_SIZE);
if ($md5 eq $key) {
##
# Found existing bucket with same key. Replace with new value.
##
$result = 1;
if ($internal_ref) {
$location = $value->_base_offset;
seek($fh, $tag->{offset} + ($i * $BUCKET_SIZE) + $root->{file_offset}, SEEK_SET);
print( $fh $md5 . pack($LONG_PACK, $location) );
return $result;
}
seek($fh, $subloc + SIG_SIZE + $root->{file_offset}, SEEK_SET);
my $size;
read( $fh, $size, $DATA_LENGTH_SIZE); $size = unpack($DATA_LENGTH_PACK, $size);
##
# If value is a hash, array, or raw value with equal or less size, we can
# reuse the same content area of the database. Otherwise, we have to create
# a new content area at the EOF.
##
my $actual_length;
my $r = Scalar::Util::reftype( $value ) || '';
if ( $r eq 'HASH' || $r eq 'ARRAY' ) {
$actual_length = $INDEX_SIZE;
# if autobless is enabled, must also take into consideration
# the class name, as it is stored along with key/value.
if ( $root->{autobless} ) {
my $value_class = Scalar::Util::blessed($value);
if ( defined $value_class && !$value->isa('DBM::Deep::09830') ) {
$actual_length += length($value_class);
}
}
}
else { $actual_length = length($value); }
if ($actual_length <= ($size || 0)) {
$location = $subloc;
}
else {
$location = $root->{end};
seek($fh, $tag->{offset} + ($i * $BUCKET_SIZE) + $HASH_SIZE + $root->{file_offset}, SEEK_SET);
print( $fh pack($LONG_PACK, $location) );
}
last;
}
}
##
# If this is an internal reference, return now.
# No need to write value or plain key
##
if ($internal_ref) {
return $result;
}
##
# If bucket didn't fit into list, split into a new index level
##
if (!$location) {
seek($fh, $tag->{ref_loc} + $root->{file_offset}, SEEK_SET);
print( $fh pack($LONG_PACK, $root->{end}) );
my $index_tag = $self->_create_tag($root->{end}, SIG_INDEX, chr(0) x $INDEX_SIZE);
my @offsets = ();
$keys .= $md5 . pack($LONG_PACK, 0);
for (my $i=0; $i<=$MAX_BUCKETS; $i++) {
my $key = substr($keys, $i * $BUCKET_SIZE, $HASH_SIZE);
if ($key) {
my $old_subloc = unpack($LONG_PACK, substr($keys, ($i * $BUCKET_SIZE) + $HASH_SIZE, $LONG_SIZE));
my $num = ord(substr($key, $tag->{ch} + 1, 1));
if ($offsets[$num]) {
my $offset = $offsets[$num] + SIG_SIZE + $DATA_LENGTH_SIZE;
seek($fh, $offset + $root->{file_offset}, SEEK_SET);
my $subkeys;
read( $fh, $subkeys, $BUCKET_LIST_SIZE);
for (my $k=0; $k<$MAX_BUCKETS; $k++) {
my $subloc = unpack($LONG_PACK, substr($subkeys, ($k * $BUCKET_SIZE) + $HASH_SIZE, $LONG_SIZE));
if (!$subloc) {
seek($fh, $offset + ($k * $BUCKET_SIZE) + $root->{file_offset}, SEEK_SET);
print( $fh $key . pack($LONG_PACK, $old_subloc || $root->{end}) );
last;
}
} # k loop
}
else {
$offsets[$num] = $root->{end};
seek($fh, $index_tag->{offset} + ($num * $LONG_SIZE) + $root->{file_offset}, SEEK_SET);
print( $fh pack($LONG_PACK, $root->{end}) );
my $blist_tag = $self->_create_tag($root->{end}, SIG_BLIST, chr(0) x $BUCKET_LIST_SIZE);
seek($fh, $blist_tag->{offset} + $root->{file_offset}, SEEK_SET);
print( $fh $key . pack($LONG_PACK, $old_subloc || $root->{end}) );
}
} # key is real
} # i loop
$location ||= $root->{end};
} # re-index bucket list
##
# Seek to content area and store signature, value and plaintext key
##
if ($location) {
my $content_length;
seek($fh, $location + $root->{file_offset}, SEEK_SET);
##
# Write signature based on content type, set content length and write actual value.
##
my $r = Scalar::Util::reftype($value) || '';
if ($r eq 'HASH') {
if ( !$internal_ref && tied %{$value} ) {
return $self->_throw_error("Cannot store a tied value");
}
print( $fh TYPE_HASH );
print( $fh pack($DATA_LENGTH_PACK, $INDEX_SIZE) . chr(0) x $INDEX_SIZE );
$content_length = $INDEX_SIZE;
}
elsif ($r eq 'ARRAY') {
if ( !$internal_ref && tied @{$value} ) {
return $self->_throw_error("Cannot store a tied value");
}
print( $fh TYPE_ARRAY );
print( $fh pack($DATA_LENGTH_PACK, $INDEX_SIZE) . chr(0) x $INDEX_SIZE );
$content_length = $INDEX_SIZE;
}
elsif (!defined($value)) {
print( $fh SIG_NULL );
print( $fh pack($DATA_LENGTH_PACK, 0) );
$content_length = 0;
}
else {
print( $fh SIG_DATA );
print( $fh pack($DATA_LENGTH_PACK, length($value)) . $value );
$content_length = length($value);
}
##
# Plain key is stored AFTER value, as keys are typically fetched less often.
##
print( $fh pack($DATA_LENGTH_PACK, length($plain_key)) . $plain_key );
##
# If value is blessed, preserve class name
##
if ( $root->{autobless} ) {
my $value_class = Scalar::Util::blessed($value);
if ( defined $value_class && $value_class ne 'DBM::Deep::09830' ) {
##
# Blessed ref -- will restore later
##
print( $fh chr(1) );
print( $fh pack($DATA_LENGTH_PACK, length($value_class)) . $value_class );
$content_length += 1;
$content_length += $DATA_LENGTH_SIZE + length($value_class);
}
else {
print( $fh chr(0) );
$content_length += 1;
}
}
##
# If this is a new content area, advance EOF counter
##
if ($location == $root->{end}) {
$root->{end} += SIG_SIZE;
$root->{end} += $DATA_LENGTH_SIZE + $content_length;
$root->{end} += $DATA_LENGTH_SIZE + length($plain_key);
}
##
# If content is a hash or array, create new child DBM::Deep object and
# pass each key or element to it.
##
if ($r eq 'HASH') {
my %x = %$value;
tie %$value, 'DBM::Deep::09830', {
type => TYPE_HASH,
base_offset => $location,
root => $root,
};
%$value = %x;
}
elsif ($r eq 'ARRAY') {
my @x = @$value;
tie @$value, 'DBM::Deep::09830', {
type => TYPE_ARRAY,
base_offset => $location,
root => $root,
};
@$value = @x;
}
return $result;
}
return $self->_throw_error("Fatal error: indexing failed -- possibly due to corruption in file");
}
sub _get_bucket_value {
##
# Fetch single value given tag and MD5 digested key.
##
my $self = shift;
my ($tag, $md5) = @_;
my $keys = $tag->{content};
local($/,$\);
my $fh = $self->_fh;
##
# Iterate through buckets, looking for a key match
##
BUCKET:
for (my $i=0; $i<$MAX_BUCKETS; $i++) {
my $key = substr($keys, $i * $BUCKET_SIZE, $HASH_SIZE);
my $subloc = unpack($LONG_PACK, substr($keys, ($i * $BUCKET_SIZE) + $HASH_SIZE, $LONG_SIZE));
if (!$subloc) {
##
# Hit end of list, no match
##
return;
}
if ( $md5 ne $key ) {
next BUCKET;
}
##
# Found match -- seek to offset and read signature
##
my $signature;
seek($fh, $subloc + $self->_root->{file_offset}, SEEK_SET);
read( $fh, $signature, SIG_SIZE);
##
# If value is a hash or array, return new DBM::Deep object with correct offset
##
if (($signature eq TYPE_HASH) || ($signature eq TYPE_ARRAY)) {
my $obj = DBM::Deep::09830->new(
type => $signature,
base_offset => $subloc,
root => $self->_root
);
if ($self->_root->{autobless}) {
##
# Skip over value and plain key to see if object needs
# to be re-blessed
##
seek($fh, $DATA_LENGTH_SIZE + $INDEX_SIZE, SEEK_CUR);
my $size;
read( $fh, $size, $DATA_LENGTH_SIZE); $size = unpack($DATA_LENGTH_PACK, $size);
if ($size) { seek($fh, $size, SEEK_CUR); }
my $bless_bit;
read( $fh, $bless_bit, 1);
if (ord($bless_bit)) {
##
# Yes, object needs to be re-blessed
##
my $class_name;
read( $fh, $size, $DATA_LENGTH_SIZE); $size = unpack($DATA_LENGTH_PACK, $size);
if ($size) { read( $fh, $class_name, $size); }
if ($class_name) { $obj = bless( $obj, $class_name ); }
}
}
return $obj;
}
##
# Otherwise return actual value
##
elsif ($signature eq SIG_DATA) {
my $size;
my $value = '';
read( $fh, $size, $DATA_LENGTH_SIZE); $size = unpack($DATA_LENGTH_PACK, $size);
if ($size) { read( $fh, $value, $size); }
return $value;
}
##
# Key exists, but content is null
##
else { return; }
} # i loop
return;
}
sub _delete_bucket {
##
# Delete single key/value pair given tag and MD5 digested key.
##
my $self = shift;
my ($tag, $md5) = @_;
my $keys = $tag->{content};
local($/,$\);
my $fh = $self->_fh;
##
# Iterate through buckets, looking for a key match
##
BUCKET:
for (my $i=0; $i<$MAX_BUCKETS; $i++) {
my $key = substr($keys, $i * $BUCKET_SIZE, $HASH_SIZE);
my $subloc = unpack($LONG_PACK, substr($keys, ($i * $BUCKET_SIZE) + $HASH_SIZE, $LONG_SIZE));
if (!$subloc) {
##
# Hit end of list, no match
##
return;
}
if ( $md5 ne $key ) {
next BUCKET;
}
##
# Matched key -- delete bucket and return
##
seek($fh, $tag->{offset} + ($i * $BUCKET_SIZE) + $self->_root->{file_offset}, SEEK_SET);
print( $fh substr($keys, ($i+1) * $BUCKET_SIZE ) );
print( $fh chr(0) x $BUCKET_SIZE );
return 1;
} # i loop
return;
}
sub _bucket_exists {
##
# Check existence of single key given tag and MD5 digested key.
##
my $self = shift;
my ($tag, $md5) = @_;
my $keys = $tag->{content};
##
# Iterate through buckets, looking for a key match
##
BUCKET:
for (my $i=0; $i<$MAX_BUCKETS; $i++) {
my $key = substr($keys, $i * $BUCKET_SIZE, $HASH_SIZE);
my $subloc = unpack($LONG_PACK, substr($keys, ($i * $BUCKET_SIZE) + $HASH_SIZE, $LONG_SIZE));
if (!$subloc) {
##
# Hit end of list, no match
##
return;
}
if ( $md5 ne $key ) {
next BUCKET;
}
##
# Matched key -- return true
##
return 1;
} # i loop
return;
}
sub _find_bucket_list {
##
# Locate offset for bucket list, given digested key
##
my $self = shift;
my $md5 = shift;
##
# Locate offset for bucket list using digest index system
##
my $ch = 0;
my $tag = $self->_load_tag($self->_base_offset);
if (!$tag) { return; }
while ($tag->{signature} ne SIG_BLIST) {
$tag = $self->_index_lookup($tag, ord(substr($md5, $ch, 1)));
if (!$tag) { return; }
$ch++;
}
return $tag;
}
sub _traverse_index {
##
# Scan index and recursively step into deeper levels, looking for next key.
##
my ($self, $offset, $ch, $force_return_next) = @_;
$force_return_next = undef unless $force_return_next;
local($/,$\);
my $tag = $self->_load_tag( $offset );
my $fh = $self->_fh;
if ($tag->{signature} ne SIG_BLIST) {
my $content = $tag->{content};
my $start;
if ($self->{return_next}) { $start = 0; }
else { $start = ord(substr($self->{prev_md5}, $ch, 1)); }
for (my $index = $start; $index < 256; $index++) {
my $subloc = unpack($LONG_PACK, substr($content, $index * $LONG_SIZE, $LONG_SIZE) );
if ($subloc) {
my $result = $self->_traverse_index( $subloc, $ch + 1, $force_return_next );
if (defined($result)) { return $result; }
}
} # index loop
$self->{return_next} = 1;
} # tag is an index
elsif ($tag->{signature} eq SIG_BLIST) {
my $keys = $tag->{content};
if ($force_return_next) { $self->{return_next} = 1; }
##
# Iterate through buckets, looking for a key match
##
for (my $i=0; $i<$MAX_BUCKETS; $i++) {
my $key = substr($keys, $i * $BUCKET_SIZE, $HASH_SIZE);
my $subloc = unpack($LONG_PACK, substr($keys, ($i * $BUCKET_SIZE) + $HASH_SIZE, $LONG_SIZE));
if (!$subloc) {
##
# End of bucket list -- return to outer loop
##
$self->{return_next} = 1;
last;
}
elsif ($key eq $self->{prev_md5}) {
##
# Located previous key -- return next one found
##
$self->{return_next} = 1;
next;
}
elsif ($self->{return_next}) {
##
# Seek to bucket location and skip over signature
##
seek($fh, $subloc + SIG_SIZE + $self->_root->{file_offset}, SEEK_SET);
##
# Skip over value to get to plain key
##
my $size;
read( $fh, $size, $DATA_LENGTH_SIZE); $size = unpack($DATA_LENGTH_PACK, $size);
if ($size) { seek($fh, $size, SEEK_CUR); }
##
# Read in plain key and return as scalar
##
my $plain_key;
read( $fh, $size, $DATA_LENGTH_SIZE); $size = unpack($DATA_LENGTH_PACK, $size);
if ($size) { read( $fh, $plain_key, $size); }
return $plain_key;
}
} # bucket loop
$self->{return_next} = 1;
} # tag is a bucket list
return;
}
sub _get_next_key {
##
# Locate next key, given digested previous one
##
my $self = $_[0]->_get_self;
$self->{prev_md5} = $_[1] ? $_[1] : undef;
$self->{return_next} = 0;
##
# If the previous key was not specifed, start at the top and
# return the first one found.
##
if (!$self->{prev_md5}) {
$self->{prev_md5} = chr(0) x $HASH_SIZE;
$self->{return_next} = 1;
}
return $self->_traverse_index( $self->_base_offset, 0 );
}
sub lock {
##
# If db locking is set, flock() the db file. If called multiple
# times before unlock(), then the same number of unlocks() must
# be called before the lock is released.
##
my $self = $_[0]->_get_self;
my $type = $_[1];
$type = LOCK_EX unless defined $type;
if (!defined($self->_fh)) { return; }
if ($self->_root->{locking}) {
if (!$self->_root->{locked}) {
flock($self->_fh, $type);
# refresh end counter in case file has changed size
my @stats = stat($self->_root->{file});
$self->_root->{end} = $stats[7];
# double-check file inode, in case another process
# has optimize()d our file while we were waiting.
if ($stats[1] != $self->_root->{inode}) {
$self->_open(); # re-open
flock($self->_fh, $type); # re-lock
$self->_root->{end} = (stat($self->_fh))[7]; # re-end
}
}
$self->_root->{locked}++;
return 1;
}
return;
}
sub unlock {
##
# If db locking is set, unlock the db file. See note in lock()
# regarding calling lock() multiple times.
##
my $self = $_[0]->_get_self;
if (!defined($self->_fh)) { return; }
if ($self->_root->{locking} && $self->_root->{locked} > 0) {
$self->_root->{locked}--;
if (!$self->_root->{locked}) { flock($self->_fh, LOCK_UN); }
return 1;
}
return;
}
sub _copy_value {
my $self = shift->_get_self;
my ($spot, $value) = @_;
if ( !ref $value ) {
${$spot} = $value;
}
elsif ( eval { local $SIG{__DIE__}; $value->isa( 'DBM::Deep::09830' ) } ) {
my $type = $value->_type;
${$spot} = $type eq TYPE_HASH ? {} : [];
$value->_copy_node( ${$spot} );
}
else {
my $r = Scalar::Util::reftype( $value );
my $c = Scalar::Util::blessed( $value );
if ( $r eq 'ARRAY' ) {
${$spot} = [ @{$value} ];
}
else {
${$spot} = { %{$value} };
}
${$spot} = bless ${$spot}, $c
if defined $c;
}
return 1;
}
sub _copy_node {
##
# Copy single level of keys or elements to new DB handle.
# Recurse for nested structures
##
my $self = shift->_get_self;
my ($db_temp) = @_;
if ($self->_type eq TYPE_HASH) {
my $key = $self->first_key();
while ($key) {
my $value = $self->get($key);
$self->_copy_value( \$db_temp->{$key}, $value );
$key = $self->next_key($key);
}
}
else {
my $length = $self->length();
for (my $index = 0; $index < $length; $index++) {
my $value = $self->get($index);
$self->_copy_value( \$db_temp->[$index], $value );
}
}
return 1;
}
sub export {
##
# Recursively export into standard Perl hashes and arrays.
##
my $self = $_[0]->_get_self;
my $temp;
if ($self->_type eq TYPE_HASH) { $temp = {}; }
elsif ($self->_type eq TYPE_ARRAY) { $temp = []; }
$self->lock();
$self->_copy_node( $temp );
$self->unlock();
return $temp;
}
sub import {
##
# Recursively import Perl hash/array structure
##
#XXX This use of ref() seems to be ok
if (!ref($_[0])) { return; } # Perl calls import() on use -- ignore
my $self = $_[0]->_get_self;
my $struct = $_[1];
#XXX This use of ref() seems to be ok
if (!ref($struct)) {
##
# struct is not a reference, so just import based on our type
##
shift @_;
if ($self->_type eq TYPE_HASH) { $struct = {@_}; }
elsif ($self->_type eq TYPE_ARRAY) { $struct = [@_]; }
}
my $r = Scalar::Util::reftype($struct) || '';
if ($r eq "HASH" && $self->_type eq TYPE_HASH) {
foreach my $key (keys %$struct) { $self->put($key, $struct->{$key}); }
}
elsif ($r eq "ARRAY" && $self->_type eq TYPE_ARRAY) {
$self->push( @$struct );
}
else {
return $self->_throw_error("Cannot import: type mismatch");
}
return 1;
}
sub optimize {
##
# Rebuild entire database into new file, then move
# it back on top of original.
##
my $self = $_[0]->_get_self;
#XXX Need to create a new test for this
# if ($self->_root->{links} > 1) {
# return $self->_throw_error("Cannot optimize: reference count is greater than 1");
# }
my $db_temp = DBM::Deep::09830->new(
file => $self->_root->{file} . '.tmp',
type => $self->_type
);
if (!$db_temp) {
return $self->_throw_error("Cannot optimize: failed to open temp file: $!");
}
$self->lock();
$self->_copy_node( $db_temp );
undef $db_temp;
##
# Attempt to copy user, group and permissions over to new file
##
my @stats = stat($self->_fh);
my $perms = $stats[2] & 07777;
my $uid = $stats[4];
my $gid = $stats[5];
chown( $uid, $gid, $self->_root->{file} . '.tmp' );
chmod( $perms, $self->_root->{file} . '.tmp' );
# q.v. perlport for more information on this variable
if ( $^O eq 'MSWin32' || $^O eq 'cygwin' ) {
##
# Potential race condition when optmizing on Win32 with locking.
# The Windows filesystem requires that the filehandle be closed
# before it is overwritten with rename(). This could be redone
# with a soft copy.
##
$self->unlock();
$self->_close();
}
if (!rename $self->_root->{file} . '.tmp', $self->_root->{file}) {
unlink $self->_root->{file} . '.tmp';
$self->unlock();
return $self->_throw_error("Optimize failed: Cannot copy temp file over original: $!");
}
$self->unlock();
$self->_close();
$self->_open();
return 1;
}
sub clone {
##
# Make copy of object and return
##
my $self = $_[0]->_get_self;
return DBM::Deep::09830->new(
type => $self->_type,
base_offset => $self->_base_offset,
root => $self->_root
);
}
{
my %is_legal_filter = map {
$_ => ~~1,
} qw(
store_key store_value
fetch_key fetch_value
);
sub set_filter {
##
# Setup filter function for storing or fetching the key or value
##
my $self = $_[0]->_get_self;
my $type = lc $_[1];
my $func = $_[2] ? $_[2] : undef;
if ( $is_legal_filter{$type} ) {
$self->_root->{"filter_$type"} = $func;
return 1;
}
return;
}
}
##
# Accessor methods
##
sub _root {
##
# Get access to the root structure
##
my $self = $_[0]->_get_self;
return $self->{root};
}
sub _fh {
##
# Get access to the raw fh
##
#XXX It will be useful, though, when we split out HASH and ARRAY
my $self = $_[0]->_get_self;
return $self->_root->{fh};
}
sub _type {
##
# Get type of current node (TYPE_HASH or TYPE_ARRAY)
##
my $self = $_[0]->_get_self;
return $self->{type};
}
sub _base_offset {
##
# Get base_offset of current node (TYPE_HASH or TYPE_ARRAY)
##
my $self = $_[0]->_get_self;
return $self->{base_offset};
}
sub error {
##
# Get last error string, or undef if no error
##
return $_[0]
? ( $_[0]->_get_self->{root}->{error} or undef )
: $@;
}
##
# Utility methods
##
sub _throw_error {
##
# Store error string in self
##
my $error_text = $_[1];
if ( Scalar::Util::blessed $_[0] ) {
my $self = $_[0]->_get_self;
$self->_root->{error} = $error_text;
unless ($self->_root->{debug}) {
die "DBM::Deep::09830: $error_text\n";
}
warn "DBM::Deep::09830: $error_text\n";
return;
}
else {
die "DBM::Deep::09830: $error_text\n";
}
}
sub clear_error {
##
# Clear error state
##
my $self = $_[0]->_get_self;
undef $self->_root->{error};
}
sub _precalc_sizes {
##
# Precalculate index, bucket and bucket list sizes
##
#XXX I don't like this ...
set_pack() unless defined $LONG_SIZE;
$INDEX_SIZE = 256 * $LONG_SIZE;
$BUCKET_SIZE = $HASH_SIZE + $LONG_SIZE;
$BUCKET_LIST_SIZE = $MAX_BUCKETS * $BUCKET_SIZE;
}
sub set_pack {
##
# Set pack/unpack modes (see file header for more)
##
my ($long_s, $long_p, $data_s, $data_p) = @_;
$LONG_SIZE = $long_s ? $long_s : 4;
$LONG_PACK = $long_p ? $long_p : 'N';
$DATA_LENGTH_SIZE = $data_s ? $data_s : 4;
$DATA_LENGTH_PACK = $data_p ? $data_p : 'N';
_precalc_sizes();
}
sub set_digest {
##
# Set key digest function (default is MD5)
##
my ($digest_func, $hash_size) = @_;
$DIGEST_FUNC = $digest_func ? $digest_func : \&Digest::MD5::md5;
$HASH_SIZE = $hash_size ? $hash_size : 16;
_precalc_sizes();
}
sub _is_writable {
my $fh = shift;
(O_WRONLY | O_RDWR) & fcntl( $fh, F_GETFL, my $slush = 0);
}
#sub _is_readable {
# my $fh = shift;
# (O_RDONLY | O_RDWR) & fcntl( $fh, F_GETFL, my $slush = 0);
#}
##
# tie() methods (hashes and arrays)
##
sub STORE {
##
# Store single hash key/value or array element in database.
##
my $self = $_[0]->_get_self;
my $key = $_[1];
local($/,$\);
# User may be storing a hash, in which case we do not want it run
# through the filtering system
my $value = ($self->_root->{filter_store_value} && !ref($_[2]))
? $self->_root->{filter_store_value}->($_[2])
: $_[2];
my $md5 = $DIGEST_FUNC->($key);
##
# Make sure file is open
##
if (!defined($self->_fh) && !$self->_open()) {
return;
}
if ( $^O ne 'MSWin32' && !_is_writable( $self->_fh ) ) {
$self->_throw_error( 'Cannot write to a readonly filehandle' );
}
##
# Request exclusive lock for writing
##
$self->lock( LOCK_EX );
my $fh = $self->_fh;
##
# Locate offset for bucket list using digest index system
##
my $tag = $self->_load_tag($self->_base_offset);
if (!$tag) {
$tag = $self->_create_tag($self->_base_offset, SIG_INDEX, chr(0) x $INDEX_SIZE);
}
my $ch = 0;
while ($tag->{signature} ne SIG_BLIST) {
my $num = ord(substr($md5, $ch, 1));
my $ref_loc = $tag->{offset} + ($num * $LONG_SIZE);
my $new_tag = $self->_index_lookup($tag, $num);
if (!$new_tag) {
seek($fh, $ref_loc + $self->_root->{file_offset}, SEEK_SET);
print( $fh pack($LONG_PACK, $self->_root->{end}) );
$tag = $self->_create_tag($self->_root->{end}, SIG_BLIST, chr(0) x $BUCKET_LIST_SIZE);
$tag->{ref_loc} = $ref_loc;
$tag->{ch} = $ch;
last;
}
else {
$tag = $new_tag;
$tag->{ref_loc} = $ref_loc;
$tag->{ch} = $ch;
}
$ch++;
}
##
# Add key/value to bucket list
##
my $result = $self->_add_bucket( $tag, $md5, $key, $value );
$self->unlock();
return $result;
}
sub FETCH {
##
# Fetch single value or element given plain key or array index
##
my $self = shift->_get_self;
my $key = shift;
##
# Make sure file is open
##
if (!defined($self->_fh)) { $self->_open(); }
my $md5 = $DIGEST_FUNC->($key);
##
# Request shared lock for reading
##
$self->lock( LOCK_SH );
my $tag = $self->_find_bucket_list( $md5 );
if (!$tag) {
$self->unlock();
return;
}
##
# Get value from bucket list
##
my $result = $self->_get_bucket_value( $tag, $md5 );
$self->unlock();
#XXX What is ref() checking here?
#YYY Filters only apply on scalar values, so the ref check is making
#YYY sure the fetched bucket is a scalar, not a child hash or array.
return ($result && !ref($result) && $self->_root->{filter_fetch_value})
? $self->_root->{filter_fetch_value}->($result)
: $result;
}
sub DELETE {
##
# Delete single key/value pair or element given plain key or array index
##
my $self = $_[0]->_get_self;
my $key = $_[1];
my $md5 = $DIGEST_FUNC->($key);
##
# Make sure file is open
##
if (!defined($self->_fh)) { $self->_open(); }
##
# Request exclusive lock for writing
##
$self->lock( LOCK_EX );
my $tag = $self->_find_bucket_list( $md5 );
if (!$tag) {
$self->unlock();
return;
}
##
# Delete bucket
##
my $value = $self->_get_bucket_value( $tag, $md5 );
if ($value && !ref($value) && $self->_root->{filter_fetch_value}) {
$value = $self->_root->{filter_fetch_value}->($value);
}
my $result = $self->_delete_bucket( $tag, $md5 );
##
# If this object is an array and the key deleted was on the end of the stack,
# decrement the length variable.
##
$self->unlock();
return $value;
}
sub EXISTS {
##
# Check if a single key or element exists given plain key or array index
##
my $self = $_[0]->_get_self;
my $key = $_[1];
my $md5 = $DIGEST_FUNC->($key);
##
# Make sure file is open
##
if (!defined($self->_fh)) { $self->_open(); }
##
# Request shared lock for reading
##
$self->lock( LOCK_SH );
my $tag = $self->_find_bucket_list( $md5 );
##
# For some reason, the built-in exists() function returns '' for false
##
if (!$tag) {
$self->unlock();
return '';
}
##
# Check if bucket exists and return 1 or ''
##
my $result = $self->_bucket_exists( $tag, $md5 ) || '';
$self->unlock();
return $result;
}
sub CLEAR {
##
# Clear all keys from hash, or all elements from array.
##
my $self = $_[0]->_get_self;
##
# Make sure file is open
##
if (!defined($self->_fh)) { $self->_open(); }
##
# Request exclusive lock for writing
##
$self->lock( LOCK_EX );
my $fh = $self->_fh;
seek($fh, $self->_base_offset + $self->_root->{file_offset}, SEEK_SET);
if (eof $fh) {
$self->unlock();
return;
}
$self->_create_tag($self->_base_offset, $self->_type, chr(0) x $INDEX_SIZE);
$self->unlock();
return 1;
}
##
# Public method aliases
##
sub put { (shift)->STORE( @_ ) }
sub store { (shift)->STORE( @_ ) }
sub get { (shift)->FETCH( @_ ) }
sub fetch { (shift)->FETCH( @_ ) }
sub delete { (shift)->DELETE( @_ ) }
sub exists { (shift)->EXISTS( @_ ) }
sub clear { (shift)->CLEAR( @_ ) }
package DBM::Deep::09830::_::Root;
sub new {
my $class = shift;
my ($args) = @_;
my $self = bless {
file => undef,
fh => undef,
file_offset => 0,
end => 0,
autoflush => undef,
locking => undef,
debug => undef,
filter_store_key => undef,
filter_store_value => undef,
filter_fetch_key => undef,
filter_fetch_value => undef,
autobless => undef,
locked => 0,
%$args,
}, $class;
if ( $self->{fh} && !$self->{file_offset} ) {
$self->{file_offset} = tell( $self->{fh} );
}
return $self;
}
sub DESTROY {
my $self = shift;
return unless $self;
close $self->{fh} if $self->{fh};
return;
}
package DBM::Deep::09830::Array;
use strict;
# This is to allow DBM::Deep::Array to handle negative indices on
# its own. Otherwise, Perl would intercept the call to negative
# indices for us. This was causing bugs for negative index handling.
use vars qw( $NEGATIVE_INDICES );
$NEGATIVE_INDICES = 1;
use base 'DBM::Deep::09830';
use Scalar::Util ();
sub _get_self {
eval { local $SIG{'__DIE__'}; tied( @{$_[0]} ) } || $_[0]
}
sub TIEARRAY {
##
# Tied array constructor method, called by Perl's tie() function.
##
my $class = shift;
my $args = $class->_get_args( @_ );
$args->{type} = $class->TYPE_ARRAY;
return $class->_init($args);
}
sub FETCH {
my $self = $_[0]->_get_self;
my $key = $_[1];
$self->lock( $self->LOCK_SH );
if ( $key =~ /^-?\d+$/ ) {
if ( $key < 0 ) {
$key += $self->FETCHSIZE;
unless ( $key >= 0 ) {
$self->unlock;
return;
}
}
$key = pack($DBM::Deep::09830::LONG_PACK, $key);
}
my $rv = $self->SUPER::FETCH( $key );
$self->unlock;
return $rv;
}
sub STORE {
my $self = shift->_get_self;
my ($key, $value) = @_;
$self->lock( $self->LOCK_EX );
my $orig = $key;
my $size;
my $numeric_idx;
if ( $key =~ /^\-?\d+$/ ) {
$numeric_idx = 1;
if ( $key < 0 ) {
$size = $self->FETCHSIZE;
$key += $size;
if ( $key < 0 ) {
die( "Modification of non-creatable array value attempted, subscript $orig" );
}
}
$key = pack($DBM::Deep::09830::LONG_PACK, $key);
}
my $rv = $self->SUPER::STORE( $key, $value );
if ( $numeric_idx && $rv == 2 ) {
$size = $self->FETCHSIZE unless defined $size;
if ( $orig >= $size ) {
$self->STORESIZE( $orig + 1 );
}
}
$self->unlock;
return $rv;
}
sub EXISTS {
my $self = $_[0]->_get_self;
my $key = $_[1];
$self->lock( $self->LOCK_SH );
if ( $key =~ /^\-?\d+$/ ) {
if ( $key < 0 ) {
$key += $self->FETCHSIZE;
unless ( $key >= 0 ) {
$self->unlock;
return;
}
}
$key = pack($DBM::Deep::09830::LONG_PACK, $key);
}
my $rv = $self->SUPER::EXISTS( $key );
$self->unlock;
return $rv;
}
sub DELETE {
my $self = $_[0]->_get_self;
my $key = $_[1];
my $unpacked_key = $key;
$self->lock( $self->LOCK_EX );
my $size = $self->FETCHSIZE;
if ( $key =~ /^-?\d+$/ ) {
if ( $key < 0 ) {
$key += $size;
unless ( $key >= 0 ) {
$self->unlock;
return;
}
}
$key = pack($DBM::Deep::09830::LONG_PACK, $key);
}
my $rv = $self->SUPER::DELETE( $key );
if ($rv && $unpacked_key == $size - 1) {
$self->STORESIZE( $unpacked_key );
}
$self->unlock;
return $rv;
}
sub FETCHSIZE {
##
# Return the length of the array
##
my $self = shift->_get_self;
$self->lock( $self->LOCK_SH );
my $SAVE_FILTER = $self->_root->{filter_fetch_value};
$self->_root->{filter_fetch_value} = undef;
my $packed_size = $self->FETCH('length');
$self->_root->{filter_fetch_value} = $SAVE_FILTER;
$self->unlock;
if ($packed_size) {
return int(unpack($DBM::Deep::09830::LONG_PACK, $packed_size));
}
return 0;
}
sub STORESIZE {
##
# Set the length of the array
##
my $self = $_[0]->_get_self;
my $new_length = $_[1];
$self->lock( $self->LOCK_EX );
my $SAVE_FILTER = $self->_root->{filter_store_value};
$self->_root->{filter_store_value} = undef;
my $result = $self->STORE('length', pack($DBM::Deep::09830::LONG_PACK, $new_length));
$self->_root->{filter_store_value} = $SAVE_FILTER;
$self->unlock;
return $result;
}
sub POP {
##
# Remove and return the last element on the array
##
my $self = $_[0]->_get_self;
$self->lock( $self->LOCK_EX );
my $length = $self->FETCHSIZE();
if ($length) {
my $content = $self->FETCH( $length - 1 );
$self->DELETE( $length - 1 );
$self->unlock;
return $content;
}
else {
$self->unlock;
return;
}
}
sub PUSH {
##
# Add new element(s) to the end of the array
##
my $self = shift->_get_self;
$self->lock( $self->LOCK_EX );
my $length = $self->FETCHSIZE();
while (my $content = shift @_) {
$self->STORE( $length, $content );
$length++;
}
$self->unlock;
return $length;
}
sub SHIFT {
##
# Remove and return first element on the array.
# Shift over remaining elements to take up space.
##
my $self = $_[0]->_get_self;
$self->lock( $self->LOCK_EX );
my $length = $self->FETCHSIZE();
if ($length) {
my $content = $self->FETCH( 0 );
##
# Shift elements over and remove last one.
##
for (my $i = 0; $i < $length - 1; $i++) {
$self->STORE( $i, $self->FETCH($i + 1) );
}
$self->DELETE( $length - 1 );
$self->unlock;
return $content;
}
else {
$self->unlock;
return;
}
}
sub UNSHIFT {
##
# Insert new element(s) at beginning of array.
# Shift over other elements to make space.
##
my $self = shift->_get_self;
my @new_elements = @_;
$self->lock( $self->LOCK_EX );
my $length = $self->FETCHSIZE();
my $new_size = scalar @new_elements;
if ($length) {
for (my $i = $length - 1; $i >= 0; $i--) {
$self->STORE( $i + $new_size, $self->FETCH($i) );
}
}
for (my $i = 0; $i < $new_size; $i++) {
$self->STORE( $i, $new_elements[$i] );
}
$self->unlock;
return $length + $new_size;
}
sub SPLICE {
##
# Splices section of array with optional new section.
# Returns deleted section, or last element deleted in scalar context.
##
my $self = shift->_get_self;
$self->lock( $self->LOCK_EX );
my $length = $self->FETCHSIZE();
##
# Calculate offset and length of splice
##
my $offset = shift;
$offset = 0 unless defined $offset;
if ($offset < 0) { $offset += $length; }
my $splice_length;
if (scalar @_) { $splice_length = shift; }
else { $splice_length = $length - $offset; }
if ($splice_length < 0) { $splice_length += ($length - $offset); }
##
# Setup array with new elements, and copy out old elements for return
##
my @new_elements = @_;
my $new_size = scalar @new_elements;
my @old_elements = map {
$self->FETCH( $_ )
} $offset .. ($offset + $splice_length - 1);
##
# Adjust array length, and shift elements to accomodate new section.
##
if ( $new_size != $splice_length ) {
if ($new_size > $splice_length) {
for (my $i = $length - 1; $i >= $offset + $splice_length; $i--) {
$self->STORE( $i + ($new_size - $splice_length), $self->FETCH($i) );
}
}
else {
for (my $i = $offset + $splice_length; $i < $length; $i++) {
$self->STORE( $i + ($new_size - $splice_length), $self->FETCH($i) );
}
for (my $i = 0; $i < $splice_length - $new_size; $i++) {
$self->DELETE( $length - 1 );
$length--;
}
}
}
##
# Insert new elements into array
##
for (my $i = $offset; $i < $offset + $new_size; $i++) {
$self->STORE( $i, shift @new_elements );
}
$self->unlock;
##
# Return deleted section, or last element in scalar context.
##
return wantarray ? @old_elements : $old_elements[-1];
}
sub EXTEND {
##
# Perl will call EXTEND() when the array is likely to grow.
# We don't care, but include it for compatibility.
##
}
##
# Public method aliases
##
*length = *FETCHSIZE;
*pop = *POP;
*push = *PUSH;
*shift = *SHIFT;
*unshift = *UNSHIFT;
*splice = *SPLICE;
package DBM::Deep::09830::Hash;
use strict;
use base 'DBM::Deep::09830';
sub _get_self {
eval { local $SIG{'__DIE__'}; tied( %{$_[0]} ) } || $_[0]
}
sub TIEHASH {
##
# Tied hash constructor method, called by Perl's tie() function.
##
my $class = shift;
my $args = $class->_get_args( @_ );
$args->{type} = $class->TYPE_HASH;
return $class->_init($args);
}
sub FETCH {
my $self = shift->_get_self;
my $key = ($self->_root->{filter_store_key})
? $self->_root->{filter_store_key}->($_[0])
: $_[0];
return $self->SUPER::FETCH( $key );
}
sub STORE {
my $self = shift->_get_self;
my $key = ($self->_root->{filter_store_key})
? $self->_root->{filter_store_key}->($_[0])
: $_[0];
my $value = $_[1];
return $self->SUPER::STORE( $key, $value );
}
sub EXISTS {
my $self = shift->_get_self;
my $key = ($self->_root->{filter_store_key})
? $self->_root->{filter_store_key}->($_[0])
: $_[0];
return $self->SUPER::EXISTS( $key );
}
sub DELETE {
my $self = shift->_get_self;
my $key = ($self->_root->{filter_store_key})
? $self->_root->{filter_store_key}->($_[0])
: $_[0];
return $self->SUPER::DELETE( $key );
}
sub FIRSTKEY {
##
# Locate and return first key (in no particular order)
##
my $self = $_[0]->_get_self;
##
# Make sure file is open
##
if (!defined($self->_fh)) { $self->_open(); }
##
# Request shared lock for reading
##
$self->lock( $self->LOCK_SH );
my $result = $self->_get_next_key();
$self->unlock();
return ($result && $self->_root->{filter_fetch_key})
? $self->_root->{filter_fetch_key}->($result)
: $result;
}
sub NEXTKEY {
##
# Return next key (in no particular order), given previous one
##
my $self = $_[0]->_get_self;
my $prev_key = ($self->_root->{filter_store_key})
? $self->_root->{filter_store_key}->($_[1])
: $_[1];
my $prev_md5 = $DBM::Deep::09830::DIGEST_FUNC->($prev_key);
##
# Make sure file is open
##
if (!defined($self->_fh)) { $self->_open(); }
##
# Request shared lock for reading
##
$self->lock( $self->LOCK_SH );
my $result = $self->_get_next_key( $prev_md5 );
$self->unlock();
return ($result && $self->_root->{filter_fetch_key})
? $self->_root->{filter_fetch_key}->($result)
: $result;
}
##
# Public method aliases
##
*first_key = *FIRSTKEY;
*next_key = *NEXTKEY;
1;
__END__
|