A first step to cooperate Moose.xs (topic/xs-accessor)
[gitmo/Class-MOP.git] / mop.c
1 #include "mop.h"
2
3 void
4 mop_call_xs (pTHX_ XSPROTO(subaddr), CV *cv, SV **mark)
5 {
6     dSP;
7     PUSHMARK(mark);
8     (*subaddr)(aTHX_ cv);
9     PUTBACK;
10 }
11
12 #if PERL_BCDVERSION >= 0x5010000
13 UV
14 mop_check_package_cache_flag (pTHX_ HV *stash)
15 {
16     assert(SvTYPE(stash) == SVt_PVHV);
17
18     /* here we're trying to implement a c version of mro::get_pkg_gen($stash),
19      * however the perl core doesn't make it easy for us. It doesn't provide an
20      * api that just does what we want.
21      *
22      * However, we know that the information we want is, inside the core,
23      * available using HvMROMETA(stash)->pkg_gen. Unfortunately, although the
24      * HvMROMETA macro is public, it is implemented using Perl_mro_meta_init,
25      * which is not public and only available inside the core, as the mro
26      * interface as well as the structure returned by mro_meta_init isn't
27      * considered to be stable yet.
28      *
29      * Perl_mro_meta_init isn't declared static, so we could just define it
30      * ourselfs if perls headers don't do that for us, except that won't work
31      * on platforms where symbols need to be explicitly exported when linking
32      * shared libraries.
33      *
34      * So our, hopefully temporary, solution is to be even more evil and
35      * basically reimplement HvMROMETA in a very fragile way that'll blow up
36      * when the relevant parts of the mro implementation in core change.
37      *
38      * :-(
39      *
40      */
41
42     return HvAUX(stash)->xhv_mro_meta
43          ? HvAUX(stash)->xhv_mro_meta->pkg_gen
44          : 0;
45 }
46
47 #else /* pre 5.10.0 */
48
49 UV
50 mop_check_package_cache_flag (pTHX_ HV *stash)
51 {
52     PERL_UNUSED_ARG(stash);
53     assert(SvTYPE(stash) == SVt_PVHV);
54
55     return PL_sub_generation;
56 }
57 #endif
58
59 SV *
60 mop_call0 (pTHX_ SV *const self, SV *const method)
61 {
62     dSP;
63     SV *ret;
64
65     PUSHMARK(SP);
66     XPUSHs(self);
67     PUTBACK;
68
69     call_sv(method, G_SCALAR | G_METHOD);
70
71     SPAGAIN;
72     ret = POPs;
73     PUTBACK;
74
75     return ret;
76 }
77
78 SV *
79 mop_call1 (pTHX_ SV *const self, SV *const method, SV* const arg1)
80 {
81     dSP;
82     SV *ret;
83
84     PUSHMARK(SP);
85     EXTEND(SP, 2);
86     PUSHs(self);
87     PUSHs(arg1);
88     PUTBACK;
89
90     call_sv(method, G_SCALAR | G_METHOD);
91
92     SPAGAIN;
93     ret = POPs;
94     PUTBACK;
95
96     return ret;
97 }
98
99
100 int
101 mop_get_code_info (SV *coderef, char **pkg, char **name)
102 {
103     if (!SvOK(coderef) || !SvROK(coderef) || SvTYPE(SvRV(coderef)) != SVt_PVCV) {
104         return 0;
105     }
106
107     coderef = SvRV(coderef);
108
109     /* sub is still being compiled */
110     if (!CvGV(coderef)) {
111         return 0;
112     }
113
114     /* I think this only gets triggered with a mangled coderef, but if
115        we hit it without the guard, we segfault. The slightly odd return
116        value strikes me as an improvement (mst)
117     */
118
119     if ( isGV_with_GP(CvGV(coderef)) ) {
120         GV *gv   = CvGV(coderef);
121         *pkg     = HvNAME( GvSTASH(gv) ? GvSTASH(gv) : CvSTASH(coderef) );
122         *name    = GvNAME( CvGV(coderef) );
123     } else {
124         *pkg     = "__UNKNOWN__";
125         *name    = "__ANON__";
126     }
127
128     return 1;
129 }
130
131 void
132 mop_get_package_symbols (HV *stash, type_filter_t filter, get_package_symbols_cb_t cb, void *ud)
133 {
134     dTHX;
135     HE *he;
136
137     (void)hv_iterinit(stash);
138
139     if (filter == TYPE_FILTER_NONE) {
140         while ( (he = hv_iternext(stash)) ) {
141             STRLEN keylen;
142             const char *key = HePV(he, keylen);
143             if (!cb(key, keylen, HeVAL(he), ud)) {
144                 return;
145             }
146         }
147         return;
148     }
149
150     while ( (he = hv_iternext(stash)) ) {
151         GV * const gv          = (GV*)HeVAL(he);
152         STRLEN keylen;
153         const char * const key = HePV(he, keylen);
154         SV *sv = NULL;
155
156         if(isGV(gv)){
157             switch (filter) {
158                 case TYPE_FILTER_CODE:   sv = (SV *)GvCVu(gv); break;
159                 case TYPE_FILTER_ARRAY:  sv = (SV *)GvAV(gv);  break;
160                 case TYPE_FILTER_IO:     sv = (SV *)GvIO(gv);  break;
161                 case TYPE_FILTER_HASH:   sv = (SV *)GvHV(gv);  break;
162                 case TYPE_FILTER_SCALAR: sv = (SV *)GvSV(gv);  break;
163                 default:
164                     croak("Unknown type");
165             }
166         }
167         /* expand the gv into a real typeglob if it
168         * contains stub functions or constants and we
169         * were asked to return CODE references */
170         else if (filter == TYPE_FILTER_CODE) {
171             gv_init(gv, stash, key, keylen, GV_ADDMULTI);
172             sv = (SV *)GvCV(gv);
173         }
174
175         if (sv) {
176             if (!cb(key, keylen, sv, ud)) {
177                 return;
178             }
179         }
180     }
181 }
182
183 static bool
184 collect_all_symbols (const char *key, STRLEN keylen, SV *val, void *ud)
185 {
186     dTHX;
187     HV *hash = (HV *)ud;
188
189     if (!hv_store (hash, key, keylen, newRV_inc(val), 0)) {
190         croak("failed to store symbol ref");
191     }
192
193     return TRUE;
194 }
195
196 HV *
197 mop_get_all_package_symbols (HV *stash, type_filter_t filter)
198 {
199     dTHX;
200     HV *ret = newHV ();
201     mop_get_package_symbols (stash, filter, collect_all_symbols, ret);
202     return ret;
203 }
204
205
206 MAGIC*
207 mop_mg_find(pTHX_ SV* const sv, const MGVTBL* const vtbl, I32 const flags){
208     MAGIC* mg;
209
210     assert(sv != NULL);
211     for(mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic){
212         if(mg->mg_virtual == vtbl){
213             return mg;
214         }
215     }
216
217     if(flags & MOPf_DIE_ON_FAIL){
218         croak("mop_mg_find: no MAGIC found for %"SVf, sv_2mortal(newRV_inc(sv)));
219     }
220     return NULL;
221 }