| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# Implementation of a pure-perl on_scope_end for perls > 5.10 |
|
2
|
|
|
|
|
|
|
# (relies on Hash::Util:FieldHash) |
|
3
|
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
package # hide from pause |
|
5
|
|
|
|
|
|
|
B::Hooks::EndOfScope::PP::FieldHash; |
|
6
|
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
6
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
25
|
|
|
8
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
33
|
|
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '0.25'; |
|
11
|
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
426
|
use Tie::Hash (); |
|
|
1
|
|
|
|
|
890
|
|
|
|
1
|
|
|
|
|
22
|
|
|
13
|
1
|
|
|
1
|
|
471
|
use Hash::Util::FieldHash 'fieldhash'; |
|
|
1
|
|
|
|
|
886
|
|
|
|
1
|
|
|
|
|
206
|
|
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
# Here we rely on a combination of several behaviors: |
|
16
|
|
|
|
|
|
|
# |
|
17
|
|
|
|
|
|
|
# * %^H is deallocated on scope exit, so any references to it disappear |
|
18
|
|
|
|
|
|
|
# * A lost weakref in a fieldhash causes the corresponding key to be deleted |
|
19
|
|
|
|
|
|
|
# * Deletion of a key on a tied hash triggers DELETE |
|
20
|
|
|
|
|
|
|
# |
|
21
|
|
|
|
|
|
|
# Therefore the DELETE of a tied fieldhash containing a %^H reference will |
|
22
|
|
|
|
|
|
|
# be the hook to fire all our callbacks. |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
fieldhash my %hh; |
|
25
|
|
|
|
|
|
|
{ |
|
26
|
|
|
|
|
|
|
package # hide from pause too |
|
27
|
|
|
|
|
|
|
B::Hooks::EndOfScope::PP::_TieHintHashFieldHash; |
|
28
|
|
|
|
|
|
|
our @ISA = ( 'Tie::StdHash' ); # in Tie::Hash, in core |
|
29
|
|
|
|
|
|
|
sub DELETE { |
|
30
|
1
|
|
|
1
|
|
49
|
my $ret = shift->SUPER::DELETE(@_); |
|
31
|
1
|
|
|
|
|
8
|
B::Hooks::EndOfScope::PP::__invoke_callback($_) for @$ret; |
|
32
|
1
|
|
|
|
|
37
|
$ret; |
|
33
|
|
|
|
|
|
|
} |
|
34
|
|
|
|
|
|
|
} |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
sub on_scope_end (&) { |
|
37
|
1
|
|
|
1
|
0
|
1114
|
$^H |= 0x020000; |
|
38
|
|
|
|
|
|
|
|
|
39
|
1
|
50
|
|
|
|
15
|
tie(%hh, 'B::Hooks::EndOfScope::PP::_TieHintHashFieldHash') |
|
40
|
|
|
|
|
|
|
unless tied %hh; |
|
41
|
|
|
|
|
|
|
|
|
42
|
1
|
|
50
|
|
|
6
|
push @{ $hh{\%^H} ||= [] }, $_[0]; |
|
|
1
|
|
|
|
|
16
|
|
|
43
|
|
|
|
|
|
|
} |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
1; |