.\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "CDB_File 3pm" .TH CDB_File 3pm "2018-11-01" "perl v5.28.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" CDB_File \- Perl extension for access to cdb databases .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 2 \& use CDB_File; \& $c = tie %h, \*(AqCDB_File\*(Aq, \*(Aqfile.cdb\*(Aq or die "tie failed: $!\en"; \& \& $fh = $c\->handle; \& sysseek $fh, $c\->datapos, 0 or die ...; \& sysread $fh, $x, $c\->datalen; \& undef $c; \& untie %h; \& \& $t = new CDB_File (\*(Aqt.cdb\*(Aq, "t.$$") or die ...; \& $t\->insert(\*(Aqkey\*(Aq, \*(Aqvalue\*(Aq); \& $t\->finish; \& \& CDB_File::create %t, $file, "$file.$$"; .Ve .PP or .PP .Vb 2 \& use CDB_File \*(Aqcreate\*(Aq; \& create %t, $file, "$file.$$"; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\fBCDB_File\fR is a module which provides a Perl interface to Dan Bernstein's \fBcdb\fR package: .PP .Vb 2 \& cdb is a fast, reliable, lightweight package for creating and \& reading constant databases. .Ve .SS "Reading from a cdb" .IX Subsection "Reading from a cdb" After the \f(CW\*(C`tie\*(C'\fR shown above, accesses to \f(CW%h\fR will refer to the \fBcdb\fR file \f(CW\*(C`file.cdb\*(C'\fR, as described in \*(L"tie\*(R" in perlfunc. .PP Low level access to the database is provided by the three methods \&\f(CW\*(C`handle\*(C'\fR, \f(CW\*(C`datapos\*(C'\fR, and \f(CW\*(C`datalen\*(C'\fR. To use them, you must remember the \f(CW\*(C`CDB_File\*(C'\fR object returned by the \f(CW\*(C`tie\*(C'\fR call: \f(CW$c\fR in the example above. The \f(CW\*(C`datapos\*(C'\fR and \f(CW\*(C`datalen\*(C'\fR methods return the file offset position and length respectively of the most recently visited key (for example, via \f(CW\*(C`exists\*(C'\fR). .PP Beware that if you create an extra reference to the \f(CW\*(C`CDB_File\*(C'\fR object (like \f(CW$c\fR in the example above) you must destroy it (with \f(CW\*(C`undef\*(C'\fR) before calling \f(CW\*(C`untie\*(C'\fR on the hash. This ensures that the object's \&\f(CW\*(C`DESTROY\*(C'\fR method is called. Note that \f(CW\*(C`perl \-w\*(C'\fR will check this for you; see perltie for further details. .SS "Creating a cdb" .IX Subsection "Creating a cdb" A \fBcdb\fR file is created in three steps. First call \f(CW\*(C`new CDB_File ($final, $tmp)\*(C'\fR, where \f(CW$final\fR is the name of the database to be created, and \f(CW$tmp\fR is the name of a temporary file which can be atomically renamed to \f(CW$final\fR. Secondly, call the \f(CW\*(C`insert\*(C'\fR method once for each (\fIkey\fR, \fIvalue\fR) pair. Finally, call the \f(CW\*(C`finish\*(C'\fR method to complete the creation and renaming of the \fBcdb\fR file. .PP Alternatively, call the \f(CW\*(C`insert()\*(C'\fR method with multiple key/value pairs. This can be significantly faster because there is less crossing over the bridge from perl to C code. One simple way to do this is to pass in an entire hash, as in: \f(CW\*(C`$cdbmaker\->insert(%hash);\*(C'\fR. .PP A simpler interface to \fBcdb\fR file creation is provided by \&\f(CW\*(C`CDB_File::create %t, $final, $tmp\*(C'\fR. This creates a \fBcdb\fR file named \&\f(CW$final\fR containing the contents of \f(CW%t\fR. As before, \f(CW$tmp\fR must name a temporary file which can be atomically renamed to \f(CW$final\fR. \&\f(CW\*(C`CDB_File::create\*(C'\fR may be imported. .SH "EXAMPLES" .IX Header "EXAMPLES" These are all complete programs. .PP 1. Convert a Berkeley \s-1DB\s0 (B\-tree) database to \fBcdb\fR format. .PP .Vb 2 \& use CDB_File; \& use DB_File; \& \& tie %h, DB_File, $ARGV[0], O_RDONLY, undef, $DB_BTREE or \& die "$0: can\*(Aqt tie to $ARGV[0]: $!\en"; \& \& CDB_File::create %h, $ARGV[1], "$ARGV[1].$$" or \& die "$0: can\*(Aqt create cdb: $!\en"; .Ve .PP 2. Convert a flat file to \fBcdb\fR format. In this example, the flat file consists of one key per line, separated by a colon from the value. Blank lines and lines beginning with \fB#\fR are skipped. .PP .Vb 1 \& use CDB_File; \& \& $cdb = new CDB_File("data.cdb", "data.$$") or \& die "$0: new CDB_File failed: $!\en"; \& while (<>) { \& next if /^$/ or /^#/; \& chop; \& ($k, $v) = split /:/, $_, 2; \& if (defined $v) { \& $cdb\->insert($k, $v); \& } else { \& warn "bogus line: $_\en"; \& } \& } \& $cdb\->finish or die "$0: CDB_File finish failed: $!\en"; .Ve .PP 3. Perl version of \fBcdbdump\fR. .PP .Vb 1 \& use CDB_File; \& \& tie %data, \*(AqCDB_File\*(Aq, $ARGV[0] or \& die "$0: can\*(Aqt tie to $ARGV[0]: $!\en"; \& while (($k, $v) = each %data) { \& print \*(Aq+\*(Aq, length $k, \*(Aq,\*(Aq, length $v, ":$k\->$v\en"; \& } \& print "\en"; .Ve .PP 4. For really enormous data values, you can use \f(CW\*(C`handle\*(C'\fR, \f(CW\*(C`datapos\*(C'\fR, and \f(CW\*(C`datalen\*(C'\fR, in combination with \f(CW\*(C`sysseek\*(C'\fR and \f(CW\*(C`sysread\*(C'\fR, to avoid reading the values into memory. Here is the script \fIbun\-x.pl\fR, which can extract uncompressed files and directories from a \fBbun\fR file. .PP .Vb 1 \& use CDB_File; \& \& sub unnetstrings { \& my($netstrings) = @_; \& my @result; \& while ($netstrings =~ s/^([0\-9]+)://) { \& push @result, substr($netstrings, 0, $1, \*(Aq\*(Aq); \& $netstrings =~ s/^,//; \& } \& return @result; \& } \& \& my $chunk = 8192; \& \& sub extract { \& my($file, $t, $b) = @_; \& my $head = $$b{"H$file"}; \& my ($code, $type) = $head =~ m/^([0\-9]+)(.)/; \& if ($type eq "/") { \& mkdir $file, 0777; \& } elsif ($type eq "_") { \& my ($total, $now, $got, $x); \& open OUT, ">$file" or die "open for output: $!\en"; \& exists $$b{"D$code"} or die "corrupt bun file\en"; \& my $fh = $t\->handle; \& sysseek $fh, $t\->datapos, 0; \& $total = $t\->datalen; \& while ($total) { \& $now = ($total > $chunk) ? $chunk : $total; \& $got = sysread $fh, $x, $now; \& if (not $got) { die "read error\en"; } \& $total \-= $got; \& print OUT $x; \& } \& close OUT; \& } else { \& print STDERR "warning: skipping unknown file type\en"; \& } \& } \& \& die "usage\en" if @ARGV != 1; \& \& my (%b, $t); \& $t = tie %b, \*(AqCDB_File\*(Aq, $ARGV[0] or die "tie: $!\en"; \& map { extract $_, $t, \e%b } unnetstrings $b{""}; .Ve .PP 5. Although a \fBcdb\fR file is constant, you can simulate updating it in Perl. This is an expensive operation, as you have to create a new database, and copy into it everything that's unchanged from the old database. (As compensation, the update does not affect database readers. The old database is available for them, till the moment the new one is \f(CW\*(C`finish\*(C'\fRed.) .PP .Vb 1 \& use CDB_File; \& \& $file = \*(Aqdata.cdb\*(Aq; \& $new = new CDB_File($file, "$file.$$") or \& die "$0: new CDB_File failed: $!\en"; \& \& # Add the new values; remember which keys we\*(Aqve seen. \& while (<>) { \& chop; \& ($k, $v) = split; \& $new\->insert($k, $v); \& $seen{$k} = 1; \& } \& \& # Add any old values that haven\*(Aqt been replaced. \& tie %old, \*(AqCDB_File\*(Aq, $file or die "$0: can\*(Aqt tie to $file: $!\en"; \& while (($k, $v) = each %old) { \& $new\->insert($k, $v) unless $seen{$k}; \& } \& \& $new\->finish or die "$0: CDB_File finish failed: $!\en"; .Ve .SH "REPEATED KEYS" .IX Header "REPEATED KEYS" Most users can ignore this section. .PP A \fBcdb\fR file can contain repeated keys. If the \f(CW\*(C`insert\*(C'\fR method is called more than once with the same key during the creation of a \fBcdb\fR file, that key will be repeated. .PP Here's an example. .PP .Vb 4 \& $cdb = new CDB_File ("$file.cdb", "$file.$$") or die ...; \& $cdb\->insert(\*(Aqcat\*(Aq, \*(Aqgato\*(Aq); \& $cdb\->insert(\*(Aqcat\*(Aq, \*(Aqchat\*(Aq); \& $cdb\->finish; .Ve .PP Normally, any attempt to access a key retrieves the first value stored under that key. This code snippet always prints \fBgato\fR. .PP .Vb 2 \& $catref = tie %catalogue, CDB_File, "$file.cdb" or die ...; \& print "$catalogue{cat}"; .Ve .PP However, all the usual ways of iterating over a hash\-\-\-\f(CW\*(C`keys\*(C'\fR, \&\f(CW\*(C`values\*(C'\fR, and \f(CW\*(C`each\*(C'\fR\-\-\-do the Right Thing, even in the presence of repeated keys. This code snippet prints \fBcat cat gato chat\fR. .PP .Vb 1 \& print join(\*(Aq \*(Aq, keys %catalogue, values %catalogue); .Ve .PP And these two both print \fBcat:gato cat:chat\fR, although the second is more efficient. .PP .Vb 3 \& foreach $key (keys %catalogue) { \& print "$key:$catalogue{$key} "; \& } \& \& while (($key, $val) = each %catalogue) { \& print "$key:$val "; \& } .Ve .PP The \f(CW\*(C`multi_get\*(C'\fR method retrieves all the values associated with a key. It returns a reference to an array containing all the values. This code prints \fBgato chat\fR. .PP .Vb 1 \& print "@{$catref\->multi_get(\*(Aqcat\*(Aq)}"; .Ve .PP \&\f(CW\*(C`multi_get\*(C'\fR always returns an array reference. If the key was not found in the database, it will be a reference to an empty array. To test whether the key was found, you must test the array, and not the reference. .PP .Vb 3 \& $x = $catref\->multiget($key); \& warn "$key not found\en" unless $x; # WRONG; message never printed \& warn "$key not found\en" unless @$x; # Correct .Ve .PP The \f(CW\*(C`fetch_all\*(C'\fR method returns a hashref of all keys with the first value in the cdb. This is useful for quickly loading a cdb file where there is a 1:1 key mapping. In practice it proved to be about 400% faster then iterating a tied hash. .PP .Vb 2 \& # Slow \& my %copy = %tied_cdb; \& \& # Much Faster \& my $copy_hashref = $catref\->fetch_all(); .Ve .SH "RETURN VALUES" .IX Header "RETURN VALUES" The routines \f(CW\*(C`tie\*(C'\fR, \f(CW\*(C`new\*(C'\fR, and \f(CW\*(C`finish\*(C'\fR return \fBundef\fR if the attempted operation failed; \f(CW$!\fR contains the reason for failure. .SH "DIAGNOSTICS" .IX Header "DIAGNOSTICS" The following fatal errors may occur. (See \*(L"eval\*(R" in perlfunc if you want to trap them.) .IP "Modification of a CDB_File attempted" 4 .IX Item "Modification of a CDB_File attempted" You attempted to modify a hash tied to a \fBCDB_File\fR. .IP "\s-1CDB\s0 database too large" 4 .IX Item "CDB database too large" You attempted to create a \fBcdb\fR file larger than 4 gigabytes. .IP "[ Write to | Read of | Seek in ] CDB_File failed: " 4 .IX Item "[ Write to | Read of | Seek in ] CDB_File failed: " If \fBerror string\fR is \fBProtocol error\fR, you tried to \f(CW\*(C`use CDB_File\*(C'\fR to access something that isn't a \fBcdb\fR file. Otherwise a serious \s-1OS\s0 level problem occurred, for example, you have run out of disk space. .SH "PERFORMANCE" .IX Header "PERFORMANCE" Sometimes you need to get the most performance possible out of a library. Rumour has it that perl's \fBtie()\fR interface is slow. In order to get around that you can use CDB_File in an object oriented fashion, rather than via \fBtie()\fR. .PP .Vb 1 \& my $cdb = CDB_File\->TIEHASH(\*(Aq/path/to/cdbfile.cdb\*(Aq); \& \& if ($cdb\->EXISTS(\*(Aqkey\*(Aq)) { \& print "Key is: ", $cdb\->FETCH(\*(Aqkey\*(Aq), "\en"; \& } .Ve .PP For more information on the methods available on tied hashes see perltie. .SH "BUGS" .IX Header "BUGS" The \f(CW\*(C`create()\*(C'\fR interface could be done with \f(CW\*(C`TIEHASH\*(C'\fR. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBcdb\fR\|(3). .SH "AUTHOR" .IX Header "AUTHOR" Tim Goodwin, . \fBCDB_File\fR began on 1997\-01\-08. .PP Now maintained by Matt Sergeant,