Uninline mop_prehashed_{key,hash}_for.
[gitmo/Class-MOP.git] / xs / MOP.xs
CommitLineData
d846ade3 1#include "mop.h"
2
7ec7b950 3SV *mop_method_metaclass;
4SV *mop_associated_metaclass;
5SV *mop_wrap;
6
d846ade3 7static bool
8find_method (const char *key, STRLEN keylen, SV *val, void *ud)
9{
10 bool *found_method = (bool *)ud;
11 *found_method = TRUE;
12 return FALSE;
13}
14
d846ade3 15MODULE = Class::MOP PACKAGE = Class::MOP
16
17PROTOTYPES: DISABLE
18
19BOOT:
22932438 20 mop_prehash_keys();
d846ade3 21
e1f52a8a 22 mop_method_metaclass = newSVpvs("method_metaclass");
23 mop_wrap = newSVpvs("wrap");
24 mop_associated_metaclass = newSVpvs("associated_metaclass");
d846ade3 25
e3dcef7f 26 MOP_CALL_BOOT (boot_Class__MOP__Package);
27 MOP_CALL_BOOT (boot_Class__MOP__Class);
28 MOP_CALL_BOOT (boot_Class__MOP__Attribute);
29 MOP_CALL_BOOT (boot_Class__MOP__Method);
d846ade3 30
31# use prototype here to be compatible with get_code_info from Sub::Identify
32void
33get_code_info(coderef)
34 SV *coderef
35 PROTOTYPE: $
36 PREINIT:
37 char *pkg = NULL;
38 char *name = NULL;
39 PPCODE:
e1f52a8a 40 if (mop_get_code_info(coderef, &pkg, &name)) {
d846ade3 41 EXTEND(SP, 2);
42 PUSHs(newSVpv(pkg, 0));
43 PUSHs(newSVpv(name, 0));
44 }
45
46# This is some pretty grotty logic. It _should_ be parallel to the
47# pure Perl version in lib/Class/MOP.pm, so if you want to understand
48# it we suggest you start there.
49void
50is_class_loaded(klass=&PL_sv_undef)
51 SV *klass
52 PREINIT:
53 HV *stash;
54 bool found_method = FALSE;
55 PPCODE:
56 if (!SvPOK(klass) || !SvCUR(klass)) {
57 XSRETURN_NO;
58 }
59
60 stash = gv_stashsv(klass, 0);
61 if (!stash) {
62 XSRETURN_NO;
63 }
64
22932438 65 if (hv_exists_ent (stash, KEY_FOR(VERSION), HASH_FOR(VERSION))) {
66 HE *version = hv_fetch_ent(stash, KEY_FOR(VERSION), 0, HASH_FOR(VERSION));
d846ade3 67 SV *version_sv;
68 if (version && HeVAL(version) && (version_sv = GvSV(HeVAL(version)))) {
69 if (SvROK(version_sv)) {
70 SV *version_sv_ref = SvRV(version_sv);
71
72 if (SvOK(version_sv_ref)) {
73 XSRETURN_YES;
74 }
75 }
76 else if (SvOK(version_sv)) {
77 XSRETURN_YES;
78 }
79 }
80 }
81
22932438 82 if (hv_exists_ent (stash, KEY_FOR(ISA), HASH_FOR(ISA))) {
83 HE *isa = hv_fetch_ent(stash, KEY_FOR(ISA), 0, HASH_FOR(ISA));
d846ade3 84 if (isa && HeVAL(isa) && GvAV(HeVAL(isa))) {
85 XSRETURN_YES;
86 }
87 }
88
e1f52a8a 89 mop_get_package_symbols(stash, TYPE_FILTER_CODE, find_method, &found_method);
d846ade3 90 if (found_method) {
91 XSRETURN_YES;
92 }
93
94 XSRETURN_NO;