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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perltie - how to hide an object class in a simple variable</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> perltie - how to hide an object class in a simple variable</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="#tying scalars">Tying Scalars</A></LI>
  26.         <LI><A HREF="#tying arrays">Tying Arrays</A></LI>
  27.         <LI><A HREF="#tying hashes">Tying Hashes</A></LI>
  28.         <LI><A HREF="#tying filehandles">Tying FileHandles</A></LI>
  29.         <LI><A HREF="#the untie gotcha">The <A HREF="../../lib/Pod/perlfunc.html#item_untie"><CODE>untie</CODE></A> Gotcha</A></LI>
  30.     </UL>
  31.  
  32.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  33.     <LI><A HREF="#bugs">BUGS</A></LI>
  34.     <LI><A HREF="#author">AUTHOR</A></LI>
  35. </UL>
  36. <!-- INDEX END -->
  37.  
  38. <HR>
  39. <P>
  40. <H1><A NAME="name">NAME</A></H1>
  41. <P>perltie - how to hide an object class in a simple variable</P>
  42. <P>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <PRE>
  46.  tie VARIABLE, CLASSNAME, LIST</PRE>
  47. <PRE>
  48.  $object = tied VARIABLE</PRE>
  49. <PRE>
  50.  untie VARIABLE</PRE>
  51. <P>
  52. <HR>
  53. <H1><A NAME="description">DESCRIPTION</A></H1>
  54. <P>Prior to release 5.0 of Perl, a programmer could use <A HREF="../../lib/Pod/perlfunc.html#item_dbmopen"><CODE>dbmopen()</CODE></A>
  55. to connect an on-disk database in the standard Unix <CODE>dbm(3x)</CODE>
  56. format magically to a %HASH in their program.  However, their Perl was either
  57. built with one particular dbm library or another, but not both, and
  58. you couldn't extend this mechanism to other packages or types of variables.</P>
  59. <P>Now you can.</P>
  60. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> function binds a variable to a class (package) that will provide
  61. the implementation for access methods for that variable.  Once this magic
  62. has been performed, accessing a tied variable automatically triggers
  63. method calls in the proper class.  The complexity of the class is
  64. hidden behind magic methods calls.  The method names are in ALL CAPS,
  65. which is a convention that Perl uses to indicate that they're called
  66. implicitly rather than explicitly--just like the <CODE>BEGIN()</CODE> and <CODE>END()</CODE>
  67. functions.</P>
  68. <P>In the <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> call, <CODE>VARIABLE</CODE> is the name of the variable to be
  69. enchanted.  <CODE>CLASSNAME</CODE> is the name of a class implementing objects of
  70. the correct type.  Any additional arguments in the <A HREF="#item_LIST"><CODE>LIST</CODE></A> are passed to
  71. the appropriate constructor method for that class--meaning TIESCALAR(),
  72. TIEARRAY(), TIEHASH(), or TIEHANDLE().  (Typically these are arguments
  73. such as might be passed to the <CODE>dbminit()</CODE> function of C.) The object
  74. returned by the ``new'' method is also returned by the <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> function,
  75. which would be useful if you wanted to access other methods in
  76. <CODE>CLASSNAME</CODE>. (You don't actually have to return a reference to a right
  77. ``type'' (e.g., HASH or <CODE>CLASSNAME</CODE>) so long as it's a properly blessed
  78. object.)  You can also retrieve a reference to the underlying object
  79. using the <A HREF="../../lib/Pod/perlfunc.html#item_tied"><CODE>tied()</CODE></A> function.</P>
  80. <P>Unlike dbmopen(), the <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> function will not <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> a module
  81. for you--you need to do that explicitly yourself.</P>
  82. <P>
  83. <H2><A NAME="tying scalars">Tying Scalars</A></H2>
  84. <P>A class implementing a tied scalar should define the following methods:
  85. TIESCALAR, FETCH, STORE, and possibly DESTROY.</P>
  86. <P>Let's look at each in turn, using as an example a tie class for
  87. scalars that allows the user to do something like:</P>
  88. <PRE>
  89.     tie $his_speed, 'Nice', getppid();
  90.     tie $my_speed,  'Nice', $$;</PRE>
  91. <P>And now whenever either of those variables is accessed, its current
  92. system priority is retrieved and returned.  If those variables are set,
  93. then the process's priority is changed!</P>
  94. <P>We'll use Jarkko Hietaniemi <<EM><A HREF="mailto:jhi@iki.fi">jhi@iki.fi</A></EM>>'s BSD::Resource class (not
  95. included) to access the PRIO_PROCESS, PRIO_MIN, and PRIO_MAX constants
  96. from your system, as well as the <A HREF="../../lib/Pod/perlfunc.html#item_getpriority"><CODE>getpriority()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_setpriority"><CODE>setpriority()</CODE></A> system
  97. calls.  Here's the preamble of the class.</P>
  98. <PRE>
  99.     package Nice;
  100.     use Carp;
  101.     use BSD::Resource;
  102.     use strict;
  103.     $Nice::DEBUG = 0 unless defined $Nice::DEBUG;</PRE>
  104. <DL>
  105. <DT><STRONG><A NAME="item_TIESCALAR_classname%2C_LIST">TIESCALAR classname, LIST</A></STRONG><BR>
  106. <DD>
  107. This is the constructor for the class.  That means it is
  108. expected to return a blessed reference to a new scalar
  109. (probably anonymous) that it's creating.  For example:
  110. <PRE>
  111.     sub TIESCALAR {
  112.         my $class = shift;
  113.         my $pid = shift || $$; # 0 means me</PRE>
  114. <PRE>
  115.         if ($pid !~ /^\d+$/) {
  116.             carp "Nice::Tie::Scalar got non-numeric pid $pid" if $^W;
  117.             return undef;
  118.         }</PRE>
  119. <PRE>
  120.         unless (kill 0, $pid) { # EPERM or ERSCH, no doubt
  121.             carp "Nice::Tie::Scalar got bad pid $pid: $!" if $^W;
  122.             return undef;
  123.         }</PRE>
  124. <PRE>
  125.         return bless \$pid, $class;
  126.     }</PRE>
  127. <P>This tie class has chosen to return an error rather than raising an
  128. exception if its constructor should fail.  While this is how <A HREF="../../lib/Pod/perlfunc.html#item_dbmopen"><CODE>dbmopen()</CODE></A> works,
  129. other classes may well not wish to be so forgiving.  It checks the global
  130. variable <CODE>$^W</CODE> to see whether to emit a bit of noise anyway.</P>
  131. <P></P>
  132. <DT><STRONG><A NAME="item_FETCH_this">FETCH this</A></STRONG><BR>
  133. <DD>
  134. This method will be triggered every time the tied variable is accessed
  135. (read).  It takes no arguments beyond its self reference, which is the
  136. object representing the scalar we're dealing with.  Because in this case
  137. we're using just a SCALAR ref for the tied scalar object, a simple $$self
  138. allows the method to get at the real value stored there.  In our example
  139. below, that real value is the process ID to which we've tied our variable.
  140. <PRE>
  141.     sub FETCH {
  142.         my $self = shift;
  143.         confess "wrong type" unless ref $self;
  144.         croak "usage error" if @_;
  145.         my $nicety;
  146.         local($!) = 0;
  147.         $nicety = getpriority(PRIO_PROCESS, $$self);
  148.         if ($!) { croak "getpriority failed: $!" }
  149.         return $nicety;
  150.     }</PRE>
  151. <P>This time we've decided to blow up (raise an exception) if the renice
  152. fails--there's no place for us to return an error otherwise, and it's
  153. probably the right thing to do.</P>
  154. <P></P>
  155. <DT><STRONG><A NAME="item_STORE_this%2C_value">STORE this, value</A></STRONG><BR>
  156. <DD>
  157. This method will be triggered every time the tied variable is set
  158. (assigned).  Beyond its self reference, it also expects one (and only one)
  159. argument--the new value the user is trying to assign.
  160. <PRE>
  161.     sub STORE {
  162.         my $self = shift;
  163.         confess "wrong type" unless ref $self;
  164.         my $new_nicety = shift;
  165.         croak "usage error" if @_;</PRE>
  166. <PRE>
  167.         if ($new_nicety < PRIO_MIN) {
  168.             carp sprintf
  169.               "WARNING: priority %d less than minimum system priority %d",
  170.                   $new_nicety, PRIO_MIN if $^W;
  171.             $new_nicety = PRIO_MIN;
  172.         }</PRE>
  173. <PRE>
  174.         if ($new_nicety > PRIO_MAX) {
  175.             carp sprintf
  176.               "WARNING: priority %d greater than maximum system priority %d",
  177.                   $new_nicety, PRIO_MAX if $^W;
  178.             $new_nicety = PRIO_MAX;
  179.         }</PRE>
  180. <PRE>
  181.         unless (defined setpriority(PRIO_PROCESS, $$self, $new_nicety)) {
  182.             confess "setpriority failed: $!";
  183.         }
  184.         return $new_nicety;
  185.     }</PRE>
  186. <P></P>
  187. <DT><STRONG><A NAME="item_DESTROY_this">DESTROY this</A></STRONG><BR>
  188. <DD>
  189. This method will be triggered when the tied variable needs to be destructed.
  190. As with other object classes, such a method is seldom necessary, because Perl
  191. deallocates its moribund object's memory for you automatically--this isn't
  192. C++, you know.  We'll use a DESTROY method here for debugging purposes only.
  193. <PRE>
  194.     sub DESTROY {
  195.         my $self = shift;
  196.         confess "wrong type" unless ref $self;
  197.         carp "[ Nice::DESTROY pid $$self ]" if $Nice::DEBUG;
  198.     }</PRE>
  199. <P></P></DL>
  200. <P>That's about all there is to it.  Actually, it's more than all there
  201. is to it, because we've done a few nice things here for the sake
  202. of completeness, robustness, and general aesthetics.  Simpler
  203. TIESCALAR classes are certainly possible.</P>
  204. <P>
  205. <H2><A NAME="tying arrays">Tying Arrays</A></H2>
  206. <P>A class implementing a tied ordinary array should define the following
  207. methods: TIEARRAY, FETCH, STORE, FETCHSIZE, STORESIZE and perhaps DESTROY.</P>
  208. <P>FETCHSIZE and STORESIZE are used to provide <CODE>$#array</CODE> and
  209. equivalent <A HREF="../../lib/Pod/perlfunc.html#item_scalar"><CODE>scalar(@array)</CODE></A> access.</P>
  210. <P>The methods POP, PUSH, SHIFT, UNSHIFT, SPLICE, DELETE, and EXISTS are
  211. required if the perl operator with the corresponding (but lowercase) name
  212. is to operate on the tied array. The <STRONG>Tie::Array</STRONG> class can be used as a
  213. base class to implement the first five of these in terms of the basic
  214. methods above.  The default implementations of DELETE and EXISTS in
  215. <STRONG>Tie::Array</STRONG> simply <CODE>croak</CODE>.</P>
  216. <P>In addition EXTEND will be called when perl would have pre-extended 
  217. allocation in a real array.</P>
  218. <P>This means that tied arrays are now <EM>complete</EM>. The example below needs
  219. upgrading to illustrate this. (The documentation in <STRONG>Tie::Array</STRONG> is more
  220. complete.)</P>
  221. <P>For this discussion, we'll implement an array whose indices are fixed at
  222. its creation.  If you try to access anything beyond those bounds, you'll
  223. take an exception.  For example:</P>
  224. <PRE>
  225.     require Bounded_Array;
  226.     tie @ary, 'Bounded_Array', 2;
  227.     $| = 1;
  228.     for $i (0 .. 10) {
  229.         print "setting index $i: ";
  230.         $ary[$i] = 10 * $i;
  231.         $ary[$i] = 10 * $i;
  232.         print "value of elt $i now $ary[$i]\n";
  233.     }</PRE>
  234. <P>The preamble code for the class is as follows:</P>
  235. <PRE>
  236.     package Bounded_Array;
  237.     use Carp;
  238.     use strict;</PRE>
  239. <DL>
  240. <DT><STRONG><A NAME="item_TIEARRAY_classname%2C_LIST">TIEARRAY classname, LIST</A></STRONG><BR>
  241. <DD>
  242. This is the constructor for the class.  That means it is expected to
  243. return a blessed reference through which the new array (probably an
  244. anonymous ARRAY ref) will be accessed.
  245. <P>In our example, just to show you that you don't <EM>really</EM> have to return an
  246. ARRAY reference, we'll choose a HASH reference to represent our object.
  247. A HASH works out well as a generic record type: the <CODE>{BOUND}</CODE> field will
  248. store the maximum bound allowed, and the <CODE>{ARRAY}</CODE> field will hold the
  249. true ARRAY ref.  If someone outside the class tries to dereference the
  250. object returned (doubtless thinking it an ARRAY ref), they'll blow up.
  251. This just goes to show you that you should respect an object's privacy.</P>
  252. <PRE>
  253.     sub TIEARRAY {
  254.         my $class = shift;
  255.         my $bound = shift;
  256.         confess "usage: tie(\@ary, 'Bounded_Array', max_subscript)"
  257.             if @_ || $bound =~ /\D/;
  258.         return bless {
  259.             BOUND => $bound,
  260.             ARRAY => [],
  261.         }, $class;
  262.     }</PRE>
  263. <P></P>
  264. <DT><STRONG><A NAME="item_FETCH_this%2C_index">FETCH this, index</A></STRONG><BR>
  265. <DD>
  266. This method will be triggered every time an individual element the tied array
  267. is accessed (read).  It takes one argument beyond its self reference: the
  268. index whose value we're trying to fetch.
  269. <PRE>
  270.     sub FETCH {
  271.       my($self,$idx) = @_;
  272.       if ($idx > $self->{BOUND}) {
  273.         confess "Array OOB: $idx > $self->{BOUND}";
  274.       }
  275.       return $self->{ARRAY}[$idx];
  276.     }</PRE>
  277. <P>As you may have noticed, the name of the FETCH method (et al.) is the same
  278. for all accesses, even though the constructors differ in names (TIESCALAR
  279. vs TIEARRAY).  While in theory you could have the same class servicing
  280. several tied types, in practice this becomes cumbersome, and it's easiest
  281. to keep them at simply one tie type per class.</P>
  282. <P></P>
  283. <DT><STRONG><A NAME="item_STORE_this%2C_index%2C_value">STORE this, index, value</A></STRONG><BR>
  284. <DD>
  285. This method will be triggered every time an element in the tied array is set
  286. (written).  It takes two arguments beyond its self reference: the index at
  287. which we're trying to store something and the value we're trying to put
  288. there.  For example:
  289. <PRE>
  290.     sub STORE {
  291.       my($self, $idx, $value) = @_;
  292.       print "[STORE $value at $idx]\n" if _debug;
  293.       if ($idx > $self->{BOUND} ) {
  294.         confess "Array OOB: $idx > $self->{BOUND}";
  295.       }
  296.       return $self->{ARRAY}[$idx] = $value;
  297.     }</PRE>
  298. <P></P>
  299. <DT><STRONG>DESTROY this</STRONG><BR>
  300. <DD>
  301. This method will be triggered when the tied variable needs to be destructed.
  302. As with the scalar tie class, this is almost never needed in a
  303. language that does its own garbage collection, so this time we'll
  304. just leave it out.
  305. <P></P></DL>
  306. <P>The code we presented at the top of the tied array class accesses many
  307. elements of the array, far more than we've set the bounds to.  Therefore,
  308. it will blow up once they try to access beyond the 2nd element of @ary, as
  309. the following output demonstrates:</P>
  310. <PRE>
  311.     setting index 0: value of elt 0 now 0
  312.     setting index 1: value of elt 1 now 10
  313.     setting index 2: value of elt 2 now 20
  314.     setting index 3: Array OOB: 3 > 2 at Bounded_Array.pm line 39
  315.             Bounded_Array::FETCH called at testba line 12</PRE>
  316. <P>
  317. <H2><A NAME="tying hashes">Tying Hashes</A></H2>
  318. <P>As the first Perl data type to be tied (see dbmopen()), hashes have the
  319. most complete and useful <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> implementation.  A class implementing a
  320. tied hash should define the following methods: TIEHASH is the constructor.
  321. FETCH and STORE access the key and value pairs.  EXISTS reports whether a
  322. key is present in the hash, and DELETE deletes one.  CLEAR empties the
  323. hash by deleting all the key and value pairs.  FIRSTKEY and NEXTKEY
  324. implement the <A HREF="../../lib/Pod/perlfunc.html#item_keys"><CODE>keys()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A> functions to iterate over all the keys.
  325. And DESTROY is called when the tied variable is garbage collected.</P>
  326. <P>If this seems like a lot, then feel free to inherit from merely the
  327. standard Tie::Hash module for most of your methods, redefining only the
  328. interesting ones.  See <A HREF="../../lib/Tie/Hash.html">the Tie::Hash manpage</A> for details.</P>
  329. <P>Remember that Perl distinguishes between a key not existing in the hash,
  330. and the key existing in the hash but having a corresponding value of
  331. <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>.  The two possibilities can be tested with the <A HREF="../../lib/Pod/perlfunc.html#item_exists"><CODE>exists()</CODE></A> and
  332. <A HREF="../../lib/Pod/perlfunc.html#item_defined"><CODE>defined()</CODE></A> functions.</P>
  333. <P>Here's an example of a somewhat interesting tied hash class:  it gives you
  334. a hash representing a particular user's dot files.  You index into the hash
  335. with the name of the file (minus the dot) and you get back that dot file's
  336. contents.  For example:</P>
  337. <PRE>
  338.     use DotFiles;
  339.     tie %dot, 'DotFiles';
  340.     if ( $dot{profile} =~ /MANPATH/ ||
  341.          $dot{login}   =~ /MANPATH/ ||
  342.          $dot{cshrc}   =~ /MANPATH/    )
  343.     {
  344.         print "you seem to set your MANPATH\n";
  345.     }</PRE>
  346. <P>Or here's another sample of using our tied class:</P>
  347. <PRE>
  348.     tie %him, 'DotFiles', 'daemon';
  349.     foreach $f ( keys %him ) {
  350.         printf "daemon dot file %s is size %d\n",
  351.             $f, length $him{$f};
  352.     }</PRE>
  353. <P>In our tied hash DotFiles example, we use a regular
  354. hash for the object containing several important
  355. fields, of which only the <CODE>{LIST}</CODE> field will be what the
  356. user thinks of as the real hash.</P>
  357. <DL>
  358. <DT><STRONG><A NAME="item_USER">USER</A></STRONG><BR>
  359. <DD>
  360. whose dot files this object represents
  361. <P></P>
  362. <DT><STRONG><A NAME="item_HOME">HOME</A></STRONG><BR>
  363. <DD>
  364. where those dot files live
  365. <P></P>
  366. <DT><STRONG><A NAME="item_CLOBBER">CLOBBER</A></STRONG><BR>
  367. <DD>
  368. whether we should try to change or remove those dot files
  369. <P></P>
  370. <DT><STRONG><A NAME="item_LIST">LIST</A></STRONG><BR>
  371. <DD>
  372. the hash of dot file names and content mappings
  373. <P></P></DL>
  374. <P>Here's the start of <EM>Dotfiles.pm</EM>:</P>
  375. <PRE>
  376.     package DotFiles;
  377.     use Carp;
  378.     sub whowasi { (caller(1))[3] . '()' }
  379.     my $DEBUG = 0;
  380.     sub debug { $DEBUG = @_ ? shift : 1 }</PRE>
  381. <P>For our example, we want to be able to emit debugging info to help in tracing
  382. during development.  We keep also one convenience function around
  383. internally to help print out warnings; <CODE>whowasi()</CODE> returns the function name
  384. that calls it.</P>
  385. <P>Here are the methods for the DotFiles tied hash.</P>
  386. <DL>
  387. <DT><STRONG><A NAME="item_TIEHASH_classname%2C_LIST">TIEHASH classname, LIST</A></STRONG><BR>
  388. <DD>
  389. This is the constructor for the class.  That means it is expected to
  390. return a blessed reference through which the new object (probably but not
  391. necessarily an anonymous hash) will be accessed.
  392. <P>Here's the constructor:</P>
  393. <PRE>
  394.     sub TIEHASH {
  395.         my $self = shift;
  396.         my $user = shift || $>;
  397.         my $dotdir = shift || '';
  398.         croak "usage: @{[&whowasi]} [USER [DOTDIR]]" if @_;
  399.         $user = getpwuid($user) if $user =~ /^\d+$/;
  400.         my $dir = (getpwnam($user))[7]
  401.                 || croak "@{[&whowasi]}: no user $user";
  402.         $dir .= "/$dotdir" if $dotdir;</PRE>
  403. <PRE>
  404.         my $node = {
  405.             USER    => $user,
  406.             HOME    => $dir,
  407.             LIST    => {},
  408.             CLOBBER => 0,
  409.         };</PRE>
  410. <PRE>
  411.         opendir(DIR, $dir)
  412.                 || croak "@{[&whowasi]}: can't opendir $dir: $!";
  413.         foreach $dot ( grep /^\./ && -f "$dir/$_", readdir(DIR)) {
  414.             $dot =~ s/^\.//;
  415.             $node->{LIST}{$dot} = undef;
  416.         }
  417.         closedir DIR;
  418.         return bless $node, $self;
  419.     }</PRE>
  420. <P>It's probably worth mentioning that if you're going to filetest the
  421. return values out of a readdir, you'd better prepend the directory
  422. in question.  Otherwise, because we didn't <A HREF="../../lib/Pod/perlfunc.html#item_chdir"><CODE>chdir()</CODE></A> there, it would
  423. have been testing the wrong file.</P>
  424. <P></P>
  425. <DT><STRONG><A NAME="item_FETCH_this%2C_key">FETCH this, key</A></STRONG><BR>
  426. <DD>
  427. This method will be triggered every time an element in the tied hash is
  428. accessed (read).  It takes one argument beyond its self reference: the key
  429. whose value we're trying to fetch.
  430. <P>Here's the fetch for our DotFiles example.</P>
  431. <PRE>
  432.     sub FETCH {
  433.         carp &whowasi if $DEBUG;
  434.         my $self = shift;
  435.         my $dot = shift;
  436.         my $dir = $self->{HOME};
  437.         my $file = "$dir/.$dot";</PRE>
  438. <PRE>
  439.         unless (exists $self->{LIST}->{$dot} || -f $file) {
  440.             carp "@{[&whowasi]}: no $dot file" if $DEBUG;
  441.             return undef;
  442.         }</PRE>
  443. <PRE>
  444.         if (defined $self->{LIST}->{$dot}) {
  445.             return $self->{LIST}->{$dot};
  446.         } else {
  447.             return $self->{LIST}->{$dot} = `cat $dir/.$dot`;
  448.         }
  449.     }</PRE>
  450. <P>It was easy to write by having it call the Unix <CODE>cat(1)</CODE> command, but it
  451. would probably be more portable to open the file manually (and somewhat
  452. more efficient).  Of course, because dot files are a Unixy concept, we're
  453. not that concerned.</P>
  454. <P></P>
  455. <DT><STRONG><A NAME="item_STORE_this%2C_key%2C_value">STORE this, key, value</A></STRONG><BR>
  456. <DD>
  457. This method will be triggered every time an element in the tied hash is set
  458. (written).  It takes two arguments beyond its self reference: the index at
  459. which we're trying to store something, and the value we're trying to put
  460. there.
  461. <P>Here in our DotFiles example, we'll be careful not to let
  462. them try to overwrite the file unless they've called the <CODE>clobber()</CODE>
  463. method on the original object reference returned by tie().</P>
  464. <PRE>
  465.     sub STORE {
  466.         carp &whowasi if $DEBUG;
  467.         my $self = shift;
  468.         my $dot = shift;
  469.         my $value = shift;
  470.         my $file = $self->{HOME} . "/.$dot";
  471.         my $user = $self->{USER};</PRE>
  472. <PRE>
  473.         croak "@{[&whowasi]}: $file not clobberable"
  474.             unless $self->{CLOBBER};</PRE>
  475. <PRE>
  476.         open(F, "> $file") || croak "can't open $file: $!";
  477.         print F $value;
  478.         close(F);
  479.     }</PRE>
  480. <P>If they wanted to clobber something, they might say:</P>
  481. <PRE>
  482.     $ob = tie %daemon_dots, 'daemon';
  483.     $ob->clobber(1);
  484.     $daemon_dots{signature} = "A true daemon\n";</PRE>
  485. <P>Another way to lay hands on a reference to the underlying object is to
  486. use the <A HREF="../../lib/Pod/perlfunc.html#item_tied"><CODE>tied()</CODE></A> function, so they might alternately have set clobber
  487. using:</P>
  488. <PRE>
  489.     tie %daemon_dots, 'daemon';
  490.     tied(%daemon_dots)->clobber(1);</PRE>
  491. <P>The clobber method is simply:</P>
  492. <PRE>
  493.     sub clobber {
  494.         my $self = shift;
  495.         $self->{CLOBBER} = @_ ? shift : 1;
  496.     }</PRE>
  497. <P></P>
  498. <DT><STRONG><A NAME="item_DELETE_this%2C_key">DELETE this, key</A></STRONG><BR>
  499. <DD>
  500. This method is triggered when we remove an element from the hash,
  501. typically by using the <A HREF="../../lib/Pod/perlfunc.html#item_delete"><CODE>delete()</CODE></A> function.  Again, we'll
  502. be careful to check whether they really want to clobber files.
  503. <PRE>
  504.     sub DELETE   {
  505.         carp &whowasi if $DEBUG;</PRE>
  506. <PRE>
  507.         my $self = shift;
  508.         my $dot = shift;
  509.         my $file = $self->{HOME} . "/.$dot";
  510.         croak "@{[&whowasi]}: won't remove file $file"
  511.             unless $self->{CLOBBER};
  512.         delete $self->{LIST}->{$dot};
  513.         my $success = unlink($file);
  514.         carp "@{[&whowasi]}: can't unlink $file: $!" unless $success;
  515.         $success;
  516.     }</PRE>
  517. <P>The value returned by DELETE becomes the return value of the call
  518. to delete().  If you want to emulate the normal behavior of delete(),
  519. you should return whatever FETCH would have returned for this key.
  520. In this example, we have chosen instead to return a value which tells
  521. the caller whether the file was successfully deleted.</P>
  522. <P></P>
  523. <DT><STRONG><A NAME="item_CLEAR_this">CLEAR this</A></STRONG><BR>
  524. <DD>
  525. This method is triggered when the whole hash is to be cleared, usually by
  526. assigning the empty list to it.
  527. <P>In our example, that would remove all the user's dot files!  It's such a
  528. dangerous thing that they'll have to set CLOBBER to something higher than
  529. 1 to make it happen.</P>
  530. <PRE>
  531.     sub CLEAR    {
  532.         carp &whowasi if $DEBUG;
  533.         my $self = shift;
  534.         croak "@{[&whowasi]}: won't remove all dot files for $self->{USER}"
  535.             unless $self->{CLOBBER} > 1;
  536.         my $dot;
  537.         foreach $dot ( keys %{$self->{LIST}}) {
  538.             $self->DELETE($dot);
  539.         }
  540.     }</PRE>
  541. <P></P>
  542. <DT><STRONG><A NAME="item_EXISTS_this%2C_key">EXISTS this, key</A></STRONG><BR>
  543. <DD>
  544. This method is triggered when the user uses the <A HREF="../../lib/Pod/perlfunc.html#item_exists"><CODE>exists()</CODE></A> function
  545. on a particular hash.  In our example, we'll look at the <CODE>{LIST}</CODE>
  546. hash element for this:
  547. <PRE>
  548.     sub EXISTS   {
  549.         carp &whowasi if $DEBUG;
  550.         my $self = shift;
  551.         my $dot = shift;
  552.         return exists $self->{LIST}->{$dot};
  553.     }</PRE>
  554. <P></P>
  555. <DT><STRONG><A NAME="item_FIRSTKEY_this">FIRSTKEY this</A></STRONG><BR>
  556. <DD>
  557. This method will be triggered when the user is going
  558. to iterate through the hash, such as via a <A HREF="../../lib/Pod/perlfunc.html#item_keys"><CODE>keys()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A>
  559. call.
  560. <PRE>
  561.     sub FIRSTKEY {
  562.         carp &whowasi if $DEBUG;
  563.         my $self = shift;
  564.         my $a = keys %{$self->{LIST}};          # reset each() iterator
  565.         each %{$self->{LIST}}
  566.     }</PRE>
  567. <P></P>
  568. <DT><STRONG><A NAME="item_NEXTKEY_this%2C_lastkey">NEXTKEY this, lastkey</A></STRONG><BR>
  569. <DD>
  570. This method gets triggered during a <A HREF="../../lib/Pod/perlfunc.html#item_keys"><CODE>keys()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A> iteration.  It has a
  571. second argument which is the last key that had been accessed.  This is
  572. useful if you're carrying about ordering or calling the iterator from more
  573. than one sequence, or not really storing things in a hash anywhere.
  574. <P>For our example, we're using a real hash so we'll do just the simple
  575. thing, but we'll have to go through the LIST field indirectly.</P>
  576. <PRE>
  577.     sub NEXTKEY  {
  578.         carp &whowasi if $DEBUG;
  579.         my $self = shift;
  580.         return each %{ $self->{LIST} }
  581.     }</PRE>
  582. <P></P>
  583. <DT><STRONG>DESTROY this</STRONG><BR>
  584. <DD>
  585. This method is triggered when a tied hash is about to go out of
  586. scope.  You don't really need it unless you're trying to add debugging
  587. or have auxiliary state to clean up.  Here's a very simple function:
  588. <PRE>
  589.     sub DESTROY  {
  590.         carp &whowasi if $DEBUG;
  591.     }</PRE>
  592. <P></P></DL>
  593. <P>Note that functions such as <A HREF="../../lib/Pod/perlfunc.html#item_keys"><CODE>keys()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_values"><CODE>values()</CODE></A> may return huge lists
  594. when used on large objects, like DBM files.  You may prefer to use the
  595. <A HREF="../../lib/Pod/perlfunc.html#item_each"><CODE>each()</CODE></A> function to iterate over such.  Example:</P>
  596. <PRE>
  597.     # print out history file offsets
  598.     use NDBM_File;
  599.     tie(%HIST, 'NDBM_File', '/usr/lib/news/history', 1, 0);
  600.     while (($key,$val) = each %HIST) {
  601.         print $key, ' = ', unpack('L',$val), "\n";
  602.     }
  603.     untie(%HIST);</PRE>
  604. <P>
  605. <H2><A NAME="tying filehandles">Tying FileHandles</A></H2>
  606. <P>This is partially implemented now.</P>
  607. <P>A class implementing a tied filehandle should define the following
  608. methods: TIEHANDLE, at least one of PRINT, PRINTF, WRITE, READLINE, GETC,
  609. READ, and possibly CLOSE and DESTROY.  The class can also provide: BINMODE, 
  610. OPEN, EOF, FILENO, SEEK, TELL - if the corresponding perl operators are
  611. used on the handle.</P>
  612. <P>It is especially useful when perl is embedded in some other program,
  613. where output to STDOUT and STDERR may have to be redirected in some
  614. special way. See nvi and the Apache module for examples.</P>
  615. <P>In our example we're going to create a shouting handle.</P>
  616. <PRE>
  617.     package Shout;</PRE>
  618. <DL>
  619. <DT><STRONG><A NAME="item_TIEHANDLE_classname%2C_LIST">TIEHANDLE classname, LIST</A></STRONG><BR>
  620. <DD>
  621. This is the constructor for the class.  That means it is expected to
  622. return a blessed reference of some sort. The reference can be used to
  623. hold some internal information.
  624. <PRE>
  625.     sub TIEHANDLE { print "<shout>\n"; my $i; bless \$i, shift }</PRE>
  626. <P></P>
  627. <DT><STRONG><A NAME="item_WRITE_this%2C_LIST">WRITE this, LIST</A></STRONG><BR>
  628. <DD>
  629. This method will be called when the handle is written to via the
  630. <A HREF="../../lib/Pod/perlfunc.html#item_syswrite"><CODE>syswrite</CODE></A> function.
  631. <PRE>
  632.     sub WRITE {
  633.         $r = shift;
  634.         my($buf,$len,$offset) = @_;
  635.         print "WRITE called, \$buf=$buf, \$len=$len, \$offset=$offset";
  636.     }</PRE>
  637. <P></P>
  638. <DT><STRONG><A NAME="item_PRINT_this%2C_LIST">PRINT this, LIST</A></STRONG><BR>
  639. <DD>
  640. This method will be triggered every time the tied handle is printed to
  641. with the <A HREF="../../lib/Pod/perlfunc.html#item_print"><CODE>print()</CODE></A> function.
  642. Beyond its self reference it also expects the list that was passed to
  643. the print function.
  644. <PRE>
  645.     sub PRINT { $r = shift; $$r++; print join($,,map(uc($_),@_)),$\ }</PRE>
  646. <P></P>
  647. <DT><STRONG><A NAME="item_PRINTF_this%2C_LIST">PRINTF this, LIST</A></STRONG><BR>
  648. <DD>
  649. This method will be triggered every time the tied handle is printed to
  650. with the <A HREF="../../lib/Pod/perlfunc.html#item_printf"><CODE>printf()</CODE></A> function.
  651. Beyond its self reference it also expects the format and list that was
  652. passed to the printf function.
  653. <PRE>
  654.     sub PRINTF {
  655.         shift;
  656.         my $fmt = shift;
  657.         print sprintf($fmt, @_)."\n";
  658.     }</PRE>
  659. <P></P>
  660. <DT><STRONG><A NAME="item_READ_this%2C_LIST">READ this, LIST</A></STRONG><BR>
  661. <DD>
  662. This method will be called when the handle is read from via the <A HREF="../../lib/Pod/perlfunc.html#item_read"><CODE>read</CODE></A>
  663. or <A HREF="../../lib/Pod/perlfunc.html#item_sysread"><CODE>sysread</CODE></A> functions.
  664. <PRE>
  665.     sub READ {
  666.         my $self = shift;
  667.         my $$bufref = \$_[0];
  668.         my(undef,$len,$offset) = @_;
  669.         print "READ called, \$buf=$bufref, \$len=$len, \$offset=$offset";
  670.         # add to $$bufref, set $len to number of characters read
  671.         $len;
  672.     }</PRE>
  673. <P></P>
  674. <DT><STRONG><A NAME="item_READLINE_this">READLINE this</A></STRONG><BR>
  675. <DD>
  676. This method will be called when the handle is read from via <HANDLE>.
  677. The method should return undef when there is no more data.
  678. <PRE>
  679.     sub READLINE { $r = shift; "READLINE called $$r times\n"; }</PRE>
  680. <P></P>
  681. <DT><STRONG><A NAME="item_GETC_this">GETC this</A></STRONG><BR>
  682. <DD>
  683. This method will be called when the <A HREF="../../lib/Pod/perlfunc.html#item_getc"><CODE>getc</CODE></A> function is called.
  684. <PRE>
  685.     sub GETC { print "Don't GETC, Get Perl"; return "a"; }</PRE>
  686. <P></P>
  687. <DT><STRONG><A NAME="item_CLOSE_this">CLOSE this</A></STRONG><BR>
  688. <DD>
  689. This method will be called when the handle is closed via the <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close</CODE></A>
  690. function.
  691. <PRE>
  692.     sub CLOSE { print "CLOSE called.\n" }</PRE>
  693. <P></P>
  694. <DT><STRONG>DESTROY this</STRONG><BR>
  695. <DD>
  696. As with the other types of ties, this method will be called when the
  697. tied handle is about to be destroyed. This is useful for debugging and
  698. possibly cleaning up.
  699. <PRE>
  700.     sub DESTROY { print "</shout>\n" }</PRE>
  701. <P></P></DL>
  702. <P>Here's how to use our little example:</P>
  703. <PRE>
  704.     tie(*FOO,'Shout');
  705.     print FOO "hello\n";
  706.     $a = 4; $b = 6;
  707.     print FOO $a, " plus ", $b, " equals ", $a + $b, "\n";
  708.     print <FOO>;</PRE>
  709. <P>
  710. <H2><A NAME="the untie gotcha">The <A HREF="../../lib/Pod/perlfunc.html#item_untie"><CODE>untie</CODE></A> Gotcha</A></H2>
  711. <P>If you intend making use of the object returned from either <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> or
  712. tied(), and if the tie's target class defines a destructor, there is a
  713. subtle gotcha you <EM>must</EM> guard against.</P>
  714. <P>As setup, consider this (admittedly rather contrived) example of a
  715. tie; all it does is use a file to keep a log of the values assigned to
  716. a scalar.</P>
  717. <PRE>
  718.     package Remember;</PRE>
  719. <PRE>
  720.     use strict;
  721.     use warnings;
  722.     use IO::File;</PRE>
  723. <PRE>
  724.     sub TIESCALAR {
  725.         my $class = shift;
  726.         my $filename = shift;
  727.         my $handle = new IO::File "> $filename"
  728.                          or die "Cannot open $filename: $!\n";</PRE>
  729. <PRE>
  730.         print $handle "The Start\n";
  731.         bless {FH => $handle, Value => 0}, $class;
  732.     }</PRE>
  733. <PRE>
  734.     sub FETCH {
  735.         my $self = shift;
  736.         return $self->{Value};
  737.     }</PRE>
  738. <PRE>
  739.     sub STORE {
  740.         my $self = shift;
  741.         my $value = shift;
  742.         my $handle = $self->{FH};
  743.         print $handle "$value\n";
  744.         $self->{Value} = $value;
  745.     }</PRE>
  746. <PRE>
  747.     sub DESTROY {
  748.         my $self = shift;
  749.         my $handle = $self->{FH};
  750.         print $handle "The End\n";
  751.         close $handle;
  752.     }</PRE>
  753. <PRE>
  754.     1;</PRE>
  755. <P>Here is an example that makes use of this tie:</P>
  756. <PRE>
  757.     use strict;
  758.     use Remember;</PRE>
  759. <PRE>
  760.     my $fred;
  761.     tie $fred, 'Remember', 'myfile.txt';
  762.     $fred = 1;
  763.     $fred = 4;
  764.     $fred = 5;
  765.     untie $fred;
  766.     system "cat myfile.txt";</PRE>
  767. <P>This is the output when it is executed:</P>
  768. <PRE>
  769.     The Start
  770.     1
  771.     4
  772.     5
  773.     The End</PRE>
  774. <P>So far so good.  Those of you who have been paying attention will have
  775. spotted that the tied object hasn't been used so far.  So lets add an
  776. extra method to the Remember class to allow comments to be included in
  777. the file -- say, something like this:</P>
  778. <PRE>
  779.     sub comment {
  780.         my $self = shift;
  781.         my $text = shift;
  782.         my $handle = $self->{FH};
  783.         print $handle $text, "\n";
  784.     }</PRE>
  785. <P>And here is the previous example modified to use the <CODE>comment</CODE> method
  786. (which requires the tied object):</P>
  787. <PRE>
  788.     use strict;
  789.     use Remember;</PRE>
  790. <PRE>
  791.     my ($fred, $x);
  792.     $x = tie $fred, 'Remember', 'myfile.txt';
  793.     $fred = 1;
  794.     $fred = 4;
  795.     comment $x "changing...";
  796.     $fred = 5;
  797.     untie $fred;
  798.     system "cat myfile.txt";</PRE>
  799. <P>When this code is executed there is no output.  Here's why:</P>
  800. <P>When a variable is tied, it is associated with the object which is the
  801. return value of the TIESCALAR, TIEARRAY, or TIEHASH function.  This
  802. object normally has only one reference, namely, the implicit reference
  803. from the tied variable.  When <A HREF="../../lib/Pod/perlfunc.html#item_untie"><CODE>untie()</CODE></A> is called, that reference is
  804. destroyed.  Then, as in the first example above, the object's
  805. destructor (DESTROY) is called, which is normal for objects that have
  806. no more valid references; and thus the file is closed.</P>
  807. <P>In the second example, however, we have stored another reference to
  808. the tied object in $x.  That means that when <A HREF="../../lib/Pod/perlfunc.html#item_untie"><CODE>untie()</CODE></A> gets called
  809. there will still be a valid reference to the object in existence, so
  810. the destructor is not called at that time, and thus the file is not
  811. closed.  The reason there is no output is because the file buffers
  812. have not been flushed to disk.</P>
  813. <P>Now that you know what the problem is, what can you do to avoid it?
  814. Well, the good old <CODE>-w</CODE> flag will spot any instances where you call
  815. <A HREF="../../lib/Pod/perlfunc.html#item_untie"><CODE>untie()</CODE></A> and there are still valid references to the tied object.  If
  816. the second script above this near the top <CODE>use warnings 'untie'</CODE>
  817. or was run with the <CODE>-w</CODE> flag, Perl prints this
  818. warning message:</P>
  819. <PRE>
  820.     untie attempted while 1 inner references still exist</PRE>
  821. <P>To get the script to work properly and silence the warning make sure
  822. there are no valid references to the tied object <EM>before</EM> <A HREF="../../lib/Pod/perlfunc.html#item_untie"><CODE>untie()</CODE></A> is
  823. called:</P>
  824. <PRE>
  825.     undef $x;
  826.     untie $fred;</PRE>
  827. <P>
  828. <HR>
  829. <H1><A NAME="see also">SEE ALSO</A></H1>
  830. <P>See <A HREF="../../lib/DB_File.html">the DB_File manpage</A> or <A HREF="../../lib/Config.html">the Config manpage</A> for some interesting <A HREF="../../lib/Pod/perlfunc.html#item_tie"><CODE>tie()</CODE></A> implementations.</P>
  831. <P>
  832. <HR>
  833. <H1><A NAME="bugs">BUGS</A></H1>
  834. <P>Tied arrays are <EM>incomplete</EM>.  They are also distinctly lacking something
  835. for the <CODE>$#ARRAY</CODE> access (which is hard, as it's an lvalue), as well as
  836. the other obvious array functions, like push(), pop(), shift(), unshift(),
  837. and splice().</P>
  838. <P>You cannot easily tie a multilevel data structure (such as a hash of
  839. hashes) to a dbm file.  The first problem is that all but GDBM and
  840. Berkeley DB have size limitations, but beyond that, you also have problems
  841. with how references are to be represented on disk.  One experimental
  842. module that does attempt to address this need partially is the MLDBM
  843. module.  Check your nearest CPAN site as described in <A HREF="../../lib/Pod/perlmodlib.html">the perlmodlib manpage</A> for
  844. source code to MLDBM.</P>
  845. <P>
  846. <HR>
  847. <H1><A NAME="author">AUTHOR</A></H1>
  848. <P>Tom Christiansen</P>
  849. <P>TIEHANDLE by Sven Verdoolaege <<EM><A HREF="mailto:skimo@dns.ufsia.ac.be">skimo@dns.ufsia.ac.be</A></EM>> and Doug MacEachern <<EM><A HREF="mailto:dougm@osf.org">dougm@osf.org</A></EM>></P>
  850. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  851. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  852. <STRONG><P CLASS=block> perltie - how to hide an object class in a simple variable</P></STRONG>
  853. </TD></TR>
  854. </TABLE>
  855.  
  856. </BODY>
  857.  
  858. </HTML>
  859.