1 /* There's a lot of cases of doubled parens in here like this:
5 This shuts up warnings from gcc -Wall
12 #define NEED_newRV_noinc
13 #define NEED_sv_2pv_flags
14 #define NEED_sv_2pv_nolen
17 #define DECLARE_KEY(name) SV *key_##name; U32 hash_##name;
19 #define PREHASH_KEY_WITH_VALUE(name, value) do { \
20 key_##name = newSVpvs(value); \
21 PERL_HASH(hash_##name, value, sizeof(value) - 1); \
24 /* this is basically the same as the above macro, except that the value will be
25 * the stringified name. However, we can't just implement this in terms of
26 * PREHASH_KEY_WITH_VALUE as that'd cause macro expansion on the value of
27 * 'name' when it's being passed to the other macro. suggestions on how to make
28 * this more elegant would be much appreciated */
30 #define PREHASH_KEY(name) do { \
31 key_##name = newSVpvs(#name); \
32 PERL_HASH(hash_##name, #name, sizeof(#name) - 1); \
37 DECLARE_KEY(package_name);
39 DECLARE_KEY(package_cache_flag);
45 SV *associated_metaclass;
49 #define check_package_cache_flag(stash) mop_check_package_cache_flag(aTHX_ stash)
50 #if PERL_VERSION >= 10
53 mop_check_package_cache_flag(pTHX_ HV* stash) {
54 assert(SvTYPE(stash) == SVt_PVHV);
56 /* here we're trying to implement a c version of mro::get_pkg_gen($stash),
57 * however the perl core doesn't make it easy for us. It doesn't provide an
58 * api that just does what we want.
60 * However, we know that the information we want is, inside the core,
61 * available using HvMROMETA(stash)->pkg_gen. Unfortunately, although the
62 * HvMROMETA macro is public, it is implemented using Perl_mro_meta_init,
63 * which is not public and only available inside the core, as the mro
64 * interface as well as the structure returned by mro_meta_init isn't
65 * considered to be stable yet.
67 * Perl_mro_meta_init isn't declared static, so we could just define it
68 * ourselfs if perls headers don't do that for us, except that won't work
69 * on platforms where symbols need to be explicitly exported when linking
72 * So our, hopefully temporary, solution is to be even more evil and
73 * basically reimplement HvMROMETA in a very fragile way that'll blow up
74 * when the relevant parts of the mro implementation in core change.
80 return HvAUX(stash)->xhv_mro_meta
81 ? HvAUX(stash)->xhv_mro_meta->pkg_gen
85 #else /* pre 5.10.0 */
88 mop_check_package_cache_flag(pTHX_ HV *stash) {
89 PERL_UNUSED_ARG(stash);
90 assert(SvTYPE(stash) == SVt_PVHV);
92 return PL_sub_generation;
96 #define call0(s, m) mop_call0(aTHX_ s, m)
98 mop_call0(pTHX_ SV *const self, SV *const method) {
106 call_sv(method, G_SCALAR | G_METHOD);
116 get_code_info (SV *coderef, char **pkg, char **name)
118 if (!SvOK(coderef) || !SvROK(coderef) || SvTYPE(SvRV(coderef)) != SVt_PVCV) {
122 coderef = SvRV(coderef);
123 /* I think this only gets triggered with a mangled coderef, but if
124 we hit it without the guard, we segfault. The slightly odd return
125 value strikes me as an improvement (mst)
128 if ( isGV_with_GP(CvGV(coderef)) ) {
130 *pkg = HvNAME( GvSTASH(CvGV(coderef)) );
131 *name = GvNAME( CvGV(coderef) );
134 *pkg = "__UNKNOWN__";
152 get_all_package_symbols(HV *stash, type_filter_t filter)
157 (void)hv_iterinit(stash);
159 if (filter == TYPE_FILTER_NONE) {
160 while ( (he = hv_iternext(stash)) ) {
162 char *key = HePV(he, keylen);
163 if (!hv_store(ret, key, keylen, SvREFCNT_inc(HeVAL(he)), 0)) {
164 croak("failed to store glob ref");
171 while ( (he = hv_iternext(stash)) ) {
172 SV *const gv = HeVAL(he);
179 switch( SvTYPE(gv) ) {
185 /* expand the gv into a real typeglob if it
186 * contains stub functions and we were asked to
187 * return CODE symbols */
188 if (filter == TYPE_FILTER_CODE) {
190 /* we don't really care about the length,
191 but that's the API */
192 key = HePV(he, keylen);
193 package = HvNAME(stash);
194 fq = newSVpvf("%s::%s", package, key);
195 sv = (SV *)get_cv(SvPV_nolen(fq), 0);
199 key = HePV(he, keylen);
200 gv_init((GV *)gv, stash, key, keylen, GV_ADDMULTI);
205 case TYPE_FILTER_CODE: sv = (SV *)GvCVu(gv); break;
206 case TYPE_FILTER_ARRAY: sv = (SV *)GvAV(gv); break;
207 case TYPE_FILTER_IO: sv = (SV *)GvIO(gv); break;
208 case TYPE_FILTER_HASH: sv = (SV *)GvHV(gv); break;
209 case TYPE_FILTER_SCALAR: sv = (SV *)GvSV(gv); break;
211 croak("Unknown type");
219 char *key = HePV(he, keylen);
220 if (!hv_store(ret, key, keylen, newRV_inc(sv), 0)) {
221 croak("failed to store symbol ref");
231 mop_update_method_map(pTHX_ SV *const self, SV *const class_name, HV *const stash, HV *const map) {
232 const char *const class_name_pv = HvNAME(stash); /* must be HvNAME(stash), not SvPV_nolen_const(class_name) */
233 SV *method_metaclass_name;
240 symbols = get_all_package_symbols(stash, TYPE_FILTER_CODE);
242 (void)hv_iterinit(symbols);
243 while ( (coderef = hv_iternextsv(symbols, &method_name, &method_name_len)) ) {
244 CV *cv = (CV *)SvRV(coderef);
250 if (!get_code_info(coderef, &cvpkg_name, &cv_name)) {
254 /* this checks to see that the subroutine is actually from our package */
255 if ( !(strEQ(cvpkg_name, "constant") && strEQ(cv_name, "__ANON__")) ) {
256 if ( strNE(cvpkg_name, class_name_pv) ) {
261 method_slot = *hv_fetch(map, method_name, method_name_len, TRUE);
262 if ( SvOK(method_slot) ) {
263 SV *const body = call0(method_slot, key_body); /* $method_object->body() */
264 if ( SvROK(body) && ((CV *) SvRV(body)) == cv ) {
269 method_metaclass_name = call0(self, method_metaclass); /* $self->method_metaclass() */
272 $method_object = $method_metaclass->wrap(
274 associated_metaclass => $self,
275 package_name => $class_name,
284 PUSHs(method_metaclass_name); /* invocant */
285 mPUSHs(newRV_inc((SV *)cv));
286 PUSHs(associated_metaclass);
288 PUSHs(key_package_name);
291 mPUSHs(newSVpv(method_name, method_name_len));
294 call_sv(wrap, G_SCALAR | G_METHOD);
296 method_object = POPs;
298 /* $map->{$method_name} = $method_object */
299 sv_setsv(method_slot, method_object);
308 Pass in a coderef, returns:
309 [ $pkg_name, $coderef_name ] ie:
310 [ 'Foo::Bar', 'new' ]
313 MODULE = Class::MOP PACKAGE = Class::MOP
318 PREHASH_KEY(package);
319 PREHASH_KEY(package_name);
320 PREHASH_KEY(methods);
322 PREHASH_KEY(VERSION);
323 PREHASH_KEY_WITH_VALUE(package_cache_flag, "_package_cache_flag");
325 method_metaclass = newSVpvs("method_metaclass");
326 wrap = newSVpvs("wrap");
327 associated_metaclass = newSVpvs("associated_metaclass");
332 # use prototype here to be compatible with get_code_info from Sub::Identify
334 get_code_info(coderef)
341 if (get_code_info(coderef, &pkg, &name)) {
343 PUSHs(newSVpv(pkg, 0));
344 PUSHs(newSVpv(name, 0));
347 # This is some pretty grotty logic. It _should_ be parallel to the
348 # pure Perl version in lib/Class/MOP.pm, so if you want to understand
349 # it we suggest you start there.
351 is_class_loaded(klass=&PL_sv_undef)
359 if (!SvPOK(klass) || !SvCUR(klass)) {
363 stash = gv_stashsv(klass, 0);
368 if (hv_exists_ent (stash, key_VERSION, hash_VERSION)) {
369 HE *version = hv_fetch_ent(stash, key_VERSION, 0, hash_VERSION);
371 if (version && HeVAL(version) && (version_sv = GvSV(HeVAL(version)))) {
372 if (SvROK(version_sv)) {
373 SV *version_sv_ref = SvRV(version_sv);
375 if (SvOK(version_sv_ref)) {
379 else if (SvOK(version_sv)) {
385 if (hv_exists_ent (stash, key_ISA, hash_ISA)) {
386 HE *isa = hv_fetch_ent(stash, key_ISA, 0, hash_ISA);
387 if (isa && HeVAL(isa) && GvAV(HeVAL(isa))) {
392 (void)hv_iterinit(stash);
393 while ((gv = hv_iternextsv(stash, &key, &keylen))) {
398 if (key[keylen - 1] == ':' && key[keylen - 2] == ':') {
402 if (!isGV(gv) || GvCV(gv)) {
409 MODULE = Class::MOP PACKAGE = Class::MOP::Package
412 get_all_package_symbols(self, filter=TYPE_FILTER_NONE)
420 if ( ! SvROK(self) ) {
421 die("Cannot call get_all_package_symbols as a class method");
424 if (GIMME_V == G_VOID) {
430 if ( (he = hv_fetch_ent((HV *)SvRV(self), key_package, 0, hash_package)) ) {
431 stash = gv_stashsv(HeVAL(he), 0);
439 symbols = get_all_package_symbols(stash, filter);
440 PUSHs(sv_2mortal(newRV_noinc((SV *)symbols)));
448 if ( ! SvROK(self) ) {
449 die("Cannot call name as a class method");
452 if ( (he = hv_fetch_ent((HV *)SvRV(self), key_package, 0, hash_package)) )
455 ST(0) = &PL_sv_undef;
457 MODULE = Class::MOP PACKAGE = Class::MOP::Attribute
465 if ( ! SvROK(self) ) {
466 die("Cannot call name as a class method");
469 if ( (he = hv_fetch_ent((HV *)SvRV(self), key_name, 0, hash_name)) )
472 ST(0) = &PL_sv_undef;
474 MODULE = Class::MOP PACKAGE = Class::MOP::Method
482 if ( ! SvROK(self) ) {
483 die("Cannot call name as a class method");
486 if ( (he = hv_fetch_ent((HV *)SvRV(self), key_name, 0, hash_name)) )
489 ST(0) = &PL_sv_undef;
497 if ( ! SvROK(self) ) {
498 die("Cannot call package_name as a class method");
501 if ( (he = hv_fetch_ent((HV *)SvRV(self), key_package_name, 0, hash_package_name)) )
504 ST(0) = &PL_sv_undef;
512 if ( ! SvROK(self) ) {
513 die("Cannot call body as a class method");
516 if ( (he = hv_fetch_ent((HV *)SvRV(self), key_body, 0, hash_body)) )
519 ST(0) = &PL_sv_undef;
522 MODULE = Class::MOP PACKAGE = Class::MOP::Class
528 HV *const obj = (HV *)SvRV(self);
529 SV *const class_name = HeVAL( hv_fetch_ent(obj, key_package, 0, hash_package) );
530 HV *const stash = gv_stashsv(class_name, 0);
531 UV const current = check_package_cache_flag(stash);
532 SV *const cache_flag = HeVAL( hv_fetch_ent(obj, key_package_cache_flag, TRUE, hash_package_cache_flag));
533 SV *const map_ref = HeVAL( hv_fetch_ent(obj, key_methods, TRUE, hash_methods));
535 /* in $self->{methods} does not yet exist (or got deleted) */
536 if ( !SvROK(map_ref) || SvTYPE(SvRV(map_ref)) != SVt_PVHV ) {
537 SV *new_map_ref = newRV_noinc((SV *)newHV());
538 sv_2mortal(new_map_ref);
539 sv_setsv(map_ref, new_map_ref);
542 if ( !SvOK(cache_flag) || SvUV(cache_flag) != current ) {
543 mop_update_method_map(aTHX_ self, class_name, stash, (HV *)SvRV(map_ref));
544 sv_setuv(cache_flag, check_package_cache_flag(stash)); /* update_cache_flag() */