3 SV *mop_method_metaclass;
4 SV *mop_associated_metaclass;
8 find_method (const char *key, STRLEN keylen, SV *val, void *ud)
10 bool *found_method = (bool *)ud;
15 EXTERN_C XS(boot_Class__MOP__Package);
16 EXTERN_C XS(boot_Class__MOP__Class);
17 EXTERN_C XS(boot_Class__MOP__Attribute);
18 EXTERN_C XS(boot_Class__MOP__Method);
20 MODULE = Class::MOP PACKAGE = Class::MOP
27 mop_method_metaclass = newSVpvs("method_metaclass");
28 mop_wrap = newSVpvs("wrap");
29 mop_associated_metaclass = newSVpvs("associated_metaclass");
31 MOP_CALL_BOOT (boot_Class__MOP__Package);
32 MOP_CALL_BOOT (boot_Class__MOP__Class);
33 MOP_CALL_BOOT (boot_Class__MOP__Attribute);
34 MOP_CALL_BOOT (boot_Class__MOP__Method);
36 # use prototype here to be compatible with get_code_info from Sub::Identify
38 get_code_info(coderef)
45 if (mop_get_code_info(coderef, &pkg, &name)) {
47 PUSHs(newSVpv(pkg, 0));
48 PUSHs(newSVpv(name, 0));
51 # This is some pretty grotty logic. It _should_ be parallel to the
52 # pure Perl version in lib/Class/MOP.pm, so if you want to understand
53 # it we suggest you start there.
55 is_class_loaded(klass=&PL_sv_undef)
59 bool found_method = FALSE;
61 if (!SvPOK(klass) || !SvCUR(klass)) {
65 stash = gv_stashsv(klass, 0);
70 if (hv_exists_ent (stash, KEY_FOR(VERSION), HASH_FOR(VERSION))) {
71 HE *version = hv_fetch_ent(stash, KEY_FOR(VERSION), 0, HASH_FOR(VERSION));
73 if (version && HeVAL(version) && (version_sv = GvSV(HeVAL(version)))) {
74 if (SvROK(version_sv)) {
75 SV *version_sv_ref = SvRV(version_sv);
77 if (SvOK(version_sv_ref)) {
81 else if (SvOK(version_sv)) {
87 if (hv_exists_ent (stash, KEY_FOR(ISA), HASH_FOR(ISA))) {
88 HE *isa = hv_fetch_ent(stash, KEY_FOR(ISA), 0, HASH_FOR(ISA));
89 if (isa && HeVAL(isa) && GvAV(HeVAL(isa))) {
94 mop_get_package_symbols(stash, TYPE_FILTER_CODE, find_method, &found_method);