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