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

Comparing Devel-FindRef/FindRef.xs (file contents):
Revision 1.1 by root, Thu Jan 11 22:30:34 2007 UTC vs.
Revision 1.6 by root, Sat Dec 29 21:04:46 2007 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5#define PERL_VERSION_ATLEAST(a,b,c) \
6 (PERL_REVISION > (a) \
7 || (PERL_REVISION == (a) \
8 && (PERL_VERSION > (b) \
9 || (PERL_VERSION == (b) && PERLSUBVERSION >= (c)))))
10
11#if !PERL_VERSION_ATLEAST (5,8,9)
12# define SVt_LAST 16
13#endif
14
5#define res_pair(text) \ 15#define res_pair(text) \
6 { \ 16 { \
7 AV *av = newAV (); \ 17 AV *av = newAV (); \
8 av_push (av, newSVpv (text, 0)); \ 18 av_push (av, newSVpv (text, 0)); \
9 av_push (av, newRV_inc (sv)); \ 19 av_push (av, sv_rvweaken (newRV_inc (sv))); \
10 av_push (about, newRV_noinc ((SV *)av)); \ 20 av_push (about, newRV_noinc ((SV *)av)); \
11 } 21 }
12 22
13#define res_gv(sigil) \ 23#define res_gv(sigil) \
14 { \ 24 { \
15 AV *av = newAV (); \ 25 AV *av = newAV (); \
16 av_push (av, newSVpv (form ("in the global %c%s::%.*s", sigil, \ 26 av_push (av, newSVpv (form ("in the global %c%s::%.*s", sigil, \
17 HvNAME (GvSTASH (sv)), \ 27 HvNAME (GvSTASH (sv)), \
18 GvNAMELEN (sv), GvNAME (sv) ? GvNAME (sv) : "<anonymous>"), \ 28 GvNAMELEN (sv), GvNAME (sv) ? GvNAME (sv) : "<anonymous>"), \
19 0)); \ 29 0)); \
20 av_push (about, newRV_noinc ((SV *)av)); \ 30 av_push (about, newRV_noinc ((SV *)av)); \
21 } 31 }
22 32
23MODULE = Devel::FindRef PACKAGE = Devel::FindRef 33MODULE = Devel::FindRef PACKAGE = Devel::FindRef
24 34
25PROTOTYPES: ENABLE 35PROTOTYPES: ENABLE
39 int rmagical, i; 49 int rmagical, i;
40 AV *about = newAV (); 50 AV *about = newAV ();
41 AV *excl = newAV (); 51 AV *excl = newAV ();
42 52
43 if (!SvROK (target)) 53 if (!SvROK (target))
44 croak ("about expects a reference to a perl value"); 54 croak ("find expects a reference to a perl value");
45 55
46 targ = SvRV (target); 56 targ = SvRV (target);
47 57
48 for (arena = PL_sv_arenaroot; arena; arena = SvANY (arena)) 58 for (arena = PL_sv_arenaroot; arena; arena = SvANY (arena))
49 { 59 {
52 /* Remember that the zeroth slot is used as the pointer onwards, so don't 62 /* Remember that the zeroth slot is used as the pointer onwards, so don't
53 include it. */ 63 include it. */
54 while (--idx > 0) 64 while (--idx > 0)
55 { 65 {
56 SV *sv = &arena [idx]; 66 SV *sv = &arena [idx];
57 67
68 if (SvTYPE (sv) >= SVt_LAST)
69 continue;
70
71 /* temporarily disable RMAGICAL, it can easily interfere with us */
58 if ((rmagical = SvRMAGICAL (sv))) 72 if ((rmagical = SvRMAGICAL (sv)))
59 SvRMAGICAL_off (sv); 73 SvRMAGICAL_off (sv);
60 74
61 //TODO: magic 75 if (SvTYPE (sv) >= SVt_PVMG)
76 {
77 MAGIC *mg = SvMAGIC (sv);
78 while (mg)
79 {
80 if (mg->mg_obj == targ)
81 res_pair (form ("referenced (in mg_obj) by '%c' type magic attached to", mg->mg_type));
62 82
63 switch (SvTYPE (sv)) 83 if ((SV *)mg->mg_ptr == targ && mg->mg_flags & MGf_REFCOUNTED)
64 { 84 res_pair (form ("referenced (in mg_ptr) by '%c' type magic attached to", mg->mg_type));
65 case SVt_RV:
66 if (sv != target && SvRV (sv) == targ)
67 res_pair ("referenced by");
68 break;
69 85
70 case SVt_PVAV: 86 mg = mg->mg_moremagic;
71 if (AvREAL (sv))
72 for (i = AvFILLp (sv) + 1; i--; )
73 if (AvARRAY (sv)[i] == targ)
74 res_pair (form ("in array element %d of", i));
75 break;
76
77 case SVt_PVHV:
78 if (hv_iterinit ((HV *)sv))
79 {
80 HE *he;
81 while ((he = hv_iternext ((HV *)sv)))
82 if (HeVAL (he) == targ)
83 res_pair (form ("in the member '%.*s' of", HeKLEN (he), HeKEY (he)));
84 }
85 break;
86
87 case SVt_PVGV:
88 if (GvGP (sv))
89 {
90 if (GvSV (sv) == targ)
91 res_gv ('$');
92 if (GvAV (sv) == (AV *)targ)
93 res_gv ('@');
94 if (GvHV (sv) == (HV *)targ)
95 res_gv ('%');
96 if (GvCV (sv) == (CV *)targ)
97 res_gv ('&');
98 }
99 break;
100
101 case SVt_PVCV:
102 {
103 int depth = CvDEPTH (sv);
104 if (depth)
105 {
106 AV *padlist = CvPADLIST (sv);
107 while (depth)
108 {
109 AV *pad = (AV *)AvARRAY (padlist)[depth];
110 av_push (excl, newSVuv (PTR2UV (pad))); /* exclude pads from being found */
111 for (i = AvFILLp (pad); i--; )
112 if (AvARRAY (pad)[i] == targ)
113 res_pair (form ("in the lexical '%s' in", SvPVX (AvARRAY (AvARRAY (padlist)[0])[i])));
114
115 --depth;
116 }
117 }
118 } 87 }
119 break;
120 } 88 }
121 89
90 if (SvROK (sv))
91 {
92 if (sv != target && SvRV (sv) == targ && !SvWEAKREF (sv))
93 res_pair ("referenced by");
94 }
95 else
96 switch (SvTYPE (sv))
97 {
98 case SVt_PVAV:
99 if (AvREAL (sv))
100 for (i = AvFILLp (sv) + 1; i--; )
101 if (AvARRAY (sv)[i] == targ)
102 res_pair (form ("in array element %d of", i));
103
104 break;
105
106 case SVt_PVHV:
107 if (hv_iterinit ((HV *)sv))
108 {
109 HE *he;
110
111 while ((he = hv_iternext ((HV *)sv)))
112 if (HeVAL (he) == targ)
113 res_pair (form ("in the member '%.*s' of", HeKLEN (he), HeKEY (he)));
114 }
115
116 break;
117
118 case SVt_PVCV:
119 {
120 int depth = CvDEPTH (sv);
121
122 if (depth)
123 {
124 AV *padlist = CvPADLIST (sv);
125
126 while (depth)
127 {
128 AV *pad = (AV *)AvARRAY (padlist)[depth];
129
130 av_push (excl, newSVuv (PTR2UV (pad))); /* exclude pads themselves from being found */
131
132 for (i = AvFILLp (pad); i--; )
133 if (AvARRAY (pad)[i] == targ)
134 res_pair (form ("in the lexical '%s' in", SvPVX (AvARRAY (AvARRAY (padlist)[0])[i])));
135
136 --depth;
137 }
138 }
139 }
140
141 break;
142
143 case SVt_PVGV:
144 if (GvGP (sv))
145 {
146 if (GvSV (sv) == (SV *)targ) res_gv ('$');
147 if (GvAV (sv) == (AV *)targ) res_gv ('@');
148 if (GvHV (sv) == (HV *)targ) res_gv ('%');
149 if (GvCV (sv) == (CV *)targ) res_gv ('&');
150 }
151
152 break;
153 }
154
122 if (rmagical) 155 if (rmagical)
123 SvRMAGICAL_off (sv); 156 SvRMAGICAL_on (sv);
124 } 157 }
125 } 158 }
126 159
127 EXTEND (SP, 2); 160 EXTEND (SP, 2);
128 PUSHs (sv_2mortal (newRV_noinc ((SV *)about))); 161 PUSHs (sv_2mortal (newRV_noinc ((SV *)about)));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines