Avoid compiler's warnings
[gitmo/Mouse.git] / mouse.h
1 #ifndef MOUSE_H
2 #define MOUSE_H
3
4 #define PERL_NO_GET_CONTEXT
5 #include <EXTERN.h>
6 #include <perl.h>
7 #include <XSUB.h>
8
9 #include "ppport.h"
10
11 /* Portability stuff */
12
13 #ifndef newSVpvs_share
14 #define newSVpvs_share(s) Perl_newSVpvn_share(aTHX_ s, sizeof(s)-1, 0U)
15 #endif
16
17 #ifndef get_cvs
18 #define get_cvs(name, flags) get_cv(name, flags)
19 #endif
20
21 #ifndef GvNAME_get
22 #define GvNAME_get GvNAME
23 #endif
24 #ifndef GvNAMELEN_get
25 #define GvNAMELEN_get GvNAMELEN
26 #endif
27
28 #ifndef mro_get_linear_isa
29 #define no_mro_get_linear_isa
30 #define mro_get_linear_isa(stash) mouse_mro_get_linear_isa(aTHX_ stash)
31 AV* mouse_mro_get_linear_isa(pTHX_ HV* const stash);
32 #define mro_method_changed_in(stash) ((void)++PL_sub_generation)
33 #endif /* !mro_get_linear_isa */
34
35 #ifndef mro_get_pkg_gen
36 #ifdef no_mro_get_linear_isa
37 #define mro_get_pkg_gen(stash) ((void)stash, PL_sub_generation)
38 #else
39 #define mro_get_pkg_gen(stash) (HvAUX(stash)->xhv_mro_meta ? HvAUX(stash)->xhv_mro_meta->pkg_gen : (U32)0)
40 #endif /* !no_mro_get_linear_isa */
41 #endif /* mro_get_package_gen */
42
43 #if !defined(__GNUC__)
44 #  if (!defined(__cplusplus__) || !defined(__STDC_VERSION__) ||  (__STDC_VERSION__ < 199901L)) && !defined(inline)
45 #    define inline /* nothing */
46 #  endif
47 #endif
48
49 /* Mouse stuff */
50
51 #define newAV_mortal() (AV*)sv_2mortal((SV*)newAV())
52 #define newHV_mortal() (HV*)sv_2mortal((SV*)newHV())
53
54 #define MOUSE_CALL_BOOT(name) STMT_START {      \
55         EXTERN_C XS(CAT2(boot_, name));         \
56         PUSHMARK(SP);                           \
57         CALL_FPTR(CAT2(boot_, name))(aTHX_ cv); \
58     } STMT_END
59
60 extern SV* mouse_package;
61 extern SV* mouse_namespace;
62 extern SV* mouse_methods;
63 extern SV* mouse_name;
64 extern SV* mouse_coerce;
65
66 void
67 mouse_throw_error(SV* const metaobject, SV* const data /* not used */, const char* const fmt, ...)
68 #ifdef __attribute__format__
69     __attribute__format__(__printf__, 3, 4);
70 #else
71     ;
72 #endif
73
74 /* workaround RT #69939 */
75 I32
76 mouse_call_sv_safe(pTHX_ SV*, I32);
77
78 #define call_sv_safe(sv, flags)     mouse_call_sv_safe(aTHX_ sv, flags)
79 #define call_method_safe(m, flags)  mouse_call_sv_safe(aTHX_ newSVpvn_flags(m, strlen(m), SVs_TEMP), flags | G_METHOD)
80 #define call_method_safes(m, flags) mouse_call_sv_safe(aTHX_ newSVpvs_flags(m, SVs_TEMP),            flags | G_METHOD)
81
82
83 #define is_class_loaded(sv) mouse_is_class_loaded(aTHX_ sv)
84 bool mouse_is_class_loaded(pTHX_ SV*);
85
86 #define is_an_instance_of(klass, sv) mouse_is_an_instance_of(aTHX_ gv_stashpvs(klass, GV_ADD), (sv))
87
88 #define IsObject(sv)   (SvROK(sv) && SvOBJECT(SvRV(sv)))
89 #define IsArrayRef(sv) (SvROK(sv) && !SvOBJECT(SvRV(sv)) && SvTYPE(SvRV(sv)) == SVt_PVAV)
90 #define IsHashRef(sv)  (SvROK(sv) && !SvOBJECT(SvRV(sv)) && SvTYPE(SvRV(sv)) == SVt_PVHV)
91 #define IsCodeRef(sv)  (SvROK(sv) && !SvOBJECT(SvRV(sv)) && SvTYPE(SvRV(sv)) == SVt_PVCV)
92
93 #define mcall0(invocant, m)          mouse_call0(aTHX_ (invocant), (m))
94 #define mcall1(invocant, m, arg1)    mouse_call1(aTHX_ (invocant), (m), (arg1))
95 #define predicate_call(invocant, m)  mouse_predicate_call(aTHX_ (invocant), (m))
96
97 #define mcall0s(invocant, m)          mcall0((invocant), sv_2mortal(newSVpvs_share(m)))
98 #define mcall1s(invocant, m, arg1)    mcall1((invocant), sv_2mortal(newSVpvs_share(m)), (arg1))
99 #define predicate_calls(invocant, m)  predicate_call((invocant), sv_2mortal(newSVpvs_share(m)))
100
101
102 #define get_metaclass(name) mouse_get_metaclass(aTHX_ name)
103
104 SV* mouse_call0(pTHX_ SV *const self, SV *const method);
105 SV* mouse_call1(pTHX_ SV *const self, SV *const method, SV* const arg1);
106 int mouse_predicate_call(pTHX_ SV* const self, SV* const method);
107
108 SV* mouse_get_metaclass(pTHX_ SV* metaclass_name);
109
110 GV* mouse_stash_fetch(pTHX_ HV* const stash, const char* const name, I32 const namelen, I32 const create);
111 #define stash_fetch(s, n, l, c) mouse_stash_fetch(aTHX_ (s), (n), (l), (c))
112 #define stash_fetchs(s, n, c)   mouse_stash_fetch(aTHX_ (s), STR_WITH_LEN(n), (c))
113
114 void mouse_install_sub(pTHX_ GV* const gv, SV* const code_ref);
115
116 void mouse_must_defined(pTHX_ SV* const value, const char* const name);
117 void mouse_must_ref(pTHX_ SV* const value, const char* const name, svtype const t);
118
119 #define must_defined(sv, name)   mouse_must_defined(aTHX_ sv, name)
120 #define must_ref(sv, name, svt)  mouse_must_ref(aTHX_ sv, name, svt)
121
122 #define MOUSEf_DIE_ON_FAIL 0x01
123 MAGIC* mouse_mg_find(pTHX_ SV* const sv, const MGVTBL* const vtbl, I32 const flags);
124
125 /* MOUSE_av_at(av, ix) is the safer version of AvARRAY(av)[ix] if perl is compiled with -DDEBUGGING */
126 #ifdef DEBUGGING
127 #define MOUSE_av_at(av, ix)  *mouse_av_at_safe(aTHX_ (av) , (ix))
128 SV** mouse_av_at_safe(pTHX_ AV* const mi, I32 const ix);
129 #else
130 #define MOUSE_av_at(av, ix)  AvARRAY(av)[ix]
131 #endif
132
133 #define MOUSE_mg_obj(mg)     ((mg)->mg_obj)
134 #define MOUSE_mg_ptr(mg)     ((mg)->mg_ptr)
135 #define MOUSE_mg_len(mg)     ((mg)->mg_len)
136 #define MOUSE_mg_flags(mg)   ((mg)->mg_private)
137 #define MOUSE_mg_virtual(mg) ((mg)->mg_virtual)
138
139 #define MOUSE_mg_slot(mg)   MOUSE_mg_obj(mg)
140 #define MOUSE_mg_xa(mg)    ((AV*)MOUSE_mg_ptr(mg))
141
142
143 /* mouse_instance.xs stuff */
144 SV*  mouse_instance_create     (pTHX_ HV* const stash);
145 SV*  mouse_instance_clone      (pTHX_ SV* const instance);
146 bool mouse_instance_has_slot   (pTHX_ SV* const instance, SV* const slot);
147 SV*  mouse_instance_get_slot   (pTHX_ SV* const instance, SV* const slot);
148 SV*  mouse_instance_set_slot   (pTHX_ SV* const instance, SV* const slot, SV* const value);
149 SV*  mouse_instance_delete_slot(pTHX_ SV* const instance, SV* const slot);
150 void mouse_instance_weaken_slot(pTHX_ SV* const instance, SV* const slot);
151
152 #define has_slot(self, key)         mouse_instance_has_slot(aTHX_ self, key)
153 #define get_slot(self, key)         mouse_instance_get_slot(aTHX_ self, key)
154 #define set_slot(self, key, value)  mouse_instance_set_slot(aTHX_ self, key, value)
155 #define delete_slot(self, key)      mouse_instance_delete_slot(aTHX_ self, key)
156 #define weaken_slot(self, key)      mouse_instance_weaken_slot(aTHX_ self, key)
157
158 #define has_slots(self, key)        has_slot(self, sv_2mortal(newSVpvs_share(key)))
159 #define get_slots(self, key)        get_slot(self, sv_2mortal(newSVpvs_share(key)))
160 #define set_slots(self, key, value) set_slot(self, sv_2mortal(newSVpvs_share(key)), value)
161
162 /* mouse_simle_accessor.xs */
163 #define INSTALL_SIMPLE_READER(klass, name) \
164     INSTALL_SIMPLE_READER_WITH_KEY(klass, name, name)
165 #define INSTALL_SIMPLE_READER_WITH_KEY(klass, name, key) \
166     (void)mouse_simple_accessor_generate(aTHX_ "Mouse::Meta::" #klass "::" #name, #key, sizeof(#key)-1, XS_Mouse_simple_reader, NULL, 0)
167
168 #define INSTALL_CLASS_HOLDER_SV(klass, name, dsv) \
169     (void)mouse_simple_accessor_generate(aTHX_ "Mouse::Meta::" #klass "::" #name, #name, sizeof(#name)-1, XS_Mouse_simple_reader, (dsv), HEf_SVKEY)
170 #define INSTALL_CLASS_HOLDER(klass, name, ds) \
171     INSTALL_CLASS_HOLDER_SV(klass, name, newSVpvs(ds))
172
173 #define INSTALL_SIMPLE_WRITER(klass, name) \
174     NSTALL_SIMPLE_WRITER_WITH_KEY(klass, name, name)
175 #define INSTALL_SIMPLE_WRITER_WITH_KEY(klass, name, key) \
176     (void)mouse_simple_accessor_generate(aTHX_ "Mouse::Meta::" #klass "::" #name, #key, sizeof(#key)-1, XS_Mouse_simple_writer, NULL, 0)
177
178 #define INSTALL_SIMPLE_PREDICATE(klass, name) \
179     INSTALL_SIMPLE_PREDICATE_WITH_KEY(klass, name, name)
180 #define INSTALL_SIMPLE_PREDICATE_WITH_KEY(klass, name, key) \
181     (void)mouse_simple_accessor_generate(aTHX_ "Mouse::Meta::" #klass "::" #name, #key, sizeof(#key)-1, XS_Mouse_simple_predicate, NULL, 0)
182
183 CV* mouse_simple_accessor_generate(pTHX_ const char* const fq_name, const char* const key, I32 const keylen, XSUBADDR_t const accessor_impl, void* const dptr, I32 const dlen);
184
185 XS(XS_Mouse_simple_reader);
186 XS(XS_Mouse_simple_writer);
187 XS(XS_Mouse_simple_clearer);
188 XS(XS_Mouse_simple_predicate);
189
190 CV* mouse_accessor_generate(pTHX_ SV* const attr, XSUBADDR_t const accessor_impl);
191
192 XS(XS_Mouse_accessor);
193 XS(XS_Mouse_reader);
194 XS(XS_Mouse_writer);
195
196 /* type constraints */
197
198 int mouse_tc_check(pTHX_ SV* const tc, SV* const sv);
199
200 int mouse_tc_Any       (pTHX_ SV*, SV* const sv);
201 int mouse_tc_Bool      (pTHX_ SV*, SV* const sv);
202 int mouse_tc_Undef     (pTHX_ SV*, SV* const sv);
203 int mouse_tc_Defined   (pTHX_ SV*, SV* const sv);
204 int mouse_tc_Value     (pTHX_ SV*, SV* const sv);
205 int mouse_tc_Num       (pTHX_ SV*, SV* const sv);
206 int mouse_tc_Int       (pTHX_ SV*, SV* const sv);
207 int mouse_tc_Str       (pTHX_ SV*, SV* const sv);
208 int mouse_tc_ClassName (pTHX_ SV*, SV* const sv);
209 int mouse_tc_RoleName  (pTHX_ SV*, SV* const sv);
210 int mouse_tc_Ref       (pTHX_ SV*, SV* const sv);
211 int mouse_tc_ScalarRef (pTHX_ SV*, SV* const sv);
212 int mouse_tc_ArrayRef  (pTHX_ SV*, SV* const sv);
213 int mouse_tc_HashRef   (pTHX_ SV*, SV* const sv);
214 int mouse_tc_CodeRef   (pTHX_ SV*, SV* const sv);
215 int mouse_tc_RegexpRef (pTHX_ SV*, SV* const sv);
216 int mouse_tc_GlobRef   (pTHX_ SV*, SV* const sv);
217 int mouse_tc_FileHandle(pTHX_ SV*, SV* const sv);
218 int mouse_tc_Object    (pTHX_ SV*, SV* const sv);
219
220 CV* mouse_generate_isa_predicate_for(pTHX_ SV* const klass, const char* const predicate_name);
221 CV* mouse_generate_can_predicate_for(pTHX_ SV* const klass, const char* const predicate_name);
222
223 int mouse_is_an_instance_of(pTHX_ HV* const stash, SV* const instance);
224
225 XS(XS_Mouse_constraint_check);
226
227 /* Mouse XS Attribute object */
228
229 AV* mouse_get_xa(pTHX_ SV* const attr);
230 SV* mouse_xa_apply_type_constraint(pTHX_ AV* const xa, SV* value, U16 const flags);
231 SV* mouse_xa_set_default(pTHX_ AV* const xa, SV* const object);
232
233 enum mouse_xa_ix_t{
234     MOUSE_XA_SLOT,      /* for constructors, sync to mg_obj */
235     MOUSE_XA_FLAGS,     /* for constructors, sync to mg_private */
236     MOUSE_XA_ATTRIBUTE,
237     MOUSE_XA_INIT_ARG,
238     MOUSE_XA_TC,
239     MOUSE_XA_TC_CODE,
240
241     MOUSE_XA_last
242 };
243
244 #define MOUSE_xa_slot(m)      MOUSE_av_at(m, MOUSE_XA_SLOT)
245 #define MOUSE_xa_flags(m)     SvUVX( MOUSE_av_at(m, MOUSE_XA_FLAGS) )
246 #define MOUSE_xa_attribute(m) MOUSE_av_at(m, MOUSE_XA_ATTRIBUTE)
247 #define MOUSE_xa_init_arg(m)  MOUSE_av_at(m, MOUSE_XA_INIT_ARG)
248 #define MOUSE_xa_tc(m)        MOUSE_av_at(m, MOUSE_XA_TC)
249 #define MOUSE_xa_tc_code(m)   MOUSE_av_at(m, MOUSE_XA_TC_CODE)
250
251 enum mouse_xa_flags_t{
252     MOUSEf_ATTR_HAS_TC          = 0x0001,
253     MOUSEf_ATTR_HAS_DEFAULT     = 0x0002,
254     MOUSEf_ATTR_HAS_BUILDER     = 0x0004,
255     MOUSEf_ATTR_HAS_INITIALIZER = 0x0008, /* not used */
256     MOUSEf_ATTR_HAS_TRIGGER     = 0x0010,
257
258     MOUSEf_ATTR_IS_LAZY         = 0x0020,
259     MOUSEf_ATTR_IS_WEAK_REF     = 0x0040,
260     MOUSEf_ATTR_IS_REQUIRED     = 0x0080,
261
262     MOUSEf_ATTR_SHOULD_COERCE   = 0x0100,
263
264     MOUSEf_ATTR_SHOULD_AUTO_DEREF
265                                 = 0x0200,
266     MOUSEf_TC_IS_ARRAYREF       = 0x0400,
267     MOUSEf_TC_IS_HASHREF        = 0x0800,
268
269     MOUSEf_OTHER1               = 0x1000,
270     MOUSEf_OTHER2               = 0x2000,
271     MOUSEf_OTHER3               = 0x4000,
272     MOUSEf_OTHER4               = 0x8000,
273
274     MOUSEf_MOUSE_MASK           = 0xFFFF /* not used */
275 };
276
277
278 #endif /* !MOUSE_H */
279