NAME
DBMFilter - Filter DBM keys/values
SYNOPSIS
use DBMFilter ;use SDBMFile; # or DBFile, or GDBMFile, or NDBMFile, or ODBMFile
$db = tie %hash, ...
$db->FilterPush(Fetch => sub {...},
Store => sub {...});$db->FilterPush('myfilter1');
$db->FilterPush('myfilter2', params...);
$db->FilterKeyPush(...) ;
$db->FilterValuePush(...) ;
$db->FilterPop();
$db->Filtered();
package DBMFilter::myfilter1; sub Store { ... } sub Fetch { ... } 1; package DBMFilter::myfilter2; sub Filter { my @opts = @; ... return ( sub Store { ... }, sub Fetch { ... } ); } 1;DESCRIPTION
This module provides an interface that allows filters to be applied to tied Hashes associated with DBM files. It builds on the DBM Filter hooks that are present in all the *DB*File modules included with thestandard Perl source distribution from version 5.6.1 onwards. In addi-
tion to the *DB*File modules distributed with Perl, the BerkeleyDBmodule, available on CPAN, supports the DBM Filter hooks. See perldbm-
filter for more details on the DBM Filter hooks. WWhhaatt iiss aa DDBBMM FFiilltteerr??A DBM Filter allows the keys and/or values in a tied hash to be modi-
fied by some user-defined code just before it is written to the DBM
file and just after it is read back from the DBM file. For example, this snippet of code$somehash{"abc"} = 42;
could potentially trigger two filters, one for the writing of the key "abc" and another for writing the value 42. Similarly, this snippetmy ($key, $value) = each %somehash
will trigger two filters, one for the reading of the key and one for the reading of the value. Like the existing DBM Filter functionality, this module arranges forthe $ variable to be populated with the key or value that a filter
will check. This usually means that most DBM filters tend to be very short. SSoo wwhhaatt''ss nneeww?? The main enhancements over the standard DBM Filter hooks are: +o A cleaner interface. +o The ability to easily apply multiple filters to a single DBM file. +o The ability to create "canned" filters. These allow commonly usedfilters to be packaged into a stand-alone module.
MMEETTHHOODDSS This module will arrange for the following methods to be available via the object returned from the "tie" call.$$ddbb->>FilterPush()
$$ddbb->>FilterKeyPush()
$$ddbb->>FilterValuePush()
Add a filter to filter stack for the database, $db. The three formats
vary only in whether they apply to the DBM key, the DBM value or both. FilterPush The filter is applied to both keys and values. FilterKeyPush The filter is applied to the key only. FilterValuePush The filter is applied to the value only.$$ddbb->>FilterPop()
Removes the last filter that was applied to the DBM file associatedwith $db, if present.
$$ddbb->>Filtered()
Returns TRUE if there are any filters applied to the DBM associatedwith $db. Otherwise returns FALSE.
WWrriittiinngg aa FFiilltteerr Filters can be created in two main ways IImmmmeeddiiaattee FFiilltteerrss An immediate filter allows you to specify the filter code to be used atthe point where the filter is applied to a dbm. In this mode the Fil-
ter*Push methods expects to receive exactly two parameters.my $db = tie %hash, 'SDBMFile', ...
$db->FilterPush( Store => sub { },
Fetch => sub { }); The code reference associated with "Store" will be called before any key/value is written to the database and the code reference associatedwith "Fetch" will be called after any key/value is read from the data-
base.For example, here is a sample filter that adds a trailing NULL charac-
ter to all strings before they are written to the DBM file, and removes the trailing NULL when they are read from the DBM filemy $db = tie %hash, 'SDBMFile', ...
$db->FilterPush( Store => sub { $ .= "\x00" ; },
Fetch => sub { s/\x00$// ; });
Points to note:1. Both the Store and Fetch filters manipulate $.
CCaannnneedd FFiilltteerrssImmediate filters are useful for one-off situations. For more generic
problems it can be useful to package the filter up in its own module. The usage is for a canned filter is:$db->FilterPush("name", params)
where "name" is the name of the module to load. If the string specified does not contain the package separator characters "::", it is assumed to refer to the full module name "DBMFilter::name". This means that the full names for canned filters, "null" and "utf8", included with this module are: DBMFilter::null DBMFilter::utf8 params any optional parameters that need to be sent to the filter. See the encode filter for an example of a module that uses parameters. The module that implements the canned filter can take one of two forms. Here is a template for the first package DBMFilter::null ; use strict; use warnings; sub Store {# store code here
} sub Fetch {# fetch code here
} 1; Notes: 1. The package name uses the "DBMFilter::" prefix. 2. The module must have both a Store and a Fetch method. If only one is present, or neither are present, a fatal error will be thrown. The second form allows the filter to hold state information using a closure, thus: package DBMFilter::encoding ; use strict; use warnings; sub Filter { my @params = @ ; ... return {Store => sub { $ = $encoding->encode($) },
Fetch => sub { $ = $encoding->decode($) }
} ; } 1; In this instance the "Store" and "Fetch" methods are encapsulated inside a "Filter" method. FFiilltteerrss IInncclluuddeedd A number of canned filers are provided with this module. They cover a number of the main areas that filters are needed when interfacing with DBM files. They also act as templates for your own filters. The filter included are: * utf8 This module will ensure that all data written to the DBM will beencoded in UTF-8.
This module needs the Encode module. * encode Allows you to choose the character encoding will be store in the DBM file. * compress This filter will compress all data before it is written to the database and uncompressed it on reading. This module needs Compress::Zlib. * int32 This module is used when interoperating with a C/C++ application that uses a C int as either the key and/or value in the DBM file. * null This module ensures that all data written to the DBM file is null terminated. This is useful when you have a perl script that needs to interoperate with a DBM file that a C program also uses. Afairly common issue is for the C application to include the termi-
nating null in a string when it writes to the DBM file. This fil-
ter will ensure that all data written to the DBM file can be read by the C application. NNOOTTEESS MMaaiinnttaaiinn RRoouunndd TTrriipp IInntteeggrriittyy When writing a DBM filter it is very important to ensure that it is possible to retrieve all data that you have written when the DBM filter is in place. In practice, this means that whatever transformation is applied to the data in the Store method, the exact inverse operation should be applied in the Fetch method. If you don't provide an exact inverse transformation, you will find that code like this will not behave as you expect.while (my ($k, $v) = each %hash)
{ ... } Depending on the transformation, you will find that one or more of the following will happen 1 The loop will never terminate. 2 Too few records will be retrieved. 3 Too many will be retrieved.4 The loop will do the right thing for a while, but it will unex-
pectedly fail.DDoonn''tt mmiixx ffiilltteerreedd && nnoonn-ffiilltteerreedd ddaattaa iinn tthhee ssaammee ddaattaabbaassee ffiillee..
This is just a restatement of the previous section. Unless you are com-
pletely certain you know what you are doing, avoid mixing filtered &non-filtered data.
EEXXAAMMPPLLEE Say you need to interoperate with a legacy C application that storeskeys as C ints and the values and null terminated UTF-8 strings. Here
is how you would set that upmy $db = tie %hash, 'SDBMFile', ...
$db->FilterKeyPush('int32') ;
$db->FilterValuePush('utf8');
$db->FilterValuePush('null');
SEE ALSO
, GDBMFile, NDBMFile, ODBMFile, SDBMFile, perldbmfilter AUTHOR Paul Marquess perl v5.8.8 2001-09-21 DBMFilter(3pm)