[ID 20001128.002] what's the point of example code if it is buggy?
[p5sagit/p5-mst-13.2.git] / pod / perltie.pod
CommitLineData
cb1a09d0 1=head1 NAME
2
3perltie - how to hide an object class in a simple variable
4
5=head1 SYNOPSIS
6
7 tie VARIABLE, CLASSNAME, LIST
8
6fdf61fb 9 $object = tied VARIABLE
10
cb1a09d0 11 untie VARIABLE
12
13=head1 DESCRIPTION
14
15Prior to release 5.0 of Perl, a programmer could use dbmopen()
5f05dabc 16to connect an on-disk database in the standard Unix dbm(3x)
17format magically to a %HASH in their program. However, their Perl was either
cb1a09d0 18built with one particular dbm library or another, but not both, and
19you couldn't extend this mechanism to other packages or types of variables.
20
21Now you can.
22
23The tie() function binds a variable to a class (package) that will provide
24the implementation for access methods for that variable. Once this magic
25has been performed, accessing a tied variable automatically triggers
5a964f20 26method calls in the proper class. The complexity of the class is
cb1a09d0 27hidden behind magic methods calls. The method names are in ALL CAPS,
28which is a convention that Perl uses to indicate that they're called
29implicitly rather than explicitly--just like the BEGIN() and END()
30functions.
31
32In the tie() call, C<VARIABLE> is the name of the variable to be
33enchanted. C<CLASSNAME> is the name of a class implementing objects of
34the correct type. Any additional arguments in the C<LIST> are passed to
35the appropriate constructor method for that class--meaning TIESCALAR(),
5f05dabc 36TIEARRAY(), TIEHASH(), or TIEHANDLE(). (Typically these are arguments
a7adf1f0 37such as might be passed to the dbminit() function of C.) The object
38returned by the "new" method is also returned by the tie() function,
39which would be useful if you wanted to access other methods in
40C<CLASSNAME>. (You don't actually have to return a reference to a right
5f05dabc 41"type" (e.g., HASH or C<CLASSNAME>) so long as it's a properly blessed
a7adf1f0 42object.) You can also retrieve a reference to the underlying object
43using the tied() function.
cb1a09d0 44
45Unlike dbmopen(), the tie() function will not C<use> or C<require> a module
46for you--you need to do that explicitly yourself.
47
48=head2 Tying Scalars
49
50A class implementing a tied scalar should define the following methods:
301e8125 51TIESCALAR, FETCH, STORE, and possibly UNTIE and/or DESTROY.
cb1a09d0 52
53Let's look at each in turn, using as an example a tie class for
54scalars that allows the user to do something like:
55
56 tie $his_speed, 'Nice', getppid();
57 tie $my_speed, 'Nice', $$;
58
59And now whenever either of those variables is accessed, its current
60system priority is retrieved and returned. If those variables are set,
61then the process's priority is changed!
62
5aabfad6 63We'll use Jarkko Hietaniemi <F<jhi@iki.fi>>'s BSD::Resource class (not
64included) to access the PRIO_PROCESS, PRIO_MIN, and PRIO_MAX constants
65from your system, as well as the getpriority() and setpriority() system
66calls. Here's the preamble of the class.
cb1a09d0 67
68 package Nice;
69 use Carp;
70 use BSD::Resource;
71 use strict;
72 $Nice::DEBUG = 0 unless defined $Nice::DEBUG;
73
13a2d996 74=over 4
cb1a09d0 75
76=item TIESCALAR classname, LIST
77
78This is the constructor for the class. That means it is
79expected to return a blessed reference to a new scalar
80(probably anonymous) that it's creating. For example:
81
82 sub TIESCALAR {
83 my $class = shift;
84 my $pid = shift || $$; # 0 means me
85
86 if ($pid !~ /^\d+$/) {
6fdf61fb 87 carp "Nice::Tie::Scalar got non-numeric pid $pid" if $^W;
cb1a09d0 88 return undef;
89 }
90
91 unless (kill 0, $pid) { # EPERM or ERSCH, no doubt
6fdf61fb 92 carp "Nice::Tie::Scalar got bad pid $pid: $!" if $^W;
cb1a09d0 93 return undef;
94 }
95
96 return bless \$pid, $class;
97 }
98
99This tie class has chosen to return an error rather than raising an
100exception if its constructor should fail. While this is how dbmopen() works,
101other classes may well not wish to be so forgiving. It checks the global
102variable C<$^W> to see whether to emit a bit of noise anyway.
103
104=item FETCH this
105
106This method will be triggered every time the tied variable is accessed
107(read). It takes no arguments beyond its self reference, which is the
5f05dabc 108object representing the scalar we're dealing with. Because in this case
109we're using just a SCALAR ref for the tied scalar object, a simple $$self
cb1a09d0 110allows the method to get at the real value stored there. In our example
111below, that real value is the process ID to which we've tied our variable.
112
113 sub FETCH {
114 my $self = shift;
115 confess "wrong type" unless ref $self;
116 croak "usage error" if @_;
117 my $nicety;
118 local($!) = 0;
119 $nicety = getpriority(PRIO_PROCESS, $$self);
120 if ($!) { croak "getpriority failed: $!" }
121 return $nicety;
122 }
123
124This time we've decided to blow up (raise an exception) if the renice
125fails--there's no place for us to return an error otherwise, and it's
126probably the right thing to do.
127
128=item STORE this, value
129
130This method will be triggered every time the tied variable is set
131(assigned). Beyond its self reference, it also expects one (and only one)
132argument--the new value the user is trying to assign.
133
134 sub STORE {
135 my $self = shift;
136 confess "wrong type" unless ref $self;
137 my $new_nicety = shift;
138 croak "usage error" if @_;
139
140 if ($new_nicety < PRIO_MIN) {
141 carp sprintf
142 "WARNING: priority %d less than minimum system priority %d",
143 $new_nicety, PRIO_MIN if $^W;
144 $new_nicety = PRIO_MIN;
145 }
146
147 if ($new_nicety > PRIO_MAX) {
148 carp sprintf
149 "WARNING: priority %d greater than maximum system priority %d",
150 $new_nicety, PRIO_MAX if $^W;
151 $new_nicety = PRIO_MAX;
152 }
153
154 unless (defined setpriority(PRIO_PROCESS, $$self, $new_nicety)) {
155 confess "setpriority failed: $!";
156 }
157 return $new_nicety;
158 }
159
301e8125 160=item UNTIE this
161
162This method will be triggered when the C<untie> occurs. This can be useful
163if the class needs to know when no further calls will be made. (Except DESTROY
164of course.) See below for more details.
165
cb1a09d0 166=item DESTROY this
167
168This method will be triggered when the tied variable needs to be destructed.
5f05dabc 169As with other object classes, such a method is seldom necessary, because Perl
cb1a09d0 170deallocates its moribund object's memory for you automatically--this isn't
171C++, you know. We'll use a DESTROY method here for debugging purposes only.
172
173 sub DESTROY {
174 my $self = shift;
175 confess "wrong type" unless ref $self;
176 carp "[ Nice::DESTROY pid $$self ]" if $Nice::DEBUG;
177 }
178
179=back
180
181That's about all there is to it. Actually, it's more than all there
5f05dabc 182is to it, because we've done a few nice things here for the sake
cb1a09d0 183of completeness, robustness, and general aesthetics. Simpler
184TIESCALAR classes are certainly possible.
185
186=head2 Tying Arrays
187
188A class implementing a tied ordinary array should define the following
301e8125 189methods: TIEARRAY, FETCH, STORE, FETCHSIZE, STORESIZE and perhaps UNTIE and/or DESTROY.
cb1a09d0 190
a60c0954 191FETCHSIZE and STORESIZE are used to provide C<$#array> and
192equivalent C<scalar(@array)> access.
c47ff5f1 193
01020589 194The methods POP, PUSH, SHIFT, UNSHIFT, SPLICE, DELETE, and EXISTS are
195required if the perl operator with the corresponding (but lowercase) name
196is to operate on the tied array. The B<Tie::Array> class can be used as a
197base class to implement the first five of these in terms of the basic
198methods above. The default implementations of DELETE and EXISTS in
199B<Tie::Array> simply C<croak>.
a60c0954 200
301e8125 201In addition EXTEND will be called when perl would have pre-extended
a60c0954 202allocation in a real array.
203
4ae85618 204For this discussion, we'll implement an array whose elements are a fixed
205size at creation. If you try to create an element larger than the fixed
206size, you'll take an exception. For example:
cb1a09d0 207
4ae85618 208 use FixedElem_Array;
209 tie @array, 'FixedElem_Array', 3;
210 $array[0] = 'cat'; # ok.
211 $array[1] = 'dogs'; # exception, length('dogs') > 3.
cb1a09d0 212
213The preamble code for the class is as follows:
214
4ae85618 215 package FixedElem_Array;
cb1a09d0 216 use Carp;
217 use strict;
218
13a2d996 219=over 4
cb1a09d0 220
221=item TIEARRAY classname, LIST
222
223This is the constructor for the class. That means it is expected to
224return a blessed reference through which the new array (probably an
225anonymous ARRAY ref) will be accessed.
226
227In our example, just to show you that you don't I<really> have to return an
228ARRAY reference, we'll choose a HASH reference to represent our object.
4ae85618 229A HASH works out well as a generic record type: the C<{ELEMSIZE}> field will
230store the maximum element size allowed, and the C<{ARRAY}> field will hold the
cb1a09d0 231true ARRAY ref. If someone outside the class tries to dereference the
232object returned (doubtless thinking it an ARRAY ref), they'll blow up.
233This just goes to show you that you should respect an object's privacy.
234
235 sub TIEARRAY {
4ae85618 236 my $class = shift;
237 my $elemsize = shift;
238 if ( @_ || $elemsize =~ /\D/ ) {
239 croak "usage: tie ARRAY, '" . __PACKAGE__ . "', elem_size";
240 }
241 return bless {
242 ELEMSIZE => $elemsize,
243 ARRAY => [],
244 }, $class;
cb1a09d0 245 }
246
247=item FETCH this, index
248
249This method will be triggered every time an individual element the tied array
250is accessed (read). It takes one argument beyond its self reference: the
251index whose value we're trying to fetch.
252
253 sub FETCH {
4ae85618 254 my $self = shift;
255 my $index = shift;
256 return $self->{ARRAY}->[$index];
cb1a09d0 257 }
258
301e8125 259If a negative array index is used to read from an array, the index
0b931be4 260will be translated to a positive one internally by calling FETCHSIZE
301e8125 261before being passed to FETCH.
262
cb1a09d0 263As you may have noticed, the name of the FETCH method (et al.) is the same
264for all accesses, even though the constructors differ in names (TIESCALAR
265vs TIEARRAY). While in theory you could have the same class servicing
266several tied types, in practice this becomes cumbersome, and it's easiest
5f05dabc 267to keep them at simply one tie type per class.
cb1a09d0 268
269=item STORE this, index, value
270
271This method will be triggered every time an element in the tied array is set
272(written). It takes two arguments beyond its self reference: the index at
273which we're trying to store something and the value we're trying to put
4ae85618 274there.
275
276In our example, C<undef> is really C<$self-E<gt>{ELEMSIZE}> number of
277spaces so we have a little more work to do here:
cb1a09d0 278
279 sub STORE {
4ae85618 280 my $self = shift;
281 my( $index, $value ) = @_;
282 if ( length $value > $self->{ELEMSIZE} ) {
283 croak "length of $value is greater than $self->{ELEMSIZE}";
cb1a09d0 284 }
4ae85618 285 # fill in the blanks
286 $self->EXTEND( $index ) if $index > $self->FETCHSIZE();
287 # right justify to keep element size for smaller elements
288 $self->{ARRAY}->[$index] = sprintf "%$self->{ELEMSIZE}s", $value;
cb1a09d0 289 }
301e8125 290
291Negative indexes are treated the same as with FETCH.
292
4ae85618 293=item FETCHSIZE this
294
295Returns the total number of items in the tied array associated with
296object I<this>. (Equivalent to C<scalar(@array)>). For example:
297
298 sub FETCHSIZE {
299 my $self = shift;
300 return scalar @{$self->{ARRAY}};
301 }
302
303=item STORESIZE this, count
304
305Sets the total number of items in the tied array associated with
306object I<this> to be I<count>. If this makes the array larger then
307class's mapping of C<undef> should be returned for new positions.
308If the array becomes smaller then entries beyond count should be
309deleted.
310
311In our example, 'undef' is really an element containing
312C<$self-E<gt>{ELEMSIZE}> number of spaces. Observe:
313
314sub STORESIZE {
315 my $self = shift;
316 my $count = shift;
317 if ( $count > $self->FETCHSIZE() ) {
318 $self->STORE( $_, '' ) foreach $count - $self->FETCHSIZE() + 1 .. $count;
319 } elsif ( $count < $self->FETCHSIZE() ) {
320 $self->POP() foreach 0 .. $self->FETCHSIZE() - $count + 1;
321 }
322}
323
324=item EXTEND this, count
325
326Informative call that array is likely to grow to have I<count> entries.
327Can be used to optimize allocation. This method need do nothing.
328
329In our example, we want to make sure there are no blank (C<undef>)
330entries, so C<EXTEND> will make use of C<STORESIZE> to fill elements
331as needed:
332
333 sub EXTEND {
334 my $self = shift;
335 my $count = shift;
336 $self->STORESIZE( $count );
337 }
338
339=item EXISTS this, key
340
341Verify that the element at index I<key> exists in the tied array I<this>.
342
343In our example, we will determine that if an element consists of
344C<$self-E<gt>{ELEMSIZE}> spaces only, it does not exist:
345
346 sub EXISTS {
347 my $self = shift;
348 my $index = shift;
349 return $self->{ARRAY}->[$index] eq ' ' x $self->{ELEMSIZE} ? 0 : 1;
350 }
351
352=item DELETE this, key
353
354Delete the element at index I<key> from the tied array I<this>.
355
356In our example, a deleted item is C<$self->{ELEMSIZE}> spaces:
357
358 sub DELETE {
359 my $self = shift;
360 my $index = shift;
361 return $self->STORE( $index, '' );
362 }
363
364=item CLEAR this
365
366Clear (remove, delete, ...) all values from the tied array associated with
367object I<this>. For example:
368
369 sub CLEAR {
370 my $self = shift;
371 return $self->{ARRAY} = [];
372 }
373
374=item PUSH this, LIST
375
376Append elements of I<LIST> to the array. For example:
377
378 sub PUSH {
379 my $self = shift;
380 my @list = @_;
381 my $last = $self->FETCHSIZE();
382 $self->STORE( $last + $_, $list[$_] ) foreach 0 .. $#list;
383 return $self->FETCHSIZE();
384 }
385
386=item POP this
387
388Remove last element of the array and return it. For example:
389
390 sub POP {
391 my $self = shift;
392 return pop @{$self->{ARRAY}};
393 }
394
395=item SHIFT this
396
397Remove the first element of the array (shifting other elements down)
398and return it. For example:
399
400 sub SHIFT {
401 my $self = shift;
402 return shift @{$self->{ARRAY}};
403 }
404
405=item UNSHIFT this, LIST
406
407Insert LIST elements at the beginning of the array, moving existing elements
408up to make room. For example:
409
410 sub UNSHIFT {
411 my $self = shift;
412 my @list = @_;
413 my $size = scalar( @list );
414 # make room for our list
415 @{$self->{ARRAY}}[ $size .. $#{$self->{ARRAY}} + $size ]
416 = @{$self->{ARRAY}};
417 $self->STORE( $_, $list[$_] ) foreach 0 .. $#list;
418 }
419
420=item SPLICE this, offset, length, LIST
421
422Perform the equivalent of C<splice> on the array.
423
424I<offset> is optional and defaults to zero, negative values count back
425from the end of the array.
426
427I<length> is optional and defaults to rest of the array.
428
429I<LIST> may be empty.
430
431Returns a list of the original I<length> elements at I<offset>.
432
433In our example, we'll use a little shortcut if there is a I<LIST>:
434
435 sub SPLICE {
436 my $self = shift;
437 my $offset = shift || 0;
438 my $length = shift || $self->FETCHSIZE() - $offset;
439 my @list = ();
440 if ( @_ ) {
441 tie @list, __PACKAGE__, $self->{ELEMSIZE};
442 @list = @_;
443 }
444 return splice @{$self->{ARRAY}}, $offset, $length, @list;
445 }
446
301e8125 447=item UNTIE this
448
449Will be called when C<untie> happens. (See below.)
cb1a09d0 450
451=item DESTROY this
452
453This method will be triggered when the tied variable needs to be destructed.
184e9718 454As with the scalar tie class, this is almost never needed in a
cb1a09d0 455language that does its own garbage collection, so this time we'll
456just leave it out.
457
458=back
459
460The code we presented at the top of the tied array class accesses many
461elements of the array, far more than we've set the bounds to. Therefore,
462it will blow up once they try to access beyond the 2nd element of @ary, as
463the following output demonstrates:
464
465 setting index 0: value of elt 0 now 0
466 setting index 1: value of elt 1 now 10
467 setting index 2: value of elt 2 now 20
468 setting index 3: Array OOB: 3 > 2 at Bounded_Array.pm line 39
469 Bounded_Array::FETCH called at testba line 12
470
471=head2 Tying Hashes
472
be3174d2 473Hashes were the first Perl data type to be tied (see dbmopen()). A class
474implementing a tied hash should define the following methods: TIEHASH is
475the constructor. FETCH and STORE access the key and value pairs. EXISTS
476reports whether a key is present in the hash, and DELETE deletes one.
477CLEAR empties the hash by deleting all the key and value pairs. FIRSTKEY
478and NEXTKEY implement the keys() and each() functions to iterate over all
301e8125 479the keys. UNTIE is called when C<untie> happens, and DESTROY is called when
480the tied variable is garbage collected.
aa689395 481
482If this seems like a lot, then feel free to inherit from merely the
483standard Tie::Hash module for most of your methods, redefining only the
484interesting ones. See L<Tie::Hash> for details.
cb1a09d0 485
486Remember that Perl distinguishes between a key not existing in the hash,
487and the key existing in the hash but having a corresponding value of
488C<undef>. The two possibilities can be tested with the C<exists()> and
489C<defined()> functions.
490
491Here's an example of a somewhat interesting tied hash class: it gives you
5f05dabc 492a hash representing a particular user's dot files. You index into the hash
493with the name of the file (minus the dot) and you get back that dot file's
cb1a09d0 494contents. For example:
495
496 use DotFiles;
1f57c600 497 tie %dot, 'DotFiles';
cb1a09d0 498 if ( $dot{profile} =~ /MANPATH/ ||
499 $dot{login} =~ /MANPATH/ ||
500 $dot{cshrc} =~ /MANPATH/ )
501 {
5f05dabc 502 print "you seem to set your MANPATH\n";
cb1a09d0 503 }
504
505Or here's another sample of using our tied class:
506
1f57c600 507 tie %him, 'DotFiles', 'daemon';
cb1a09d0 508 foreach $f ( keys %him ) {
509 printf "daemon dot file %s is size %d\n",
510 $f, length $him{$f};
511 }
512
513In our tied hash DotFiles example, we use a regular
514hash for the object containing several important
515fields, of which only the C<{LIST}> field will be what the
516user thinks of as the real hash.
517
518=over 5
519
520=item USER
521
522whose dot files this object represents
523
524=item HOME
525
5f05dabc 526where those dot files live
cb1a09d0 527
528=item CLOBBER
529
530whether we should try to change or remove those dot files
531
532=item LIST
533
5f05dabc 534the hash of dot file names and content mappings
cb1a09d0 535
536=back
537
538Here's the start of F<Dotfiles.pm>:
539
540 package DotFiles;
541 use Carp;
542 sub whowasi { (caller(1))[3] . '()' }
543 my $DEBUG = 0;
544 sub debug { $DEBUG = @_ ? shift : 1 }
545
5f05dabc 546For our example, we want to be able to emit debugging info to help in tracing
cb1a09d0 547during development. We keep also one convenience function around
548internally to help print out warnings; whowasi() returns the function name
549that calls it.
550
551Here are the methods for the DotFiles tied hash.
552
13a2d996 553=over 4
cb1a09d0 554
555=item TIEHASH classname, LIST
556
557This is the constructor for the class. That means it is expected to
558return a blessed reference through which the new object (probably but not
559necessarily an anonymous hash) will be accessed.
560
561Here's the constructor:
562
563 sub TIEHASH {
564 my $self = shift;
565 my $user = shift || $>;
566 my $dotdir = shift || '';
567 croak "usage: @{[&whowasi]} [USER [DOTDIR]]" if @_;
568 $user = getpwuid($user) if $user =~ /^\d+$/;
569 my $dir = (getpwnam($user))[7]
570 || croak "@{[&whowasi]}: no user $user";
571 $dir .= "/$dotdir" if $dotdir;
572
573 my $node = {
574 USER => $user,
575 HOME => $dir,
576 LIST => {},
577 CLOBBER => 0,
578 };
579
580 opendir(DIR, $dir)
581 || croak "@{[&whowasi]}: can't opendir $dir: $!";
582 foreach $dot ( grep /^\./ && -f "$dir/$_", readdir(DIR)) {
583 $dot =~ s/^\.//;
584 $node->{LIST}{$dot} = undef;
585 }
586 closedir DIR;
587 return bless $node, $self;
588 }
589
590It's probably worth mentioning that if you're going to filetest the
591return values out of a readdir, you'd better prepend the directory
5f05dabc 592in question. Otherwise, because we didn't chdir() there, it would
2ae324a7 593have been testing the wrong file.
cb1a09d0 594
595=item FETCH this, key
596
597This method will be triggered every time an element in the tied hash is
598accessed (read). It takes one argument beyond its self reference: the key
599whose value we're trying to fetch.
600
601Here's the fetch for our DotFiles example.
602
603 sub FETCH {
604 carp &whowasi if $DEBUG;
605 my $self = shift;
606 my $dot = shift;
607 my $dir = $self->{HOME};
608 my $file = "$dir/.$dot";
609
610 unless (exists $self->{LIST}->{$dot} || -f $file) {
611 carp "@{[&whowasi]}: no $dot file" if $DEBUG;
612 return undef;
613 }
614
615 if (defined $self->{LIST}->{$dot}) {
616 return $self->{LIST}->{$dot};
617 } else {
618 return $self->{LIST}->{$dot} = `cat $dir/.$dot`;
619 }
620 }
621
622It was easy to write by having it call the Unix cat(1) command, but it
623would probably be more portable to open the file manually (and somewhat
5f05dabc 624more efficient). Of course, because dot files are a Unixy concept, we're
cb1a09d0 625not that concerned.
626
627=item STORE this, key, value
628
629This method will be triggered every time an element in the tied hash is set
630(written). It takes two arguments beyond its self reference: the index at
631which we're trying to store something, and the value we're trying to put
632there.
633
634Here in our DotFiles example, we'll be careful not to let
635them try to overwrite the file unless they've called the clobber()
636method on the original object reference returned by tie().
637
638 sub STORE {
639 carp &whowasi if $DEBUG;
640 my $self = shift;
641 my $dot = shift;
642 my $value = shift;
643 my $file = $self->{HOME} . "/.$dot";
644 my $user = $self->{USER};
645
646 croak "@{[&whowasi]}: $file not clobberable"
647 unless $self->{CLOBBER};
648
649 open(F, "> $file") || croak "can't open $file: $!";
650 print F $value;
651 close(F);
652 }
653
654If they wanted to clobber something, they might say:
655
656 $ob = tie %daemon_dots, 'daemon';
657 $ob->clobber(1);
658 $daemon_dots{signature} = "A true daemon\n";
659
6fdf61fb 660Another way to lay hands on a reference to the underlying object is to
661use the tied() function, so they might alternately have set clobber
662using:
663
664 tie %daemon_dots, 'daemon';
665 tied(%daemon_dots)->clobber(1);
666
667The clobber method is simply:
cb1a09d0 668
669 sub clobber {
670 my $self = shift;
671 $self->{CLOBBER} = @_ ? shift : 1;
672 }
673
674=item DELETE this, key
675
676This method is triggered when we remove an element from the hash,
677typically by using the delete() function. Again, we'll
678be careful to check whether they really want to clobber files.
679
680 sub DELETE {
681 carp &whowasi if $DEBUG;
682
683 my $self = shift;
684 my $dot = shift;
685 my $file = $self->{HOME} . "/.$dot";
686 croak "@{[&whowasi]}: won't remove file $file"
687 unless $self->{CLOBBER};
688 delete $self->{LIST}->{$dot};
1f57c600 689 my $success = unlink($file);
690 carp "@{[&whowasi]}: can't unlink $file: $!" unless $success;
691 $success;
cb1a09d0 692 }
693
1f57c600 694The value returned by DELETE becomes the return value of the call
695to delete(). If you want to emulate the normal behavior of delete(),
696you should return whatever FETCH would have returned for this key.
697In this example, we have chosen instead to return a value which tells
698the caller whether the file was successfully deleted.
699
cb1a09d0 700=item CLEAR this
701
702This method is triggered when the whole hash is to be cleared, usually by
703assigning the empty list to it.
704
5f05dabc 705In our example, that would remove all the user's dot files! It's such a
cb1a09d0 706dangerous thing that they'll have to set CLOBBER to something higher than
7071 to make it happen.
708
709 sub CLEAR {
710 carp &whowasi if $DEBUG;
711 my $self = shift;
5f05dabc 712 croak "@{[&whowasi]}: won't remove all dot files for $self->{USER}"
cb1a09d0 713 unless $self->{CLOBBER} > 1;
714 my $dot;
715 foreach $dot ( keys %{$self->{LIST}}) {
716 $self->DELETE($dot);
717 }
718 }
719
720=item EXISTS this, key
721
722This method is triggered when the user uses the exists() function
723on a particular hash. In our example, we'll look at the C<{LIST}>
724hash element for this:
725
726 sub EXISTS {
727 carp &whowasi if $DEBUG;
728 my $self = shift;
729 my $dot = shift;
730 return exists $self->{LIST}->{$dot};
731 }
732
733=item FIRSTKEY this
734
735This method will be triggered when the user is going
736to iterate through the hash, such as via a keys() or each()
737call.
738
739 sub FIRSTKEY {
740 carp &whowasi if $DEBUG;
741 my $self = shift;
6fdf61fb 742 my $a = keys %{$self->{LIST}}; # reset each() iterator
cb1a09d0 743 each %{$self->{LIST}}
744 }
745
746=item NEXTKEY this, lastkey
747
748This method gets triggered during a keys() or each() iteration. It has a
749second argument which is the last key that had been accessed. This is
750useful if you're carrying about ordering or calling the iterator from more
751than one sequence, or not really storing things in a hash anywhere.
752
5f05dabc 753For our example, we're using a real hash so we'll do just the simple
754thing, but we'll have to go through the LIST field indirectly.
cb1a09d0 755
756 sub NEXTKEY {
757 carp &whowasi if $DEBUG;
758 my $self = shift;
759 return each %{ $self->{LIST} }
760 }
761
301e8125 762=item UNTIE this
763
764This is called when C<untie> occurs.
765
cb1a09d0 766=item DESTROY this
767
768This method is triggered when a tied hash is about to go out of
769scope. You don't really need it unless you're trying to add debugging
770or have auxiliary state to clean up. Here's a very simple function:
771
772 sub DESTROY {
773 carp &whowasi if $DEBUG;
774 }
775
776=back
777
1d2dff63 778Note that functions such as keys() and values() may return huge lists
779when used on large objects, like DBM files. You may prefer to use the
780each() function to iterate over such. Example:
cb1a09d0 781
782 # print out history file offsets
783 use NDBM_File;
1f57c600 784 tie(%HIST, 'NDBM_File', '/usr/lib/news/history', 1, 0);
cb1a09d0 785 while (($key,$val) = each %HIST) {
786 print $key, ' = ', unpack('L',$val), "\n";
787 }
788 untie(%HIST);
789
790=head2 Tying FileHandles
791
184e9718 792This is partially implemented now.
a7adf1f0 793
2ae324a7 794A class implementing a tied filehandle should define the following
1d603a67 795methods: TIEHANDLE, at least one of PRINT, PRINTF, WRITE, READLINE, GETC,
301e8125 796READ, and possibly CLOSE, UNTIE and DESTROY. The class can also provide: BINMODE,
4592e6ca 797OPEN, EOF, FILENO, SEEK, TELL - if the corresponding perl operators are
798used on the handle.
a7adf1f0 799
800It is especially useful when perl is embedded in some other program,
801where output to STDOUT and STDERR may have to be redirected in some
802special way. See nvi and the Apache module for examples.
803
804In our example we're going to create a shouting handle.
805
806 package Shout;
807
13a2d996 808=over 4
a7adf1f0 809
810=item TIEHANDLE classname, LIST
811
812This is the constructor for the class. That means it is expected to
184e9718 813return a blessed reference of some sort. The reference can be used to
5f05dabc 814hold some internal information.
a7adf1f0 815
7e1af8bc 816 sub TIEHANDLE { print "<shout>\n"; my $i; bless \$i, shift }
a7adf1f0 817
1d603a67 818=item WRITE this, LIST
819
820This method will be called when the handle is written to via the
821C<syswrite> function.
822
823 sub WRITE {
824 $r = shift;
825 my($buf,$len,$offset) = @_;
826 print "WRITE called, \$buf=$buf, \$len=$len, \$offset=$offset";
827 }
828
a7adf1f0 829=item PRINT this, LIST
830
46fc3d4c 831This method will be triggered every time the tied handle is printed to
832with the C<print()> function.
184e9718 833Beyond its self reference it also expects the list that was passed to
a7adf1f0 834the print function.
835
58f51617 836 sub PRINT { $r = shift; $$r++; print join($,,map(uc($_),@_)),$\ }
837
46fc3d4c 838=item PRINTF this, LIST
839
840This method will be triggered every time the tied handle is printed to
841with the C<printf()> function.
842Beyond its self reference it also expects the format and list that was
843passed to the printf function.
844
845 sub PRINTF {
846 shift;
847 my $fmt = shift;
848 print sprintf($fmt, @_)."\n";
849 }
850
1d603a67 851=item READ this, LIST
2ae324a7 852
853This method will be called when the handle is read from via the C<read>
854or C<sysread> functions.
855
856 sub READ {
889a76e8 857 my $self = shift;
858 my $$bufref = \$_[0];
859 my(undef,$len,$offset) = @_;
860 print "READ called, \$buf=$bufref, \$len=$len, \$offset=$offset";
861 # add to $$bufref, set $len to number of characters read
862 $len;
2ae324a7 863 }
864
58f51617 865=item READLINE this
866
2ae324a7 867This method will be called when the handle is read from via <HANDLE>.
868The method should return undef when there is no more data.
58f51617 869
889a76e8 870 sub READLINE { $r = shift; "READLINE called $$r times\n"; }
a7adf1f0 871
2ae324a7 872=item GETC this
873
874This method will be called when the C<getc> function is called.
875
876 sub GETC { print "Don't GETC, Get Perl"; return "a"; }
877
1d603a67 878=item CLOSE this
879
880This method will be called when the handle is closed via the C<close>
881function.
882
883 sub CLOSE { print "CLOSE called.\n" }
884
301e8125 885=item UNTIE this
886
887As with the other types of ties, this method will be called when C<untie> happens.
888It may be appropriate to "auto CLOSE" when this occurs.
889
a7adf1f0 890=item DESTROY this
891
892As with the other types of ties, this method will be called when the
893tied handle is about to be destroyed. This is useful for debugging and
894possibly cleaning up.
895
896 sub DESTROY { print "</shout>\n" }
897
898=back
899
900Here's how to use our little example:
901
902 tie(*FOO,'Shout');
903 print FOO "hello\n";
904 $a = 4; $b = 6;
905 print FOO $a, " plus ", $b, " equals ", $a + $b, "\n";
58f51617 906 print <FOO>;
cb1a09d0 907
d7da42b7 908=head2 UNTIE this
909
910You can define for all tie types an UNTIE method that will be called
911at untie().
912
2752eb9f 913=head2 The C<untie> Gotcha
914
915If you intend making use of the object returned from either tie() or
916tied(), and if the tie's target class defines a destructor, there is a
917subtle gotcha you I<must> guard against.
918
919As setup, consider this (admittedly rather contrived) example of a
920tie; all it does is use a file to keep a log of the values assigned to
921a scalar.
922
923 package Remember;
924
925 use strict;
9f1b1f2d 926 use warnings;
2752eb9f 927 use IO::File;
928
929 sub TIESCALAR {
930 my $class = shift;
931 my $filename = shift;
932 my $handle = new IO::File "> $filename"
933 or die "Cannot open $filename: $!\n";
934
935 print $handle "The Start\n";
936 bless {FH => $handle, Value => 0}, $class;
937 }
938
939 sub FETCH {
940 my $self = shift;
941 return $self->{Value};
942 }
943
944 sub STORE {
945 my $self = shift;
946 my $value = shift;
947 my $handle = $self->{FH};
948 print $handle "$value\n";
949 $self->{Value} = $value;
950 }
951
952 sub DESTROY {
953 my $self = shift;
954 my $handle = $self->{FH};
955 print $handle "The End\n";
956 close $handle;
957 }
958
959 1;
960
961Here is an example that makes use of this tie:
962
963 use strict;
964 use Remember;
965
966 my $fred;
967 tie $fred, 'Remember', 'myfile.txt';
968 $fred = 1;
969 $fred = 4;
970 $fred = 5;
971 untie $fred;
972 system "cat myfile.txt";
973
974This is the output when it is executed:
975
976 The Start
977 1
978 4
979 5
980 The End
981
982So far so good. Those of you who have been paying attention will have
983spotted that the tied object hasn't been used so far. So lets add an
984extra method to the Remember class to allow comments to be included in
985the file -- say, something like this:
986
987 sub comment {
988 my $self = shift;
989 my $text = shift;
990 my $handle = $self->{FH};
991 print $handle $text, "\n";
992 }
993
994And here is the previous example modified to use the C<comment> method
995(which requires the tied object):
996
997 use strict;
998 use Remember;
999
1000 my ($fred, $x);
1001 $x = tie $fred, 'Remember', 'myfile.txt';
1002 $fred = 1;
1003 $fred = 4;
1004 comment $x "changing...";
1005 $fred = 5;
1006 untie $fred;
1007 system "cat myfile.txt";
1008
1009When this code is executed there is no output. Here's why:
1010
1011When a variable is tied, it is associated with the object which is the
1012return value of the TIESCALAR, TIEARRAY, or TIEHASH function. This
1013object normally has only one reference, namely, the implicit reference
1014from the tied variable. When untie() is called, that reference is
1015destroyed. Then, as in the first example above, the object's
1016destructor (DESTROY) is called, which is normal for objects that have
1017no more valid references; and thus the file is closed.
1018
1019In the second example, however, we have stored another reference to
19799a22 1020the tied object in $x. That means that when untie() gets called
2752eb9f 1021there will still be a valid reference to the object in existence, so
1022the destructor is not called at that time, and thus the file is not
1023closed. The reason there is no output is because the file buffers
1024have not been flushed to disk.
1025
1026Now that you know what the problem is, what can you do to avoid it?
301e8125 1027Prior to the introduction of the optional UNTIE method the only way
1028was the good old C<-w> flag. Which will spot any instances where you call
2752eb9f 1029untie() and there are still valid references to the tied object. If
9f1b1f2d 1030the second script above this near the top C<use warnings 'untie'>
1031or was run with the C<-w> flag, Perl prints this
2752eb9f 1032warning message:
1033
1034 untie attempted while 1 inner references still exist
1035
1036To get the script to work properly and silence the warning make sure
1037there are no valid references to the tied object I<before> untie() is
1038called:
1039
1040 undef $x;
1041 untie $fred;
1042
301e8125 1043Now that UNTIE exists the class designer can decide which parts of the
1044class functionality are really associated with C<untie> and which with
1045the object being destroyed. What makes sense for a given class depends
1046on whether the inner references are being kept so that non-tie-related
1047methods can be called on the object. But in most cases it probably makes
1048sense to move the functionality that would have been in DESTROY to the UNTIE
1049method.
1050
1051If the UNTIE method exists then the warning above does not occur. Instead the
1052UNTIE method is passed the count of "extra" references and can issue its own
1053warning if appropriate. e.g. to replicate the no UNTIE case this method can
1054be used:
1055
1056 sub UNTIE
1057 {
1058 my ($obj,$count) = @_;
1059 carp "untie attempted while $count inner references still exist" if $count;
1060 }
1061
cb1a09d0 1062=head1 SEE ALSO
1063
1064See L<DB_File> or L<Config> for some interesting tie() implementations.
3d0ae7ba 1065A good starting point for many tie() implementations is with one of the
1066modules L<Tie::Scalar>, L<Tie::Array>, L<Tie::Hash>, or L<Tie::Handle>.
cb1a09d0 1067
1068=head1 BUGS
1069
c07a80fd 1070You cannot easily tie a multilevel data structure (such as a hash of
1071hashes) to a dbm file. The first problem is that all but GDBM and
1072Berkeley DB have size limitations, but beyond that, you also have problems
1073with how references are to be represented on disk. One experimental
5f05dabc 1074module that does attempt to address this need partially is the MLDBM
f102b883 1075module. Check your nearest CPAN site as described in L<perlmodlib> for
c07a80fd 1076source code to MLDBM.
1077
e08f2115 1078Tied filehandles are still incomplete. sysopen(), truncate(),
1079flock(), fcntl(), stat() and -X can't currently be trapped.
1080
cb1a09d0 1081=head1 AUTHOR
1082
1083Tom Christiansen
a7adf1f0 1084
46fc3d4c 1085TIEHANDLE by Sven Verdoolaege <F<skimo@dns.ufsia.ac.be>> and Doug MacEachern <F<dougm@osf.org>>
301e8125 1086
1087UNTIE by Nick Ing-Simmons <F<nick@ing-simmons.net>>
1088
4ae85618 1089Tying Arrays by Casey Tweten <F<crt@kiski.net>>