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