Revert #19498 since it broke threaded builds.
[p5sagit/p5-mst-13.2.git] / lib / Tie / File.pm
CommitLineData
b5aed31e 1
2package Tie::File;
6fc0ea7e 3require 5.005;
6ae23f41 4use Carp ':DEFAULT', 'confess';
b5aed31e 5use POSIX 'SEEK_SET';
6ae23f41 6use Fcntl 'O_CREAT', 'O_RDWR', 'LOCK_EX', 'LOCK_SH', 'O_WRONLY', 'O_RDONLY';
95f36366 7sub O_ACCMODE () { O_RDONLY | O_RDWR | O_WRONLY }
b5aed31e 8
6ae23f41 9
10$VERSION = "0.95";
b3fe5a4c 11my $DEFAULT_MEMORY_SIZE = 1<<21; # 2 megabytes
6fc0ea7e 12my $DEFAULT_AUTODEFER_THRESHHOLD = 3; # 3 records
13my $DEFAULT_AUTODEFER_FILELEN_THRESHHOLD = 65536; # 16 disk blocksful
b3fe5a4c 14
6ae23f41 15my %good_opt = map {$_ => 1, "-$_" => 1}
16 qw(memory dw_size mode recsep discipline
17 autodefer autochomp autodefer_threshhold);
b5aed31e 18
19sub TIEARRAY {
20 if (@_ % 2 != 0) {
21 croak "usage: tie \@array, $_[0], filename, [option => value]...";
22 }
23 my ($pack, $file, %opts) = @_;
24
25 # transform '-foo' keys into 'foo' keys
26 for my $key (keys %opts) {
b3fe5a4c 27 unless ($good_opt{$key}) {
28 croak("$pack: Unrecognized option '$key'\n");
29 }
b5aed31e 30 my $okey = $key;
31 if ($key =~ s/^-+//) {
32 $opts{$key} = delete $opts{$okey};
33 }
34 }
35
b3fe5a4c 36 unless (defined $opts{memory}) {
37 # default is the larger of the default cache size and the
38 # deferred-write buffer size (if specified)
39 $opts{memory} = $DEFAULT_MEMORY_SIZE;
6ae23f41 40 $opts{memory} = $opts{dw_size}
b3fe5a4c 41 if defined $opts{dw_size} && $opts{dw_size} > $DEFAULT_MEMORY_SIZE;
57c7bc08 42 # Dora Winifred Read
b3fe5a4c 43 }
44 $opts{dw_size} = $opts{memory} unless defined $opts{dw_size};
45 if ($opts{dw_size} > $opts{memory}) {
46 croak("$pack: dw_size may not be larger than total memory allocation\n");
47 }
57c7bc08 48 # are we in deferred-write mode?
49 $opts{defer} = 0 unless defined $opts{defer};
50 $opts{deferred} = {}; # no records are presently deferred
b3fe5a4c 51 $opts{deferred_s} = 0; # count of total bytes in ->{deferred}
6fc0ea7e 52 $opts{deferred_max} = -1; # empty
b5aed31e 53
6ae23f41 54 # What's a good way to arrange that this class can be overridden?
55 $opts{cache} = Tie::File::Cache->new($opts{memory});
6fc0ea7e 56
57 # autodeferment is enabled by default
58 $opts{autodefer} = 1 unless defined $opts{autodefer};
59 $opts{autodeferring} = 0; # but is not initially active
60 $opts{ad_history} = [];
61 $opts{autodefer_threshhold} = $DEFAULT_AUTODEFER_THRESHHOLD
62 unless defined $opts{autodefer_threshhold};
63 $opts{autodefer_filelen_threshhold} = $DEFAULT_AUTODEFER_FILELEN_THRESHHOLD
64 unless defined $opts{autodefer_filelen_threshhold};
b5aed31e 65
66 $opts{offsets} = [0];
67 $opts{filename} = $file;
b3fe5a4c 68 unless (defined $opts{recsep}) {
69 $opts{recsep} = _default_recsep();
70 }
b5aed31e 71 $opts{recseplen} = length($opts{recsep});
72 if ($opts{recseplen} == 0) {
73 croak "Empty record separator not supported by $pack";
74 }
75
0b28bc9a 76 $opts{autochomp} = 1 unless defined $opts{autochomp};
77
27531ffb 78 $opts{mode} = O_CREAT|O_RDWR unless defined $opts{mode};
79 $opts{rdonly} = (($opts{mode} & O_ACCMODE) == O_RDONLY);
bf919750 80 $opts{sawlastrec} = undef;
27531ffb 81
fa408a35 82 my $fh;
b5aed31e 83
fa408a35 84 if (UNIVERSAL::isa($file, 'GLOB')) {
57c7bc08 85 # We use 1 here on the theory that some systems
86 # may not indicate failure if we use 0.
87 # MSWin32 does not indicate failure with 0, but I don't know if
88 # it will indicate failure with 1 or not.
89 unless (seek $file, 1, SEEK_SET) {
fa408a35 90 croak "$pack: your filehandle does not appear to be seekable";
91 }
57c7bc08 92 seek $file, 0, SEEK_SET # put it back
93 $fh = $file; # setting binmode is the user's problem
fa408a35 94 } elsif (ref $file) {
95 croak "usage: tie \@array, $pack, filename, [option => value]...";
96 } else {
97 $fh = \do { local *FH }; # only works in 5.005 and later
27531ffb 98 sysopen $fh, $file, $opts{mode}, 0666 or return;
fa408a35 99 binmode $fh;
100 }
b5aed31e 101 { my $ofh = select $fh; $| = 1; select $ofh } # autoflush on write
b3fe5a4c 102 if (defined $opts{discipline} && $] >= 5.006) {
103 # This avoids a compile-time warning under 5.005
104 eval 'binmode($fh, $opts{discipline})';
105 croak $@ if $@ =~ /unknown discipline/i;
106 die if $@;
107 }
b5aed31e 108 $opts{fh} = $fh;
109
110 bless \%opts => $pack;
111}
112
113sub FETCH {
114 my ($self, $n) = @_;
6fc0ea7e 115 my $rec;
116
117 # check the defer buffer
6ae23f41 118 $rec = $self->{deferred}{$n} if exists $self->{deferred}{$n};
119 $rec = $self->_fetch($n) unless defined $rec;
6fc0ea7e 120
6ae23f41 121 # inlined _chomp1
122 substr($rec, - $self->{recseplen}) = ""
123 if defined $rec && $self->{autochomp};
124 $rec;
0b28bc9a 125}
126
127# Chomp many records in-place; return nothing useful
128sub _chomp {
129 my $self = shift;
130 return unless $self->{autochomp};
131 if ($self->{autochomp}) {
132 for (@_) {
133 next unless defined;
134 substr($_, - $self->{recseplen}) = "";
135 }
136 }
137}
138
139# Chomp one record in-place; return modified record
140sub _chomp1 {
141 my ($self, $rec) = @_;
142 return $rec unless $self->{autochomp};
143 return unless defined $rec;
144 substr($rec, - $self->{recseplen}) = "";
145 $rec;
146}
147
148sub _fetch {
149 my ($self, $n) = @_;
b5aed31e 150
151 # check the record cache
6fc0ea7e 152 { my $cached = $self->{cache}->lookup($n);
b5aed31e 153 return $cached if defined $cached;
154 }
155
27531ffb 156 if ($#{$self->{offsets}} < $n) {
6ae23f41 157 return if $self->{eof}; # request for record beyond end of file
b5aed31e 158 my $o = $self->_fill_offsets_to($n);
159 # If it's still undefined, there is no such record, so return 'undef'
160 return unless defined $o;
161 }
162
163 my $fh = $self->{FH};
164 $self->_seek($n); # we can do this now that offsets is populated
165 my $rec = $self->_read_record;
b3fe5a4c 166
167# If we happen to have just read the first record, check to see if
168# the length of the record matches what 'tell' says. If not, Tie::File
169# won't work, and should drop dead.
170#
171# if ($n == 0 && defined($rec) && tell($self->{fh}) != length($rec)) {
172# if (defined $self->{discipline}) {
173# croak "I/O discipline $self->{discipline} not supported";
174# } else {
175# croak "File encoding not supported";
176# }
177# }
178
6fc0ea7e 179 $self->{cache}->insert($n, $rec) if defined $rec && not $self->{flushing};
b5aed31e 180 $rec;
181}
182
183sub STORE {
184 my ($self, $n, $rec) = @_;
6fc0ea7e 185 die "STORE called from _check_integrity!" if $DIAGNOSTIC;
b5aed31e 186
187 $self->_fixrecs($rec);
188
6fc0ea7e 189 if ($self->{autodefer}) {
190 $self->_annotate_ad_history($n);
191 }
192
193 return $self->_store_deferred($n, $rec) if $self->_is_deferring;
194
b5aed31e 195
196 # We need this to decide whether the new record will fit
197 # It incidentally populates the offsets table
198 # Note we have to do this before we alter the cache
6fc0ea7e 199 # 20020324 Wait, but this DOES alter the cache. TODO BUG?
0b28bc9a 200 my $oldrec = $self->_fetch($n);
b5aed31e 201
b5aed31e 202 if (not defined $oldrec) {
203 # We're storing a record beyond the end of the file
51efdd02 204 $self->_extend_file_to($n+1);
b5aed31e 205 $oldrec = $self->{recsep};
206 }
6ae23f41 207# return if $oldrec eq $rec; # don't bother
b5aed31e 208 my $len_diff = length($rec) - length($oldrec);
209
b3fe5a4c 210 # length($oldrec) here is not consistent with text mode TODO XXX BUG
6ae23f41 211 $self->_mtwrite($rec, $self->{offsets}[$n], length($oldrec));
212 $self->_oadjust([$n, 1, $rec]);
213 $self->{cache}->update($n, $rec);
b5aed31e 214}
215
b3fe5a4c 216sub _store_deferred {
217 my ($self, $n, $rec) = @_;
6fc0ea7e 218 $self->{cache}->remove($n);
b3fe5a4c 219 my $old_deferred = $self->{deferred}{$n};
6fc0ea7e 220
221 if (defined $self->{deferred_max} && $n > $self->{deferred_max}) {
222 $self->{deferred_max} = $n;
223 }
b3fe5a4c 224 $self->{deferred}{$n} = $rec;
6fc0ea7e 225
226 my $len_diff = length($rec);
227 $len_diff -= length($old_deferred) if defined $old_deferred;
228 $self->{deferred_s} += $len_diff;
229 $self->{cache}->adj_limit(-$len_diff);
b3fe5a4c 230 if ($self->{deferred_s} > $self->{dw_size}) {
57c7bc08 231 $self->_flush;
232 } elsif ($self->_cache_too_full) {
b3fe5a4c 233 $self->_cache_flush;
234 }
235}
236
57c7bc08 237# Remove a single record from the deferred-write buffer without writing it
238# The record need not be present
239sub _delete_deferred {
240 my ($self, $n) = @_;
241 my $rec = delete $self->{deferred}{$n};
242 return unless defined $rec;
6fc0ea7e 243
244 if (defined $self->{deferred_max}
245 && $n == $self->{deferred_max}) {
246 undef $self->{deferred_max};
247 }
248
57c7bc08 249 $self->{deferred_s} -= length $rec;
6fc0ea7e 250 $self->{cache}->adj_limit(length $rec);
57c7bc08 251}
252
b5aed31e 253sub FETCHSIZE {
254 my $self = shift;
6ae23f41 255 my $n = $self->{eof} ? $#{$self->{offsets}} : $self->_fill_offsets;
256
6fc0ea7e 257 my $top_deferred = $self->_defer_max;
258 $n = $top_deferred+1 if defined $top_deferred && $n < $top_deferred+1;
b5aed31e 259 $n;
260}
261
262sub STORESIZE {
263 my ($self, $len) = @_;
6fc0ea7e 264
265 if ($self->{autodefer}) {
266 $self->_annotate_ad_history('STORESIZE');
267 }
268
b5aed31e 269 my $olen = $self->FETCHSIZE;
270 return if $len == $olen; # Woo-hoo!
271
272 # file gets longer
273 if ($len > $olen) {
6fc0ea7e 274 if ($self->_is_deferring) {
57c7bc08 275 for ($olen .. $len-1) {
276 $self->_store_deferred($_, $self->{recsep});
277 }
278 } else {
279 $self->_extend_file_to($len);
280 }
b5aed31e 281 return;
282 }
283
284 # file gets shorter
6fc0ea7e 285 if ($self->_is_deferring) {
286 # TODO maybe replace this with map-plus-assignment?
57c7bc08 287 for (grep $_ >= $len, keys %{$self->{deferred}}) {
288 $self->_delete_deferred($_);
289 }
6fc0ea7e 290 $self->{deferred_max} = $len-1;
57c7bc08 291 }
292
b5aed31e 293 $self->_seek($len);
294 $self->_chop_file;
836d9961 295 $#{$self->{offsets}} = $len;
b3fe5a4c 296# $self->{offsets}[0] = 0; # in case we just chopped this
6fc0ea7e 297
bf919750 298 $self->{cache}->remove(grep $_ >= $len, $self->{cache}->ckeys);
b5aed31e 299}
300
6ae23f41 301### OPTIMIZE ME
302### It should not be necessary to do FETCHSIZE
303### Just seek to the end of the file.
51efdd02 304sub PUSH {
305 my $self = shift;
306 $self->SPLICE($self->FETCHSIZE, scalar(@_), @_);
6ae23f41 307
308 # No need to return:
309 # $self->FETCHSIZE; # because av.c takes care of this for me
51efdd02 310}
311
312sub POP {
313 my $self = shift;
7b6b3db1 314 my $size = $self->FETCHSIZE;
315 return if $size == 0;
316# print STDERR "# POPPITY POP POP POP\n";
317 scalar $self->SPLICE($size-1, 1);
51efdd02 318}
319
320sub SHIFT {
321 my $self = shift;
322 scalar $self->SPLICE(0, 1);
323}
324
325sub UNSHIFT {
326 my $self = shift;
327 $self->SPLICE(0, 0, @_);
57c7bc08 328 # $self->FETCHSIZE; # av.c takes care of this for me
51efdd02 329}
330
331sub CLEAR {
51efdd02 332 my $self = shift;
6fc0ea7e 333
334 if ($self->{autodefer}) {
335 $self->_annotate_ad_history('CLEAR');
336 }
337
51efdd02 338 $self->_seekb(0);
339 $self->_chop_file;
6fc0ea7e 340 $self->{cache}->set_limit($self->{memory});
341 $self->{cache}->empty;
51efdd02 342 @{$self->{offsets}} = (0);
57c7bc08 343 %{$self->{deferred}}= ();
344 $self->{deferred_s} = 0;
6fc0ea7e 345 $self->{deferred_max} = -1;
51efdd02 346}
347
348sub EXTEND {
349 my ($self, $n) = @_;
57c7bc08 350
351 # No need to pre-extend anything in this case
6fc0ea7e 352 return if $self->_is_deferring;
57c7bc08 353
51efdd02 354 $self->_fill_offsets_to($n);
355 $self->_extend_file_to($n);
356}
357
358sub DELETE {
359 my ($self, $n) = @_;
6fc0ea7e 360
361 if ($self->{autodefer}) {
362 $self->_annotate_ad_history('DELETE');
363 }
364
51efdd02 365 my $lastrec = $self->FETCHSIZE-1;
57c7bc08 366 my $rec = $self->FETCH($n);
6fc0ea7e 367 $self->_delete_deferred($n) if $self->_is_deferring;
51efdd02 368 if ($n == $lastrec) {
369 $self->_seek($n);
370 $self->_chop_file;
fa408a35 371 $#{$self->{offsets}}--;
6fc0ea7e 372 $self->{cache}->remove($n);
51efdd02 373 # perhaps in this case I should also remove trailing null records?
57c7bc08 374 # 20020316
375 # Note that delete @a[-3..-1] deletes the records in the wrong order,
376 # so we only chop the very last one out of the file. We could repair this
377 # by tracking deleted records inside the object.
378 } elsif ($n < $lastrec) {
51efdd02 379 $self->STORE($n, "");
380 }
57c7bc08 381 $rec;
51efdd02 382}
383
384sub EXISTS {
385 my ($self, $n) = @_;
57c7bc08 386 return 1 if exists $self->{deferred}{$n};
57c7bc08 387 $n < $self->FETCHSIZE;
51efdd02 388}
389
b5aed31e 390sub SPLICE {
b3fe5a4c 391 my $self = shift;
6fc0ea7e 392
393 if ($self->{autodefer}) {
394 $self->_annotate_ad_history('SPLICE');
395 }
396
397 $self->_flush if $self->_is_deferring; # move this up?
0b28bc9a 398 if (wantarray) {
399 $self->_chomp(my @a = $self->_splice(@_));
400 @a;
401 } else {
402 $self->_chomp1(scalar $self->_splice(@_));
403 }
b3fe5a4c 404}
405
406sub DESTROY {
57c7bc08 407 my $self = shift;
6fc0ea7e 408 $self->flush if $self->_is_deferring;
409 $self->{cache}->delink if defined $self->{cache}; # break circular link
b3fe5a4c 410}
411
412sub _splice {
b5aed31e 413 my ($self, $pos, $nrecs, @data) = @_;
414 my @result;
415
7b6b3db1 416 $pos = 0 unless defined $pos;
417
418 # Deal with negative and other out-of-range positions
419 # Also set default for $nrecs
51efdd02 420 {
421 my $oldsize = $self->FETCHSIZE;
7b6b3db1 422 $nrecs = $oldsize unless defined $nrecs;
51efdd02 423 my $oldpos = $pos;
424
425 if ($pos < 0) {
426 $pos += $oldsize;
427 if ($pos < 0) {
428 croak "Modification of non-creatable array value attempted, subscript $oldpos";
429 }
430 }
431
432 if ($pos > $oldsize) {
433 return unless @data;
434 $pos = $oldsize; # This is what perl does for normal arrays
435 }
bf919750 436
437 # The manual is very unclear here
438 if ($nrecs < 0) {
439 $nrecs = $oldsize - $pos + $nrecs;
440 $nrecs = 0 if $nrecs < 0;
441 }
6ae23f41 442
443 # nrecs is too big---it really means "until the end"
444 # 20030507
445 if ($nrecs + $pos > $oldsize) {
446 $nrecs = $oldsize - $pos;
447 }
51efdd02 448 }
b5aed31e 449
450 $self->_fixrecs(@data);
451 my $data = join '', @data;
452 my $datalen = length $data;
453 my $oldlen = 0;
454
455 # compute length of data being removed
456 for ($pos .. $pos+$nrecs-1) {
27531ffb 457 last unless defined $self->_fill_offsets_to($_);
0b28bc9a 458 my $rec = $self->_fetch($_);
b5aed31e 459 last unless defined $rec;
460 push @result, $rec;
6fc0ea7e 461
462 # Why don't we just use length($rec) here?
463 # Because that record might have come from the cache. _splice
464 # might have been called to flush out the deferred-write records,
27531ffb 465 # and in this case length($rec) is the length of the record to be
466 # *written*, not the length of the actual record in the file. But
467 # the offsets are still true. 20020322
6fc0ea7e 468 $oldlen += $self->{offsets}[$_+1] - $self->{offsets}[$_]
469 if defined $self->{offsets}[$_+1];
b5aed31e 470 }
6ae23f41 471 $self->_fill_offsets_to($pos+$nrecs);
b5aed31e 472
51efdd02 473 # Modify the file
6ae23f41 474 $self->_mtwrite($data, $self->{offsets}[$pos], $oldlen);
475 # Adjust the offsets table
476 $self->_oadjust([$pos, $nrecs, @data]);
477
478 { # Take this read cache stuff out into a separate function
479 # You made a half-attempt to put it into _oadjust.
480 # Finish something like that up eventually.
481 # STORE also needs to do something similarish
482
483 # update the read cache, part 1
484 # modified records
485 for ($pos .. $pos+$nrecs-1) {
486 my $new = $data[$_-$pos];
487 if (defined $new) {
488 $self->{cache}->update($_, $new);
489 } else {
490 $self->{cache}->remove($_);
491 }
b5aed31e 492 }
6ae23f41 493
494 # update the read cache, part 2
495 # moved records - records past the site of the change
496 # need to be renumbered
497 # Maybe merge this with the previous block?
498 {
499 my @oldkeys = grep $_ >= $pos + $nrecs, $self->{cache}->ckeys;
500 my @newkeys = map $_-$nrecs+@data, @oldkeys;
501 $self->{cache}->rekey(\@oldkeys, \@newkeys);
b5aed31e 502 }
6fc0ea7e 503
6ae23f41 504 # Now there might be too much data in the cache, if we spliced out
505 # some short records and spliced in some long ones. If so, flush
506 # the cache.
507 $self->_cache_flush;
b5aed31e 508 }
b5aed31e 509
51efdd02 510 # Yes, the return value of 'splice' *is* actually this complicated
511 wantarray ? @result : @result ? $result[-1] : undef;
b5aed31e 512}
513
6ae23f41 514
b5aed31e 515# write data into the file
6ae23f41 516# $data is the data to be written.
b5aed31e 517# it should be written at position $pos, and should overwrite
518# exactly $len of the following bytes.
519# Note that if length($data) > $len, the subsequent bytes will have to
520# be moved up, and if length($data) < $len, they will have to
521# be moved down
522sub _twrite {
523 my ($self, $data, $pos, $len) = @_;
524
525 unless (defined $pos) {
526 die "\$pos was undefined in _twrite";
527 }
528
529 my $len_diff = length($data) - $len;
530
531 if ($len_diff == 0) { # Woo-hoo!
532 my $fh = $self->{fh};
533 $self->_seekb($pos);
534 $self->_write_record($data);
535 return; # well, that was easy.
536 }
537
538 # the two records are of different lengths
539 # our strategy here: rewrite the tail of the file,
540 # reading ahead one buffer at a time
541 # $bufsize is required to be at least as large as the data we're overwriting
542 my $bufsize = _bufsize($len_diff);
543 my ($writepos, $readpos) = ($pos, $pos+$len);
51efdd02 544 my $next_block;
6fc0ea7e 545 my $more_data;
b5aed31e 546
547 # Seems like there ought to be a way to avoid the repeated code
548 # and the special case here. The read(1) is also a little weird.
549 # Think about this.
550 do {
551 $self->_seekb($readpos);
51efdd02 552 my $br = read $self->{fh}, $next_block, $bufsize;
6fc0ea7e 553 $more_data = read $self->{fh}, my($dummy), 1;
b5aed31e 554 $self->_seekb($writepos);
555 $self->_write_record($data);
556 $readpos += $br;
557 $writepos += length $data;
558 $data = $next_block;
6ae23f41 559 } while $more_data;
51efdd02 560 $self->_seekb($writepos);
561 $self->_write_record($next_block);
b5aed31e 562
563 # There might be leftover data at the end of the file
564 $self->_chop_file if $len_diff < 0;
565}
566
6ae23f41 567# _iwrite(D, S, E)
568# Insert text D at position S.
569# Let C = E-S-|D|. If C < 0; die.
570# Data in [S,S+C) is copied to [S+D,S+D+C) = [S+D,E).
571# Data in [S+C = E-D, E) is returned. Data in [E, oo) is untouched.
572#
573# In a later version, don't read the entire intervening area into
574# memory at once; do the copying block by block.
575sub _iwrite {
576 my $self = shift;
577 my ($D, $s, $e) = @_;
578 my $d = length $D;
579 my $c = $e-$s-$d;
580 local *FH = $self->{fh};
581 confess "Not enough space to insert $d bytes between $s and $e"
582 if $c < 0;
583 confess "[$s,$e) is an invalid insertion range" if $e < $s;
584
585 $self->_seekb($s);
586 read FH, my $buf, $e-$s;
587
588 $D .= substr($buf, 0, $c, "");
589
590 $self->_seekb($s);
591 $self->_write_record($D);
592
593 return $buf;
594}
595
596# Like _twrite, but the data-pos-len triple may be repeated; you may
597# write several chunks. All the writing will be done in
598# one pass. Chunks SHALL be in ascending order and SHALL NOT overlap.
599sub _mtwrite {
600 my $self = shift;
601 my $unwritten = "";
602 my $delta = 0;
603
604 @_ % 3 == 0
605 or die "Arguments to _mtwrite did not come in groups of three";
606
607 while (@_) {
608 my ($data, $pos, $len) = splice @_, 0, 3;
609 my $end = $pos + $len; # The OLD end of the segment to be replaced
610 $data = $unwritten . $data;
611 $delta -= length($unwritten);
612 $unwritten = "";
613 $pos += $delta; # This is where the data goes now
614 my $dlen = length $data;
615 $self->_seekb($pos);
616 if ($len >= $dlen) { # the data will fit
617 $self->_write_record($data);
618 $delta += ($dlen - $len); # everything following moves down by this much
619 $data = ""; # All the data in the buffer has been written
620 } else { # won't fit
621 my $writable = substr($data, 0, $len - $delta, "");
622 $self->_write_record($writable);
623 $delta += ($dlen - $len); # everything following moves down by this much
624 }
625
626 # At this point we've written some but maybe not all of the data.
627 # There might be a gap to close up, or $data might still contain a
628 # bunch of unwritten data that didn't fit.
629 my $ndlen = length $data;
630 if ($delta == 0) {
631 $self->_write_record($data);
632 } elsif ($delta < 0) {
633 # upcopy (close up gap)
634 if (@_) {
635 $self->_upcopy($end, $end + $delta, $_[1] - $end);
636 } else {
637 $self->_upcopy($end, $end + $delta);
638 }
639 } else {
640 # downcopy (insert data that didn't fit; replace this data in memory
641 # with _later_ data that doesn't fit)
642 if (@_) {
643 $unwritten = $self->_downcopy($data, $end, $_[1] - $end);
644 } else {
645 # Make the file longer to accomodate the last segment that doesn'
646 $unwritten = $self->_downcopy($data, $end);
647 }
648 }
649 }
650}
651
652# Copy block of data of length $len from position $spos to position $dpos
653# $dpos must be <= $spos
654#
655# If $len is undefined, go all the way to the end of the file
656# and then truncate it ($spos - $dpos bytes will be removed)
657sub _upcopy {
658 my $blocksize = 8192;
659 my ($self, $spos, $dpos, $len) = @_;
660 if ($dpos > $spos) {
661 die "source ($spos) was upstream of destination ($dpos) in _upcopy";
662 } elsif ($dpos == $spos) {
663 return;
664 }
665
666 while (! defined ($len) || $len > 0) {
667 my $readsize = ! defined($len) ? $blocksize
668 : $len > $blocksize ? $blocksize
669 : $len;
670
671 my $fh = $self->{fh};
672 $self->_seekb($spos);
86e5a81e 673 my $bytes_read = read $fh, my($data), $readsize;
6ae23f41 674 $self->_seekb($dpos);
675 if ($data eq "") {
676 $self->_chop_file;
677 last;
678 }
679 $self->_write_record($data);
680 $spos += $bytes_read;
681 $dpos += $bytes_read;
682 $len -= $bytes_read if defined $len;
683 }
684}
685
686# Write $data into a block of length $len at position $pos,
687# moving everything in the block forwards to make room.
688# Instead of writing the last length($data) bytes from the block
689# (because there isn't room for them any longer) return them.
690sub _downcopy {
691 my $blocksize = 8192;
692 my ($self, $data, $pos, $len) = @_;
693 my $fh = $self->{fh};
694
695 while (! defined $len || $len > 0) {
696 my $readsize = ! defined($len) ? $blocksize
697 : $len > $blocksize? $blocksize : $len;
698 $self->_seekb($pos);
86e5a81e 699 read $fh, my($old), $readsize;
6ae23f41 700 $data .= $old;
701 $self->_seekb($pos);
702 my $writable = substr($data, 0, $readsize, "");
703 last if $writable eq "";
704 $self->_write_record($writable);
705 $len -= $readsize if defined $len;
706 $pos += $readsize;
707 }
708 return $data;
709}
710
711# Adjust the object data structures following an '_mtwrite'
712# Arguments are
713# [$pos, $nrecs, @length] items
714# indicating that $nrecs records were removed at $recpos (a record offset)
715# and replaced with records of length @length...
716# Arguments guarantee that $recpos is strictly increasing.
717# No return value
718sub _oadjust {
719 my $self = shift;
720 my $delta = 0;
721 my $delta_recs = 0;
722 my $prev_end = -1;
723 my %newkeys;
724
725 for (@_) {
726 my ($pos, $nrecs, @data) = @$_;
727 $pos += $delta_recs;
728
729 # Adjust the offsets of the records after the previous batch up
730 # to the first new one of this batch
731 for my $i ($prev_end+2 .. $pos - 1) {
732 $self->{offsets}[$i] += $delta;
733 $newkey{$i} = $i + $delta_recs;
734 }
735
736 $prev_end = $pos + @data - 1; # last record moved on this pass
737
738 # Remove the offsets for the removed records;
739 # replace with the offsets for the inserted records
740 my @newoff = ($self->{offsets}[$pos] + $delta);
741 for my $i (0 .. $#data) {
742 my $newlen = length $data[$i];
743 push @newoff, $newoff[$i] + $newlen;
744 $delta += $newlen;
745 }
746
747 for my $i ($pos .. $pos+$nrecs-1) {
748 last if $i+1 > $#{$self->{offsets}};
749 my $oldlen = $self->{offsets}[$i+1] - $self->{offsets}[$i];
750 $delta -= $oldlen;
751 }
752
753# # also this data has changed, so update it in the cache
754# for (0 .. $#data) {
755# $self->{cache}->update($pos + $_, $data[$_]);
756# }
757# if ($delta_recs) {
758# my @oldkeys = grep $_ >= $pos + @data, $self->{cache}->ckeys;
759# my @newkeys = map $_ + $delta_recs, @oldkeys;
760# $self->{cache}->rekey(\@oldkeys, \@newkeys);
761# }
762
763 # replace old offsets with new
764 splice @{$self->{offsets}}, $pos, $nrecs+1, @newoff;
765 # What if we just spliced out the end of the offsets table?
766 # shouldn't we clear $self->{eof}? Test for this XXX BUG TODO
767
768 $delta_recs += @data - $nrecs; # net change in total number of records
769 }
770
771 # The trailing records at the very end of the file
772 if ($delta) {
773 for my $i ($prev_end+2 .. $#{$self->{offsets}}) {
774 $self->{offsets}[$i] += $delta;
775 }
776 }
777
778 # If we scrubbed out all known offsets, regenerate the trivial table
779 # that knows that the file does indeed start at 0.
780 $self->{offsets}[0] = 0 unless @{$self->{offsets}};
781 # If the file got longer, the offsets table is no longer complete
782 # $self->{eof} = 0 if $delta_recs > 0;
783
784 # Now there might be too much data in the cache, if we spliced out
785 # some short records and spliced in some long ones. If so, flush
786 # the cache.
787 $self->_cache_flush;
788}
789
b5aed31e 790# If a record does not already end with the appropriate terminator
791# string, append one.
792sub _fixrecs {
793 my $self = shift;
794 for (@_) {
27531ffb 795 $_ = "" unless defined $_;
b5aed31e 796 $_ .= $self->{recsep}
797 unless substr($_, - $self->{recseplen}) eq $self->{recsep};
798 }
799}
800
57c7bc08 801
802################################################################
803#
804# Basic read, write, and seek
805#
806
b5aed31e 807# seek to the beginning of record #$n
808# Assumes that the offsets table is already correctly populated
809#
810# Note that $n=-1 has a special meaning here: It means the start of
811# the last known record; this may or may not be the very last record
812# in the file, depending on whether the offsets table is fully populated.
813#
814sub _seek {
815 my ($self, $n) = @_;
816 my $o = $self->{offsets}[$n];
817 defined($o)
818 or confess("logic error: undefined offset for record $n");
819 seek $self->{fh}, $o, SEEK_SET
6ae23f41 820 or confess "Couldn't seek filehandle: $!"; # "Should never happen."
b5aed31e 821}
822
6ae23f41 823# seek to byte $b in the file
b5aed31e 824sub _seekb {
825 my ($self, $b) = @_;
826 seek $self->{fh}, $b, SEEK_SET
827 or die "Couldn't seek filehandle: $!"; # "Should never happen."
828}
829
830# populate the offsets table up to the beginning of record $n
831# return the offset of record $n
832sub _fill_offsets_to {
833 my ($self, $n) = @_;
27531ffb 834
835 return $self->{offsets}[$n] if $self->{eof};
836
b5aed31e 837 my $fh = $self->{fh};
838 local *OFF = $self->{offsets};
839 my $rec;
840
841 until ($#OFF >= $n) {
b5aed31e 842 $self->_seek(-1); # tricky -- see comment at _seek
843 $rec = $self->_read_record;
844 if (defined $rec) {
6ae23f41 845 push @OFF, int(tell $fh); # Tels says that int() saves memory here
b5aed31e 846 } else {
27531ffb 847 $self->{eof} = 1;
b5aed31e 848 return; # It turns out there is no such record
849 }
850 }
851
852 # we have now read all the records up to record n-1,
853 # so we can return the offset of record n
6ae23f41 854 $OFF[$n];
855}
856
857sub _fill_offsets {
858 my ($self) = @_;
859
860 my $fh = $self->{fh};
861 local *OFF = $self->{offsets};
862
863 $self->_seek(-1); # tricky -- see comment at _seek
864
865 # Tels says that inlining read_record() would make this loop
866 # five times faster. 20030508
867 while ( defined $self->_read_record()) {
868 # int() saves us memory here
869 push @OFF, int(tell $fh);
870 }
871
872 $self->{eof} = 1;
873 $#OFF;
b5aed31e 874}
875
876# assumes that $rec is already suitably terminated
877sub _write_record {
878 my ($self, $rec) = @_;
879 my $fh = $self->{fh};
bf919750 880 local $\ = "";
b5aed31e 881 print $fh $rec
882 or die "Couldn't write record: $!"; # "Should never happen."
27531ffb 883# $self->{_written} += length($rec);
b5aed31e 884}
885
886sub _read_record {
887 my $self = shift;
888 my $rec;
889 { local $/ = $self->{recsep};
890 my $fh = $self->{fh};
891 $rec = <$fh>;
892 }
27531ffb 893 return unless defined $rec;
bf919750 894 if (! $self->{sawlastrec} &&
895 substr($rec, -$self->{recseplen}) ne $self->{recsep}) {
27531ffb 896 # improperly terminated final record --- quietly fix it.
897# my $ac = substr($rec, -$self->{recseplen});
898# $ac =~ s/\n/\\n/g;
bf919750 899 $self->{sawlastrec} = 1;
27531ffb 900 unless ($self->{rdonly}) {
bf919750 901 local $\ = "";
27531ffb 902 my $fh = $self->{fh};
903 print $fh $self->{recsep};
904 }
905 $rec .= $self->{recsep};
906 }
907# $self->{_read} += length($rec) if defined $rec;
b5aed31e 908 $rec;
909}
910
6fc0ea7e 911sub _rw_stats {
27531ffb 912 my $self = shift;
6fc0ea7e 913 @{$self}{'_read', '_written'};
914}
915
57c7bc08 916################################################################
917#
918# Read cache management
919
6fc0ea7e 920sub _cache_flush {
921 my ($self) = @_;
922 $self->{cache}->reduce_size_to($self->{memory} - $self->{deferred_s});
b5aed31e 923}
924
57c7bc08 925sub _cache_too_full {
926 my $self = shift;
6fc0ea7e 927 $self->{cache}->bytes + $self->{deferred_s} >= $self->{memory};
b5aed31e 928}
929
57c7bc08 930################################################################
931#
932# File custodial services
933#
934
935
b5aed31e 936# We have read to the end of the file and have the offsets table
937# entirely populated. Now we need to write a new record beyond
938# the end of the file. We prepare for this by writing
939# empty records into the file up to the position we want
51efdd02 940#
941# assumes that the offsets table already contains the offset of record $n,
942# if it exists, and extends to the end of the file if not.
b5aed31e 943sub _extend_file_to {
944 my ($self, $n) = @_;
945 $self->_seek(-1); # position after the end of the last record
946 my $pos = $self->{offsets}[-1];
947
948 # the offsets table has one entry more than the total number of records
6fc0ea7e 949 my $extras = $n - $#{$self->{offsets}};
b5aed31e 950
951 # Todo : just use $self->{recsep} x $extras here?
952 while ($extras-- > 0) {
953 $self->_write_record($self->{recsep});
6ae23f41 954 push @{$self->{offsets}}, int(tell $self->{fh});
b5aed31e 955 }
956}
957
958# Truncate the file at the current position
959sub _chop_file {
960 my $self = shift;
961 truncate $self->{fh}, tell($self->{fh});
962}
963
57c7bc08 964
b5aed31e 965# compute the size of a buffer suitable for moving
966# all the data in a file forward $n bytes
967# ($n may be negative)
968# The result should be at least $n.
969sub _bufsize {
970 my $n = shift;
6ae23f41 971 return 8192 if $n <= 0;
b5aed31e 972 my $b = $n & ~8191;
973 $b += 8192 if $n & 8191;
974 $b;
975}
976
57c7bc08 977################################################################
978#
979# Miscellaneous public methods
980#
981
51efdd02 982# Lock the file
983sub flock {
984 my ($self, $op) = @_;
985 unless (@_ <= 3) {
986 my $pack = ref $self;
987 croak "Usage: $pack\->flock([OPERATION])";
988 }
989 my $fh = $self->{fh};
990 $op = LOCK_EX unless defined $op;
6ae23f41 991 my $locked = flock $fh, $op;
992
993 if ($locked && ($op & (LOCK_EX | LOCK_SH))) {
994 # If you're locking the file, then presumably it's because
995 # there might have been a write access by another process.
996 # In that case, the read cache contents and the offsets table
997 # might be invalid, so discard them. 20030508
998 $self->{offsets} = [0];
999 $self->{cache}->empty;
1000 }
1001
1002 $locked;
51efdd02 1003}
b5aed31e 1004
0b28bc9a 1005# Get/set autochomp option
1006sub autochomp {
1007 my $self = shift;
1008 if (@_) {
1009 my $old = $self->{autochomp};
1010 $self->{autochomp} = shift;
1011 $old;
1012 } else {
1013 $self->{autochomp};
1014 }
1015}
1016
6ae23f41 1017# Get offset table entries; returns offset of nth record
1018sub offset {
1019 my ($self, $n) = @_;
1020
1021 if ($#{$self->{offsets}} < $n) {
1022 return if $self->{eof}; # request for record beyond the end of file
1023 my $o = $self->_fill_offsets_to($n);
1024 # If it's still undefined, there is no such record, so return 'undef'
1025 return unless defined $o;
1026 }
1027
1028 $self->{offsets}[$n];
1029}
1030
1031sub discard_offsets {
1032 my $self = shift;
1033 $self->{offsets} = [0];
1034}
1035
57c7bc08 1036################################################################
1037#
1038# Matters related to deferred writing
1039#
1040
1041# Defer writes
1042sub defer {
1043 my $self = shift;
6fc0ea7e 1044 $self->_stop_autodeferring;
1045 @{$self->{ad_history}} = ();
57c7bc08 1046 $self->{defer} = 1;
1047}
1048
b3fe5a4c 1049# Flush deferred writes
1050#
1051# This could be better optimized to write the file in one pass, instead
1052# of one pass per block of records. But that will require modifications
6ae23f41 1053# to _twrite, so I should have a good _twrite test suite first.
b3fe5a4c 1054sub flush {
1055 my $self = shift;
1056
1057 $self->_flush;
1058 $self->{defer} = 0;
1059}
1060
6ae23f41 1061sub _old_flush {
b3fe5a4c 1062 my $self = shift;
1063 my @writable = sort {$a<=>$b} (keys %{$self->{deferred}});
6ae23f41 1064
b3fe5a4c 1065 while (@writable) {
1066 # gather all consecutive records from the front of @writable
1067 my $first_rec = shift @writable;
1068 my $last_rec = $first_rec+1;
1069 ++$last_rec, shift @writable while @writable && $last_rec == $writable[0];
1070 --$last_rec;
1071 $self->_fill_offsets_to($last_rec);
1072 $self->_extend_file_to($last_rec);
1073 $self->_splice($first_rec, $last_rec-$first_rec+1,
1074 @{$self->{deferred}}{$first_rec .. $last_rec});
1075 }
1076
57c7bc08 1077 $self->_discard; # clear out defered-write-cache
b3fe5a4c 1078}
1079
6ae23f41 1080sub _flush {
1081 my $self = shift;
1082 my @writable = sort {$a<=>$b} (keys %{$self->{deferred}});
1083 my @args;
1084 my @adjust;
1085
1086 while (@writable) {
1087 # gather all consecutive records from the front of @writable
1088 my $first_rec = shift @writable;
1089 my $last_rec = $first_rec+1;
1090 ++$last_rec, shift @writable while @writable && $last_rec == $writable[0];
1091 --$last_rec;
1092 my $end = $self->_fill_offsets_to($last_rec+1);
1093 if (not defined $end) {
1094 $self->_extend_file_to($last_rec);
1095 $end = $self->{offsets}[$last_rec];
1096 }
1097 my ($start) = $self->{offsets}[$first_rec];
1098 push @args,
1099 join("", @{$self->{deferred}}{$first_rec .. $last_rec}), # data
1100 $start, # position
1101 $end-$start; # length
1102 push @adjust, [$first_rec, # starting at this position...
1103 $last_rec-$first_rec+1, # this many records...
1104 # are replaced with these...
1105 @{$self->{deferred}}{$first_rec .. $last_rec},
1106 ];
1107 }
1108
1109 $self->_mtwrite(@args); # write multiple record groups
1110 $self->_discard; # clear out defered-write-cache
1111 $self->_oadjust(@adjust);
1112}
1113
57c7bc08 1114# Discard deferred writes and disable future deferred writes
b3fe5a4c 1115sub discard {
1116 my $self = shift;
57c7bc08 1117 $self->_discard;
b3fe5a4c 1118 $self->{defer} = 0;
1119}
1120
57c7bc08 1121# Discard deferred writes, but retain old deferred writing mode
1122sub _discard {
1123 my $self = shift;
6fc0ea7e 1124 %{$self->{deferred}} = ();
1125 $self->{deferred_s} = 0;
1126 $self->{deferred_max} = -1;
1127 $self->{cache}->set_limit($self->{memory});
1128}
1129
1130# Deferred writing is enabled, either explicitly ($self->{defer})
1131# or automatically ($self->{autodeferring})
1132sub _is_deferring {
1133 my $self = shift;
1134 $self->{defer} || $self->{autodeferring};
1135}
1136
1137# The largest record number of any deferred record
1138sub _defer_max {
1139 my $self = shift;
1140 return $self->{deferred_max} if defined $self->{deferred_max};
1141 my $max = -1;
1142 for my $key (keys %{$self->{deferred}}) {
1143 $max = $key if $key > $max;
1144 }
1145 $self->{deferred_max} = $max;
1146 $max;
57c7bc08 1147}
1148
6fc0ea7e 1149################################################################
1150#
1151# Matters related to autodeferment
1152#
1153
1154# Get/set autodefer option
1155sub autodefer {
1156 my $self = shift;
1157 if (@_) {
1158 my $old = $self->{autodefer};
1159 $self->{autodefer} = shift;
1160 if ($old) {
1161 $self->_stop_autodeferring;
1162 @{$self->{ad_history}} = ();
1163 }
1164 $old;
1165 } else {
1166 $self->{autodefer};
1167 }
1168}
1169
1170# The user is trying to store record #$n Record that in the history,
1171# and then enable (or disable) autodeferment if that seems useful.
1172# Note that it's OK for $n to be a non-number, as long as the function
1173# is prepared to deal with that. Nobody else looks at the ad_history.
1174#
1175# Now, what does the ad_history mean, and what is this function doing?
1176# Essentially, the idea is to enable autodeferring when we see that the
1177# user has made three consecutive STORE calls to three consecutive records.
1178# ("Three" is actually ->{autodefer_threshhold}.)
1179# A STORE call for record #$n inserts $n into the autodefer history,
1180# and if the history contains three consecutive records, we enable
1181# autodeferment. An ad_history of [X, Y] means that the most recent
1182# STOREs were for records X, X+1, ..., Y, in that order.
1183#
1184# Inserting a nonconsecutive number erases the history and starts over.
1185#
1186# Performing a special operation like SPLICE erases the history.
1187#
1188# There's one special case: CLEAR means that CLEAR was just called.
1189# In this case, we prime the history with [-2, -1] so that if the next
1190# write is for record 0, autodeferring goes on immediately. This is for
1191# the common special case of "@a = (...)".
1192#
1193sub _annotate_ad_history {
1194 my ($self, $n) = @_;
1195 return unless $self->{autodefer}; # feature is disabled
1196 return if $self->{defer}; # already in explicit defer mode
1197 return unless $self->{offsets}[-1] >= $self->{autodefer_filelen_threshhold};
1198
1199 local *H = $self->{ad_history};
1200 if ($n eq 'CLEAR') {
1201 @H = (-2, -1); # prime the history with fake records
1202 $self->_stop_autodeferring;
1203 } elsif ($n =~ /^\d+$/) {
1204 if (@H == 0) {
1205 @H = ($n, $n);
1206 } else { # @H == 2
1207 if ($H[1] == $n-1) { # another consecutive record
1208 $H[1]++;
1209 if ($H[1] - $H[0] + 1 >= $self->{autodefer_threshhold}) {
1210 $self->{autodeferring} = 1;
1211 }
1212 } else { # nonconsecutive- erase and start over
1213 @H = ($n, $n);
1214 $self->_stop_autodeferring;
1215 }
1216 }
1217 } else { # SPLICE or STORESIZE or some such
1218 @H = ();
1219 $self->_stop_autodeferring;
1220 }
1221}
1222
6ae23f41 1223# If autodeferring was enabled, cut it out and discard the history
6fc0ea7e 1224sub _stop_autodeferring {
1225 my $self = shift;
1226 if ($self->{autodeferring}) {
1227 $self->_flush;
1228 }
1229 $self->{autodeferring} = 0;
1230}
1231
1232################################################################
1233
b3fe5a4c 1234
57c7bc08 1235# This is NOT a method. It is here for two reasons:
1236# 1. To factor a fairly complicated block out of the constructor
1237# 2. To provide access for the test suite, which need to be sure
1238# files are being written properly.
b3fe5a4c 1239sub _default_recsep {
1240 my $recsep = $/;
57c7bc08 1241 if ($^O eq 'MSWin32') { # Dos too?
b3fe5a4c 1242 # Windows users expect files to be terminated with \r\n
1243 # But $/ is set to \n instead
1244 # Note that this also transforms \n\n into \r\n\r\n.
1245 # That is a feature.
1246 $recsep =~ s/\n/\r\n/g;
1247 }
1248 $recsep;
1249}
1250
57c7bc08 1251# Utility function for _check_integrity
1252sub _ci_warn {
1253 my $msg = shift;
1254 $msg =~ s/\n/\\n/g;
1255 $msg =~ s/\r/\\r/g;
1256 print "# $msg\n";
1257}
1258
b5aed31e 1259# Given a file, make sure the cache is consistent with the
57c7bc08 1260# file contents and the internal data structures are consistent with
1261# each other. Returns true if everything checks out, false if not
1262#
1263# The $file argument is no longer used. It is retained for compatibility
1264# with the existing test suite.
b5aed31e 1265sub _check_integrity {
1266 my ($self, $file, $warn) = @_;
6fc0ea7e 1267 my $rsl = $self->{recseplen};
1268 my $rs = $self->{recsep};
b5aed31e 1269 my $good = 1;
6fc0ea7e 1270 local *_; # local $_ does not work here
1271 local $DIAGNOSTIC = 1;
1272
1273 if (not defined $rs) {
1274 _ci_warn("recsep is undef!");
1275 $good = 0;
1276 } elsif ($rs eq "") {
1277 _ci_warn("recsep is empty!");
1278 $good = 0;
1279 } elsif ($rsl != length $rs) {
1280 my $ln = length $rs;
1281 _ci_warn("recsep <$rs> has length $ln, should be $rsl");
1282 $good = 0;
1283 }
fa408a35 1284
836d9961 1285 if (not defined $self->{offsets}[0]) {
57c7bc08 1286 _ci_warn("offset 0 is missing!");
836d9961 1287 $good = 0;
bf919750 1288
836d9961 1289 } elsif ($self->{offsets}[0] != 0) {
57c7bc08 1290 _ci_warn("rec 0: offset <$self->{offsets}[0]> s/b 0!");
b5aed31e 1291 $good = 0;
1292 }
fa408a35 1293
57c7bc08 1294 my $cached = 0;
6fc0ea7e 1295 {
1296 local *F = $self->{fh};
1297 seek F, 0, SEEK_SET;
1298 local $. = 0;
1299 local $/ = $rs;
1300
1301 while (<F>) {
1302 my $n = $. - 1;
1303 my $cached = $self->{cache}->_produce($n);
1304 my $offset = $self->{offsets}[$.];
1305 my $ao = tell F;
1306 if (defined $offset && $offset != $ao) {
1307 _ci_warn("rec $n: offset <$offset> actual <$ao>");
1308 $good = 0;
1309 }
1310 if (defined $cached && $_ ne $cached && ! $self->{deferred}{$n}) {
1311 $good = 0;
1312 _ci_warn("rec $n: cached <$cached> actual <$_>");
1313 }
1314 if (defined $cached && substr($cached, -$rsl) ne $rs) {
27531ffb 1315 $good = 0;
6fc0ea7e 1316 _ci_warn("rec $n in the cache is missing the record separator");
1317 }
27531ffb 1318 if (! defined $offset && $self->{eof}) {
1319 $good = 0;
1320 _ci_warn("The offset table was marked complete, but it is missing element $.");
1321 }
1322 }
1323 if (@{$self->{offsets}} > $.+1) {
1324 $good = 0;
1325 my $n = @{$self->{offsets}};
1326 _ci_warn("The offset table has $n items, but the file has only $.");
6fc0ea7e 1327 }
b5aed31e 1328
6fc0ea7e 1329 my $deferring = $self->_is_deferring;
bf919750 1330 for my $n ($self->{cache}->ckeys) {
6fc0ea7e 1331 my $r = $self->{cache}->_produce($n);
1332 $cached += length($r);
1333 next if $n+1 <= $.; # checked this already
1334 _ci_warn("spurious caching of record $n");
b5aed31e 1335 $good = 0;
1336 }
6fc0ea7e 1337 my $b = $self->{cache}->bytes;
1338 if ($cached != $b) {
1339 _ci_warn("cache size is $b, should be $cached");
b5aed31e 1340 $good = 0;
1341 }
1342 }
1343
bf919750 1344 # That cache has its own set of tests
6fc0ea7e 1345 $good = 0 unless $self->{cache}->_check_integrity;
1346
57c7bc08 1347 # Now let's check the deferbuffer
1348 # Unless deferred writing is enabled, it should be empty
6fc0ea7e 1349 if (! $self->_is_deferring && %{$self->{deferred}}) {
57c7bc08 1350 _ci_warn("deferred writing disabled, but deferbuffer nonempty");
1351 $good = 0;
1352 }
1353
1354 # Any record in the deferbuffer should *not* be present in the readcache
1355 my $deferred_s = 0;
1356 while (my ($n, $r) = each %{$self->{deferred}}) {
1357 $deferred_s += length($r);
6fc0ea7e 1358 if (defined $self->{cache}->_produce($n)) {
57c7bc08 1359 _ci_warn("record $n is in the deferbuffer *and* the readcache");
1360 $good = 0;
1361 }
6fc0ea7e 1362 if (substr($r, -$rsl) ne $rs) {
57c7bc08 1363 _ci_warn("rec $n in the deferbuffer is missing the record separator");
1364 $good = 0;
1365 }
1366 }
1367
1368 # Total size of deferbuffer should match internal total
1369 if ($deferred_s != $self->{deferred_s}) {
1370 _ci_warn("buffer size is $self->{deferred_s}, should be $deferred_s");
1371 $good = 0;
1372 }
1373
1374 # Total size of deferbuffer should not exceed the specified limit
1375 if ($deferred_s > $self->{dw_size}) {
1376 _ci_warn("buffer size is $self->{deferred_s} which exceeds the limit of $self->{dw_size}");
1377 $good = 0;
1378 }
1379
1380 # Total size of cached data should not exceed the specified limit
1381 if ($deferred_s + $cached > $self->{memory}) {
1382 my $total = $deferred_s + $cached;
1383 _ci_warn("total stored data size is $total which exceeds the limit of $self->{memory}");
1384 $good = 0;
1385 }
1386
6fc0ea7e 1387 # Stuff related to autodeferment
1388 if (!$self->{autodefer} && @{$self->{ad_history}}) {
1389 _ci_warn("autodefer is disabled, but ad_history is nonempty");
1390 $good = 0;
1391 }
1392 if ($self->{autodeferring} && $self->{defer}) {
1393 _ci_warn("both autodeferring and explicit deferring are active");
1394 $good = 0;
1395 }
1396 if (@{$self->{ad_history}} == 0) {
1397 # That's OK, no additional tests required
1398 } elsif (@{$self->{ad_history}} == 2) {
1399 my @non_number = grep !/^-?\d+$/, @{$self->{ad_history}};
1400 if (@non_number) {
1401 my $msg;
1402 { local $" = ')(';
1403 $msg = "ad_history contains non-numbers (@{$self->{ad_history}})";
1404 }
1405 _ci_warn($msg);
1406 $good = 0;
1407 } elsif ($self->{ad_history}[1] < $self->{ad_history}[0]) {
1408 _ci_warn("ad_history has nonsensical values @{$self->{ad_history}}");
1409 $good = 0;
1410 }
1411 } else {
1412 _ci_warn("ad_history has bad length <@{$self->{ad_history}}>");
1413 $good = 0;
1414 }
1415
b5aed31e 1416 $good;
1417}
1418
6fc0ea7e 1419################################################################
1420#
1421# Tie::File::Cache
1422#
1423# Read cache
1424
1425package Tie::File::Cache;
1426$Tie::File::Cache::VERSION = $Tie::File::VERSION;
1427use Carp ':DEFAULT', 'confess';
1428
1429sub HEAP () { 0 }
1430sub HASH () { 1 }
1431sub MAX () { 2 }
1432sub BYTES() { 3 }
6ae23f41 1433#sub STAT () { 4 } # Array with request statistics for each record
1434#sub MISS () { 5 } # Total number of cache misses
1435#sub REQ () { 6 } # Total number of cache requests
6fc0ea7e 1436use strict 'vars';
1437
1438sub new {
1439 my ($pack, $max) = @_;
1440 local *_;
1441 croak "missing argument to ->new" unless defined $max;
1442 my $self = [];
1443 bless $self => $pack;
1444 @$self = (Tie::File::Heap->new($self), {}, $max, 0);
1445 $self;
1446}
1447
1448sub adj_limit {
1449 my ($self, $n) = @_;
1450 $self->[MAX] += $n;
1451}
1452
1453sub set_limit {
1454 my ($self, $n) = @_;
1455 $self->[MAX] = $n;
1456}
1457
1458# For internal use only
1459# Will be called by the heap structure to notify us that a certain
1460# piece of data has moved from one heap element to another.
1461# $k is the hash key of the item
1462# $n is the new index into the heap at which it is stored
1463# If $n is undefined, the item has been removed from the heap.
1464sub _heap_move {
1465 my ($self, $k, $n) = @_;
1466 if (defined $n) {
1467 $self->[HASH]{$k} = $n;
1468 } else {
6ae23f41 1469 delete $self->[HASH]{$k};
6fc0ea7e 1470 }
1471}
1472
1473sub insert {
1474 my ($self, $key, $val) = @_;
1475 local *_;
1476 croak "missing argument to ->insert" unless defined $key;
1477 unless (defined $self->[MAX]) {
1478 confess "undefined max" ;
1479 }
1480 confess "undefined val" unless defined $val;
1481 return if length($val) > $self->[MAX];
6ae23f41 1482
1483# if ($self->[STAT]) {
1484# $self->[STAT][$key] = 1;
1485# return;
1486# }
1487
6fc0ea7e 1488 my $oldnode = $self->[HASH]{$key};
1489 if (defined $oldnode) {
1490 my $oldval = $self->[HEAP]->set_val($oldnode, $val);
1491 $self->[BYTES] -= length($oldval);
1492 } else {
1493 $self->[HEAP]->insert($key, $val);
1494 }
1495 $self->[BYTES] += length($val);
6ae23f41 1496 $self->flush if $self->[BYTES] > $self->[MAX];
6fc0ea7e 1497}
1498
1499sub expire {
1500 my $self = shift;
1501 my $old_data = $self->[HEAP]->popheap;
1502 return unless defined $old_data;
1503 $self->[BYTES] -= length $old_data;
1504 $old_data;
1505}
1506
1507sub remove {
1508 my ($self, @keys) = @_;
1509 my @result;
6ae23f41 1510
1511# if ($self->[STAT]) {
1512# for my $key (@keys) {
1513# $self->[STAT][$key] = 0;
1514# }
1515# return;
1516# }
1517
6fc0ea7e 1518 for my $key (@keys) {
1519 next unless exists $self->[HASH]{$key};
1520 my $old_data = $self->[HEAP]->remove($self->[HASH]{$key});
1521 $self->[BYTES] -= length $old_data;
1522 push @result, $old_data;
1523 }
1524 @result;
1525}
1526
1527sub lookup {
1528 my ($self, $key) = @_;
1529 local *_;
1530 croak "missing argument to ->lookup" unless defined $key;
6ae23f41 1531
1532# if ($self->[STAT]) {
1533# $self->[MISS]++ if $self->[STAT][$key]++ == 0;
1534# $self->[REQ]++;
1535# my $hit_rate = 1 - $self->[MISS] / $self->[REQ];
1536# # Do some testing to determine this threshhold
1537# $#$self = STAT - 1 if $hit_rate > 0.20;
1538# }
1539
6fc0ea7e 1540 if (exists $self->[HASH]{$key}) {
1541 $self->[HEAP]->lookup($self->[HASH]{$key});
1542 } else {
1543 return;
1544 }
1545}
1546
1547# For internal use only
1548sub _produce {
1549 my ($self, $key) = @_;
1550 my $loc = $self->[HASH]{$key};
1551 return unless defined $loc;
1552 $self->[HEAP][$loc][2];
1553}
1554
1555# For internal use only
1556sub _promote {
1557 my ($self, $key) = @_;
1558 $self->[HEAP]->promote($self->[HASH]{$key});
1559}
1560
1561sub empty {
1562 my ($self) = @_;
1563 %{$self->[HASH]} = ();
1564 $self->[BYTES] = 0;
1565 $self->[HEAP]->empty;
6ae23f41 1566# @{$self->[STAT]} = ();
1567# $self->[MISS] = 0;
1568# $self->[REQ] = 0;
6fc0ea7e 1569}
1570
1571sub is_empty {
1572 my ($self) = @_;
1573 keys %{$self->[HASH]} == 0;
1574}
1575
1576sub update {
1577 my ($self, $key, $val) = @_;
1578 local *_;
1579 croak "missing argument to ->update" unless defined $key;
1580 if (length($val) > $self->[MAX]) {
6ae23f41 1581 my ($oldval) = $self->remove($key);
6fc0ea7e 1582 $self->[BYTES] -= length($oldval) if defined $oldval;
1583 } elsif (exists $self->[HASH]{$key}) {
1584 my $oldval = $self->[HEAP]->set_val($self->[HASH]{$key}, $val);
1585 $self->[BYTES] += length($val);
1586 $self->[BYTES] -= length($oldval) if defined $oldval;
1587 } else {
1588 $self->[HEAP]->insert($key, $val);
1589 $self->[BYTES] += length($val);
1590 }
1591 $self->flush;
1592}
1593
1594sub rekey {
1595 my ($self, $okeys, $nkeys) = @_;
1596 local *_;
1597 my %map;
1598 @map{@$okeys} = @$nkeys;
1599 croak "missing argument to ->rekey" unless defined $nkeys;
1600 croak "length mismatch in ->rekey arguments" unless @$nkeys == @$okeys;
1601 my %adjusted; # map new keys to heap indices
1602 # You should be able to cut this to one loop TODO XXX
1603 for (0 .. $#$okeys) {
1604 $adjusted{$nkeys->[$_]} = delete $self->[HASH]{$okeys->[$_]};
1605 }
1606 while (my ($nk, $ix) = each %adjusted) {
1607 # @{$self->[HASH]}{keys %adjusted} = values %adjusted;
1608 $self->[HEAP]->rekey($ix, $nk);
1609 $self->[HASH]{$nk} = $ix;
1610 }
1611}
1612
bf919750 1613sub ckeys {
6fc0ea7e 1614 my $self = shift;
1615 my @a = keys %{$self->[HASH]};
1616 @a;
1617}
1618
6ae23f41 1619# Return total amount of cached data
6fc0ea7e 1620sub bytes {
1621 my $self = shift;
1622 $self->[BYTES];
1623}
1624
6ae23f41 1625# Expire oldest item from cache until cache size is smaller than $max
6fc0ea7e 1626sub reduce_size_to {
1627 my ($self, $max) = @_;
6ae23f41 1628 until ($self->[BYTES] <= $max) {
1629 # Note that Tie::File::Cache::expire has been inlined here
1630 my $old_data = $self->[HEAP]->popheap;
1631 return unless defined $old_data;
1632 $self->[BYTES] -= length $old_data;
6fc0ea7e 1633 }
1634}
1635
6ae23f41 1636# Why not just $self->reduce_size_to($self->[MAX])?
1637# Try this when things stabilize TODO XXX
1638# If the cache is too full, expire the oldest records
6fc0ea7e 1639sub flush {
1640 my $self = shift;
6ae23f41 1641 $self->reduce_size_to($self->[MAX]) if $self->[BYTES] > $self->[MAX];
6fc0ea7e 1642}
1643
1644# For internal use only
1645sub _produce_lru {
1646 my $self = shift;
1647 $self->[HEAP]->expire_order;
1648}
1649
bf919750 1650BEGIN { *_ci_warn = \&Tie::File::_ci_warn }
1651
1652sub _check_integrity { # For CACHE
6fc0ea7e 1653 my $self = shift;
bf919750 1654 my $good = 1;
1655
1656 # Test HEAP
1657 $self->[HEAP]->_check_integrity or $good = 0;
1658
1659 # Test HASH
1660 my $bytes = 0;
1661 for my $k (keys %{$self->[HASH]}) {
1662 if ($k ne '0' && $k !~ /^[1-9][0-9]*$/) {
1663 $good = 0;
1664 _ci_warn "Cache hash key <$k> is non-numeric";
1665 }
1666
1667 my $h = $self->[HASH]{$k};
1668 if (! defined $h) {
1669 $good = 0;
1670 _ci_warn "Heap index number for key $k is undefined";
1671 } elsif ($h == 0) {
1672 $good = 0;
1673 _ci_warn "Heap index number for key $k is zero";
1674 } else {
1675 my $j = $self->[HEAP][$h];
1676 if (! defined $j) {
1677 $good = 0;
1678 _ci_warn "Heap contents key $k (=> $h) are undefined";
1679 } else {
1680 $bytes += length($j->[2]);
1681 if ($k ne $j->[1]) {
1682 $good = 0;
1683 _ci_warn "Heap contents key $k (=> $h) is $j->[1], should be $k";
1684 }
1685 }
1686 }
1687 }
1688
1689 # Test BYTES
1690 if ($bytes != $self->[BYTES]) {
1691 $good = 0;
1692 _ci_warn "Total data in cache is $bytes, expected $self->[BYTES]";
1693 }
1694
1695 # Test MAX
1696 if ($bytes > $self->[MAX]) {
1697 $good = 0;
1698 _ci_warn "Total data in cache is $bytes, exceeds maximum $self->[MAX]";
1699 }
1700
1701 return $good;
6fc0ea7e 1702}
1703
1704sub delink {
1705 my $self = shift;
1706 $self->[HEAP] = undef; # Bye bye heap
1707}
1708
1709################################################################
1710#
1711# Tie::File::Heap
1712#
1713# Heap data structure for use by cache LRU routines
1714
1715package Tie::File::Heap;
1716use Carp ':DEFAULT', 'confess';
1717$Tie::File::Heap::VERSION = $Tie::File::Cache::VERSION;
1718sub SEQ () { 0 };
1719sub KEY () { 1 };
1720sub DAT () { 2 };
1721
1722sub new {
1723 my ($pack, $cache) = @_;
1724 die "$pack: Parent cache object $cache does not support _heap_move method"
1725 unless eval { $cache->can('_heap_move') };
1726 my $self = [[0,$cache,0]];
1727 bless $self => $pack;
1728}
1729
1730# Allocate a new sequence number, larger than all previously allocated numbers
1731sub _nseq {
1732 my $self = shift;
1733 $self->[0][0]++;
1734}
1735
1736sub _cache {
1737 my $self = shift;
1738 $self->[0][1];
1739}
1740
1741sub _nelts {
1742 my $self = shift;
1743 $self->[0][2];
1744}
1745
1746sub _nelts_inc {
1747 my $self = shift;
1748 ++$self->[0][2];
1749}
1750
1751sub _nelts_dec {
1752 my $self = shift;
1753 --$self->[0][2];
1754}
1755
1756sub is_empty {
1757 my $self = shift;
1758 $self->_nelts == 0;
1759}
1760
1761sub empty {
1762 my $self = shift;
1763 $#$self = 0;
1764 $self->[0][2] = 0;
1765 $self->[0][0] = 0; # might as well reset the sequence numbers
1766}
1767
27531ffb 1768# notify the parent cache object that we moved something
6fc0ea7e 1769sub _heap_move {
1770 my $self = shift;
1771 $self->_cache->_heap_move(@_);
1772}
1773
1774# Insert a piece of data into the heap with the indicated sequence number.
1775# The item with the smallest sequence number is always at the top.
1776# If no sequence number is specified, allocate a new one and insert the
1777# item at the bottom.
1778sub insert {
1779 my ($self, $key, $data, $seq) = @_;
1780 $seq = $self->_nseq unless defined $seq;
1781 $self->_insert_new([$seq, $key, $data]);
1782}
1783
1784# Insert a new, fresh item at the bottom of the heap
1785sub _insert_new {
1786 my ($self, $item) = @_;
1787 my $i = @$self;
1788 $i = int($i/2) until defined $self->[$i/2];
1789 $self->[$i] = $item;
27531ffb 1790 $self->[0][1]->_heap_move($self->[$i][KEY], $i);
6fc0ea7e 1791 $self->_nelts_inc;
1792}
1793
1794# Insert [$data, $seq] pair at or below item $i in the heap.
1795# If $i is omitted, default to 1 (the top element.)
1796sub _insert {
1797 my ($self, $item, $i) = @_;
bf919750 1798# $self->_check_loc($i) if defined $i;
6fc0ea7e 1799 $i = 1 unless defined $i;
1800 until (! defined $self->[$i]) {
1801 if ($self->[$i][SEQ] > $item->[SEQ]) { # inserted item is older
1802 ($self->[$i], $item) = ($item, $self->[$i]);
27531ffb 1803 $self->[0][1]->_heap_move($self->[$i][KEY], $i);
6fc0ea7e 1804 }
1805 # If either is undefined, go that way. Otherwise, choose at random
1806 my $dir;
1807 $dir = 0 if !defined $self->[2*$i];
1808 $dir = 1 if !defined $self->[2*$i+1];
1809 $dir = int(rand(2)) unless defined $dir;
1810 $i = 2*$i + $dir;
1811 }
1812 $self->[$i] = $item;
27531ffb 1813 $self->[0][1]->_heap_move($self->[$i][KEY], $i);
6fc0ea7e 1814 $self->_nelts_inc;
1815}
1816
1817# Remove the item at node $i from the heap, moving child items upwards.
1818# The item with the smallest sequence number is always at the top.
1819# Moving items upwards maintains this condition.
6ae23f41 1820# Return the removed item. Return undef if there was no item at node $i.
6fc0ea7e 1821sub remove {
1822 my ($self, $i) = @_;
1823 $i = 1 unless defined $i;
1824 my $top = $self->[$i];
1825 return unless defined $top;
1826 while (1) {
1827 my $ii;
1828 my ($L, $R) = (2*$i, 2*$i+1);
1829
1830 # If either is undefined, go the other way.
1831 # Otherwise, go towards the smallest.
1832 last unless defined $self->[$L] || defined $self->[$R];
1833 $ii = $R if not defined $self->[$L];
1834 $ii = $L if not defined $self->[$R];
1835 unless (defined $ii) {
1836 $ii = $self->[$L][SEQ] < $self->[$R][SEQ] ? $L : $R;
1837 }
1838
1839 $self->[$i] = $self->[$ii]; # Promote child to fill vacated spot
27531ffb 1840 $self->[0][1]->_heap_move($self->[$i][KEY], $i);
6fc0ea7e 1841 $i = $ii; # Fill new vacated spot
1842 }
27531ffb 1843 $self->[0][1]->_heap_move($top->[KEY], undef);
6fc0ea7e 1844 undef $self->[$i];
1845 $self->_nelts_dec;
1846 return $top->[DAT];
1847}
1848
1849sub popheap {
1850 my $self = shift;
1851 $self->remove(1);
1852}
1853
1854# set the sequence number of the indicated item to a higher number
1855# than any other item in the heap, and bubble the item down to the
1856# bottom.
1857sub promote {
1858 my ($self, $n) = @_;
bf919750 1859# $self->_check_loc($n);
6fc0ea7e 1860 $self->[$n][SEQ] = $self->_nseq;
1861 my $i = $n;
1862 while (1) {
1863 my ($L, $R) = (2*$i, 2*$i+1);
1864 my $dir;
1865 last unless defined $self->[$L] || defined $self->[$R];
1866 $dir = $R unless defined $self->[$L];
1867 $dir = $L unless defined $self->[$R];
1868 unless (defined $dir) {
1869 $dir = $self->[$L][SEQ] < $self->[$R][SEQ] ? $L : $R;
1870 }
1871 @{$self}[$i, $dir] = @{$self}[$dir, $i];
1872 for ($i, $dir) {
27531ffb 1873 $self->[0][1]->_heap_move($self->[$_][KEY], $_) if defined $self->[$_];
6fc0ea7e 1874 }
1875 $i = $dir;
1876 }
1877}
1878
1879# Return item $n from the heap, promoting its LRU status
1880sub lookup {
1881 my ($self, $n) = @_;
bf919750 1882# $self->_check_loc($n);
6fc0ea7e 1883 my $val = $self->[$n];
1884 $self->promote($n);
1885 $val->[DAT];
1886}
1887
1888
1889# Assign a new value for node $n, promoting it to the bottom of the heap
1890sub set_val {
1891 my ($self, $n, $val) = @_;
bf919750 1892# $self->_check_loc($n);
6fc0ea7e 1893 my $oval = $self->[$n][DAT];
1894 $self->[$n][DAT] = $val;
1895 $self->promote($n);
1896 return $oval;
1897}
1898
1899# The hask key has changed for an item;
1900# alter the heap's record of the hash key
1901sub rekey {
1902 my ($self, $n, $new_key) = @_;
bf919750 1903# $self->_check_loc($n);
6fc0ea7e 1904 $self->[$n][KEY] = $new_key;
1905}
1906
1907sub _check_loc {
1908 my ($self, $n) = @_;
bf919750 1909 unless (1 || defined $self->[$n]) {
6fc0ea7e 1910 confess "_check_loc($n) failed";
1911 }
1912}
1913
bf919750 1914BEGIN { *_ci_warn = \&Tie::File::_ci_warn }
1915
6fc0ea7e 1916sub _check_integrity {
1917 my $self = shift;
1918 my $good = 1;
bf919750 1919 my %seq;
1920
6fc0ea7e 1921 unless (eval {$self->[0][1]->isa("Tie::File::Cache")}) {
bf919750 1922 _ci_warn "Element 0 of heap corrupt";
6fc0ea7e 1923 $good = 0;
1924 }
1925 $good = 0 unless $self->_satisfies_heap_condition(1);
1926 for my $i (2 .. $#{$self}) {
1927 my $p = int($i/2); # index of parent node
1928 if (defined $self->[$i] && ! defined $self->[$p]) {
bf919750 1929 _ci_warn "Element $i of heap defined, but parent $p isn't";
6fc0ea7e 1930 $good = 0;
1931 }
bf919750 1932
1933 if (defined $self->[$i]) {
1934 if ($seq{$self->[$i][SEQ]}) {
1935 my $seq = $self->[$i][SEQ];
1936 _ci_warn "Nodes $i and $seq{$seq} both have SEQ=$seq";
1937 $good = 0;
1938 } else {
1939 $seq{$self->[$i][SEQ]} = $i;
1940 }
1941 }
6fc0ea7e 1942 }
bf919750 1943
6fc0ea7e 1944 return $good;
1945}
1946
1947sub _satisfies_heap_condition {
1948 my $self = shift;
1949 my $n = shift || 1;
1950 my $good = 1;
1951 for (0, 1) {
1952 my $c = $n*2 + $_;
1953 next unless defined $self->[$c];
1954 if ($self->[$n][SEQ] >= $self->[$c]) {
bf919750 1955 _ci_warn "Node $n of heap does not predate node $c";
6fc0ea7e 1956 $good = 0 ;
1957 }
1958 $good = 0 unless $self->_satisfies_heap_condition($c);
1959 }
1960 return $good;
1961}
1962
1963# Return a list of all the values, sorted by expiration order
1964sub expire_order {
1965 my $self = shift;
1966 my @nodes = sort {$a->[SEQ] <=> $b->[SEQ]} $self->_nodes;
1967 map { $_->[KEY] } @nodes;
1968}
1969
1970sub _nodes {
1971 my $self = shift;
1972 my $i = shift || 1;
1973 return unless defined $self->[$i];
1974 ($self->[$i], $self->_nodes($i*2), $self->_nodes($i*2+1));
1975}
1976
fa408a35 1977"Cogito, ergo sum."; # don't forget to return a true value from the file
1978
6ae23f41 1979__END__
1980
b5aed31e 1981=head1 NAME
1982
1983Tie::File - Access the lines of a disk file via a Perl array
1984
1985=head1 SYNOPSIS
1986
6ae23f41 1987 # This file documents Tie::File version 0.95
1988 use Tie::File;
b5aed31e 1989
1990 tie @array, 'Tie::File', filename or die ...;
1991
1992 $array[13] = 'blah'; # line 13 of the file is now 'blah'
1993 print $array[42]; # display line 42 of the file
1994
1995 $n_recs = @array; # how many records are in the file?
57c7bc08 1996 $#array -= 2; # chop two records off the end
1997
b5aed31e 1998
57c7bc08 1999 for (@array) {
2000 s/PERL/Perl/g; # Replace PERL with Perl everywhere in the file
2001 }
2002
2003 # These are just like regular push, pop, unshift, shift, and splice
2004 # Except that they modify the file in the way you would expect
51efdd02 2005
2006 push @array, new recs...;
2007 my $r1 = pop @array;
2008 unshift @array, new recs...;
6ae23f41 2009 my $r2 = shift @array;
b5aed31e 2010 @old_recs = splice @array, 3, 7, new recs...;
2011
2012 untie @array; # all finished
2013
57c7bc08 2014
b5aed31e 2015=head1 DESCRIPTION
2016
2017C<Tie::File> represents a regular text file as a Perl array. Each
2018element in the array corresponds to a record in the file. The first
2019line of the file is element 0 of the array; the second line is element
20201, and so on.
2021
2022The file is I<not> loaded into memory, so this will work even for
2023gigantic files.
2024
2025Changes to the array are reflected in the file immediately.
2026
57c7bc08 2027Lazy people and beginners may now stop reading the manual.
b3fe5a4c 2028
b5aed31e 2029=head2 C<recsep>
2030
2031What is a 'record'? By default, the meaning is the same as for the
2032C<E<lt>...E<gt>> operator: It's a string terminated by C<$/>, which is
6ae23f41 2033probably C<"\n">. (Minor exception: on DOS and Win32 systems, a
b3fe5a4c 2034'record' is a string terminated by C<"\r\n">.) You may change the
2035definition of "record" by supplying the C<recsep> option in the C<tie>
2036call:
b5aed31e 2037
2038 tie @array, 'Tie::File', $file, recsep => 'es';
2039
b3fe5a4c 2040This says that records are delimited by the string C<es>. If the file
2041contained the following data:
b5aed31e 2042
2043 Curse these pesky flies!\n
2044
27531ffb 2045then the C<@array> would appear to have four elements:
b5aed31e 2046
0b28bc9a 2047 "Curse th"
2048 "e p"
2049 "ky fli"
b5aed31e 2050 "!\n"
2051
2052An undefined value is not permitted as a record separator. Perl's
2053special "paragraph mode" semantics (E<agrave> la C<$/ = "">) are not
2054emulated.
2055
0b28bc9a 2056Records read from the tied array do not have the record separator
27531ffb 2057string on the end; this is to allow
0b28bc9a 2058
2059 $array[17] .= "extra";
2060
2061to work as expected.
2062
2063(See L<"autochomp">, below.) Records stored into the array will have
2064the record separator string appended before they are written to the
2065file, if they don't have one already. For example, if the record
2066separator string is C<"\n">, then the following two lines do exactly
2067the same thing:
b5aed31e 2068
2069 $array[17] = "Cherry pie";
2070 $array[17] = "Cherry pie\n";
2071
2072The result is that the contents of line 17 of the file will be
2073replaced with "Cherry pie"; a newline character will separate line 17
27531ffb 2074from line 18. This means that this code will do nothing:
b5aed31e 2075
2076 chomp $array[17];
2077
2078Because the C<chomp>ed value will have the separator reattached when
2079it is written back to the file. There is no way to create a file
2080whose trailing record separator string is missing.
2081
27531ffb 2082Inserting records that I<contain> the record separator string is not
2083supported by this module. It will probably produce a reasonable
2084result, but what this result will be may change in a future version.
2085Use 'splice' to insert records or to replace one record with several.
b5aed31e 2086
0b28bc9a 2087=head2 C<autochomp>
2088
2089Normally, array elements have the record separator removed, so that if
2090the file contains the text
2091
2092 Gold
2093 Frankincense
2094 Myrrh
2095
57c7bc08 2096the tied array will appear to contain C<("Gold", "Frankincense",
2097"Myrrh")>. If you set C<autochomp> to a false value, the record
2098separator will not be removed. If the file above was tied with
0b28bc9a 2099
2100 tie @gifts, "Tie::File", $gifts, autochomp => 0;
2101
2102then the array C<@gifts> would appear to contain C<("Gold\n",
2103"Frankincense\n", "Myrrh\n")>, or (on Win32 systems) C<("Gold\r\n",
2104"Frankincense\r\n", "Myrrh\r\n")>.
2105
b5aed31e 2106=head2 C<mode>
2107
2108Normally, the specified file will be opened for read and write access,
2109and will be created if it does not exist. (That is, the flags
2110C<O_RDWR | O_CREAT> are supplied in the C<open> call.) If you want to
2111change this, you may supply alternative flags in the C<mode> option.
2112See L<Fcntl> for a listing of available flags.
2113For example:
2114
2115 # open the file if it exists, but fail if it does not exist
2116 use Fcntl 'O_RDWR';
2117 tie @array, 'Tie::File', $file, mode => O_RDWR;
2118
2119 # create the file if it does not exist
2120 use Fcntl 'O_RDWR', 'O_CREAT';
2121 tie @array, 'Tie::File', $file, mode => O_RDWR | O_CREAT;
2122
2123 # open an existing file in read-only mode
2124 use Fcntl 'O_RDONLY';
2125 tie @array, 'Tie::File', $file, mode => O_RDONLY;
2126
2127Opening the data file in write-only or append mode is not supported.
2128
b3fe5a4c 2129=head2 C<memory>
2130
57c7bc08 2131This is an upper limit on the amount of memory that C<Tie::File> will
2132consume at any time while managing the file. This is used for two
2133things: managing the I<read cache> and managing the I<deferred write
2134buffer>.
b5aed31e 2135
2136Records read in from the file are cached, to avoid having to re-read
2137them repeatedly. If you read the same record twice, the first time it
2138will be stored in memory, and the second time it will be fetched from
b3fe5a4c 2139the I<read cache>. The amount of data in the read cache will not
2140exceed the value you specified for C<memory>. If C<Tie::File> wants
2141to cache a new record, but the read cache is full, it will make room
2142by expiring the least-recently visited records from the read cache.
b5aed31e 2143
b3fe5a4c 2144The default memory limit is 2Mib. You can adjust the maximum read
2145cache size by supplying the C<memory> option. The argument is the
2146desired cache size, in bytes.
b5aed31e 2147
2148 # I have a lot of memory, so use a large cache to speed up access
b3fe5a4c 2149 tie @array, 'Tie::File', $file, memory => 20_000_000;
b5aed31e 2150
b3fe5a4c 2151Setting the memory limit to 0 will inhibit caching; records will be
b5aed31e 2152fetched from disk every time you examine them.
2153
27531ffb 2154The C<memory> value is not an absolute or exact limit on the memory
2155used. C<Tie::File> objects contains some structures besides the read
2156cache and the deferred write buffer, whose sizes are not charged
6ae23f41 2157against C<memory>.
2158
2159The cache itself consumes about 310 bytes per cached record, so if
2160your file has many short records, you may want to decrease the cache
2161memory limit, or else the cache overhead may exceed the size of the
2162cached data.
2163
27531ffb 2164
57c7bc08 2165=head2 C<dw_size>
2166
2167(This is an advanced feature. Skip this section on first reading.)
27531ffb 2168
57c7bc08 2169If you use deferred writing (See L<"Deferred Writing">, below) then
2170data you write into the array will not be written directly to the
2171file; instead, it will be saved in the I<deferred write buffer> to be
2172written out later. Data in the deferred write buffer is also charged
2173against the memory limit you set with the C<memory> option.
2174
2175You may set the C<dw_size> option to limit the amount of data that can
2176be saved in the deferred write buffer. This limit may not exceed the
2177total memory limit. For example, if you set C<dw_size> to 1000 and
2178C<memory> to 2500, that means that no more than 1000 bytes of deferred
2179writes will be saved up. The space available for the read cache will
2180vary, but it will always be at least 1500 bytes (if the deferred write
2181buffer is full) and it could grow as large as 2500 bytes (if the
2182deferred write buffer is empty.)
2183
2184If you don't specify a C<dw_size>, it defaults to the entire memory
2185limit.
2186
b5aed31e 2187=head2 Option Format
2188
2189C<-mode> is a synonym for C<mode>. C<-recsep> is a synonym for
b3fe5a4c 2190C<recsep>. C<-memory> is a synonym for C<memory>. You get the
b5aed31e 2191idea.
2192
2193=head1 Public Methods
2194
27531ffb 2195The C<tie> call returns an object, say C<$o>. You may call
b5aed31e 2196
2197 $rec = $o->FETCH($n);
2198 $o->STORE($n, $rec);
2199
b3fe5a4c 2200to fetch or store the record at line C<$n>, respectively; similarly
2201the other tied array methods. (See L<perltie> for details.) You may
2202also call the following methods on this object:
51efdd02 2203
2204=head2 C<flock>
2205
2206 $o->flock(MODE)
2207
2208will lock the tied file. C<MODE> has the same meaning as the second
2209argument to the Perl built-in C<flock> function; for example
2210C<LOCK_SH> or C<LOCK_EX | LOCK_NB>. (These constants are provided by
2211the C<use Fcntl ':flock'> declaration.)
2212
57c7bc08 2213C<MODE> is optional; the default is C<LOCK_EX>.
2214
6ae23f41 2215C<Tie::File> maintains an internal table of the byte offset of each
2216record it has seen in the file.
2217
2218When you use C<flock> to lock the file, C<Tie::File> assumes that the
2219read cache is no longer trustworthy, because another process might
2220have modified the file since the last time it was read. Therefore, a
2221successful call to C<flock> discards the contents of the read cache
2222and the internal record offset table.
2223
57c7bc08 2224C<Tie::File> promises that the following sequence of operations will
2225be safe:
2226
2227 my $o = tie @array, "Tie::File", $filename;
2228 $o->flock;
2229
2230In particular, C<Tie::File> will I<not> read or write the file during
2231the C<tie> call. (Exception: Using C<mode =E<gt> O_TRUNC> will, of
2232course, erase the file during the C<tie> call. If you want to do this
2233safely, then open the file without C<O_TRUNC>, lock the file, and use
2234C<@array = ()>.)
51efdd02 2235
2236The best way to unlock a file is to discard the object and untie the
2237array. It is probably unsafe to unlock the file without also untying
2238it, because if you do, changes may remain unwritten inside the object.
2239That is why there is no shortcut for unlocking. If you really want to
2240unlock the file prematurely, you know what to do; if you don't know
2241what to do, then don't do it.
2242
2243All the usual warnings about file locking apply here. In particular,
2244note that file locking in Perl is B<advisory>, which means that
2245holding a lock will not prevent anyone else from reading, writing, or
2246erasing the file; it only prevents them from getting another lock at
2247the same time. Locks are analogous to green traffic lights: If you
2248have a green light, that does not prevent the idiot coming the other
2249way from plowing into you sideways; it merely guarantees to you that
2250the idiot does not also have a green light at the same time.
b5aed31e 2251
0b28bc9a 2252=head2 C<autochomp>
2253
2254 my $old_value = $o->autochomp(0); # disable autochomp option
2255 my $old_value = $o->autochomp(1); # enable autochomp option
2256
2257 my $ac = $o->autochomp(); # recover current value
2258
2259See L<"autochomp">, above.
2260
6fc0ea7e 2261=head2 C<defer>, C<flush>, C<discard>, and C<autodefer>
57c7bc08 2262
2263See L<"Deferred Writing">, below.
2264
6ae23f41 2265=head2 C<offset>
2266
2267 $off = $o->offset($n);
2268
2269This method returns the byte offset of the start of the C<$n>th record
2270in the file. If there is no such record, it returns an undefined
2271value.
2272
0b28bc9a 2273=head1 Tying to an already-opened filehandle
fa408a35 2274
2275If C<$fh> is a filehandle, such as is returned by C<IO::File> or one
2276of the other C<IO> modules, you may use:
2277
2278 tie @array, 'Tie::File', $fh, ...;
2279
2280Similarly if you opened that handle C<FH> with regular C<open> or
2281C<sysopen>, you may use:
2282
2283 tie @array, 'Tie::File', \*FH, ...;
2284
2285Handles that were opened write-only won't work. Handles that were
57c7bc08 2286opened read-only will work as long as you don't try to modify the
2287array. Handles must be attached to seekable sources of data---that
27531ffb 2288means no pipes or sockets. If C<Tie::File> can detect that you
2289supplied a non-seekable handle, the C<tie> call will throw an
2290exception. (On Unix systems, it can detect this.)
57c7bc08 2291
2292=head1 Deferred Writing
2293
2294(This is an advanced feature. Skip this section on first reading.)
2295
2296Normally, modifying a C<Tie::File> array writes to the underlying file
2297immediately. Every assignment like C<$a[3] = ...> rewrites as much of
2298the file as is necessary; typically, everything from line 3 through
2299the end will need to be rewritten. This is the simplest and most
2300transparent behavior. Performance even for large files is reasonably
2301good.
2302
2303However, under some circumstances, this behavior may be excessively
2304slow. For example, suppose you have a million-record file, and you
2305want to do:
2306
2307 for (@FILE) {
2308 $_ = "> $_";
2309 }
2310
2311The first time through the loop, you will rewrite the entire file,
2312from line 0 through the end. The second time through the loop, you
2313will rewrite the entire file from line 1 through the end. The third
2314time through the loop, you will rewrite the entire file from line 2 to
2315the end. And so on.
2316
2317If the performance in such cases is unacceptable, you may defer the
2318actual writing, and then have it done all at once. The following loop
2319will perform much better for large files:
2320
2321 (tied @a)->defer;
2322 for (@a) {
2323 $_ = "> $_";
2324 }
2325 (tied @a)->flush;
2326
2327If C<Tie::File>'s memory limit is large enough, all the writing will
2328done in memory. Then, when you call C<-E<gt>flush>, the entire file
2329will be rewritten in a single pass.
2330
6fc0ea7e 2331(Actually, the preceding discussion is something of a fib. You don't
2332need to enable deferred writing to get good performance for this
2333common case, because C<Tie::File> will do it for you automatically
2334unless you specifically tell it not to. See L<"autodeferring">,
2335below.)
2336
57c7bc08 2337Calling C<-E<gt>flush> returns the array to immediate-write mode. If
2338you wish to discard the deferred writes, you may call C<-E<gt>discard>
2339instead of C<-E<gt>flush>. Note that in some cases, some of the data
2340will have been written already, and it will be too late for
6fc0ea7e 2341C<-E<gt>discard> to discard all the changes. Support for
2342C<-E<gt>discard> may be withdrawn in a future version of C<Tie::File>.
57c7bc08 2343
2344Deferred writes are cached in memory up to the limit specified by the
2345C<dw_size> option (see above). If the deferred-write buffer is full
2346and you try to write still more deferred data, the buffer will be
2347flushed. All buffered data will be written immediately, the buffer
2348will be emptied, and the now-empty space will be used for future
2349deferred writes.
2350
2351If the deferred-write buffer isn't yet full, but the total size of the
2352buffer and the read cache would exceed the C<memory> limit, the oldest
27531ffb 2353records will be expired from the read cache until the total size is
57c7bc08 2354under the limit.
2355
2356C<push>, C<pop>, C<shift>, C<unshift>, and C<splice> cannot be
2357deferred. When you perform one of these operations, any deferred data
2358is written to the file and the operation is performed immediately.
2359This may change in a future version.
2360
6fc0ea7e 2361If you resize the array with deferred writing enabled, the file will
2362be resized immediately, but deferred records will not be written.
27531ffb 2363This has a surprising consequence: C<@a = (...)> erases the file
2364immediately, but the writing of the actual data is deferred. This
2365might be a bug. If it is a bug, it will be fixed in a future version.
6fc0ea7e 2366
2367=head2 Autodeferring
2368
2369C<Tie::File> tries to guess when deferred writing might be helpful,
27531ffb 2370and to turn it on and off automatically.
2371
2372 for (@a) {
2373 $_ = "> $_";
2374 }
2375
2376In this example, only the first two assignments will be done
2377immediately; after this, all the changes to the file will be deferred
2378up to the user-specified memory limit.
6fc0ea7e 2379
2380You should usually be able to ignore this and just use the module
2381without thinking about deferring. However, special applications may
2382require fine control over which writes are deferred, or may require
2383that all writes be immediate. To disable the autodeferment feature,
2384use
57c7bc08 2385
2386 (tied @o)->autodefer(0);
2387
6fc0ea7e 2388or
2389
2390 tie @array, 'Tie::File', $file, autodefer => 0;
2391
fa408a35 2392
27531ffb 2393Similarly, C<-E<gt>autodefer(1)> re-enables autodeferment, and
2394C<-E<gt>autodefer()> recovers the current value of the autodefer setting.
2395
b5aed31e 2396
6ae23f41 2397=head1 CONCURRENT ACCESS TO FILES
b5aed31e 2398
6ae23f41 2399Caching and deferred writing are inappropriate if you want the same
2400file to be accessed simultaneously from more than one process. You
2401will want to disable these features. You should do that by including
2402the C<memory =E<gt> 0> option in your C<tie> calls; this will inhibit
2403caching and deferred writing.
b3fe5a4c 2404
6ae23f41 2405You will also want to lock the file while reading or writing it. You
2406can use the C<-E<gt>flock> method for this. A future version of this
2407module may provide an 'autolocking' mode.
2408
2409=head1 CAVEATS
b3fe5a4c 2410
6ae23f41 2411(That's Latin for 'warnings'.)
b3fe5a4c 2412
6ae23f41 2413=over 4
6fc0ea7e 2414
27531ffb 2415=item *
b5aed31e 2416
6fc0ea7e 2417Reasonable effort was made to make this module efficient. Nevertheless,
b5aed31e 2418changing the size of a record in the middle of a large file will
b3fe5a4c 2419always be fairly slow, because everything after the new record must be
2420moved.
b5aed31e 2421
b3fe5a4c 2422=item *
2423
2424The behavior of tied arrays is not precisely the same as for regular
2425arrays. For example:
b5aed31e 2426
57c7bc08 2427 # This DOES print "How unusual!"
2428 undef $a[10]; print "How unusual!\n" if defined $a[10];
b3fe5a4c 2429
2430C<undef>-ing a C<Tie::File> array element just blanks out the
2431corresponding record in the file. When you read it back again, you'll
57c7bc08 2432get the empty string, so the supposedly-C<undef>'ed value will be
2433defined. Similarly, if you have C<autochomp> disabled, then
2434
2435 # This DOES print "How unusual!" if 'autochomp' is disabled
27531ffb 2436 undef $a[10];
57c7bc08 2437 print "How unusual!\n" if $a[10];
2438
2439Because when C<autochomp> is disabled, C<$a[10]> will read back as
2440C<"\n"> (or whatever the record separator string is.)
b5aed31e 2441
6fc0ea7e 2442There are other minor differences, particularly regarding C<exists>
2443and C<delete>, but in general, the correspondence is extremely close.
b3fe5a4c 2444
2445=item *
2446
27531ffb 2447I have supposed that since this module is concerned with file I/O,
2448almost all normal use of it will be heavily I/O bound. This means
2449that the time to maintain complicated data structures inside the
2450module will be dominated by the time to actually perform the I/O.
2451When there was an opportunity to spend CPU time to avoid doing I/O, I
6ae23f41 2452usually tried to take it.
b5aed31e 2453
57c7bc08 2454=item *
6fc0ea7e 2455
57c7bc08 2456You might be tempted to think that deferred writing is like
2457transactions, with C<flush> as C<commit> and C<discard> as
6fc0ea7e 2458C<rollback>, but it isn't, so don't.
57c7bc08 2459
6ae23f41 2460=item *
2461
2462There is a large memory overhead for each record offset and for each
2463cache entry: about 310 bytes per cached data record, and about 21 bytes per offset table entry.
2464
2465The per-record overhead will limit the maximum number of records you
2466can access per file. Note that I<accessing> the length of the array
2467via C<$x = scalar @tied_file> accesses B<all> records and stores their
2468offsets. The same for C<foreach (@tied_file)>, even if you exit the
2469loop early.
2470
b3fe5a4c 2471=back
51efdd02 2472
57c7bc08 2473=head1 SUBCLASSING
2474
2475This version promises absolutely nothing about the internals, which
2476may change without notice. A future version of the module will have a
2477well-defined and stable subclassing API.
2478
b3fe5a4c 2479=head1 WHAT ABOUT C<DB_File>?
51efdd02 2480
27531ffb 2481People sometimes point out that L<DB_File> will do something similar,
2482and ask why C<Tie::File> module is necessary.
b3fe5a4c 2483
27531ffb 2484There are a number of reasons that you might prefer C<Tie::File>.
2485A list is available at C<http://perl.plover.com/TieFile/why-not-DB_File>.
b5aed31e 2486
2487=head1 AUTHOR
2488
2489Mark Jason Dominus
2490
2491To contact the author, send email to: C<mjd-perl-tiefile+@plover.com>
2492
2493To receive an announcement whenever a new version of this module is
2494released, send a blank email message to
2495C<mjd-perl-tiefile-subscribe@plover.com>.
2496
57c7bc08 2497The most recent version of this module, including documentation and
2498any news of importance, will be available at
2499
2500 http://perl.plover.com/TieFile/
2501
2502
b5aed31e 2503=head1 LICENSE
2504
6ae23f41 2505C<Tie::File> version 0.95 is copyright (C) 2002 Mark Jason Dominus.
7b6b3db1 2506
2507This library is free software; you may redistribute it and/or modify
2508it under the same terms as Perl itself.
b5aed31e 2509
57c7bc08 2510These terms are your choice of any of (1) the Perl Artistic Licence,
2511or (2) version 2 of the GNU General Public License as published by the
7b6b3db1 2512Free Software Foundation, or (3) any later version of the GNU General
2513Public License.
b5aed31e 2514
7b6b3db1 2515This library is distributed in the hope that it will be useful,
b5aed31e 2516but WITHOUT ANY WARRANTY; without even the implied warranty of
2517MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2518GNU General Public License for more details.
2519
2520You should have received a copy of the GNU General Public License
7b6b3db1 2521along with this library program; it should be in the file C<COPYING>.
2522If not, write to the Free Software Foundation, Inc., 59 Temple Place,
2523Suite 330, Boston, MA 02111 USA
b5aed31e 2524
2525For licensing inquiries, contact the author at:
2526
2527 Mark Jason Dominus
2528 255 S. Warnock St.
2529 Philadelphia, PA 19107
2530
2531=head1 WARRANTY
2532
6ae23f41 2533C<Tie::File> version 0.95 comes with ABSOLUTELY NO WARRANTY.
b5aed31e 2534For details, see the license.
2535
fa408a35 2536=head1 THANKS
2537
2538Gigantic thanks to Jarkko Hietaniemi, for agreeing to put this in the
2539core when I hadn't written it yet, and for generally being helpful,
2540supportive, and competent. (Usually the rule is "choose any one.")
2541Also big thanks to Abhijit Menon-Sen for all of the same things.
2542
57c7bc08 2543Special thanks to Craig Berry and Peter Prymmer (for VMS portability
2544help), Randy Kobes (for Win32 portability help), Clinton Pierce and
2545Autrijus Tang (for heroic eleventh-hour Win32 testing above and beyond
6fc0ea7e 2546the call of duty), Michael G Schwern (for testing advice), and the
2547rest of the CPAN testers (for testing generally).
b5aed31e 2548
6ae23f41 2549Special thanks to Tels for suggesting several speed and memory
2550optimizations.
2551
57c7bc08 2552Additional thanks to:
b3fe5a4c 2553Edward Avis /
6ae23f41 2554Mattia Barbon /
fa408a35 2555Gerrit Haase /
6ae23f41 2556Jarkko Hietaniemi (again) /
b3fe5a4c 2557Nikola Knezevic /
6ae23f41 2558John Kominetz /
836d9961 2559Nick Ing-Simmons /
fa408a35 2560Tassilo von Parseval /
2561H. Dieter Pearcey /
b3fe5a4c 2562Slaven Rezic /
6ae23f41 2563Eric Roode /
6fc0ea7e 2564Peter Scott /
fa408a35 2565Peter Somu /
57c7bc08 2566Autrijus Tang (again) /
6ae23f41 2567Tels (again) /
2568Juerd Waalboer
7b6b3db1 2569
fa408a35 2570=head1 TODO
2571
b5aed31e 2572More tests. (Stuff I didn't think of yet.)
2573
b5aed31e 2574Paragraph mode?
2575
6fc0ea7e 2576Fixed-length mode. Leave-blanks mode.
b5aed31e 2577
fa408a35 2578Maybe an autolocking mode?
2579
6ae23f41 2580For many common uses of the module, the read cache is a liability.
2581For example, a program that inserts a single record, or that scans the
2582file once, will have a cache hit rate of zero. This suggests a major
2583optimization: The cache should be initially disabled. Here's a hybrid
2584approach: Initially, the cache is disabled, but the cache code
2585maintains statistics about how high the hit rate would be *if* it were
2586enabled. When it sees the hit rate get high enough, it enables
2587itself. The STAT comments in this code are the beginning of an
2588implementation of this.
2589
6fc0ea7e 2590Record locking with fcntl()? Then the module might support an undo
2591log and get real transactions. What a tour de force that would be.
b3fe5a4c 2592
6ae23f41 2593Keeping track of the highest cached record. This would allow reads-in-a-row
2594to skip the cache lookup faster (if reading from 1..N with empty cache at
2595start, the last cached value will be always N-1).
2596
27531ffb 2597More tests.
b3fe5a4c 2598
b5aed31e 2599=cut
2600