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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
}
my %seen;
package Implement;
sub TIEARRAY
{
$seen{'TIEARRAY'}++;
my ($class,@val) = @_;
return bless \@val,$class;
}
sub STORESIZE
{
$seen{'STORESIZE'}++;
my ($ob,$sz) = @_;
return $#{$ob} = $sz-1;
}
sub EXTEND
{
$seen{'EXTEND'}++;
my ($ob,$sz) = @_;
return @$ob = $sz;
}
sub FETCHSIZE
{
$seen{'FETCHSIZE'}++;
return scalar(@{$_[0]});
}
sub FETCH
{
$seen{'FETCH'}++;
my ($ob,$id) = @_;
return $ob->[$id];
}
sub STORE
{
$seen{'STORE'}++;
my ($ob,$id,$val) = @_;
$ob->[$id] = $val;
}
sub UNSHIFT
{
$seen{'UNSHIFT'}++;
my $ob = shift;
unshift(@$ob,@_);
}
sub PUSH
{
$seen{'PUSH'}++;
my $ob = shift;;
push(@$ob,@_);
}
sub CLEAR
{
$seen{'CLEAR'}++;
@{$_[0]} = ();
}
sub DESTROY
{
$seen{'DESTROY'}++;
}
sub POP
{
$seen{'POP'}++;
my ($ob) = @_;
return pop(@$ob);
}
sub SHIFT
{
$seen{'SHIFT'}++;
my ($ob) = @_;
return shift(@$ob);
}
sub SPLICE
{
$seen{'SPLICE'}++;
my $ob = shift;
my $off = @_ ? shift : 0;
my $len = @_ ? shift : @$ob-1;
return splice(@$ob,$off,$len,@_);
}
package NegIndex; # 20020220 MJD
@ISA = 'Implement';
# simulate indices -2 .. 2
my $offset = 2;
$NegIndex::NEGATIVE_INDICES = 1;
sub FETCH {
my ($ob,$id) = @_;
# print "# FETCH @_\n";
$id += $offset;
$ob->[$id];
}
sub STORE {
my ($ob,$id,$value) = @_;
# print "# STORE @_\n";
$id += $offset;
$ob->[$id] = $value;
}
sub DELETE {
my ($ob,$id) = @_;
# print "# DELETE @_\n";
$id += $offset;
delete $ob->[$id];
}
sub EXISTS {
my ($ob,$id) = @_;
# print "# EXISTS @_\n";
$id += $offset;
exists $ob->[$id];
}
#
# Returning -1 from FETCHSIZE used to get casted to U32 causing a
# segfault
#
package NegFetchsize;
sub TIEARRAY { bless [] }
sub FETCH { }
sub FETCHSIZE { -1 }
package main;
plan(tests => 69);
{my @ary;
{ my $ob = tie @ary,'Implement',3,2,1;
ok($ob);
is(tied(@ary), $ob);
}
is(@ary, 3);
is($#ary, 2);
is(join(':',@ary), '3:2:1');
cmp_ok($seen{'FETCH'}, '>=', 3);
@ary = (1,2,3);
cmp_ok($seen{'STORE'}, '>=', 3);
is(join(':',@ary), '1:2:3');
{my @thing = @ary;
is(join(':',@thing), '1:2:3');
tie @thing,'Implement';
@thing = @ary;
is(join(':',@thing), '1:2:3');
}
is(pop(@ary), 3);
is($seen{'POP'}, 1);
is(join(':',@ary), '1:2');
is(push(@ary,4), 3);
is($seen{'PUSH'}, 1);
is(join(':',@ary), '1:2:4');
my @x = splice(@ary,1,1,7);
is($seen{'SPLICE'}, 1);
is(@x, 1);
is($x[0], 2);
is(join(':',@ary), '1:7:4');
is(shift(@ary), 1);
is($seen{'SHIFT'}, 1);
is(join(':',@ary), '7:4');
my $n = unshift(@ary,5,6);
is($seen{'UNSHIFT'}, 1);
is($n, 4);
is(join(':',@ary), '5:6:7:4');
@ary = split(/:/,'1:2:3');
is(join(':',@ary), '1:2:3');
my $t = 0;
foreach $n (@ary)
{
is($n, ++$t);
}
# (30-33) 20020303 mjd-perl-patch+@plover.com
@ary = ();
$seen{POP} = 0;
pop @ary; # this didn't used to call POP at all
is($seen{POP}, 1);
$seen{SHIFT} = 0;
shift @ary; # this didn't used to call SHIFT at all
is($seen{SHIFT}, 1);
$seen{PUSH} = 0;
my $got = push @ary; # this didn't used to call PUSH at all
is($got, 0);
is($seen{PUSH}, 1);
$seen{UNSHIFT} = 0;
$got = unshift @ary; # this didn't used to call UNSHIFT at all
is($got, 0);
is($seen{UNSHIFT}, 1);
@ary = qw(3 2 1);
is(join(':',@ary), '3:2:1');
$#ary = 1;
is($seen{'STORESIZE'}, 1, 'seen STORESIZE');
is(join(':',@ary), '3:2');
sub arysize :lvalue { $#ary }
arysize()--;
is($seen{'STORESIZE'}, 2, 'seen STORESIZE');
is(join(':',@ary), '3');
untie @ary;
}
# 20020401 mjd-perl-patch+@plover.com
# Thanks to Dave Mitchell for the small test case and the fix
{
my @a;
sub X::TIEARRAY { bless {}, 'X' }
sub X::SPLICE {
do '/dev/null';
die;
}
tie @a, 'X';
eval { splice(@a) };
# If we survived this far.
pass();
}
{ # 20020220 mjd-perl-patch+@plover.com
my @n;
tie @n => 'NegIndex', ('A' .. 'E');
# FETCH
is($n[0], 'C');
is($n[1], 'D');
is($n[2], 'E');
is($n[-1], 'B');
is($n[-2], 'A');
# STORE
$n[-2] = 'a';
is($n[-2], 'a');
$n[-1] = 'b';
is($n[-1], 'b');
$n[0] = 'c';
is($n[0], 'c');
$n[1] = 'd';
is($n[1], 'd');
$n[2] = 'e';
is($n[2], 'e');
# DELETE and EXISTS
for (-2 .. 2) {
ok($n[$_]);
delete $n[$_];
is(defined($n[$_]), '');
is(exists($n[$_]), '');
}
}
{
tie my @dummy, "NegFetchsize";
eval { "@dummy"; };
like($@, qr/^FETCHSIZE returned a negative value/,
" - croak on negative FETCHSIZE");
}
is($seen{'DESTROY'}, 3);
|