1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
#!./perl
# $Id: tied_hook.t,v 1.0.1.1 2001/02/17 12:29:01 ram Exp $
#
# Copyright (c) 1995-2000, Raphael Manfredi
#
# You may redistribute only under the same terms as Perl 5, as specified
# in the README file that comes with the distribution.
#
# $Log: tied_hook.t,v $
# Revision 1.0.1.1 2001/02/17 12:29:01 ram
# patch8: added test for blessed ref to tied hash
#
# Revision 1.0 2000/09/01 19:40:42 ram
# Baseline for first official release.
#
sub BEGIN {
chdir('t') if -d 't';
@INC = '.';
push @INC, '../lib';
require Config; import Config;
if ($Config{'extensions'} !~ /\bStorable\b/) {
print "1..0 # Skip: Storable was not built\n";
exit 0;
}
require 'lib/st-dump.pl';
}
sub ok;
use Storable qw(freeze thaw);
print "1..25\n";
($scalar_fetch, $array_fetch, $hash_fetch) = (0, 0, 0);
package TIED_HASH;
sub TIEHASH {
my $self = bless {}, shift;
return $self;
}
sub FETCH {
my $self = shift;
my ($key) = @_;
$main::hash_fetch++;
return $self->{$key};
}
sub STORE {
my $self = shift;
my ($key, $value) = @_;
$self->{$key} = $value;
}
sub FIRSTKEY {
my $self = shift;
scalar keys %{$self};
return each %{$self};
}
sub NEXTKEY {
my $self = shift;
return each %{$self};
}
sub STORABLE_freeze {
my $self = shift;
$main::hash_hook1++;
return join(":", keys %$self) . ";" . join(":", values %$self);
}
sub STORABLE_thaw {
my ($self, $cloning, $frozen) = @_;
my ($keys, $values) = split(/;/, $frozen);
my @keys = split(/:/, $keys);
my @values = split(/:/, $values);
for (my $i = 0; $i < @keys; $i++) {
$self->{$keys[$i]} = $values[$i];
}
$main::hash_hook2++;
}
package TIED_ARRAY;
sub TIEARRAY {
my $self = bless [], shift;
return $self;
}
sub FETCH {
my $self = shift;
my ($idx) = @_;
$main::array_fetch++;
return $self->[$idx];
}
sub STORE {
my $self = shift;
my ($idx, $value) = @_;
$self->[$idx] = $value;
}
sub FETCHSIZE {
my $self = shift;
return @{$self};
}
sub STORABLE_freeze {
my $self = shift;
$main::array_hook1++;
return join(":", @$self);
}
sub STORABLE_thaw {
my ($self, $cloning, $frozen) = @_;
@$self = split(/:/, $frozen);
$main::array_hook2++;
}
package TIED_SCALAR;
sub TIESCALAR {
my $scalar;
my $self = bless \$scalar, shift;
return $self;
}
sub FETCH {
my $self = shift;
$main::scalar_fetch++;
return $$self;
}
sub STORE {
my $self = shift;
my ($value) = @_;
$$self = $value;
}
sub STORABLE_freeze {
my $self = shift;
$main::scalar_hook1++;
return $$self;
}
sub STORABLE_thaw {
my ($self, $cloning, $frozen) = @_;
$$self = $frozen;
$main::scalar_hook2++;
}
package main;
$a = 'toto';
$b = \$a;
$c = tie %hash, TIED_HASH;
$d = tie @array, TIED_ARRAY;
tie $scalar, TIED_SCALAR;
$scalar = 'foo';
$hash{'attribute'} = 'plain value';
$array[0] = \$scalar;
$array[1] = $c;
$array[2] = \@array;
$array[3] = "plaine scalaire";
@tied = (\$scalar, \@array, \%hash);
%a = ('key', 'value', 1, 0, $a, $b, 'cvar', \$a, 'scalarref', \$scalar);
@a = ('first', 3, -4, -3.14159, 456, 4.5, $d, \$d,
$b, \$a, $a, $c, \$c, \%a, \@array, \%hash, \@tied);
ok 1, defined($f = freeze(\@a));
$dumped = &dump(\@a);
ok 2, 1;
$root = thaw($f);
ok 3, defined $root;
$got = &dump($root);
ok 4, 1;
ok 5, $got ne $dumped; # our hooks did not handle refs in array
$g = freeze($root);
ok 6, length($f) == length($g);
# Ensure the tied items in the retrieved image work
@old = ($scalar_fetch, $array_fetch, $hash_fetch);
@tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
@type = qw(SCALAR ARRAY HASH);
ok 7, tied $$tscalar;
ok 8, tied @{$tarray};
ok 9, tied %{$thash};
@new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
@new = ($scalar_fetch, $array_fetch, $hash_fetch);
# Tests 10..15
for ($i = 0; $i < @new; $i++) {
ok 10 + 2*$i, $new[$i] == $old[$i] + 1; # Tests 10,12,14
ok 11 + 2*$i, ref $tied[$i] eq $type[$i]; # Tests 11,13,15
}
ok 16, $$tscalar eq 'foo';
ok 17, $tarray->[3] eq 'plaine scalaire';
ok 18, $thash->{'attribute'} eq 'plain value';
# Ensure hooks were called
ok 19, ($scalar_hook1 && $scalar_hook2);
ok 20, ($array_hook1 && $array_hook2);
ok 21, ($hash_hook1 && $hash_hook2);
#
# And now for the "blessed ref to tied hash" with "store hook" test...
#
my $bc = bless \%hash, 'FOO'; # FOO does not exist -> no hook
my $bx = thaw freeze $bc;
ok 22, ref $bx eq 'FOO';
my $old_hash_fetch = $hash_fetch;
my $v = $bx->{attribute};
ok 23, $hash_fetch == $old_hash_fetch + 1; # Still tied
package TIED_HASH_REF;
sub STORABLE_freeze {
my ($self, $cloning) = @_;
return if $cloning;
return('ref lost');
}
sub STORABLE_thaw {
my ($self, $cloning, $data) = @_;
return if $cloning;
}
package main;
$bc = bless \%hash, 'TIED_HASH_REF';
$bx = thaw freeze $bc;
ok 24, ref $bx eq 'TIED_HASH_REF';
$old_hash_fetch = $hash_fetch;
$v = $bx->{attribute};
ok 25, $hash_fetch == $old_hash_fetch + 1; # Still tied
|