home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _09f6445e4ebcd86ac564fc17e8e21c23 < prev    next >
Text File  |  2000-03-23  |  8KB  |  190 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perldbmfilter - Perl DBM Filters</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perldbmfilter - Perl DBM Filters</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  22.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  23.     <UL>
  24.  
  25.         <LI><A HREF="#the filter">The Filter</A></LI>
  26.         <LI><A HREF="#an example  the null termination problem.">An Example - the NULL termination problem.</A></LI>
  27.         <LI><A HREF="#another example  key is a c int.">Another Example - Key is a C int.</A></LI>
  28.     </UL>
  29.  
  30.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  31.     <LI><A HREF="#author">AUTHOR</A></LI>
  32. </UL>
  33. <!-- INDEX END -->
  34.  
  35. <HR>
  36. <P>
  37. <H1><A NAME="name">NAME</A></H1>
  38. <P>perldbmfilter - Perl DBM Filters</P>
  39. <P>
  40. <HR>
  41. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  42. <PRE>
  43.     $db = tie %hash, 'DBM', ...</PRE>
  44. <PRE>
  45.     $old_filter = $db->filter_store_key  ( sub { ... } ) ;
  46.     $old_filter = $db->filter_store_value( sub { ... } ) ;
  47.     $old_filter = $db->filter_fetch_key  ( sub { ... } ) ;
  48.     $old_filter = $db->filter_fetch_value( sub { ... } ) ;</PRE>
  49. <P>
  50. <HR>
  51. <H1><A NAME="description">DESCRIPTION</A></H1>
  52. <P>The four <CODE>filter_*</CODE> methods shown above are available in all the DBM
  53. modules that ship with Perl, namely DB_File, GDBM_File, NDBM_File,
  54. ODBM_File and SDBM_File.</P>
  55. <P>Each of the methods work identically, and are used to install (or
  56. uninstall) a single DBM Filter. The only difference between them is the
  57. place that the filter is installed.</P>
  58. <P>To summarise:</P>
  59. <DL>
  60. <DT><STRONG><A NAME="item_filter_store_key"><STRONG>filter_store_key</STRONG></A></STRONG><BR>
  61. <DD>
  62. If a filter has been installed with this method, it will be invoked
  63. every time you write a key to a DBM database.
  64. <P></P>
  65. <DT><STRONG><A NAME="item_filter_store_value"><STRONG>filter_store_value</STRONG></A></STRONG><BR>
  66. <DD>
  67. If a filter has been installed with this method, it will be invoked
  68. every time you write a value to a DBM database.
  69. <P></P>
  70. <DT><STRONG><A NAME="item_filter_fetch_key"><STRONG>filter_fetch_key</STRONG></A></STRONG><BR>
  71. <DD>
  72. If a filter has been installed with this method, it will be invoked
  73. every time you read a key from a DBM database.
  74. <P></P>
  75. <DT><STRONG><A NAME="item_filter_fetch_value"><STRONG>filter_fetch_value</STRONG></A></STRONG><BR>
  76. <DD>
  77. If a filter has been installed with this method, it will be invoked
  78. every time you read a value from a DBM database.
  79. <P></P></DL>
  80. <P>You can use any combination of the methods from none to all four.</P>
  81. <P>All filter methods return the existing filter, if present, or <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>
  82. in not.</P>
  83. <P>To delete a filter pass <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> to it.</P>
  84. <P>
  85. <H2><A NAME="the filter">The Filter</A></H2>
  86. <P>When each filter is called by Perl, a local copy of <CODE>$_</CODE> will contain
  87. the key or value to be filtered. Filtering is achieved by modifying
  88. the contents of <CODE>$_</CODE>. The return code from the filter is ignored.</P>
  89. <P>
  90. <H2><A NAME="an example  the null termination problem.">An Example -- the NULL termination problem.</A></H2>
  91. <P>DBM Filters are useful for a class of problems where you <EM>always</EM>
  92. want to make the same transformation to all keys, all values or both.</P>
  93. <P>For example, consider the following scenario. You have a DBM database
  94. that you need to share with a third-party C application. The C application
  95. assumes that <EM>all</EM> keys and values are NULL terminated. Unfortunately
  96. when Perl writes to DBM databases it doesn't use NULL termination, so
  97. your Perl application will have to manage NULL termination itself. When
  98. you write to the database you will have to use something like this:</P>
  99. <PRE>
  100.     $hash{"$key\0"} = "$value\0" ;</PRE>
  101. <P>Similarly the NULL needs to be taken into account when you are considering
  102. the length of existing keys/values.</P>
  103. <P>It would be much better if you could ignore the NULL terminations issue
  104. in the main application code and have a mechanism that automatically
  105. added the terminating NULL to all keys and values whenever you write to
  106. the database and have them removed when you read from the database. As I'm
  107. sure you have already guessed, this is a problem that DBM Filters can
  108. fix very easily.</P>
  109. <PRE>
  110.     use strict ;
  111.     use warnings ;
  112.     use SDBM_File ;
  113.     use Fcntl ;</PRE>
  114. <PRE>
  115.     my %hash ;
  116.     my $filename = "/tmp/filt" ;
  117.     unlink $filename ;</PRE>
  118. <PRE>
  119.     my $db = tie(%hash, 'SDBM_File', $filename, O_RDWR|O_CREAT, 0640)
  120.       or die "Cannot open $filename: $!\n" ;</PRE>
  121. <PRE>
  122.     # Install DBM Filters
  123.     $db->filter_fetch_key  ( sub { s/\0$//    } ) ;
  124.     $db->filter_store_key  ( sub { $_ .= "\0" } ) ;
  125.     $db->filter_fetch_value( 
  126.         sub { no warnings 'uninitialized' ;s/\0$// } ) ;
  127.     $db->filter_store_value( sub { $_ .= "\0" } ) ;</PRE>
  128. <PRE>
  129.     $hash{"abc"} = "def" ;
  130.     my $a = $hash{"ABC"} ;
  131.     # ...
  132.     undef $db ;
  133.     untie %hash ;</PRE>
  134. <P>The code above uses SDBM_File, but it will work with any of the DBM
  135. modules.</P>
  136. <P>Hopefully the contents of each of the filters should be
  137. self-explanatory. Both ``fetch'' filters remove the terminating NULL,
  138. and both ``store'' filters add a terminating NULL.</P>
  139. <P>
  140. <H2><A NAME="another example  key is a c int.">Another Example -- Key is a C int.</A></H2>
  141. <P>Here is another real-life example. By default, whenever Perl writes to
  142. a DBM database it always writes the key and value as strings. So when
  143. you use this:</P>
  144. <PRE>
  145.     $hash{12345} = "soemthing" ;</PRE>
  146. <P>the key 12345 will get stored in the DBM database as the 5 byte string
  147. ``12345''. If you actually want the key to be stored in the DBM database
  148. as a C int, you will have to use <A HREF="../../lib/Pod/perlfunc.html#item_pack"><CODE>pack</CODE></A> when writing, and <A HREF="../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack</CODE></A>
  149. when reading.</P>
  150. <P>Here is a DBM Filter that does it:</P>
  151. <PRE>
  152.     use strict ;
  153.     use warnings ;
  154.     use DB_File ;
  155.     my %hash ;
  156.     my $filename = "/tmp/filt" ;
  157.     unlink $filename ;</PRE>
  158. <PRE>
  159.     my $db = tie %hash, 'DB_File', $filename, O_CREAT|O_RDWR, 0666, $DB_HASH 
  160.       or die "Cannot open $filename: $!\n" ;</PRE>
  161. <PRE>
  162.     $db->filter_fetch_key  ( sub { $_ = unpack("i", $_) } ) ;
  163.     $db->filter_store_key  ( sub { $_ = pack ("i", $_) } ) ;
  164.     $hash{123} = "def" ;
  165.     # ...
  166.     undef $db ;
  167.     untie %hash ;</PRE>
  168. <P>The code above uses DB_File, but again it will work with any of the
  169. DBM modules.</P>
  170. <P>This time only two filters have been used -- we only need to manipulate
  171. the contents of the key, so it wasn't necessary to install any value
  172. filters.</P>
  173. <P>
  174. <HR>
  175. <H1><A NAME="see also">SEE ALSO</A></H1>
  176. <P><A HREF="../../lib/DB_File.html">the DB_File manpage</A>, <A HREF="../../lib/GDBM_File.html">the GDBM_File manpage</A>, <A HREF="../../lib/NDBM_File.html">the NDBM_File manpage</A>, <A HREF="../../lib/ODBM_File.html">the ODBM_File manpage</A> and <A HREF="../../lib/SDBM_File.html">the SDBM_File manpage</A>.</P>
  177. <P>
  178. <HR>
  179. <H1><A NAME="author">AUTHOR</A></H1>
  180. <P>Paul Marquess</P>
  181. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  182. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  183. <STRONG><P CLASS=block> perldbmfilter - Perl DBM Filters</P></STRONG>
  184. </TD></TR>
  185. </TABLE>
  186.  
  187. </BODY>
  188.  
  189. </HTML>
  190.