ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Devel-FindRef/FindRef.pm
(Generate patch)

Comparing Devel-FindRef/FindRef.pm (file contents):
Revision 1.3 by root, Thu Jan 11 23:13:37 2007 UTC vs.
Revision 1.11 by root, Fri Jul 11 17:59:19 2008 UTC

1package Devel::FindRef; 1package Devel::FindRef;
2 2
3use strict; 3use strict;
4 4
5use XSLoader; 5use XSLoader;
6 6use Scalar::Util;
7 7
8BEGIN { 8BEGIN {
9 our $VERSION = '0.1'; 9 our $VERSION = '1.2';
10 XSLoader::load __PACKAGE__, $VERSION; 10 XSLoader::load __PACKAGE__, $VERSION;
11} 11}
12 12
13=head1 NAME 13=head1 NAME
14 14
19 use Devel::FindRef; 19 use Devel::FindRef;
20 20
21=head1 DESCRIPTION 21=head1 DESCRIPTION
22 22
23Tracking down reference problems (e.g. you expect some object to be 23Tracking down reference problems (e.g. you expect some object to be
24destroyed, but there are still references to it that keep it alive). can 24destroyed, but there are still references to it that keep it alive) can be
25be very hard, although perl keeps track of all values. 25very hard. Fortunately, perl keeps track of all its values, so tracking
26references "backwards" is usually possible.
26 27
27The C<track> function can hlep track down some of those refernces back to 28The C<track> function can help track down some of those references back to
28the variables containing them. 29the variables containing them.
29 30
30For example, for this fragment: 31For example, for this fragment:
31 32
32 package Test; 33 package Test;
41 print Devel::FindRef::track \$var; 42 print Devel::FindRef::track \$var;
42 } 43 }
43 44
44 testsub; 45 testsub;
45 46
46The output is as follows (or similar to htis, in case I forget to update 47The output is as follows (or similar to this, in case I forget to update
47the manpage after some changes): 48the manpage after some changes):
48 49
49 SCALAR(0x676fa0) is 50 SCALAR(0x7bd2d0) is
51 in the global $Test::var.
50 referenced by REF(0x676fb0), which is 52 referenced by REF(0x7bd240), which is
53 in the member 'ukukey2' of HASH(0x7bd228), which is
54 referenced by REF(0x81dae8), which is
55 in the lexical '$local' in CODE(0x81da88), which is
56 in the global &Test::testsub.
57 referenced by REF(0x81da40), which is
58 in the global $Test::hash2.
59 referenced by REF(0x79f3f8), which is
51 in the lexical '$x' in CODE(0x676370), which is 60 in the lexical '$x' in CODE(0x79f518), which is
61 the containing scope for CODE(0x81da88), which is
62 in the global &Test::testsub.
63 referenced by REF(0x79f2f0), which is
52 not found anywhere I looked :( 64 not found anywhere I looked :(
53 referenced by REF(0x676360), which is 65 referenced by REF(0x79f140), which is
54 in the member 'ukukey' of HASH(0x756660), which is 66 in the member 'ukukey' of HASH(0x81d698), which is
55 in the global %Test::hash. 67 in the global %Test::hash.
56 in the global $Test::var.
57 referenced by REF(0x6760e0), which is
58 in the member 'ukukey2' of HASH(0x676f30), which is
59 referenced by REF(0x77bcf0), which is
60 in the lexical '$local' in CODE(0x77bcb0), which is
61 in the global &Test::testsub.
62 referenced by REF(0x77bc80), which is
63 in the global $Test::hash2.
64 68
65
66It is a bit convoluted to read, but basically it says that the value stored in C<$var> 69It is a bit convoluted to read, but basically it says that the value
67can be found: 70stored in C<$var> can be found:
68 71
69=over 4 72=over 4
70 73
71=item - in some variable C<$x> whose origin is not known (I frankly have no 74=item - in some variable C<$x> whose origin is not known (I frankly have no
72idea why, hints accepted). 75idea why, hints accepted).
77 80
78=item - in the hash element C<ukukey2>, in the hash in the my variable 81=item - in the hash element C<ukukey2>, in the hash in the my variable
79C<$local> in the sub C<Test::testsub> and also in the hash referenced by 82C<$local> in the sub C<Test::testsub> and also in the hash referenced by
80C<$Test::hash2>. 83C<$Test::hash2>.
81 84
85=back
86
82=head1 EXPORTS 87=head1 EXPORTS
83 88
84None. 89None.
85 90
86=head1 FUNCTIONS 91=head1 FUNCTIONS
98=cut 103=cut
99 104
100sub find($); 105sub find($);
101 106
102sub track { 107sub track {
108 my ($ref, $depth) = @_;
109 @_ = ();
110
103 my $buf = ""; 111 my $buf = "";
112 my %seen;
113
114 Scalar::Util::weaken $ref;
104 115
105 my $track; $track = sub { 116 my $track; $track = sub {
106 my (undef, $depth, $indent) = @_; 117 my ($refref, $depth, $indent) = @_;
107 118
108 if ($depth) { 119 if ($depth) {
109 my (@about) = find $_[0]; 120 my (@about) = find $$refref;
110 if (@about) { 121 if (@about) {
111 for my $about (@about) { 122 for my $about (@about) {
112 $buf .= (" ") x $indent; 123 $buf .= (" ") x $indent;
113 $buf .= $about->[0]; 124 $buf .= $about->[0];
114 if (@$about > 1) { 125 if (@$about > 1) {
126 if ($seen{$about->[1]+0}++) {
127 $buf .= " $about->[1], which was seen before.\n";
128 } else {
115 $buf .= " $about->[1], which is\n"; 129 $buf .= " $about->[1], which is\n";
116 $track->($about->[1], $depth - 1, $indent + 1); 130 $track->(\$about->[1], $depth - 1, $indent + 1);
131 }
117 } else { 132 } else {
118 $buf .= ".\n"; 133 $buf .= ".\n";
119 } 134 }
120 } 135 }
121 } else { 136 } else {
126 $buf .= (" ") x $indent; 141 $buf .= (" ") x $indent;
127 $buf .= "not referenced within the search depth.\n"; 142 $buf .= "not referenced within the search depth.\n";
128 } 143 }
129 }; 144 };
130 145
131 $buf .= "$_[0] is\n"; 146 $buf .= "$ref is\n";
132 $track->($_[0], $_[1] || 10, 1); 147 $track->(\$ref, $depth || 10, 1);
133 $buf 148 $buf
134} 149}
135 150
136=item @references = Devel::FindRef::find $ref 151=item @references = Devel::FindRef::find $ref
137 152
138Return arrayrefs that contain [$message, $ref] pairs. The message 153Return arrayrefs that contain [$message, $ref] pairs. The message
139describes what kind of reference was found and the C<$ref> is the 154describes what kind of reference was found and the C<$ref> is the
140reference itself, which cna be omitted if C<find> decided to end the 155reference itself, which can be omitted if C<find> decided to end the
141search. 156search. The returned references are all weak references.
142 157
143The C<track> function uses this to find references to the value you are 158The C<track> function uses this to find references to the value you are
144interested in and recurses on the returned references. 159interested in and recurses on the returned references.
145 160
146=cut 161=cut
147 162
148sub find($) { 163sub find($) {
149 my ($about, $excl) = &find_; 164 my ($about, $excl) = &find_;
150 my %excl = map +($_ => 1), @$excl; 165 my %excl = map +($_ => undef), @$excl;
151 grep !$excl{$_->[1] + 0}, @$about 166 grep !exists $excl{$_->[1] + 0}, @$about
152} 167}
153 168
154=item $ref = Devel::FindRef::ref2ptr $ptr 169=item $ref = Devel::FindRef::ptr2ref $integer
155 170
156Sometimes you know (from debugging output) the address of a perl scalar 171Sometimes you know (from debugging output) the address of a perl scalar
157you are interested in. This function can be used to turn the address into 172you are interested in (e.g. C<HASH(0x176ff70)>). This function can be used
158a reference to that scalar. It is quite safe to call on valid addresses, 173to turn the address into a reference to that scalar. It is quite safe to
159but extremely dangerous to call on invalid ones. 174call on valid addresses, but extremely dangerous to call on invalid ones.
175
176 # we know that HASH(0x176ff70) exists, so turn it into a hashref:
177 my $ref_to_hash = Devel::FindRef::ptr2ref 0x176ff70;
160 178
161=back 179=back
162 180
163=head1 AUTHOR 181=head1 AUTHOR
164 182
165Marc Lehmann <pcg@goof.com>. 183Marc Lehmann <pcg@goof.com>.
166 184
167=head1 BUGS 185=head1 BUGS
168 186
169Only code values, arrays, hashes, scalars and magic are being looked at. 187Only code values, arrays, hashes, scalars and magic are being looked at.
188
189This is a quick hack only.
170 190
171=head1 COPYRIGHT AND LICENSE 191=head1 COPYRIGHT AND LICENSE
172 192
173Copyright (C) 2007 by Marc Lehmann. 193Copyright (C) 2007 by Marc Lehmann.
174 194

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines