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