r11693@rob-kinyons-powerbook58: rob | 2006-04-30 22:15:38 -0400
[dbsrgits/DBM-Deep.git] / lib / DBM / Deep.pm
CommitLineData
ffed8b01 1package DBM::Deep;
2
3##
4# DBM::Deep
5#
6# Description:
d0b74c17 7# Multi-level database module for storing hash trees, arrays and simple
8# key/value pairs into FTP-able, cross-platform binary database files.
ffed8b01 9#
d0b74c17 10# Type `perldoc DBM::Deep` for complete documentation.
ffed8b01 11#
12# Usage Examples:
d0b74c17 13# my %db;
14# tie %db, 'DBM::Deep', 'my_database.db'; # standard tie() method
ffed8b01 15#
d0b74c17 16# my $db = new DBM::Deep( 'my_database.db' ); # preferred OO method
17#
18# $db->{my_scalar} = 'hello world';
19# $db->{my_hash} = { larry => 'genius', hashes => 'fast' };
20# $db->{my_array} = [ 1, 2, 3, time() ];
21# $db->{my_complex} = [ 'hello', { perl => 'rules' }, 42, 99 ];
22# push @{$db->{my_array}}, 'another value';
23# my @key_list = keys %{$db->{my_hash}};
24# print "This module " . $db->{my_complex}->[1]->{perl} . "!\n";
ffed8b01 25#
26# Copyright:
d0b74c17 27# (c) 2002-2006 Joseph Huckaby. All Rights Reserved.
28# This program is free software; you can redistribute it and/or
29# modify it under the same terms as Perl itself.
ffed8b01 30##
31
460b1067 32use 5.6.0;
33
ffed8b01 34use strict;
460b1067 35use warnings;
8b957036 36
d8db2929 37our $VERSION = q(0.99_03);
86867f3a 38
596e9574 39use Fcntl qw( :DEFAULT :flock :seek );
ffed8b01 40use Digest::MD5 ();
a8fdabda 41use FileHandle::Fmode ();
ffed8b01 42use Scalar::Util ();
ffed8b01 43
95967a5e 44use DBM::Deep::Engine;
460b1067 45use DBM::Deep::File;
95967a5e 46
ffed8b01 47##
48# Setup constants for users to pass to new()
49##
86867f3a 50sub TYPE_HASH () { DBM::Deep::Engine->SIG_HASH }
51sub TYPE_ARRAY () { DBM::Deep::Engine->SIG_ARRAY }
ffed8b01 52
0ca7ea98 53sub _get_args {
54 my $proto = shift;
55
56 my $args;
57 if (scalar(@_) > 1) {
58 if ( @_ % 2 ) {
59 $proto->_throw_error( "Odd number of parameters to " . (caller(1))[2] );
60 }
61 $args = {@_};
62 }
d0b74c17 63 elsif ( ref $_[0] ) {
4d35d856 64 unless ( eval { local $SIG{'__DIE__'}; %{$_[0]} || 1 } ) {
0ca7ea98 65 $proto->_throw_error( "Not a hashref in args to " . (caller(1))[2] );
66 }
67 $args = $_[0];
68 }
d0b74c17 69 else {
0ca7ea98 70 $args = { file => shift };
71 }
72
73 return $args;
74}
75
ffed8b01 76sub new {
d0b74c17 77 ##
78 # Class constructor method for Perl OO interface.
79 # Calls tie() and returns blessed reference to tied hash or array,
80 # providing a hybrid OO/tie interface.
81 ##
82 my $class = shift;
83 my $args = $class->_get_args( @_ );
84
85 ##
86 # Check if we want a tied hash or array.
87 ##
88 my $self;
89 if (defined($args->{type}) && $args->{type} eq TYPE_ARRAY) {
6fe26b29 90 $class = 'DBM::Deep::Array';
91 require DBM::Deep::Array;
d0b74c17 92 tie @$self, $class, %$args;
93 }
94 else {
6fe26b29 95 $class = 'DBM::Deep::Hash';
96 require DBM::Deep::Hash;
d0b74c17 97 tie %$self, $class, %$args;
98 }
ffed8b01 99
d0b74c17 100 return bless $self, $class;
ffed8b01 101}
102
96041a25 103# This initializer is called from the various TIE* methods. new() calls tie(),
104# which allows for a single point of entry.
0795f290 105sub _init {
0795f290 106 my $class = shift;
994ccd8e 107 my ($args) = @_;
0795f290 108
460b1067 109 $args->{fileobj} = DBM::Deep::File->new( $args )
110 unless exists $args->{fileobj};
111
112 # locking implicitly enables autoflush
113 if ($args->{locking}) { $args->{autoflush} = 1; }
114
0795f290 115 # These are the defaults to be optionally overridden below
116 my $self = bless {
95967a5e 117 type => TYPE_HASH,
e06824f8 118 base_offset => undef,
359a01ac 119
120 parent => undef,
121 parent_key => undef,
122
460b1067 123 fileobj => undef,
0795f290 124 }, $class;
359a01ac 125 $self->{engine} = DBM::Deep::Engine->new( { %{$args}, obj => $self } );
8db25060 126
fde3db1a 127 # Grab the parameters we want to use
0795f290 128 foreach my $param ( keys %$self ) {
129 next unless exists $args->{$param};
3e9498a1 130 $self->{$param} = $args->{$param};
ffed8b01 131 }
d0b74c17 132
72e315ac 133 $self->_engine->setup_fh( $self );
0795f290 134
359a01ac 135 $self->{fileobj}->set_db( $self );
136
0795f290 137 return $self;
ffed8b01 138}
139
ffed8b01 140sub TIEHASH {
6fe26b29 141 shift;
142 require DBM::Deep::Hash;
143 return DBM::Deep::Hash->TIEHASH( @_ );
ffed8b01 144}
145
146sub TIEARRAY {
6fe26b29 147 shift;
148 require DBM::Deep::Array;
149 return DBM::Deep::Array->TIEARRAY( @_ );
ffed8b01 150}
151
ffed8b01 152sub lock {
994ccd8e 153 my $self = shift->_get_self;
15ba72cc 154 return $self->_fileobj->lock( $self, @_ );
ffed8b01 155}
156
157sub unlock {
994ccd8e 158 my $self = shift->_get_self;
15ba72cc 159 return $self->_fileobj->unlock( $self, @_ );
ffed8b01 160}
161
906c8e01 162sub _copy_value {
163 my $self = shift->_get_self;
164 my ($spot, $value) = @_;
165
166 if ( !ref $value ) {
167 ${$spot} = $value;
168 }
169 elsif ( eval { local $SIG{__DIE__}; $value->isa( 'DBM::Deep' ) } ) {
f9c33187 170 ${$spot} = $value->_repr;
906c8e01 171 $value->_copy_node( ${$spot} );
172 }
173 else {
174 my $r = Scalar::Util::reftype( $value );
175 my $c = Scalar::Util::blessed( $value );
176 if ( $r eq 'ARRAY' ) {
177 ${$spot} = [ @{$value} ];
178 }
179 else {
180 ${$spot} = { %{$value} };
181 }
95bbd935 182 ${$spot} = bless ${$spot}, $c
906c8e01 183 if defined $c;
184 }
185
186 return 1;
187}
188
261d1296 189sub _copy_node {
f9c33187 190 die "Must be implemented in a child class\n";
191}
906c8e01 192
f9c33187 193sub _repr {
194 die "Must be implemented in a child class\n";
ffed8b01 195}
196
197sub export {
d0b74c17 198 ##
199 # Recursively export into standard Perl hashes and arrays.
200 ##
994ccd8e 201 my $self = shift->_get_self;
d0b74c17 202
f9c33187 203 my $temp = $self->_repr;
d0b74c17 204
205 $self->lock();
206 $self->_copy_node( $temp );
207 $self->unlock();
208
68f943b3 209 # This will always work because $self, after _get_self() is a HASH
210 if ( $self->{parent} ) {
211 my $c = Scalar::Util::blessed(
212 $self->{parent}->get($self->{parent_key})
213 );
9a772062 214 if ( $c && !$c->isa( 'DBM::Deep' ) ) {
68f943b3 215 bless $temp, $c;
216 }
217 }
218
d0b74c17 219 return $temp;
ffed8b01 220}
221
222sub import {
d0b74c17 223 ##
224 # Recursively import Perl hash/array structure
225 ##
d0b74c17 226 if (!ref($_[0])) { return; } # Perl calls import() on use -- ignore
227
994ccd8e 228 my $self = shift->_get_self;
229 my ($struct) = @_;
d0b74c17 230
c9cec40e 231 # struct is not a reference, so just import based on our type
d0b74c17 232 if (!ref($struct)) {
f9c33187 233 $struct = $self->_repr( @_ );
d0b74c17 234 }
235
7a960a12 236#XXX These are correct, but impossible until the other bug is fixed
237 eval {
238# $self->begin_work;
239 $self->_import( $struct );
240# $self->commit;
241 }; if ( $@ ) {
242 $self->rollback;
243 die $@;
244 }
245
246 return 1;
ffed8b01 247}
248
249sub optimize {
d0b74c17 250 ##
251 # Rebuild entire database into new file, then move
252 # it back on top of original.
253 ##
994ccd8e 254 my $self = shift->_get_self;
cc4bef86 255
256#XXX Need to create a new test for this
460b1067 257# if ($self->_fileobj->{links} > 1) {
1400a48e 258# $self->_throw_error("Cannot optimize: reference count is greater than 1");
d0b74c17 259# }
260
7a960a12 261 #XXX Do we have to lock the tempfile?
262
d0b74c17 263 my $db_temp = DBM::Deep->new(
460b1067 264 file => $self->_fileobj->{file} . '.tmp',
d0b74c17 265 type => $self->_type
266 );
d0b74c17 267
268 $self->lock();
269 $self->_copy_node( $db_temp );
270 undef $db_temp;
271
272 ##
273 # Attempt to copy user, group and permissions over to new file
274 ##
275 my @stats = stat($self->_fh);
276 my $perms = $stats[2] & 07777;
277 my $uid = $stats[4];
278 my $gid = $stats[5];
460b1067 279 chown( $uid, $gid, $self->_fileobj->{file} . '.tmp' );
280 chmod( $perms, $self->_fileobj->{file} . '.tmp' );
d0b74c17 281
ffed8b01 282 # q.v. perlport for more information on this variable
90f93b43 283 if ( $^O eq 'MSWin32' || $^O eq 'cygwin' ) {
d0b74c17 284 ##
285 # Potential race condition when optmizing on Win32 with locking.
286 # The Windows filesystem requires that the filehandle be closed
287 # before it is overwritten with rename(). This could be redone
288 # with a soft copy.
289 ##
290 $self->unlock();
460b1067 291 $self->_fileobj->close;
d0b74c17 292 }
293
460b1067 294 if (!rename $self->_fileobj->{file} . '.tmp', $self->_fileobj->{file}) {
295 unlink $self->_fileobj->{file} . '.tmp';
d0b74c17 296 $self->unlock();
1400a48e 297 $self->_throw_error("Optimize failed: Cannot copy temp file over original: $!");
d0b74c17 298 }
299
300 $self->unlock();
460b1067 301 $self->_fileobj->close;
302 $self->_fileobj->open;
72e315ac 303 $self->_engine->setup_fh( $self );
70b55428 304
d0b74c17 305 return 1;
ffed8b01 306}
307
308sub clone {
d0b74c17 309 ##
310 # Make copy of object and return
311 ##
994ccd8e 312 my $self = shift->_get_self;
d0b74c17 313
314 return DBM::Deep->new(
315 type => $self->_type,
316 base_offset => $self->_base_offset,
460b1067 317 fileobj => $self->_fileobj,
d0b74c17 318 );
ffed8b01 319}
320
321{
322 my %is_legal_filter = map {
323 $_ => ~~1,
324 } qw(
325 store_key store_value
326 fetch_key fetch_value
327 );
328
329 sub set_filter {
330 ##
331 # Setup filter function for storing or fetching the key or value
332 ##
994ccd8e 333 my $self = shift->_get_self;
334 my $type = lc shift;
335 my $func = shift;
d0b74c17 336
ffed8b01 337 if ( $is_legal_filter{$type} ) {
460b1067 338 $self->_fileobj->{"filter_$type"} = $func;
ffed8b01 339 return 1;
340 }
341
342 return;
343 }
344}
345
fee0243f 346sub begin_work {
347 my $self = shift->_get_self;
28394a1a 348 $self->_fileobj->begin_transaction;
349 return 1;
fee0243f 350}
351
352sub rollback {
353 my $self = shift->_get_self;
28394a1a 354 $self->_fileobj->end_transaction;
355 return 1;
fee0243f 356}
357
359a01ac 358sub commit {
359 my $self = shift->_get_self;
25c7c8d6 360 $self->_fileobj->commit_transaction;
359a01ac 361 return 1;
362}
fee0243f 363
ffed8b01 364##
365# Accessor methods
366##
367
72e315ac 368sub _engine {
369 my $self = $_[0]->_get_self;
370 return $self->{engine};
371}
372
460b1067 373sub _fileobj {
2ac02042 374 my $self = $_[0]->_get_self;
460b1067 375 return $self->{fileobj};
ffed8b01 376}
377
4d35d856 378sub _type {
2ac02042 379 my $self = $_[0]->_get_self;
d0b74c17 380 return $self->{type};
ffed8b01 381}
382
4d35d856 383sub _base_offset {
2ac02042 384 my $self = $_[0]->_get_self;
d0b74c17 385 return $self->{base_offset};
ffed8b01 386}
387
994ccd8e 388sub _fh {
994ccd8e 389 my $self = $_[0]->_get_self;
460b1067 390 return $self->_fileobj->{fh};
994ccd8e 391}
392
ffed8b01 393##
394# Utility methods
395##
396
261d1296 397sub _throw_error {
95967a5e 398 die "DBM::Deep: $_[1]\n";
ffed8b01 399}
400
359a01ac 401sub _find_parent {
402 my $self = shift;
cfd97a7f 403
404 my $base = '';
633df1fd 405 #XXX This if() is redundant
cfd97a7f 406 if ( my $parent = $self->{parent} ) {
407 my $child = $self;
25c7c8d6 408 while ( $parent->{parent} ) {
cfd97a7f 409 $base = (
410 $parent->_type eq TYPE_HASH
415dcbb7 411 ? "\{q{$child->{parent_key}}\}"
cfd97a7f 412 : "\[$child->{parent_key}\]"
413 ) . $base;
414
415 $child = $parent;
416 $parent = $parent->{parent};
25c7c8d6 417 }
418 if ( $base ) {
415dcbb7 419 $base = "\$db->get( q{$child->{parent_key}} )->" . $base;
25c7c8d6 420 }
421 else {
415dcbb7 422 $base = "\$db->get( q{$child->{parent_key}} )";
359a01ac 423 }
359a01ac 424 }
25c7c8d6 425 return $base;
359a01ac 426}
427
ffed8b01 428sub STORE {
d0b74c17 429 ##
430 # Store single hash key/value or array element in database.
431 ##
432 my $self = shift->_get_self;
359a01ac 433 my ($key, $value, $orig_key) = @_;
81d3d316 434
aa83bc1e 435
a8fdabda 436 if ( !FileHandle::Fmode::is_W( $self->_fh ) ) {
acd4faf2 437 $self->_throw_error( 'Cannot write to a readonly filehandle' );
438 }
d0b74c17 439
504185fb 440 #XXX The second condition needs to disappear
441 if ( defined $orig_key && !( $self->_type eq TYPE_ARRAY && $orig_key eq 'length') ) {
4768a580 442 my $rhs;
443
444 my $r = Scalar::Util::reftype( $value ) || '';
445 if ( $r eq 'HASH' ) {
446 $rhs = '{}';
447 }
448 elsif ( $r eq 'ARRAY' ) {
449 $rhs = '[]';
450 }
451 elsif ( defined $value ) {
452 $rhs = "'$value'";
453 }
454 else {
455 $rhs = "undef";
456 }
457
458 if ( my $c = Scalar::Util::blessed( $value ) ) {
459 $rhs = "bless $rhs, '$c'";
460 }
461
25c7c8d6 462 my $lhs = $self->_find_parent;
463 if ( $lhs ) {
464 if ( $self->_type eq TYPE_HASH ) {
415dcbb7 465 $lhs .= "->\{q{$orig_key}\}";
25c7c8d6 466 }
467 else {
468 $lhs .= "->\[$orig_key\]";
469 }
470
471 $lhs .= "=$rhs;";
472 }
473 else {
415dcbb7 474 $lhs = "\$db->put(q{$orig_key},$rhs);";
25c7c8d6 475 }
476
25c7c8d6 477 $self->_fileobj->audit($lhs);
4768a580 478 }
359a01ac 479
d0b74c17 480 ##
481 # Request exclusive lock for writing
482 ##
483 $self->lock( LOCK_EX );
484
72e315ac 485 my $md5 = $self->_engine->{digest}->($key);
d0b74c17 486
72e315ac 487 my $tag = $self->_engine->find_blist( $self->_base_offset, $md5, { create => 1 } );
d0b74c17 488
489 # User may be storing a hash, in which case we do not want it run
490 # through the filtering system
460b1067 491 if ( !ref($value) && $self->_fileobj->{filter_store_value} ) {
492 $value = $self->_fileobj->{filter_store_value}->( $value );
d0b74c17 493 }
494
495 ##
496 # Add key/value to bucket list
497 ##
72e315ac 498 $self->_engine->add_bucket( $tag, $md5, $key, $value, undef, $orig_key );
d0b74c17 499
500 $self->unlock();
501
86867f3a 502 return 1;
ffed8b01 503}
504
505sub FETCH {
d0b74c17 506 ##
507 # Fetch single value or element given plain key or array index
508 ##
cb79ec85 509 my $self = shift->_get_self;
a97c8f67 510 my ($key, $orig_key) = @_;
ffed8b01 511
72e315ac 512 my $md5 = $self->_engine->{digest}->($key);
d0b74c17 513
514 ##
515 # Request shared lock for reading
516 ##
517 $self->lock( LOCK_SH );
518
72e315ac 519 my $tag = $self->_engine->find_blist( $self->_base_offset, $md5 );#, { create => 1 } );
94e8af14 520 #XXX This needs to autovivify
d0b74c17 521 if (!$tag) {
522 $self->unlock();
523 return;
524 }
525
526 ##
527 # Get value from bucket list
528 ##
72e315ac 529 my $result = $self->_engine->get_bucket_value( $tag, $md5, $orig_key );
d0b74c17 530
531 $self->unlock();
532
a86430bd 533 # Filters only apply to scalar values, so the ref check is making
534 # sure the fetched bucket is a scalar, not a child hash or array.
460b1067 535 return ($result && !ref($result) && $self->_fileobj->{filter_fetch_value})
536 ? $self->_fileobj->{filter_fetch_value}->($result)
cb79ec85 537 : $result;
ffed8b01 538}
539
540sub DELETE {
d0b74c17 541 ##
542 # Delete single key/value pair or element given plain key or array index
543 ##
a97c8f67 544 my $self = shift->_get_self;
545 my ($key, $orig_key) = @_;
d0b74c17 546
a8fdabda 547 if ( !FileHandle::Fmode::is_W( $self->_fh ) ) {
a86430bd 548 $self->_throw_error( 'Cannot write to a readonly filehandle' );
549 }
d0b74c17 550
4768a580 551 if ( defined $orig_key ) {
552 my $lhs = $self->_find_parent;
25c7c8d6 553 if ( $lhs ) {
554 $self->_fileobj->audit( "delete $lhs;" );
a97c8f67 555 }
4768a580 556 else {
25c7c8d6 557 $self->_fileobj->audit( "\$db->delete('$orig_key');" );
4768a580 558 }
a97c8f67 559 }
560
d0b74c17 561 ##
562 # Request exclusive lock for writing
563 ##
564 $self->lock( LOCK_EX );
565
72e315ac 566 my $md5 = $self->_engine->{digest}->($key);
a86430bd 567
72e315ac 568 my $tag = $self->_engine->find_blist( $self->_base_offset, $md5 );
d0b74c17 569 if (!$tag) {
570 $self->unlock();
571 return;
572 }
573
574 ##
575 # Delete bucket
576 ##
72e315ac 577 my $value = $self->_engine->get_bucket_value( $tag, $md5 );
a86430bd 578
460b1067 579 if (defined $value && !ref($value) && $self->_fileobj->{filter_fetch_value}) {
580 $value = $self->_fileobj->{filter_fetch_value}->($value);
3b6a5056 581 }
582
72e315ac 583 my $result = $self->_engine->delete_bucket( $tag, $md5, $orig_key );
d0b74c17 584
585 ##
586 # If this object is an array and the key deleted was on the end of the stack,
587 # decrement the length variable.
588 ##
589
590 $self->unlock();
591
592 return $value;
ffed8b01 593}
594
595sub EXISTS {
d0b74c17 596 ##
597 # Check if a single key or element exists given plain key or array index
598 ##
a97c8f67 599 my $self = shift->_get_self;
600 my ($key) = @_;
d0b74c17 601
72e315ac 602 my $md5 = $self->_engine->{digest}->($key);
d0b74c17 603
604 ##
605 # Request shared lock for reading
606 ##
607 $self->lock( LOCK_SH );
608
72e315ac 609 my $tag = $self->_engine->find_blist( $self->_base_offset, $md5 );
d0b74c17 610 if (!$tag) {
611 $self->unlock();
612
613 ##
614 # For some reason, the built-in exists() function returns '' for false
615 ##
616 return '';
617 }
618
619 ##
620 # Check if bucket exists and return 1 or ''
621 ##
72e315ac 622 my $result = $self->_engine->bucket_exists( $tag, $md5 ) || '';
d0b74c17 623
624 $self->unlock();
625
626 return $result;
ffed8b01 627}
628
629sub CLEAR {
d0b74c17 630 ##
631 # Clear all keys from hash, or all elements from array.
632 ##
a97c8f67 633 my $self = shift->_get_self;
ffed8b01 634
a8fdabda 635 if ( !FileHandle::Fmode::is_W( $self->_fh ) ) {
a86430bd 636 $self->_throw_error( 'Cannot write to a readonly filehandle' );
637 }
638
4768a580 639 {
a97c8f67 640 my $lhs = $self->_find_parent;
641
a97c8f67 642 if ( $self->_type eq TYPE_HASH ) {
e82621dd 643 $lhs = '%{' . $lhs . '}';
a97c8f67 644 }
645 else {
e82621dd 646 $lhs = '@{' . $lhs . '}';
a97c8f67 647 }
648
71a941fd 649 $self->_fileobj->audit( "$lhs = ();" );
a97c8f67 650 }
651
d0b74c17 652 ##
653 # Request exclusive lock for writing
654 ##
655 $self->lock( LOCK_EX );
656
f9a320bb 657 if ( $self->_type eq TYPE_HASH ) {
658 my $key = $self->first_key;
659 while ( $key ) {
660 my $next_key = $self->next_key( $key );
661 my $md5 = $self->_engine->{digest}->($key);
662 my $tag = $self->_engine->find_blist( $self->_base_offset, $md5 );
663 $self->_engine->delete_bucket( $tag, $md5, $key );
664 $key = $next_key;
665 }
666 }
667 else {
668 my $size = $self->FETCHSIZE;
669 for my $key ( map { pack ( $self->_engine->{long_pack}, $_ ) } 0 .. $size - 1 ) {
670 my $md5 = $self->_engine->{digest}->($key);
671 my $tag = $self->_engine->find_blist( $self->_base_offset, $md5 );
672 $self->_engine->delete_bucket( $tag, $md5, $key );
673 }
674 $self->STORESIZE( 0 );
675 }
f9c33187 676#XXX This needs updating to use _release_space
f9a320bb 677# $self->_engine->write_tag(
678# $self->_base_offset, $self->_type,
679# chr(0)x$self->_engine->{index_size},
680# );
d0b74c17 681
682 $self->unlock();
683
684 return 1;
ffed8b01 685}
686
ffed8b01 687##
688# Public method aliases
689##
7f441181 690sub put { (shift)->STORE( @_ ) }
691sub store { (shift)->STORE( @_ ) }
692sub get { (shift)->FETCH( @_ ) }
693sub fetch { (shift)->FETCH( @_ ) }
baa27ab6 694sub delete { (shift)->DELETE( @_ ) }
695sub exists { (shift)->EXISTS( @_ ) }
696sub clear { (shift)->CLEAR( @_ ) }
ffed8b01 697
6981;
ffed8b01 699__END__
700
701=head1 NAME
702
703DBM::Deep - A pure perl multi-level hash/array DBM
704
705=head1 SYNOPSIS
706
707 use DBM::Deep;
708 my $db = DBM::Deep->new( "foo.db" );
d0b74c17 709
eff6a245 710 $db->{key} = 'value';
ffed8b01 711 print $db->{key};
d0b74c17 712
eff6a245 713 $db->put('key' => 'value');
ffed8b01 714 print $db->get('key');
d0b74c17 715
ffed8b01 716 # true multi-level support
717 $db->{my_complex} = [
d0b74c17 718 'hello', { perl => 'rules' },
719 42, 99,
90f93b43 720 ];
ffed8b01 721
eff6a245 722 tie my %db, 'DBM::Deep', 'foo.db';
723 $db{key} = 'value';
724 print $db{key};
ffed8b01 725
eff6a245 726 tied(%db)->put('key' => 'value');
727 print tied(%db)->get('key');
8db25060 728
eff6a245 729=head1 DESCRIPTION
8db25060 730
eff6a245 731A unique flat-file database module, written in pure perl. True multi-level
732hash/array support (unlike MLDBM, which is faked), hybrid OO / tie()
733interface, cross-platform FTPable files, ACID transactions, and is quite fast.
734Can handle millions of keys and unlimited levels without significant
735slow-down. Written from the ground-up in pure perl -- this is NOT a wrapper
736around a C-based DBM. Out-of-the-box compatibility with Unix, Mac OS X and
737Windows.
ffed8b01 738
eff6a245 739=head1 VERSION DIFFERENCES
ffed8b01 740
eff6a245 741B<NOTE>: 0.99_01 and above have significant file format differences from 0.983 and
742before. There will be a backwards-compatibility layer in 1.00, but that is
743slated for a later 0.99_x release. This version is B<NOT> backwards compatible
744with 0.983 and before.
ffed8b01 745
746=head1 SETUP
747
d0b74c17 748Construction can be done OO-style (which is the recommended way), or using
ffed8b01 749Perl's tie() function. Both are examined here.
750
751=head2 OO CONSTRUCTION
752
753The recommended way to construct a DBM::Deep object is to use the new()
eff6a245 754method, which gets you a blessed I<and> tied hash (or array) reference.
ffed8b01 755
a8fdabda 756 my $db = DBM::Deep->new( "foo.db" );
ffed8b01 757
758This opens a new database handle, mapped to the file "foo.db". If this
d0b74c17 759file does not exist, it will automatically be created. DB files are
ffed8b01 760opened in "r+" (read/write) mode, and the type of object returned is a
761hash, unless otherwise specified (see L<OPTIONS> below).
762
ffed8b01 763You can pass a number of options to the constructor to specify things like
eff6a245 764locking, autoflush, etc. This is done by passing an inline hash (or hashref):
ffed8b01 765
a8fdabda 766 my $db = DBM::Deep->new(
767 file => "foo.db",
768 locking => 1,
769 autoflush => 1
770 );
ffed8b01 771
772Notice that the filename is now specified I<inside> the hash with
d0b74c17 773the "file" parameter, as opposed to being the sole argument to the
ffed8b01 774constructor. This is required if any options are specified.
775See L<OPTIONS> below for the complete list.
776
ffed8b01 777You can also start with an array instead of a hash. For this, you must
778specify the C<type> parameter:
779
a8fdabda 780 my $db = DBM::Deep->new(
781 file => "foo.db",
782 type => DBM::Deep->TYPE_ARRAY
783 );
ffed8b01 784
785B<Note:> Specifing the C<type> parameter only takes effect when beginning
786a new DB file. If you create a DBM::Deep object with an existing file, the
90f93b43 787C<type> will be loaded from the file header, and an error will be thrown if
788the wrong type is passed in.
ffed8b01 789
790=head2 TIE CONSTRUCTION
791
90f93b43 792Alternately, you can create a DBM::Deep handle by using Perl's built-in
793tie() function. The object returned from tie() can be used to call methods,
eff6a245 794such as lock() and unlock(). (That object can be retrieved from the tied
795variable at any time using tied() - please see L<perltie/> for more info.
ffed8b01 796
a8fdabda 797 my %hash;
798 my $db = tie %hash, "DBM::Deep", "foo.db";
d0b74c17 799
a8fdabda 800 my @array;
801 my $db = tie @array, "DBM::Deep", "bar.db";
ffed8b01 802
803As with the OO constructor, you can replace the DB filename parameter with
804a hash containing one or more options (see L<OPTIONS> just below for the
805complete list).
806
a8fdabda 807 tie %hash, "DBM::Deep", {
808 file => "foo.db",
809 locking => 1,
810 autoflush => 1
811 };
ffed8b01 812
813=head2 OPTIONS
814
815There are a number of options that can be passed in when constructing your
816DBM::Deep objects. These apply to both the OO- and tie- based approaches.
817
818=over
819
820=item * file
821
822Filename of the DB file to link the handle to. You can pass a full absolute
d0b74c17 823filesystem path, partial path, or a plain filename if the file is in the
714618f0 824current working directory. This is a required parameter (though q.v. fh).
825
826=item * fh
827
828If you want, you can pass in the fh instead of the file. This is most useful for doing
829something like:
830
831 my $db = DBM::Deep->new( { fh => \*DATA } );
832
833You are responsible for making sure that the fh has been opened appropriately for your
834needs. If you open it read-only and attempt to write, an exception will be thrown. If you
835open it write-only or append-only, an exception will be thrown immediately as DBM::Deep
836needs to read from the fh.
837
eff6a245 838=item * audit_file / audit_fh
839
840These are just like file/fh, except for auditing. Please see L</AUDITING> for
841more information.
842
714618f0 843=item * file_offset
844
845This is the offset within the file that the DBM::Deep db starts. Most of the time, you will
846not need to set this. However, it's there if you want it.
847
848If you pass in fh and do not set this, it will be set appropriately.
ffed8b01 849
ffed8b01 850=item * type
851
852This parameter specifies what type of object to create, a hash or array. Use
359a01ac 853one of these two constants:
854
855=over 4
856
857=item * C<DBM::Deep-E<gt>TYPE_HASH>
858
859=item * C<DBM::Deep-E<gt>TYPE_ARRAY>.
860
861=back
862
d0b74c17 863This only takes effect when beginning a new file. This is an optional
ffed8b01 864parameter, and defaults to C<DBM::Deep-E<gt>TYPE_HASH>.
865
866=item * locking
867
eff6a245 868Specifies whether locking is to be enabled. DBM::Deep uses Perl's flock()
869function to lock the database in exclusive mode for writes, and shared mode
870for reads. Pass any true value to enable. This affects the base DB handle
871I<and any child hashes or arrays> that use the same DB file. This is an
872optional parameter, and defaults to 0 (disabled). See L<LOCKING> below for
873more.
ffed8b01 874
875=item * autoflush
876
d0b74c17 877Specifies whether autoflush is to be enabled on the underlying filehandle.
878This obviously slows down write operations, but is required if you may have
879multiple processes accessing the same DB file (also consider enable I<locking>).
880Pass any true value to enable. This is an optional parameter, and defaults to 0
ffed8b01 881(disabled).
882
883=item * autobless
884
359a01ac 885If I<autobless> mode is enabled, DBM::Deep will preserve the class something
886is blessed into, and restores it when fetched. This is an optional parameter, and defaults to 1 (enabled).
887
888B<Note:> If you use the OO-interface, you will not be able to call any methods
889of DBM::Deep on the blessed item. This is considered to be a feature.
ffed8b01 890
891=item * filter_*
892
359a01ac 893See L</FILTERS> below.
ffed8b01 894
ffed8b01 895=back
896
897=head1 TIE INTERFACE
898
899With DBM::Deep you can access your databases using Perl's standard hash/array
90f93b43 900syntax. Because all DBM::Deep objects are I<tied> to hashes or arrays, you can
901treat them as such. DBM::Deep will intercept all reads/writes and direct them
902to the right place -- the DB file. This has nothing to do with the
903L<TIE CONSTRUCTION> section above. This simply tells you how to use DBM::Deep
904using regular hashes and arrays, rather than calling functions like C<get()>
905and C<put()> (although those work too). It is entirely up to you how to want
906to access your databases.
ffed8b01 907
908=head2 HASHES
909
910You can treat any DBM::Deep object like a normal Perl hash reference. Add keys,
911or even nested hashes (or arrays) using standard Perl syntax:
912
a8fdabda 913 my $db = DBM::Deep->new( "foo.db" );
d0b74c17 914
a8fdabda 915 $db->{mykey} = "myvalue";
916 $db->{myhash} = {};
917 $db->{myhash}->{subkey} = "subvalue";
ffed8b01 918
a8fdabda 919 print $db->{myhash}->{subkey} . "\n";
ffed8b01 920
921You can even step through hash keys using the normal Perl C<keys()> function:
922
a8fdabda 923 foreach my $key (keys %$db) {
924 print "$key: " . $db->{$key} . "\n";
925 }
ffed8b01 926
927Remember that Perl's C<keys()> function extracts I<every> key from the hash and
d0b74c17 928pushes them onto an array, all before the loop even begins. If you have an
eff6a245 929extremely large hash, this may exhaust Perl's memory. Instead, consider using
d0b74c17 930Perl's C<each()> function, which pulls keys/values one at a time, using very
ffed8b01 931little memory:
932
a8fdabda 933 while (my ($key, $value) = each %$db) {
934 print "$key: $value\n";
935 }
ffed8b01 936
937Please note that when using C<each()>, you should always pass a direct
938hash reference, not a lookup. Meaning, you should B<never> do this:
939
a8fdabda 940 # NEVER DO THIS
941 while (my ($key, $value) = each %{$db->{foo}}) { # BAD
ffed8b01 942
943This causes an infinite loop, because for each iteration, Perl is calling
944FETCH() on the $db handle, resulting in a "new" hash for foo every time, so
d0b74c17 945it effectively keeps returning the first key over and over again. Instead,
ffed8b01 946assign a temporary variable to C<$db->{foo}>, then pass that to each().
947
948=head2 ARRAYS
949
950As with hashes, you can treat any DBM::Deep object like a normal Perl array
d0b74c17 951reference. This includes inserting, removing and manipulating elements,
ffed8b01 952and the C<push()>, C<pop()>, C<shift()>, C<unshift()> and C<splice()> functions.
d0b74c17 953The object must have first been created using type C<DBM::Deep-E<gt>TYPE_ARRAY>,
ffed8b01 954or simply be a nested array reference inside a hash. Example:
955
a8fdabda 956 my $db = DBM::Deep->new(
957 file => "foo-array.db",
958 type => DBM::Deep->TYPE_ARRAY
959 );
d0b74c17 960
a8fdabda 961 $db->[0] = "foo";
962 push @$db, "bar", "baz";
963 unshift @$db, "bah";
d0b74c17 964
a8fdabda 965 my $last_elem = pop @$db; # baz
966 my $first_elem = shift @$db; # bah
967 my $second_elem = $db->[1]; # bar
d0b74c17 968
a8fdabda 969 my $num_elements = scalar @$db;
ffed8b01 970
971=head1 OO INTERFACE
972
973In addition to the I<tie()> interface, you can also use a standard OO interface
974to manipulate all aspects of DBM::Deep databases. Each type of object (hash or
d0b74c17 975array) has its own methods, but both types share the following common methods:
eff6a245 976C<put()>, C<get()>, C<exists()>, C<delete()> and C<clear()>. C<fetch()> and
977C<store(> are aliases to C<put()> and C<get()>, respectively.
ffed8b01 978
979=over
980
4d35d856 981=item * new() / clone()
982
983These are the constructor and copy-functions.
984
90f93b43 985=item * put() / store()
ffed8b01 986
987Stores a new hash key/value pair, or sets an array element value. Takes two
988arguments, the hash key or array index, and the new value. The value can be
989a scalar, hash ref or array ref. Returns true on success, false on failure.
990
a8fdabda 991 $db->put("foo", "bar"); # for hashes
992 $db->put(1, "bar"); # for arrays
ffed8b01 993
90f93b43 994=item * get() / fetch()
ffed8b01 995
996Fetches the value of a hash key or array element. Takes one argument: the hash
d0b74c17 997key or array index. Returns a scalar, hash ref or array ref, depending on the
ffed8b01 998data type stored.
999
a8fdabda 1000 my $value = $db->get("foo"); # for hashes
1001 my $value = $db->get(1); # for arrays
ffed8b01 1002
1003=item * exists()
1004
d0b74c17 1005Checks if a hash key or array index exists. Takes one argument: the hash key
ffed8b01 1006or array index. Returns true if it exists, false if not.
1007
a8fdabda 1008 if ($db->exists("foo")) { print "yay!\n"; } # for hashes
1009 if ($db->exists(1)) { print "yay!\n"; } # for arrays
ffed8b01 1010
1011=item * delete()
1012
1013Deletes one hash key/value pair or array element. Takes one argument: the hash
1014key or array index. Returns true on success, false if not found. For arrays,
1015the remaining elements located after the deleted element are NOT moved over.
1016The deleted element is essentially just undefined, which is exactly how Perl's
d0b74c17 1017internal arrays work. Please note that the space occupied by the deleted
1018key/value or element is B<not> reused again -- see L<UNUSED SPACE RECOVERY>
ffed8b01 1019below for details and workarounds.
1020
a8fdabda 1021 $db->delete("foo"); # for hashes
1022 $db->delete(1); # for arrays
ffed8b01 1023
1024=item * clear()
1025
d0b74c17 1026Deletes B<all> hash keys or array elements. Takes no arguments. No return
1027value. Please note that the space occupied by the deleted keys/values or
1028elements is B<not> reused again -- see L<UNUSED SPACE RECOVERY> below for
ffed8b01 1029details and workarounds.
1030
a8fdabda 1031 $db->clear(); # hashes or arrays
ffed8b01 1032
4d35d856 1033=item * lock() / unlock()
1034
1035q.v. Locking.
1036
1037=item * optimize()
1038
eff6a245 1039Recover lost disk space. This is important to do, especially if you use
1040transactions.
4d35d856 1041
1042=item * import() / export()
1043
1044Data going in and out.
1045
ffed8b01 1046=back
1047
1048=head2 HASHES
1049
d0b74c17 1050For hashes, DBM::Deep supports all the common methods described above, and the
ffed8b01 1051following additional methods: C<first_key()> and C<next_key()>.
1052
1053=over
1054
1055=item * first_key()
1056
d0b74c17 1057Returns the "first" key in the hash. As with built-in Perl hashes, keys are
1058fetched in an undefined order (which appears random). Takes no arguments,
ffed8b01 1059returns the key as a scalar value.
1060
a8fdabda 1061 my $key = $db->first_key();
ffed8b01 1062
1063=item * next_key()
1064
1065Returns the "next" key in the hash, given the previous one as the sole argument.
1066Returns undef if there are no more keys to be fetched.
1067
a8fdabda 1068 $key = $db->next_key($key);
ffed8b01 1069
1070=back
1071
1072Here are some examples of using hashes:
1073
a8fdabda 1074 my $db = DBM::Deep->new( "foo.db" );
d0b74c17 1075
a8fdabda 1076 $db->put("foo", "bar");
1077 print "foo: " . $db->get("foo") . "\n";
d0b74c17 1078
a8fdabda 1079 $db->put("baz", {}); # new child hash ref
1080 $db->get("baz")->put("buz", "biz");
1081 print "buz: " . $db->get("baz")->get("buz") . "\n";
d0b74c17 1082
a8fdabda 1083 my $key = $db->first_key();
1084 while ($key) {
1085 print "$key: " . $db->get($key) . "\n";
1086 $key = $db->next_key($key);
1087 }
d0b74c17 1088
a8fdabda 1089 if ($db->exists("foo")) { $db->delete("foo"); }
ffed8b01 1090
1091=head2 ARRAYS
1092
d0b74c17 1093For arrays, DBM::Deep supports all the common methods described above, and the
1094following additional methods: C<length()>, C<push()>, C<pop()>, C<shift()>,
ffed8b01 1095C<unshift()> and C<splice()>.
1096
1097=over
1098
1099=item * length()
1100
1101Returns the number of elements in the array. Takes no arguments.
1102
a8fdabda 1103 my $len = $db->length();
ffed8b01 1104
1105=item * push()
1106
d0b74c17 1107Adds one or more elements onto the end of the array. Accepts scalars, hash
ffed8b01 1108refs or array refs. No return value.
1109
a8fdabda 1110 $db->push("foo", "bar", {});
ffed8b01 1111
1112=item * pop()
1113
1114Fetches the last element in the array, and deletes it. Takes no arguments.
1115Returns undef if array is empty. Returns the element value.
1116
a8fdabda 1117 my $elem = $db->pop();
ffed8b01 1118
1119=item * shift()
1120
d0b74c17 1121Fetches the first element in the array, deletes it, then shifts all the
1122remaining elements over to take up the space. Returns the element value. This
1123method is not recommended with large arrays -- see L<LARGE ARRAYS> below for
ffed8b01 1124details.
1125
a8fdabda 1126 my $elem = $db->shift();
ffed8b01 1127
1128=item * unshift()
1129
d0b74c17 1130Inserts one or more elements onto the beginning of the array, shifting all
1131existing elements over to make room. Accepts scalars, hash refs or array refs.
1132No return value. This method is not recommended with large arrays -- see
ffed8b01 1133<LARGE ARRAYS> below for details.
1134
a8fdabda 1135 $db->unshift("foo", "bar", {});
ffed8b01 1136
1137=item * splice()
1138
d0b74c17 1139Performs exactly like Perl's built-in function of the same name. See L<perldoc
ffed8b01 1140-f splice> for usage -- it is too complicated to document here. This method is
1141not recommended with large arrays -- see L<LARGE ARRAYS> below for details.
1142
1143=back
1144
1145Here are some examples of using arrays:
1146
a8fdabda 1147 my $db = DBM::Deep->new(
1148 file => "foo.db",
1149 type => DBM::Deep->TYPE_ARRAY
1150 );
d0b74c17 1151
a8fdabda 1152 $db->push("bar", "baz");
1153 $db->unshift("foo");
1154 $db->put(3, "buz");
d0b74c17 1155
a8fdabda 1156 my $len = $db->length();
1157 print "length: $len\n"; # 4
d0b74c17 1158
a8fdabda 1159 for (my $k=0; $k<$len; $k++) {
1160 print "$k: " . $db->get($k) . "\n";
1161 }
d0b74c17 1162
a8fdabda 1163 $db->splice(1, 2, "biz", "baf");
d0b74c17 1164
a8fdabda 1165 while (my $elem = shift @$db) {
1166 print "shifted: $elem\n";
1167 }
ffed8b01 1168
1169=head1 LOCKING
1170
d0b74c17 1171Enable automatic file locking by passing a true value to the C<locking>
ffed8b01 1172parameter when constructing your DBM::Deep object (see L<SETUP> above).
1173
a8fdabda 1174 my $db = DBM::Deep->new(
1175 file => "foo.db",
1176 locking => 1
1177 );
ffed8b01 1178
d0b74c17 1179This causes DBM::Deep to C<flock()> the underlying filehandle with exclusive
1180mode for writes, and shared mode for reads. This is required if you have
1181multiple processes accessing the same database file, to avoid file corruption.
1182Please note that C<flock()> does NOT work for files over NFS. See L<DB OVER
ffed8b01 1183NFS> below for more.
1184
1185=head2 EXPLICIT LOCKING
1186
d0b74c17 1187You can explicitly lock a database, so it remains locked for multiple
1188transactions. This is done by calling the C<lock()> method, and passing an
90f93b43 1189optional lock mode argument (defaults to exclusive mode). This is particularly
d0b74c17 1190useful for things like counters, where the current value needs to be fetched,
ffed8b01 1191then incremented, then stored again.
1192
a8fdabda 1193 $db->lock();
1194 my $counter = $db->get("counter");
1195 $counter++;
1196 $db->put("counter", $counter);
1197 $db->unlock();
d0b74c17 1198
a8fdabda 1199 # or...
ffed8b01 1200
a8fdabda 1201 $db->lock();
1202 $db->{counter}++;
1203 $db->unlock();
ffed8b01 1204
1205You can pass C<lock()> an optional argument, which specifies which mode to use
68f943b3 1206(exclusive or shared). Use one of these two constants:
1207C<DBM::Deep-E<gt>LOCK_EX> or C<DBM::Deep-E<gt>LOCK_SH>. These are passed
1208directly to C<flock()>, and are the same as the constants defined in Perl's
1209L<Fcntl/> module.
ffed8b01 1210
a8fdabda 1211 $db->lock( $db->LOCK_SH );
1212 # something here
1213 $db->unlock();
ffed8b01 1214
ffed8b01 1215=head1 IMPORTING/EXPORTING
1216
1217You can import existing complex structures by calling the C<import()> method,
1218and export an entire database into an in-memory structure using the C<export()>
1219method. Both are examined here.
1220
1221=head2 IMPORTING
1222
1223Say you have an existing hash with nested hashes/arrays inside it. Instead of
d0b74c17 1224walking the structure and adding keys/elements to the database as you go,
1225simply pass a reference to the C<import()> method. This recursively adds
ffed8b01 1226everything to an existing DBM::Deep object for you. Here is an example:
1227
a8fdabda 1228 my $struct = {
1229 key1 => "value1",
1230 key2 => "value2",
1231 array1 => [ "elem0", "elem1", "elem2" ],
1232 hash1 => {
1233 subkey1 => "subvalue1",
1234 subkey2 => "subvalue2"
1235 }
1236 };
d0b74c17 1237
a8fdabda 1238 my $db = DBM::Deep->new( "foo.db" );
1239 $db->import( $struct );
d0b74c17 1240
a8fdabda 1241 print $db->{key1} . "\n"; # prints "value1"
d0b74c17 1242
1243This recursively imports the entire C<$struct> object into C<$db>, including
ffed8b01 1244all nested hashes and arrays. If the DBM::Deep object contains exsiting data,
d0b74c17 1245keys are merged with the existing ones, replacing if they already exist.
1246The C<import()> method can be called on any database level (not just the base
ffed8b01 1247level), and works with both hash and array DB types.
1248
ffed8b01 1249B<Note:> Make sure your existing structure has no circular references in it.
eff6a245 1250These will cause an infinite loop when importing. There are plans to fix this
1251in a later release.
ffed8b01 1252
1253=head2 EXPORTING
1254
d0b74c17 1255Calling the C<export()> method on an existing DBM::Deep object will return
1256a reference to a new in-memory copy of the database. The export is done
ffed8b01 1257recursively, so all nested hashes/arrays are all exported to standard Perl
1258objects. Here is an example:
1259
a8fdabda 1260 my $db = DBM::Deep->new( "foo.db" );
d0b74c17 1261
a8fdabda 1262 $db->{key1} = "value1";
1263 $db->{key2} = "value2";
1264 $db->{hash1} = {};
1265 $db->{hash1}->{subkey1} = "subvalue1";
1266 $db->{hash1}->{subkey2} = "subvalue2";
d0b74c17 1267
a8fdabda 1268 my $struct = $db->export();
d0b74c17 1269
a8fdabda 1270 print $struct->{key1} . "\n"; # prints "value1"
ffed8b01 1271
1272This makes a complete copy of the database in memory, and returns a reference
d0b74c17 1273to it. The C<export()> method can be called on any database level (not just
1274the base level), and works with both hash and array DB types. Be careful of
1275large databases -- you can store a lot more data in a DBM::Deep object than an
ffed8b01 1276in-memory Perl structure.
1277
ffed8b01 1278B<Note:> Make sure your database has no circular references in it.
eff6a245 1279These will cause an infinite loop when exporting. There are plans to fix this
1280in a later release.
ffed8b01 1281
1282=head1 FILTERS
1283
1284DBM::Deep has a number of hooks where you can specify your own Perl function
1285to perform filtering on incoming or outgoing data. This is a perfect
1286way to extend the engine, and implement things like real-time compression or
d0b74c17 1287encryption. Filtering applies to the base DB level, and all child hashes /
1288arrays. Filter hooks can be specified when your DBM::Deep object is first
1289constructed, or by calling the C<set_filter()> method at any time. There are
ffed8b01 1290four available filter hooks, described below:
1291
1292=over
1293
1294=item * filter_store_key
1295
d0b74c17 1296This filter is called whenever a hash key is stored. It
ffed8b01 1297is passed the incoming key, and expected to return a transformed key.
1298
1299=item * filter_store_value
1300
d0b74c17 1301This filter is called whenever a hash key or array element is stored. It
ffed8b01 1302is passed the incoming value, and expected to return a transformed value.
1303
1304=item * filter_fetch_key
1305
d0b74c17 1306This filter is called whenever a hash key is fetched (i.e. via
ffed8b01 1307C<first_key()> or C<next_key()>). It is passed the transformed key,
1308and expected to return the plain key.
1309
1310=item * filter_fetch_value
1311
d0b74c17 1312This filter is called whenever a hash key or array element is fetched.
ffed8b01 1313It is passed the transformed value, and expected to return the plain value.
1314
1315=back
1316
1317Here are the two ways to setup a filter hook:
1318
a8fdabda 1319 my $db = DBM::Deep->new(
1320 file => "foo.db",
1321 filter_store_value => \&my_filter_store,
1322 filter_fetch_value => \&my_filter_fetch
1323 );
d0b74c17 1324
a8fdabda 1325 # or...
d0b74c17 1326
a8fdabda 1327 $db->set_filter( "filter_store_value", \&my_filter_store );
1328 $db->set_filter( "filter_fetch_value", \&my_filter_fetch );
ffed8b01 1329
1330Your filter function will be called only when dealing with SCALAR keys or
1331values. When nested hashes and arrays are being stored/fetched, filtering
d0b74c17 1332is bypassed. Filters are called as static functions, passed a single SCALAR
ffed8b01 1333argument, and expected to return a single SCALAR value. If you want to
1334remove a filter, set the function reference to C<undef>:
1335
a8fdabda 1336 $db->set_filter( "filter_store_value", undef );
ffed8b01 1337
1338=head2 REAL-TIME ENCRYPTION EXAMPLE
1339
d0b74c17 1340Here is a working example that uses the I<Crypt::Blowfish> module to
ffed8b01 1341do real-time encryption / decryption of keys & values with DBM::Deep Filters.
d0b74c17 1342Please visit L<http://search.cpan.org/search?module=Crypt::Blowfish> for more
ffed8b01 1343on I<Crypt::Blowfish>. You'll also need the I<Crypt::CBC> module.
1344
a8fdabda 1345 use DBM::Deep;
1346 use Crypt::Blowfish;
1347 use Crypt::CBC;
1348
1349 my $cipher = Crypt::CBC->new({
1350 'key' => 'my secret key',
1351 'cipher' => 'Blowfish',
1352 'iv' => '$KJh#(}q',
1353 'regenerate_key' => 0,
1354 'padding' => 'space',
1355 'prepend_iv' => 0
1356 });
1357
1358 my $db = DBM::Deep->new(
1359 file => "foo-encrypt.db",
1360 filter_store_key => \&my_encrypt,
1361 filter_store_value => \&my_encrypt,
1362 filter_fetch_key => \&my_decrypt,
1363 filter_fetch_value => \&my_decrypt,
1364 );
1365
1366 $db->{key1} = "value1";
1367 $db->{key2} = "value2";
1368 print "key1: " . $db->{key1} . "\n";
1369 print "key2: " . $db->{key2} . "\n";
1370
1371 undef $db;
1372 exit;
1373
1374 sub my_encrypt {
1375 return $cipher->encrypt( $_[0] );
1376 }
1377 sub my_decrypt {
1378 return $cipher->decrypt( $_[0] );
1379 }
ffed8b01 1380
1381=head2 REAL-TIME COMPRESSION EXAMPLE
1382
1383Here is a working example that uses the I<Compress::Zlib> module to do real-time
1384compression / decompression of keys & values with DBM::Deep Filters.
d0b74c17 1385Please visit L<http://search.cpan.org/search?module=Compress::Zlib> for
ffed8b01 1386more on I<Compress::Zlib>.
1387
a8fdabda 1388 use DBM::Deep;
1389 use Compress::Zlib;
1390
1391 my $db = DBM::Deep->new(
1392 file => "foo-compress.db",
1393 filter_store_key => \&my_compress,
1394 filter_store_value => \&my_compress,
1395 filter_fetch_key => \&my_decompress,
1396 filter_fetch_value => \&my_decompress,
1397 );
1398
1399 $db->{key1} = "value1";
1400 $db->{key2} = "value2";
1401 print "key1: " . $db->{key1} . "\n";
1402 print "key2: " . $db->{key2} . "\n";
1403
1404 undef $db;
1405 exit;
1406
1407 sub my_compress {
1408 return Compress::Zlib::memGzip( $_[0] ) ;
1409 }
1410 sub my_decompress {
1411 return Compress::Zlib::memGunzip( $_[0] ) ;
1412 }
ffed8b01 1413
1414B<Note:> Filtering of keys only applies to hashes. Array "keys" are
1415actually numerical index numbers, and are not filtered.
1416
1417=head1 ERROR HANDLING
1418
1419Most DBM::Deep methods return a true value for success, and call die() on
95967a5e 1420failure. You can wrap calls in an eval block to catch the die.
ffed8b01 1421
a8fdabda 1422 my $db = DBM::Deep->new( "foo.db" ); # create hash
1423 eval { $db->push("foo"); }; # ILLEGAL -- push is array-only call
d0b74c17 1424
a8fdabda 1425 print $@; # prints error message
429e4192 1426
ffed8b01 1427=head1 LARGEFILE SUPPORT
1428
1429If you have a 64-bit system, and your Perl is compiled with both LARGEFILE
1430and 64-bit support, you I<may> be able to create databases larger than 2 GB.
1431DBM::Deep by default uses 32-bit file offset tags, but these can be changed
044e6288 1432by specifying the 'pack_size' parameter when constructing the file.
ffed8b01 1433
a8fdabda 1434 DBM::Deep->new(
1435 filename => $filename,
1436 pack_size => 'large',
1437 );
ffed8b01 1438
d0b74c17 1439This tells DBM::Deep to pack all file offsets with 8-byte (64-bit) quad words
1440instead of 32-bit longs. After setting these values your DB files have a
ffed8b01 1441theoretical maximum size of 16 XB (exabytes).
1442
044e6288 1443You can also use C<pack_size =E<gt> 'small'> in order to use 16-bit file
1444offsets.
1445
ffed8b01 1446B<Note:> Changing these values will B<NOT> work for existing database files.
044e6288 1447Only change this for new files. Once the value has been set, it is stored in
1448the file's header and cannot be changed for the life of the file. These
1449parameters are per-file, meaning you can access 32-bit and 64-bit files, as
1450you chose.
ffed8b01 1451
044e6288 1452B<Note:> We have not personally tested files larger than 2 GB -- all my
1453systems have only a 32-bit Perl. However, I have received user reports that
1454this does indeed work!
ffed8b01 1455
1456=head1 LOW-LEVEL ACCESS
1457
90f93b43 1458If you require low-level access to the underlying filehandle that DBM::Deep uses,
4d35d856 1459you can call the C<_fh()> method, which returns the handle:
ffed8b01 1460
a8fdabda 1461 my $fh = $db->_fh();
ffed8b01 1462
1463This method can be called on the root level of the datbase, or any child
1464hashes or arrays. All levels share a I<root> structure, which contains things
90f93b43 1465like the filehandle, a reference counter, and all the options specified
460b1067 1466when you created the object. You can get access to this file object by
1467calling the C<_fileobj()> method.
ffed8b01 1468
a8fdabda 1469 my $file_obj = $db->_fileobj();
ffed8b01 1470
1471This is useful for changing options after the object has already been created,
f5be9b03 1472such as enabling/disabling locking. You can also store your own temporary user
1473data in this structure (be wary of name collision), which is then accessible from
1474any child hash or array.
ffed8b01 1475
1476=head1 CUSTOM DIGEST ALGORITHM
1477
1478DBM::Deep by default uses the I<Message Digest 5> (MD5) algorithm for hashing
1479keys. However you can override this, and use another algorithm (such as SHA-256)
d0b74c17 1480or even write your own. But please note that DBM::Deep currently expects zero
044e6288 1481collisions, so your algorithm has to be I<perfect>, so to speak. Collision
1482detection may be introduced in a later version.
ffed8b01 1483
044e6288 1484You can specify a custom digest algorithm by passing it into the parameter
1485list for new(), passing a reference to a subroutine as the 'digest' parameter,
1486and the length of the algorithm's hashes (in bytes) as the 'hash_size'
1487parameter. Here is a working example that uses a 256-bit hash from the
d0b74c17 1488I<Digest::SHA256> module. Please see
044e6288 1489L<http://search.cpan.org/search?module=Digest::SHA256> for more information.
ffed8b01 1490
a8fdabda 1491 use DBM::Deep;
1492 use Digest::SHA256;
d0b74c17 1493
a8fdabda 1494 my $context = Digest::SHA256::new(256);
d0b74c17 1495
a8fdabda 1496 my $db = DBM::Deep->new(
1497 filename => "foo-sha.db",
1498 digest => \&my_digest,
1499 hash_size => 32,
1500 );
d0b74c17 1501
a8fdabda 1502 $db->{key1} = "value1";
1503 $db->{key2} = "value2";
1504 print "key1: " . $db->{key1} . "\n";
1505 print "key2: " . $db->{key2} . "\n";
d0b74c17 1506
a8fdabda 1507 undef $db;
1508 exit;
d0b74c17 1509
a8fdabda 1510 sub my_digest {
1511 return substr( $context->hash($_[0]), 0, 32 );
1512 }
ffed8b01 1513
1514B<Note:> Your returned digest strings must be B<EXACTLY> the number
044e6288 1515of bytes you specify in the hash_size parameter (in this case 32).
ffed8b01 1516
260a80b4 1517B<Note:> If you do choose to use a custom digest algorithm, you must set it
1518every time you access this file. Otherwise, the default (MD5) will be used.
1519
ffed8b01 1520=head1 CIRCULAR REFERENCES
1521
1522DBM::Deep has B<experimental> support for circular references. Meaning you
1523can have a nested hash key or array element that points to a parent object.
1524This relationship is stored in the DB file, and is preserved between sessions.
1525Here is an example:
1526
a8fdabda 1527 my $db = DBM::Deep->new( "foo.db" );
d0b74c17 1528
a8fdabda 1529 $db->{foo} = "bar";
1530 $db->{circle} = $db; # ref to self
d0b74c17 1531
a8fdabda 1532 print $db->{foo} . "\n"; # prints "bar"
1533 print $db->{circle}->{foo} . "\n"; # prints "bar" again
ffed8b01 1534
69c94980 1535B<Note>: Passing the object to a function that recursively walks the
ffed8b01 1536object tree (such as I<Data::Dumper> or even the built-in C<optimize()> or
69c94980 1537C<export()> methods) will result in an infinite loop. This will be fixed in
1538a future release.
ffed8b01 1539
eff6a245 1540=head1 AUDITING
1541
1542New in 0.99_01 is the ability to audit your databases actions. By passing in
1543audit_file (or audit_fh) to the constructor, all actions will be logged to
1544that file. The format is one that is suitable for eval'ing against the
1545database to replay the actions. Please see t/33_audit_trail.t for an example
1546of how to do this.
1547
1548=head1 TRANSACTIONS
1549
1550New in 0.99_01 is ACID transactions. Every DBM::Deep object is completely
1551transaction-ready - it is not an option you have to turn on. Three new methods
1552have been added to support them. They are:
1553
1554=over 4
1555
1556=item * begin_work()
1557
1558This starts a transaction.
1559
1560=item * commit()
1561
1562This applies the changes done within the transaction to the mainline and ends
1563the transaction.
1564
1565=item * rollback()
1566
1567This discards the changes done within the transaction to the mainline and ends
1568the transaction.
1569
1570=back
1571
1572Transactions in DBM::Deep are done using the MVCC method, the same method used
1573by the InnoDB MySQL table type.
1574
ffed8b01 1575=head1 CAVEATS / ISSUES / BUGS
1576
1577This section describes all the known issues with DBM::Deep. It you have found
1578something that is not listed here, please send e-mail to L<jhuckaby@cpan.org>.
1579
1580=head2 UNUSED SPACE RECOVERY
1581
14a3acb6 1582One major caveat with DBM::Deep is that space occupied by existing keys and
ffed8b01 1583values is not recovered when they are deleted. Meaning if you keep deleting
1584and adding new keys, your file will continuously grow. I am working on this,
d0b74c17 1585but in the meantime you can call the built-in C<optimize()> method from time to
ffed8b01 1586time (perhaps in a crontab or something) to recover all your unused space.
1587
a8fdabda 1588 $db->optimize(); # returns true on success
ffed8b01 1589
1590This rebuilds the ENTIRE database into a new file, then moves it on top of
1591the original. The new file will have no unused space, thus it will take up as
d0b74c17 1592little disk space as possible. Please note that this operation can take
1593a long time for large files, and you need enough disk space to temporarily hold
15942 copies of your DB file. The temporary file is created in the same directory
1595as the original, named with a ".tmp" extension, and is deleted when the
1596operation completes. Oh, and if locking is enabled, the DB is automatically
ffed8b01 1597locked for the entire duration of the copy.
1598
d0b74c17 1599B<WARNING:> Only call optimize() on the top-level node of the database, and
1600make sure there are no child references lying around. DBM::Deep keeps a reference
ffed8b01 1601counter, and if it is greater than 1, optimize() will abort and return undef.
1602
eea0d863 1603=head2 REFERENCES
1604
1605(The reasons given assume a high level of Perl understanding, specifically of
1606references. You can safely skip this section.)
1607
1608Currently, the only references supported are HASH and ARRAY. The other reference
1609types (SCALAR, CODE, GLOB, and REF) cannot be supported for various reasons.
1610
1611=over 4
1612
1613=item * GLOB
1614
1615These are things like filehandles and other sockets. They can't be supported
1616because it's completely unclear how DBM::Deep should serialize them.
1617
1618=item * SCALAR / REF
1619
1620The discussion here refers to the following type of example:
1621
1622 my $x = 25;
1623 $db->{key1} = \$x;
1624
1625 $x = 50;
1626
1627 # In some other process ...
1628
1629 my $val = ${ $db->{key1} };
1630
1631 is( $val, 50, "What actually gets stored in the DB file?" );
1632
1633The problem is one of synchronization. When the variable being referred to
1634changes value, the reference isn't notified. This means that the new value won't
1635be stored in the datafile for other processes to read. There is no TIEREF.
1636
1637It is theoretically possible to store references to values already within a
1638DBM::Deep object because everything already is synchronized, but the change to
1639the internals would be quite large. Specifically, DBM::Deep would have to tie
1640every single value that is stored. This would bloat the RAM footprint of
1641DBM::Deep at least twofold (if not more) and be a significant performance drain,
1642all to support a feature that has never been requested.
1643
1644=item * CODE
1645
1990c72d 1646L<Data::Dump::Streamer/> provides a mechanism for serializing coderefs,
1647including saving off all closure state. However, just as for SCALAR and REF,
1648that closure state may change without notifying the DBM::Deep object storing
1649the reference.
eea0d863 1650
1651=back
1652
ffed8b01 1653=head2 FILE CORRUPTION
1654
14a3acb6 1655The current level of error handling in DBM::Deep is minimal. Files I<are> checked
1656for a 32-bit signature when opened, but other corruption in files can cause
1657segmentation faults. DBM::Deep may try to seek() past the end of a file, or get
ffed8b01 1658stuck in an infinite loop depending on the level of corruption. File write
1659operations are not checked for failure (for speed), so if you happen to run
d0b74c17 1660out of disk space, DBM::Deep will probably fail in a bad way. These things will
ffed8b01 1661be addressed in a later version of DBM::Deep.
1662
1663=head2 DB OVER NFS
1664
d8db2929 1665Beware of using DBM::Deep files over NFS. DBM::Deep uses flock(), which works
1666well on local filesystems, but will NOT protect you from file corruption over
1667NFS. I've heard about setting up your NFS server with a locking daemon, then
1668using lockf() to lock your files, but your mileage may vary there as well.
1669From what I understand, there is no real way to do it. However, if you need
1670access to the underlying filehandle in DBM::Deep for using some other kind of
1671locking scheme like lockf(), see the L<LOW-LEVEL ACCESS> section above.
ffed8b01 1672
1673=head2 COPYING OBJECTS
1674
d0b74c17 1675Beware of copying tied objects in Perl. Very strange things can happen.
1676Instead, use DBM::Deep's C<clone()> method which safely copies the object and
ffed8b01 1677returns a new, blessed, tied hash or array to the same level in the DB.
1678
a8fdabda 1679 my $copy = $db->clone();
ffed8b01 1680
90f93b43 1681B<Note>: Since clone() here is cloning the object, not the database location, any
d8db2929 1682modifications to either $db or $copy will be visible to both.
90f93b43 1683
ffed8b01 1684=head2 LARGE ARRAYS
1685
1686Beware of using C<shift()>, C<unshift()> or C<splice()> with large arrays.
1687These functions cause every element in the array to move, which can be murder
1688on DBM::Deep, as every element has to be fetched from disk, then stored again in
90f93b43 1689a different location. This will be addressed in the forthcoming version 1.00.
ffed8b01 1690
9be51a89 1691=head2 WRITEONLY FILES
1692
1693If you pass in a filehandle to new(), you may have opened it in either a readonly or
1694writeonly mode. STORE will verify that the filehandle is writable. However, there
1695doesn't seem to be a good way to determine if a filehandle is readable. And, if the
1696filehandle isn't readable, it's not clear what will happen. So, don't do that.
1697
261d1296 1698=head1 CODE COVERAGE
1699
eff6a245 1700B<Devel::Cover> is used to test the code coverage of the tests. Below is the
1701B<Devel::Cover> report on this distribution's test suite.
7910cf68 1702
eff6a245 1703 ---------------------------- ------ ------ ------ ------ ------ ------ ------
1704 File stmt bran cond sub pod time total
1705 ---------------------------- ------ ------ ------ ------ ------ ------ ------
1706 blib/lib/DBM/Deep.pm 96.2 89.0 75.0 95.8 89.5 36.0 92.9
1707 blib/lib/DBM/Deep/Array.pm 96.1 88.3 100.0 96.4 100.0 15.9 94.7
1708 blib/lib/DBM/Deep/Engine.pm 96.6 86.6 89.5 100.0 0.0 20.0 91.0
1709 blib/lib/DBM/Deep/File.pm 99.4 88.3 55.6 100.0 0.0 19.6 89.5
1710 blib/lib/DBM/Deep/Hash.pm 98.5 83.3 100.0 100.0 100.0 8.5 96.3
1711 Total 96.9 87.4 81.2 98.0 38.5 100.0 92.1
1712 ---------------------------- ------ ------ ------ ------ ------ ------ ------
37c5bcf0 1713
1714=head1 MORE INFORMATION
1715
1716Check out the DBM::Deep Google Group at L<http://groups.google.com/group/DBM-Deep>
eff6a245 1717or send email to L<DBM-Deep@googlegroups.com>. You can also visit #dbm-deep on
1718irc.perl.org
ffed8b01 1719
d8db2929 1720The source code repository is at L<http://svn.perl.org/modules/DBM-Deep>
1721
eff6a245 1722=head1 MAINTAINERS
37c5bcf0 1723
aeeb5497 1724Rob Kinyon, L<rkinyon@cpan.org>
ffed8b01 1725
eff6a245 1726Originally written by Joseph Huckaby, L<jhuckaby@cpan.org>
1727
ffed8b01 1728Special thanks to Adam Sah and Rich Gaushell! You know why :-)
1729
1730=head1 SEE ALSO
1731
1732perltie(1), Tie::Hash(3), Digest::MD5(3), Fcntl(3), flock(2), lockf(3), nfs(5),
1733Digest::SHA256(3), Crypt::Blowfish(3), Compress::Zlib(3)
1734
1735=head1 LICENSE
1736
aeeb5497 1737Copyright (c) 2002-2006 Joseph Huckaby. All Rights Reserved.
ffed8b01 1738This is free software, you may use it and distribute it under the
1739same terms as Perl itself.
1740
1741=cut