This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
file spec tweaks for VMS
[perl5.git] / lib / Tie / Hash.pm
CommitLineData
64d0c973 1package Tie::Hash;
cb1a09d0 2
b75c8c73
MS
3our $VERSION = '1.00';
4
cb1a09d0
AD
5=head1 NAME
6
d5582e24 7Tie::Hash, Tie::StdHash, Tie::ExtraHash - base class definitions for tied hashes
cb1a09d0
AD
8
9=head1 SYNOPSIS
10
11 package NewHash;
64d0c973 12 require Tie::Hash;
bbc7dcd2 13
64d0c973 14 @ISA = (Tie::Hash);
bbc7dcd2 15
cb1a09d0
AD
16 sub DELETE { ... } # Provides needed method
17 sub CLEAR { ... } # Overrides inherited method
bbc7dcd2
MS
18
19
cb1a09d0 20 package NewStdHash;
64d0c973 21 require Tie::Hash;
bbc7dcd2 22
64d0c973 23 @ISA = (Tie::StdHash);
bbc7dcd2 24
cb1a09d0 25 # All methods provided by default, define only those needing overrides
d5582e24
IZ
26 # Accessors access the storage in %{$_[0]};
27 # TIEHANDLE should return a reference to the actual storage
cb1a09d0 28 sub DELETE { ... }
bbc7dcd2 29
d5582e24
IZ
30 package NewExtraHash;
31 require Tie::Hash;
32
33 @ISA = (Tie::ExtraHash);
34
35 # All methods provided by default, define only those needing overrides
36 # Accessors access the storage in %{$_[0][0]};
37 # TIEHANDLE should return an array reference with the first element being
38 # the reference to the actual storage
39 sub DELETE {
40 $_[0][1]->('del', $_[0][0], $_[1]); # Call the report writer
41 delete $_[0][0]->{$_[1]}; # $_[0]->SUPER::DELETE($_[1]) }
42
bbc7dcd2 43
cb1a09d0 44 package main;
bbc7dcd2 45
c954a603 46 tie %new_hash, 'NewHash';
47 tie %new_std_hash, 'NewStdHash';
d5582e24
IZ
48 tie %new_extra_hash, 'NewExtraHash',
49 sub {warn "Doing \U$_[1]\E of $_[2].\n"};
cb1a09d0
AD
50
51=head1 DESCRIPTION
52
53This module provides some skeletal methods for hash-tying classes. See
64d0c973
RR
54L<perltie> for a list of the functions required in order to tie a hash
55to a package. The basic B<Tie::Hash> package provides a C<new> method, as well
d5582e24
IZ
56as methods C<TIEHASH>, C<EXISTS> and C<CLEAR>. The B<Tie::StdHash> and
57B<Tie::ExtraHash> packages
58provide most methods for hashes described in L<perltie> (the exceptions
59are C<UNTIE> and C<DESTROY>). They cause tied hashes to behave exactly like standard hashes,
60and allow for selective overwriting of methods. B<Tie::Hash> grandfathers the
61C<new> method: it is used if C<TIEHASH> is not defined
62in the case a class forgets to include a C<TIEHASH> method.
cb1a09d0
AD
63
64For developers wishing to write their own tied hashes, the required methods
64d0c973
RR
65are briefly defined below. See the L<perltie> section for more detailed
66descriptive, as well as example code:
67
bbc7dcd2 68=over 4
cb1a09d0
AD
69
70=item TIEHASH classname, LIST
71
64d0c973 72The method invoked by the command C<tie %hash, classname>. Associates a new
cb1a09d0
AD
73hash instance with the specified class. C<LIST> would represent additional
74arguments (along the lines of L<AnyDBM_File> and compatriots) needed to
75complete the association.
76
77=item STORE this, key, value
78
79Store datum I<value> into I<key> for the tied hash I<this>.
80
81=item FETCH this, key
82
83Retrieve the datum in I<key> for the tied hash I<this>.
84
85=item FIRSTKEY this
86
51c7a601 87Return the first key in the hash.
cb1a09d0
AD
88
89=item NEXTKEY this, lastkey
90
51c7a601 91Return the next key in the hash.
cb1a09d0
AD
92
93=item EXISTS this, key
94
95Verify that I<key> exists with the tied hash I<this>.
96
01020589
GS
97The B<Tie::Hash> implementation is a stub that simply croaks.
98
cb1a09d0
AD
99=item DELETE this, key
100
101Delete the key I<key> from the tied hash I<this>.
102
103=item CLEAR this
104
105Clear all values from the tied hash I<this>.
106
107=back
108
d5582e24
IZ
109=head1 Inheriting from B<Tie::StdHash>
110
111The accessor methods assume that the actual storage for the data in the tied
112hash is in the hash referenced by C<tied(%tiedhash)>. Thus overwritten
113C<TIEHANDLE> method should return a hash reference, and the remaining methods
114should operate on the hash referenced by the first argument:
115
116 package ReportHash;
117 our @ISA = 'Tie::StdHash';
118
119 sub TIEHASH {
120 my $storage = bless {}, shift;
121 warn "New ReportHash created, stored in $storage.\n";
122 $storage
123 }
124 sub STORE {
125 warn "Storing data with key $_[1] at $_[0].\n";
126 $_[0]{$_[1]} = $_[2]
127 }
128
cb1a09d0 129
d5582e24
IZ
130=head1 Inheriting from B<Tie::ExtraHash>
131
132The accessor methods assume that the actual storage for the data in the tied
133hash is in the hash referenced by C<(tied(%tiedhash))[0]>. Thus overwritten
134C<TIEHANDLE> method should return an array reference with the first
135element being a hash reference, and the remaining methods should operate on the
194eaab5 136hash C<< %{ $_[0]->[0] } >>:
d5582e24
IZ
137
138 package ReportHash;
139 our @ISA = 'Tie::StdHash';
140
141 sub TIEHASH {
142 my $storage = bless {}, shift;
143 warn "New ReportHash created, stored in $storage.\n";
144 [$storage, @_]
145 }
146 sub STORE {
147 warn "Storing data with key $_[1] at $_[0].\n";
148 $_[0][0]{$_[1]} = $_[2]
149 }
150
151The default C<TIEHANDLE> method stores "extra" arguments to tie() starting
152from offset 1 in the array referenced by C<tied(%tiedhash)>; this is the
153same storage algorithm as in TIEHASH subroutine above. Hence, a typical
154package inheriting from B<Tie::ExtraHash> does not need to overwrite this
155method.
156
157=head1 C<UNTIE> and C<DESTROY>
158
159The methods C<UNTIE> and C<DESTROY> are not defined in B<Tie::Hash>,
160B<Tie::StdHash>, or B<Tie::ExtraHash>. Tied hashes do not require
161presense of these methods, but if defined, the methods will be called in
162proper time, see L<perltie>.
163
164If needed, these methods should be defined by the package inheriting from
165B<Tie::Hash>, B<Tie::StdHash>, or B<Tie::ExtraHash>.
cb1a09d0
AD
166
167=head1 MORE INFORMATION
168
8dcee03e 169The packages relating to various DBM-related implementations (F<DB_File>,
cb1a09d0 170F<NDBM_File>, etc.) show examples of general tied hashes, as does the
64d0c973 171L<Config> module. While these do not utilize B<Tie::Hash>, they serve as
cb1a09d0
AD
172good working examples.
173
174=cut
a6006777 175
a0d0e21e 176use Carp;
d3a7d8c7 177use warnings::register;
a0d0e21e
LW
178
179sub new {
4633a7c4
LW
180 my $pkg = shift;
181 $pkg->TIEHASH(@_);
a0d0e21e
LW
182}
183
184# Grandfather "new"
185
186sub TIEHASH {
4633a7c4 187 my $pkg = shift;
cc6b7395 188 if (defined &{"${pkg}::new"}) {
7e6d00f8 189 warnings::warnif("WARNING: calling ${pkg}->new since ${pkg}->TIEHASH is missing");
4633a7c4 190 $pkg->new(@_);
a0d0e21e
LW
191 }
192 else {
4633a7c4 193 croak "$pkg doesn't define a TIEHASH method";
a0d0e21e
LW
194 }
195}
196
197sub EXISTS {
4633a7c4
LW
198 my $pkg = ref $_[0];
199 croak "$pkg doesn't define an EXISTS method";
a0d0e21e
LW
200}
201
202sub CLEAR {
203 my $self = shift;
204 my $key = $self->FIRSTKEY(@_);
205 my @keys;
206
207 while (defined $key) {
208 push @keys, $key;
209 $key = $self->NEXTKEY(@_, $key);
210 }
211 foreach $key (@keys) {
212 $self->DELETE(@_, $key);
213 }
214}
215
64d0c973 216# The Tie::StdHash package implements standard perl hash behaviour.
748a9306
LW
217# It exists to act as a base class for classes which only wish to
218# alter some parts of their behaviour.
219
64d0c973 220package Tie::StdHash;
d5582e24 221# @ISA = qw(Tie::Hash); # would inherit new() only
748a9306
LW
222
223sub TIEHASH { bless {}, $_[0] }
224sub STORE { $_[0]->{$_[1]} = $_[2] }
225sub FETCH { $_[0]->{$_[1]} }
226sub FIRSTKEY { my $a = scalar keys %{$_[0]}; each %{$_[0]} }
227sub NEXTKEY { each %{$_[0]} }
228sub EXISTS { exists $_[0]->{$_[1]} }
229sub DELETE { delete $_[0]->{$_[1]} }
230sub CLEAR { %{$_[0]} = () }
231
d5582e24
IZ
232package Tie::ExtraHash;
233
234sub TIEHASH { my $p = shift; bless [{}, @_], $p }
235sub STORE { $_[0][0]{$_[1]} = $_[2] }
236sub FETCH { $_[0][0]{$_[1]} }
237sub FIRSTKEY { my $a = scalar keys %{$_[0][0]}; each %{$_[0][0]} }
238sub NEXTKEY { each %{$_[0][0]} }
239sub EXISTS { exists $_[0][0]->{$_[1]} }
240sub DELETE { delete $_[0][0]->{$_[1]} }
241sub CLEAR { %{$_[0][0]} = () }
242
a0d0e21e 2431;