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