checking count is not necessary with G_SCALAR when calling into perl space
[gitmo/Moose.git] / Moose.xs
CommitLineData
1ea12c91 1#include "EXTERN.h"
2#include "perl.h"
3#include "XSUB.h"
4
d0957eef 5#define NEED_grok_number
6#define NEED_grok_numeric_radix
035fd0c4 7#define NEED_newRV_noinc
8#define NEED_newSVpvn_share
9#define NEED_sv_2pv_flags
10#include "ppport.h"
11
12#ifndef XSPROTO
13#define XSPROTO(name) void name(pTHX_ CV* cv)
14#endif
15
16#ifndef gv_stashpvs
70a91f79 17#define gv_stashpvs(x, y) Perl_gv_stashpvn(aTHX_ STR_WITH_LEN(x), y)
035fd0c4 18#endif
19
1ea12c91 20/* FIXME
1ea12c91 21 * delegations and attribute helpers:
22 *
23 * typedef struct {
de2f2e97 24 * ATTR *attr;
1ea12c91 25 * pv *method;
26 * } delegation;
27 *
28 * typedef struct {
de2f2e97 29 * ATTR *attr;
1ea12c91 30 * I32 *type; // hash, array, whatever + vtable for operation
31 * } attributehelper;
32 */
33
de2f2e97 34
2cd9d2ba 35
36
37
38
39
40/* These two functions attach magic with no behavior to an SV.
41 *
42 * The stashed value is reference counted, and is destroyed when it's parent
43 * object is destroyed.
44 *
45 * This is used to keep a reference the the meta attribute from a generated
46 * method, and to cache the C struct based wrapper attached to the meta
47 * instance.
48 */
49
de2f2e97 50STATIC MGVTBL null_mg_vtbl = {
51 NULL, /* get */
52 NULL, /* set */
53 NULL, /* len */
54 NULL, /* clear */
55 NULL, /* free */
56#if MGf_COPY
57 NULL, /* copy */
58#endif /* MGf_COPY */
59#if MGf_DUP
60 NULL, /* dup */
61#endif /* MGf_DUP */
62#if MGf_LOCAL
63 NULL, /* local */
64#endif /* MGf_LOCAL */
65};
66
f253044f 67STATIC MAGIC *stash_in_mg (pTHX_ SV *sv, SV *obj) {
68 MAGIC *mg = sv_magicext(sv, obj, PERL_MAGIC_ext, &null_mg_vtbl, NULL, 0 );
69 mg->mg_flags |= MGf_REFCOUNTED;
70
71 return mg;
72}
73
74STATIC SV *get_stashed_in_mg(pTHX_ SV *sv) {
85ddc685 75 MAGIC *mg;
f253044f 76
77 if (SvTYPE(sv) >= SVt_PVMG) {
78 for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) {
79 if ((mg->mg_type == PERL_MAGIC_ext) && (mg->mg_virtual == &null_mg_vtbl))
80 break;
81 }
82 if (mg)
83 return mg->mg_obj;
84 }
85
86 return NULL;
87}
de2f2e97 88
2cd9d2ba 89
90
91
92
93
94
95
96
97/* The folloing data structures deal with type constraints */
98
99/* this is an enum of the various kinds of constraint checking an attribute can
100 * have.
101 *
102 * tc_cv is the fallback behavior (simply applying the
103 * ->_compiled_type_constraint to the value, but other more optimal checks are
104 * implemented too. */
105
106typedef enum {
107 tc_none = 0, /* no type checking */
108 tc_type, /* a builtin type to be checked by check_sv_type */
109 tc_stash, /* a stash for a class, implements TypeConstraint::Class by comparing SvSTASH and then invoking C<isa> if necessary */
110 tc_cv, /* applies a code reference to the value and checks for truth */
111 tc_fptr, /* apply a C function pointer */
5b264806 112 tc_enum /* TODO check that the value is in an allowed set of values (strings) */
2cd9d2ba 113} tc_kind;
114
115/* this is a enum of builtin type check. They are handled in a switch statement
116 * in check_sv_type */
de2f2e97 117typedef enum {
4c6fbfb1 118 Any, /* or item, or bool */
119 Undef,
120 Defined,
121 Str, /* or value */
122 Num,
123 Int,
124 GlobRef, /* SVt_PVGV */
125 ArrayRef, /* SVt_PVAV */
126 HashRef, /* SVt_PVHV */
127 CodeRef, /* SVt_PVCV */
128 Ref,
129 ScalarRef,
2cd9d2ba 130 FileHandle, /* TODO */
4c6fbfb1 131 RegexpRef,
132 Object,
2cd9d2ba 133 Role, /* TODO */
5b264806 134 ClassName
de2f2e97 135} TC;
136
2cd9d2ba 137/* auxillary pointer/int union used for constraint checking */
de2f2e97 138typedef union {
2cd9d2ba 139 TC type; /* the builtin type number for tc_type */
140 SV *sv; /* the cv for tc_cv, or the stash for tc_stash */
141 OP *op; /* TODO not used */
142 bool (*fptr)(pTHX_ SV *type_constraint, SV *sv); /* the function pointer for tc_fptr FIXME aux data? */
4c6fbfb1 143} TC_CHECK;
144
2cd9d2ba 145
146
147
148
149
150/* The folloing data structures deal with type default value generation */
151
152/* This is an enum for the various types of default value behaviors an
153 * attribute can have */
de2f2e97 154
155typedef enum {
2cd9d2ba 156 default_none = 0, /* no default value */
157 default_normal, /* code reference or scalar */
158 default_builder, /* builder method */
5b264806 159 default_type /* TODO enumerated type optimization (will call newHV, newAV etc to avoid calling a code ref for these simple cases) */
de2f2e97 160} default_kind;
161
2cd9d2ba 162typedef union {
163 SV *sv; /* The default value, or a code ref to generate one. If builder then this sv is applied as a method (stringified) */
164 U32 type; /* TODO for default_type, should probably be one of SVt_PVAV/SVt_PVHV */
165} DEFAULT;
166
167
168
169
170
171
172/* the ATTR struct contains all the meta data for a Moose::Meta::Attribute for
173 * a given meta instance
174 *
175 * flags determines the various behaviors
176 *
177 * This supports only one slot per attribute in the current implementation, but
178 * slot_sv could contain an array
179 *
180 * A list of XSUBs that rely on this attr struct are cross indexed in the cvs
181 * array, so that when the meta instance is destroyed the XSANY field will be
182 * cleared. This is done in delete_mi
183 * */
184
1ea12c91 185typedef struct {
2cd9d2ba 186 /* pointer to the MI this attribute is a part of the meta instance struct */
de2f2e97 187 struct mi *mi;
188
189 U32 flags; /* slot type, TC behavior, coerce, weaken, (no default | default, builder + lazy), auto_deref */
190
191 /* slot access fields */
2cd9d2ba 192 SV *slot_sv; /* value of the slot (currently always slot name) */
193 U32 slot_u32; /* for optimized access (precomputed hash, possibly something else) */
de2f2e97 194
f55aeea0 195 SV *init_arg_sv;
196 U32 init_arg_u32;
197
de2f2e97 198 DEFAULT def; /* cv, value or other, depending on flags */
199
2cd9d2ba 200 TC_CHECK tc_check; /* see TC_CHECK*/
201 SV *type_constraint; /* Moose::Meta::TypeConstraint object */
de2f2e97 202
2cd9d2ba 203 CV *initializer; /* TODO */
204 CV *trigger; /* TODO */
de2f2e97 205
2cd9d2ba 206 SV *meta_attr; /* the Moose::Meta::Attribute */
207 AV *cvs; /* an array of CVs which use this attr, see delete_mi */
de2f2e97 208} ATTR;
209
2cd9d2ba 210/* the flags integer is mapped as follows
211 * instance misc reading writing
de2f2e97 212 * 00000000 00000000 00000000 00000000
2cd9d2ba 213 * writing
7ce1a351 214 * ^ trigger
215 * ^ weak
45922f54 216 * ^ tc.sv is refcounted
de2f2e97 217 * ^^^ tc_kind
218 * ^ coerce
2cd9d2ba 219 *
220 * reading
de2f2e97 221 * ^^^ default_kind
222 * ^ lazy
45922f54 223 * ^ def.sv is refcounted
2cd9d2ba 224 *
225 * misc
226 * ^ attr is required TODO
227 *
228 * flags having to do with the instance layout (TODO, only hash supported for now)
de2f2e97 229 * ^^^^^^^ if 0 then nothing special (just hash)? FIXME TBD
230 */
231
232#define ATTR_INSTANCE_MASK 0xff000000
233#define ATTR_READING_MASK 0x0000ff00
234#define ATTR_WRITING_MASK 0x000000ff
235
236#define ATTR_MASK_TYPE 0x7
237
238#define ATTR_MASK_DEFAULT 0x700
fe0194bf 239#define ATTR_SHIFT_DEFAULT 8
de2f2e97 240
241#define ATTR_LAZY 0x800
fe0194bf 242#define ATTR_DEFREFCNT 0x1000
de2f2e97 243
7ce1a351 244#define ATTR_COERCE 0x8
245#define ATTR_TCREFCNT 0x10
246#define ATTR_WEAK 0x20
247#define ATTR_TRIGGER 0x40
de2f2e97 248
249#define ATTR_ISWEAK(attr) ( attr->flags & ATTR_WEAK )
250#define ATTR_ISLAZY(attr) ( attr->flags & ATTR_LAZY )
251#define ATTR_ISCOERCE(attr) ( attr->flags & ATTR_COERCE )
1ea12c91 252
de2f2e97 253#define ATTR_TYPE(f) ( attr->flags & 0x7 )
254#define ATTR_DEFAULT(f) ( ( attr->flags & ATTR_MASK_DEFAULT ) >> ATTR_SHIFT_DEFAULT )
1ea12c91 255
de2f2e97 256#define ATTR_DUMB_READER(attr) !ATTR_IS_LAZY(attr)
257#define ATTR_DUMB_WRITER(attr) ( ( attr->flags & ATTR_WRITING_MASK ) == 0 )
258#define ATTR_DUMB_INSTANCE(attr) ( ( attr->flags & ATTR_INSTANCE_MASK ) == 0 )
1ea12c91 259
de2f2e97 260
261
2cd9d2ba 262/* This unused (TODO) vtable will implement the meta instance protocol in terms
263 * of function pointers to allow the XS accessors to be used with custom meta
264 * instances in the future.
265 *
266 * We'll need to define a default instance of this vtable that uses call_sv,
267 * too. */
268
269/* FIXME define a vtable that does call_sv for fallback meta instance protocol */
de2f2e97 270typedef struct {
271 SV * (*get)(pTHX_ SV *self, ATTR *attr);
272 void (*set)(pTHX_ SV *self, ATTR *attr, SV *value);
273 bool * (*has)(pTHX_ SV *self, ATTR *attr);
274 SV * (*delete)(pTHX_ SV *self, ATTR *attr);
275} instance_vtbl;
276
2cd9d2ba 277/* TODO this table describes the instance layout of the object. Not yet
278 * implemented */
de2f2e97 279typedef enum {
280 hash = 0,
281
282 /* these are not yet implemented */
283 array,
284 fptr,
285 cv,
5b264806 286 judy
de2f2e97 287} instance_types;
288
2cd9d2ba 289
290/* this struct models the meta instance *and* meta attributes simultaneously.
291 * It is a cache of the meta attribute behaviors for a given class or subclass
292 * and can be parametrized on that level
293 *
294 *
295 * An object pointing to this structure is kept in a refcounted magic inside
296 * the meta instance it corresponds to. On C<invalidate_meta_instance> the meta
297 * instance is destroyed, causing the proxy object to be destroyed, deleting
298 * this structure, clearing the XSANY of all dependent attribute methods.
299 *
300 * The next invocation of an attribute method will eventually call get_attr,
301 * which will call C<get_meta_instance> on the metaclass (recreating it in the
302 * Class::MOP level), and cache a new MI struct inside it. Subsequent
303 * invocations of get_attr will then search the MI for an ATTR matching the
304 * meta_attribute of the attribute method */
de2f2e97 305typedef struct mi {
de2f2e97 306 HV *stash;
307
308 /* slot access method */
2cd9d2ba 309 instance_types type; /* TODO only hashes supported currently */
310 instance_vtbl *vtbl; /* TODO */
de2f2e97 311
312 /* attr descriptors */
313 I32 num_attrs;
314 ATTR *attrs;
315} MI;
316
317
4c6fbfb1 318
319
2cd9d2ba 320
321
322
323
324/* these functions implement type constraint checking */
325
326/* checks that the SV is a scalar ref */
4c6fbfb1 327STATIC bool check_is_scalar_ref(SV *sv) {
328 if( SvROK(sv) ) {
329 switch (SvTYPE(SvRV(sv))) {
330 case SVt_IV:
331 case SVt_NV:
332 case SVt_PV:
333 case SVt_NULL:
334 return 1;
335 break;
336 default:
337 return 0;
338 }
339 }
340 return 0;
341}
342
2cd9d2ba 343/* checks that the SV is a ref to a certain SvTYPE, where type is in the table
344 * above */
4c6fbfb1 345STATIC bool check_reftype(TC type, SV *sv) {
346 int svt;
347
348 if ( !SvROK(sv) )
349 return 0;
350
351 switch (type) {
352 case GlobRef:
353 svt = SVt_PVGV;
354 break;
355 case ArrayRef:
356 svt = SVt_PVAV;
357 break;
358 case HashRef:
359 svt = SVt_PVHV;
360 break;
361 case CodeRef:
362 svt = SVt_PVCV;
363 break;
85ddc685 364 default:
365 croak("not a reftype %d\n", type);
4c6fbfb1 366 }
367
160f9ca7 368 return SvTYPE(SvRV(sv)) == svt;
4c6fbfb1 369}
370
2cd9d2ba 371/* checks whether an SV is of a certain class
372 * SvSTASH is first compared by pointer for efficiency */
7ce1a351 373STATIC bool check_sv_class(pTHX_ HV *stash, SV *sv) {
4c6fbfb1 374 dSP;
375 bool ret;
7ce1a351 376 SV *rv;
4c6fbfb1 377
378 if (!sv)
379 return 0;
380 SvGETMAGIC(sv);
381 if (!SvROK(sv))
382 return 0;
7ce1a351 383 rv = (SV*)SvRV(sv);
384 if (!SvOBJECT(rv))
4c6fbfb1 385 return 0;
7ce1a351 386 if (SvSTASH(rv) == stash)
4c6fbfb1 387 return 1;
388
389 ENTER;
390 SAVETMPS;
391 PUSHMARK(SP);
392 XPUSHs(sv);
7ce1a351 393 XPUSHs(sv_2mortal(newSVpv(HvNAME_get(stash), 0)));
4c6fbfb1 394 PUTBACK;
395
396 call_method("isa", G_SCALAR);
397
398 SPAGAIN;
399 ret = SvTRUE(TOPs);
400
401 FREETMPS;
402 LEAVE;
403
404 return ret;
405}
406
2cd9d2ba 407/* checks whether SV of of a known simple type. Most of the non parametrized
408 * Moose core types are implemented here */
4c6fbfb1 409STATIC bool check_sv_type (TC type, SV *sv) {
410 if (!sv)
411 return 0;
160f9ca7 412
8a73f796 413 SvGETMAGIC(sv);
414
4c6fbfb1 415 switch (type) {
416 case Any:
417 return 1;
418 break;
419 case Undef:
420 return !SvOK(sv);
421 break;
422 case Defined:
423 return SvOK(sv);
424 break;
425 case Str:
426 return (SvOK(sv) && !SvROK(sv));
160f9ca7 427 case Num:
428#if (PERL_VERSION < 8) || (PERL_VERSION == 8 && PERL_SUBVERSION <5)
429 if (!SvPOK(sv) && !SvPOKp(sv))
430 return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
431 else
432#endif
433 return looks_like_number(sv);
434 break;
435 case Int:
436 if ( SvIOK(sv) ) {
437 return 1;
438 } else if ( SvPOK(sv) ) {
160f9ca7 439 STRLEN len;
440 char *pv = SvPV(sv, len);
4d0ab1b9 441 int flags = grok_number(pv, len, NULL);
442 return ( flags && !(flags & IS_NUMBER_NOT_INT) );
160f9ca7 443 }
444 return 0;
445 break;
4c6fbfb1 446 case Ref:
447 return SvROK(sv);
448 break;
449 case ScalarRef:
450 return check_is_scalar_ref(sv);
451 break;
452 case ArrayRef:
453 case HashRef:
454 case CodeRef:
455 case GlobRef:
456 return check_reftype(type, sv);
457 break;
3c63e75d 458 case RegexpRef:
4c6fbfb1 459 case Object:
8a73f796 460 /* not using sv_isobject to avoid repeated get magic */
461 if ( SvROK(sv) ) {
462 SV *rv = SvRV(sv);
463 if ( SvOBJECT(rv) ) {
464 char *name = HvNAME_get(SvSTASH(SvRV(sv)));
465 bool is_regexp = strEQ("Regexp", name);
466 return ( (type == RegexpRef) ^ !is_regexp );
467 }
9fad6c09 468 }
469 return 0;
4c6fbfb1 470 break;
160f9ca7 471 case ClassName:
7ce1a351 472 if ( SvOK(sv) && !SvROK(sv) ) {
160f9ca7 473 STRLEN len;
474 char *pv;
475 pv = SvPV(sv, len);
476 return ( gv_stashpvn(pv, len, 0) != NULL );
160f9ca7 477 }
7ce1a351 478 return 0;
479 break;
4c6fbfb1 480 case FileHandle:
481 croak("todo");
482 break;
483 default:
484 croak("todo");
485 }
486
487 return 0;
488}
489
2cd9d2ba 490/* invoke a CV on an SV and return SvTRUE of the result */
45922f54 491STATIC bool check_sv_cv (pTHX_ SV *cv, SV *sv) {
492 bool ret;
493 dSP;
494
495 ENTER;
496 SAVETMPS;
497 PUSHMARK(SP);
498 XPUSHs(sv);
499 PUTBACK;
500
501 call_sv(cv, G_SCALAR);
502
503 SPAGAIN;
504 ret = SvTRUE(POPs);
505
506 PUTBACK;
507 FREETMPS;
508 LEAVE;
509
510 return ret;
511}
512
2cd9d2ba 513/* checks the type constraint for an SV based on the type constraint kind */
160f9ca7 514STATIC bool check_type_constraint(pTHX_ tc_kind kind, TC_CHECK tc_check, SV *type_constraint, SV *sv) {
4c6fbfb1 515 switch (kind) {
516 case tc_none:
517 return 1;
518 break;
519 case tc_type:
520 return check_sv_type(tc_check.type, sv);
521 break;
522 case tc_stash:
7ce1a351 523 return check_sv_class(aTHX_ (HV *)tc_check.sv, sv);
4c6fbfb1 524 break;
4c6fbfb1 525 case tc_fptr:
526 return tc_check.fptr(aTHX_ type_constraint, sv);
527 break;
528 case tc_cv:
45922f54 529 return check_sv_cv(aTHX_ tc_check.sv, sv);
530 break;
85ddc685 531 case tc_enum:
532 croak("todo\n");
533 break;
4c6fbfb1 534 }
535
536 croak("todo");
537 return 0;
538}
539
540
2cd9d2ba 541/* end of type constraint checking functions */
542
543
544
545
546
547
548
549
550
551/* Initialize the ATTR structure using positional arguments from Perl space. */
552
160f9ca7 553STATIC void init_attr (MI *mi, ATTR *attr, AV *desc) {
554 U32 flags = 0;
f55aeea0 555 U32 slot_hash, init_arg_hash;
556 STRLEN slot_len, init_arg_len;
557 char *slot_pv, *init_arg_pv;
160f9ca7 558 I32 ix = av_len(desc);
559 SV **params = AvARRAY(desc);
560 SV *tc;
f55aeea0 561 SV *slot_sv;
562 SV *init_arg_sv;
de2f2e97 563
564 attr->mi = mi;
565
f55aeea0 566 if ( ix != 13 )
9fad6c09 567 croak("wrong number of args (%d != 14)", (int)ix + 1);
de2f2e97 568
160f9ca7 569 for ( ; ix >= 0; ix-- ) {
570 if ( !params[ix] || params[ix] == &PL_sv_undef )
571 croak("bad params");
572 }
573
2cd9d2ba 574
575
576 /* handle attribute slot array */
577
160f9ca7 578 if ( !SvROK(params[1]) || SvTYPE(SvRV(params[1])) != SVt_PVAV )
579 croak("slots is not an array");
de2f2e97 580
160f9ca7 581 if ( av_len((AV *)SvRV(params[1])) != 0 )
582 croak("Only unary slots are supported at the moment");
1ea12c91 583
160f9ca7 584 /* calculate a hash from the slot */
585 /* FIXME arrays etc should also be supported */
f55aeea0 586 slot_sv = *av_fetch((AV *)SvRV(params[1]), 0, 0);
587 slot_pv = SvPV(slot_sv, slot_len);
588 PERL_HASH(slot_hash, slot_pv, slot_len);
1ea12c91 589
de2f2e97 590
f55aeea0 591 init_arg_sv = params[13];
592 init_arg_pv = SvPV(init_arg_sv, init_arg_len);
593 PERL_HASH(init_arg_hash, init_arg_pv, init_arg_len);
2cd9d2ba 594
595
596 /* FIXME better organize these, positionals suck */
160f9ca7 597 if ( SvTRUE(params[2]) )
598 flags |= ATTR_WEAK;
599
600 if ( SvTRUE(params[3]) )
601 flags |= ATTR_COERCE;
de2f2e97 602
160f9ca7 603 if ( SvTRUE(params[4]) )
604 flags |= ATTR_LAZY;
de2f2e97 605
2cd9d2ba 606
607
608 /* type constraint data */
609
160f9ca7 610 tc = params[5];
de2f2e97 611
160f9ca7 612 if ( SvOK(tc) ) {
613 int tc_kind = SvIV(params[6]);
614 SV *data = params[7];
615
616 switch (tc_kind) {
160f9ca7 617 case tc_type:
618 attr->tc_check.type = SvIV(data);
619 break;
7ce1a351 620 case tc_stash:
621 flags |= ATTR_TCREFCNT;
622 attr->tc_check.sv = (SV *)gv_stashsv(data, 0);
623 break;
160f9ca7 624 case tc_cv:
7ce1a351 625 flags |= ATTR_TCREFCNT;
626 attr->tc_check.sv = SvRV(data);
627 if ( SvTYPE(attr->tc_check.sv) != SVt_PVCV )
160f9ca7 628 croak("compiled type constraint is not a coderef");
629 break;
630 default:
631 croak("todo");
632 }
633
634 flags |= tc_kind;
635 }
636
2cd9d2ba 637
638
639 /* default/builder data */
fe0194bf 640
641 if ( SvTRUE(params[10]) ) { /* has default */
642 SV *sv = params[11];
643
644 if ( SvROK(sv) ) {
645 attr->def.sv = SvRV(sv);
646 if ( SvTYPE(attr->def.sv) != SVt_PVCV )
647 croak("compiled type constraint is not a coderef");
648 } else {
649 attr->def.sv = newSVsv(sv);
650 sv_2mortal(attr->def.sv); /* in case of error soon, we refcnt inc it later after we're done checking params */
651 }
652
653 flags |= ( ATTR_DEFREFCNT | ( default_normal << ATTR_SHIFT_DEFAULT ) );
654 } else if ( SvOK(params[12]) ) { /* builder */
655 attr->def.sv = newSVsv(params[12]);
656 flags |= ( ATTR_DEFREFCNT | ( default_builder << ATTR_SHIFT_DEFAULT ) );
657 }
658
2cd9d2ba 659
160f9ca7 660
661 attr->trigger = SvROK(params[6]) ? (CV *)SvRV(params[6]) : NULL;
662 if ( attr->trigger && SvTYPE(attr->trigger) != SVt_PVCV )
663 croak("trigger is not a coderef");
664
665 attr->initializer = SvROK(params[7]) ? (CV *)SvRV(params[7]) : NULL;
666 if ( attr->initializer && SvTYPE(attr->initializer) != SVt_PVCV )
667 croak("initializer is not a coderef");
668
2cd9d2ba 669
670
671 /* now that we're done preparing/checking args and shit, so we finalize the
672 * attr, increasing refcounts for any referenced data, and creating the CV
673 * array */
674
675 attr->flags = flags;
676
677 /* copy the outer ref SV */
160f9ca7 678 attr->meta_attr = newSVsv(params[0]);
679 attr->type_constraint = newSVsv(tc);
2cd9d2ba 680
681 /* increase the refcount for auxillary structures */
da6328c3 682 SvREFCNT_inc_simple_void(attr->trigger);
683 SvREFCNT_inc_simple_void(attr->initializer);
684 if ( flags & ATTR_TCREFCNT ) SvREFCNT_inc_simple_void_NN(attr->tc_check.sv);
685 if ( flags & ATTR_DEFREFCNT ) SvREFCNT_inc_simple_void_NN(attr->def.sv);
160f9ca7 686
f55aeea0 687 attr->slot_sv = newSVpvn_share(slot_pv, slot_len, slot_hash);
688 attr->slot_u32 = slot_hash;
689
690 attr->init_arg_sv = newSVpvn_share(init_arg_pv, init_arg_len, init_arg_hash);
691 attr->init_arg_u32 = init_arg_hash;
160f9ca7 692
de2f2e97 693 /* cross refs to CVs which use this struct */
694 attr->cvs = newAV();
695}
696
2cd9d2ba 697STATIC SV *new_mi (pTHX_ HV *stash, AV *attrs) {
698 HV *mi_stash = gv_stashpvs("Moose::XS::Meta::Instance",0);
699 SV *sv_ptr = newSViv(0);
700 SV *obj = sv_2mortal(sv_bless(newRV_noinc(sv_ptr), mi_stash));
de2f2e97 701 MI *mi;
2cd9d2ba 702 const I32 num_attrs = av_len(attrs) + 1;
de2f2e97 703
687453c6 704 Newxz(mi, 1, MI);
2cd9d2ba 705
706 /* set the pointer now, if we have any initialization errors it'll get
707 * cleaned up because obj is mortal */
708 sv_setiv(sv_ptr, PTR2IV(mi));
709
687453c6 710 Newxz(mi->attrs, num_attrs, ATTR);
2cd9d2ba 711
da6328c3 712 SvREFCNT_inc_simple_void_NN(stash);
de2f2e97 713 mi->stash = stash;
714
de2f2e97 715 mi->type = 0; /* nothing else implemented yet */
716
717 /* initialize attributes */
2cd9d2ba 718 for ( ; mi->num_attrs < num_attrs; mi->num_attrs++ ) {
719 SV **desc = av_fetch(attrs, mi->num_attrs, 0);
de2f2e97 720
160f9ca7 721 if ( !desc || !*desc || !SvROK(*desc) || !(SvTYPE(SvRV(*desc)) == SVt_PVAV) ) {
de2f2e97 722 croak("Attribute descriptor has to be a hash reference");
f253044f 723 }
de2f2e97 724
2cd9d2ba 725 init_attr(mi, &mi->attrs[mi->num_attrs], (AV *)SvRV(*desc));
de2f2e97 726 }
727
2cd9d2ba 728 return obj;
729}
730
731STATIC void delete_attr (pTHX_ ATTR *attr) {
732 I32 i;
733 SV **cvs = AvARRAY(attr->cvs);
734
735 /* remove the pointers to this ATTR struct from all the the dependent CVs */
736 for ( i = av_len(attr->cvs); i >= 0; i-- ) {
737 CV *cv = (CV *)cvs[i];
738 XSANY.any_i32 = 0;
739 }
740
741 SvREFCNT_dec(attr->cvs);
742 SvREFCNT_dec(attr->slot_sv);
743 SvREFCNT_dec(attr->type_constraint);
744 if ( attr->flags & ATTR_TCREFCNT ) SvREFCNT_dec(attr->tc_check.sv);
745 if ( attr->flags & ATTR_DEFREFCNT ) SvREFCNT_dec(attr->def.sv);
746 SvREFCNT_dec(attr->initializer);
747 SvREFCNT_dec(attr->trigger);
748 SvREFCNT_dec(attr->meta_attr);
de2f2e97 749}
750
7ce1a351 751STATIC void delete_mi (pTHX_ MI *mi) {
2cd9d2ba 752 SvREFCNT_dec(mi->stash);
7ce1a351 753
2cd9d2ba 754 while ( mi->num_attrs--) {
755 ATTR *attr = &mi->attrs[mi->num_attrs];
756 delete_attr(aTHX_ attr);
7ce1a351 757 }
758
2cd9d2ba 759 if ( mi->attrs ) Safefree(mi->attrs);
7ce1a351 760 Safefree(mi);
761}
762
de2f2e97 763
2cd9d2ba 764
765
766/* these functions call Perl-space for MOP methods, helpers etc */
767
768
769/* wow, so much code for the equivalent of
770 * $attr->associated_class->get_meta_instance */
f253044f 771STATIC SV *attr_to_meta_instance(pTHX_ SV *meta_attr) {
772 dSP;
f253044f 773 SV *mi;
774
775 if ( !meta_attr )
776 croak("No attr found in magic!");
777
778 ENTER;
779 SAVETMPS;
780 PUSHMARK(SP);
2cd9d2ba 781
f253044f 782 XPUSHs(meta_attr);
2cd9d2ba 783
f253044f 784 PUTBACK;
4ca2dd5f 785 call_pv("Moose::XS::attr_to_meta_instance", G_SCALAR);
f253044f 786
787 SPAGAIN;
788 mi = POPs;
789
da6328c3 790 SvREFCNT_inc_simple_void(mi);
f253044f 791
792 PUTBACK;
793 FREETMPS;
794 LEAVE;
795
fe0194bf 796 return sv_2mortal(mi);
f253044f 797}
798
2cd9d2ba 799/* gets a class and an array of attr parameters */
f253044f 800STATIC SV *perl_mi_to_c_mi(pTHX_ SV *perl_mi) {
801 dSP;
802 I32 count;
2cd9d2ba 803 SV *mi;
f253044f 804 SV *class;
805 SV *attrs;
806 HV *stash;
807
808 ENTER;
809 SAVETMPS;
810 PUSHMARK(SP);
2cd9d2ba 811
f253044f 812 XPUSHs(perl_mi);
2cd9d2ba 813
f253044f 814 PUTBACK;
815 count = call_pv("Moose::XS::meta_instance_to_attr_descs", G_ARRAY);
816
817 if ( count != 2 )
9fad6c09 818 croak("meta_instance_to_attr_descs borked (%d args returned, expecting 2)", (int)count);
f253044f 819
820 SPAGAIN;
821 attrs = POPs;
822 class = POPs;
823
824 PUTBACK;
825
826 stash = gv_stashsv(class, 0);
827
828 mi = new_mi(aTHX_ stash, (AV *)SvRV(attrs));
da6328c3 829 SvREFCNT_inc_simple_void_NN(mi);
f253044f 830
831 FREETMPS;
832 LEAVE;
833
2cd9d2ba 834 return sv_2mortal(mi);
f253044f 835}
836
2cd9d2ba 837
838
839/* locate an ATTR for a MOP level attribute inside an MI */
840STATIC ATTR *mi_find_attr(SV *mi_obj, SV *meta_attr) {
f253044f 841 I32 ix;
2cd9d2ba 842 MI *mi = INT2PTR(MI *, SvIV(SvRV(mi_obj)));
f253044f 843
035fd0c4 844 for ( ix = 0; ix < mi->num_attrs; ix++ ) {
f253044f 845 if ( SvRV(mi->attrs[ix].meta_attr) == SvRV(meta_attr) ) {
846 return &mi->attrs[ix];
de2f2e97 847 }
de2f2e97 848 }
849
9fad6c09 850 croak("Attr %x not found in meta instance of %s", (unsigned int)PTR2UV(SvRV(meta_attr)) /* SvPV_force_nomg(sv_2mortal(newSVsv(meta_attr))) */, HvNAME_get(mi->stash) );
de2f2e97 851 return NULL;
852}
853
2cd9d2ba 854/* returns the ATTR for a CV:
855 *
856 * 1. get the Moose::Meta::Attribute using get_stashed_in_mg from the CV itself
857 * 2. get the meta instance by calling $attr->associated_class->get_meta_instance
858 * 3. get the MI by using get_stashed_in_mg from the meta instance, creating it if necessary
859 * 4. search for the appropriate ATTR in the MI using mi_find_attr
860 */
de2f2e97 861STATIC ATTR *get_attr(pTHX_ CV *cv) {
f253044f 862 SV *meta_attr = get_stashed_in_mg(aTHX_ (SV *)cv);
863 SV *perl_mi = attr_to_meta_instance(aTHX_ meta_attr);
2cd9d2ba 864 SV *mi_obj = get_stashed_in_mg(aTHX_ SvRV(perl_mi));
de2f2e97 865
2cd9d2ba 866 if (!mi_obj) {
867 mi_obj = perl_mi_to_c_mi(aTHX_ perl_mi);
868 stash_in_mg(aTHX_ SvRV(perl_mi), mi_obj);
f253044f 869 }
870
2cd9d2ba 871 return mi_find_attr(mi_obj, meta_attr);
1ea12c91 872}
873
2cd9d2ba 874/* Cache a pointer to the appropriate ATTR in the XSANY of the CV, using
875 * get_attr */
de2f2e97 876STATIC ATTR *define_attr (pTHX_ CV *cv) {
877 ATTR *attr = get_attr(aTHX_ cv);
878 assert(attr);
879
880 XSANY.any_i32 = PTR2IV(attr);
f253044f 881
da6328c3 882 SvREFCNT_inc_simple_void(cv);
f253044f 883 av_push( attr->cvs, (SV *)cv );
de2f2e97 884
885 return attr;
886}
887
2cd9d2ba 888
889
890
891
892
893
de2f2e97 894STATIC void weaken(pTHX_ SV *sv) {
1ea12c91 895#ifdef SvWEAKREF
de2f2e97 896 sv_rvweaken(sv); /* FIXME i think this might warn when weakening an already weak ref */
1ea12c91 897#else
898 croak("weak references are not implemented in this release of perl");
899#endif
900}
901
902
2cd9d2ba 903
904
905
906
8ab8cdae 907/* meta instance protocol
908 *
909 * The slot functions don't change the refcount or copy (aliasing semantics)
910 *
911 * create_instance returns a new mortal */
1ea12c91 912
9f3805f7 913STATIC SV *get_slot_lvalue(pTHX_ SV *self, ATTR *attr) {
1ea12c91 914 HE *he;
915
916 assert(self);
917 assert(SvROK(self));
918 assert(SvTYPE(SvRV(self)) == SVt_PVHV);
919
de2f2e97 920 assert( ATTR_DUMB_INSTANCE(attr) );
921
922 if ((he = hv_fetch_ent((HV *)SvRV(self), attr->slot_sv, 0, attr->slot_u32)))
1ea12c91 923 return HeVAL(he);
924 else
925 return NULL;
926}
927
9f3805f7 928STATIC bool set_slot_value(pTHX_ SV *self, ATTR *attr, SV *value) {
1ea12c91 929 HE *he;
930
931 assert(self);
932 assert(SvROK(self));
933 assert(SvTYPE(SvRV(self)) == SVt_PVHV);
934
de2f2e97 935 assert( ATTR_DUMB_INSTANCE(attr) );
936
9f3805f7 937 he = hv_store_ent((HV*)SvRV(self), attr->slot_sv, value, attr->slot_u32);
1ea12c91 938
9f3805f7 939 return he != NULL;
1ea12c91 940}
941
de2f2e97 942STATIC bool has_slot_value(pTHX_ SV *self, ATTR *attr) {
1ea12c91 943 assert(self);
944 assert(SvROK(self));
945 assert(SvTYPE(SvRV(self)) == SVt_PVHV);
946
de2f2e97 947 assert( ATTR_DUMB_INSTANCE(attr) );
948
949 return hv_exists_ent((HV *)SvRV(self), attr->slot_sv, attr->slot_u32);
950}
951
952STATIC SV *deinitialize_slot(pTHX_ SV *self, ATTR *attr) {
953 assert(self);
954 assert(SvROK(self));
955 assert(SvTYPE(SvRV(self)) == SVt_PVHV);
956
957 assert( ATTR_DUMB_INSTANCE(attr) );
958
959 return hv_delete_ent((HV *)SvRV(self), attr->slot_sv, 0, attr->slot_u32);
1ea12c91 960}
961
af0842cb 962STATIC SV *create_instance(pTHX_ MI *mi) {
e315cce6 963 return sv_bless(sv_2mortal(newRV_noinc((SV *)newHV())), mi->stash);
af0842cb 964}
fe0194bf 965
fe0194bf 966
fe0194bf 967
fe0194bf 968
2cd9d2ba 969/* Shared functionality for readers/writers/accessors, this roughly corresponds
970 * to the methods of Moose::Meta::Attribute on the instance
8ab8cdae 971 * (get_value/set_value, default value handling, etc)
972 *
973 * These functions return mortal copiess and save copies (handling refcounting). */
fe0194bf 974
2cd9d2ba 975STATIC void attr_set_value(pTHX_ SV *self, ATTR *attr, SV *value);
fe0194bf 976
2cd9d2ba 977STATIC SV *call_builder (pTHX_ SV *self, ATTR *attr) {
978 SV *sv;
979 dSP;
fe0194bf 980
2cd9d2ba 981 ENTER;
982 SAVETMPS;
983 PUSHMARK(SP);
984
985 XPUSHs(self);
986
987 /* we invoke the builder as a stringified method. This will not work for
988 * $obj->$coderef etc, for that we need to use 'default' */
989 PUTBACK;
990 call_method(SvPV_nolen(attr->def.sv), G_SCALAR);
2cd9d2ba 991
992 /* the value is a mortal with a refcount of 1, so we need to keep it around */
4ca2dd5f 993 SPAGAIN;
2cd9d2ba 994 sv = POPs;
da6328c3 995 SvREFCNT_inc_simple_void(sv);
2cd9d2ba 996
997 PUTBACK;
998 FREETMPS;
999 LEAVE;
1000
1001 return sv_2mortal(sv);
1002}
1003
1004
2cd9d2ba 1005STATIC SV *get_default(pTHX_ SV *self, ATTR *attr) {
1006 switch ( ATTR_DEFAULT(attr) ) {
1007 case default_none:
1008 return NULL;
1009 break;
1010 case default_builder:
1011 return call_builder(aTHX_ self, attr);
fe0194bf 1012 break;
1013 case default_normal:
1014 if ( SvROK(attr->def.sv) ) {
1015 printf("CV default\n");
2cd9d2ba 1016 croak("todo");
fe0194bf 1017 } else {
1018 printf("simple value\n");
9f3805f7 1019 return sv_mortalcopy(attr->def.sv); /* will be copied by set for lazy, and by reader for both cases */
fe0194bf 1020 }
1021 break;
fe0194bf 1022 case default_type:
1023 croak("todo");
1024 break;
1025 }
1026
1027 return NULL;
1028}
1029
2cd9d2ba 1030/* $attr->get_value($self), will vivify lazy values if needed
1031 * returns an alias to the sv that is copied in the reader/writer/accessor code
1032 * */
1033STATIC SV *attr_get_value(pTHX_ SV *self, ATTR *attr) {
9f3805f7 1034 SV *value = get_slot_lvalue(aTHX_ self, attr);
fe0194bf 1035
1036 if ( value ) {
9f3805f7 1037 return sv_mortalcopy(value);
fe0194bf 1038 } else if ( ATTR_ISLAZY(attr) ) {
1039 value = get_default(aTHX_ self, attr);
2cd9d2ba 1040 attr_set_value(aTHX_ self, attr, value);
fe0194bf 1041 return value;
1042 }
1043
1044 return NULL;
160f9ca7 1045}
1046
2cd9d2ba 1047/* $attr->set_value($self) */
1048STATIC void attr_set_value(pTHX_ SV *self, ATTR *attr, SV *value) {
9f3805f7 1049 SV *copy;
1050
1051 if ( !value ) {
1052 /* FIXME croak if required ? */
1053 return;
1054 }
1055
fe0194bf 1056 if ( ATTR_TYPE(attr) ) {
1057 if ( !check_type_constraint(aTHX_ ATTR_TYPE(attr), attr->tc_check, attr->type_constraint, value) )
160f9ca7 1058 croak("Bad param");
1059 }
1060
9f3805f7 1061 copy = newSVsv(value);
1062
1063 if ( ATTR_ISWEAK(attr) && SvROK(copy) )
1064 weaken(aTHX_ copy);
1065
1066 if ( !set_slot_value(aTHX_ self, attr, copy) ) {
1067 SvREFCNT_dec(copy);
1068 croak("Hash store failed.");
1069 }
160f9ca7 1070}
1ea12c91 1071
2cd9d2ba 1072
1073
1074
1075
1076
1077
1078/* Perl-space level functionality
1079 *
1080 * These subs are installed by new_sub's various aliases as the bodies of the
1081 * new XSUBs
1082 * */
1083
1084
1085
1086/* This macro is used in the XS subs to set up the 'attr' variable.
1087 *
1088 * if XSANY is NULL then define_attr is called on the CV, to set the pointer
1089 * to the ATTR struct.
1090 * */
1091#define dATTR ATTR *attr = (XSANY.any_i32 ? INT2PTR(ATTR *, (XSANY.any_i32)) : define_attr(aTHX_ cv))
1092
1ea12c91 1093
24a7a8c5 1094STATIC XS(reader);
1095STATIC XS(reader)
1ea12c91 1096{
1097#ifdef dVAR
1098 dVAR;
1099#endif
1100 dXSARGS;
de2f2e97 1101 dATTR;
1ea12c91 1102 SV *value;
1103
1104 if (items != 1)
1105 Perl_croak(aTHX_ "Usage: %s(%s)", GvNAME(CvGV(cv)), "self");
1106
1107 SP -= items;
1108
2cd9d2ba 1109 value = attr_get_value(aTHX_ ST(0), attr);
1ea12c91 1110
1111 if (value) {
9f3805f7 1112 ST(0) = value;
1ea12c91 1113 XSRETURN(1);
1114 } else {
1115 XSRETURN_UNDEF;
1116 }
1117}
1118
24a7a8c5 1119STATIC XS(writer);
1120STATIC XS(writer)
1ea12c91 1121{
1122#ifdef dVAR
1123 dVAR;
1124#endif
1125 dXSARGS;
de2f2e97 1126 dATTR;
1ea12c91 1127
1128 if (items != 2)
1129 Perl_croak(aTHX_ "Usage: %s(%s, %s)", GvNAME(CvGV(cv)), "self", "value");
1130
1131 SP -= items;
1132
2cd9d2ba 1133 attr_set_value(aTHX_ ST(0), attr, ST(1));
1ea12c91 1134
1135 ST(0) = ST(1); /* return value */
1136 XSRETURN(1);
1137}
1138
de2f2e97 1139STATIC XS(accessor);
1140STATIC XS(accessor)
1ea12c91 1141{
1142#ifdef dVAR
1143 dVAR;
1144#endif
1145 dXSARGS;
de2f2e97 1146 dATTR;
1ea12c91 1147
1148 if (items < 1)
1149 Perl_croak(aTHX_ "Usage: %s(%s, [ %s ])", GvNAME(CvGV(cv)), "self", "value");
1150
1151 SP -= items;
1152
1153 if (items > 1) {
2cd9d2ba 1154 attr_set_value(aTHX_ ST(0), attr, ST(1));
1ea12c91 1155 ST(0) = ST(1); /* return value */
1156 } else {
2cd9d2ba 1157 SV *value = attr_get_value(aTHX_ ST(0), attr);
1ea12c91 1158 if ( value ) {
1159 ST(0) = value;
1160 } else {
1161 XSRETURN_UNDEF;
1162 }
1163 }
1164
1165 XSRETURN(1);
1166}
1167
1168STATIC XS(predicate);
1169STATIC XS(predicate)
1170{
1171#ifdef dVAR
1172 dVAR;
1173#endif
1174 dXSARGS;
de2f2e97 1175 dATTR;
1ea12c91 1176
1177 if (items != 1)
1178 Perl_croak(aTHX_ "Usage: %s(%s)", GvNAME(CvGV(cv)), "self");
1179
1180 SP -= items;
1181
de2f2e97 1182 if ( has_slot_value(aTHX_ ST(0), attr) )
1ea12c91 1183 XSRETURN_YES;
1184 else
1185 XSRETURN_NO;
1186}
1187
1188enum xs_body {
24a7a8c5 1189 xs_body_reader = 0,
1190 xs_body_writer,
de2f2e97 1191 xs_body_accessor,
1ea12c91 1192 xs_body_predicate,
1193 max_xs_body
1194};
1195
1196STATIC XSPROTO ((*xs_bodies[])) = {
24a7a8c5 1197 reader,
1198 writer,
de2f2e97 1199 accessor,
1ea12c91 1200 predicate,
1201};
1202
1203MODULE = Moose PACKAGE = Moose::XS
4e783f63 1204PROTOTYPES: ENABLE
1ea12c91 1205
1206CV *
de2f2e97 1207new_sub(attr, name)
1ea12c91 1208 INPUT:
de2f2e97 1209 SV *attr;
1210 SV *name;
4e783f63 1211 PROTOTYPE: $;$
1ea12c91 1212 ALIAS:
24a7a8c5 1213 new_reader = xs_body_reader
1214 new_writer = xs_body_writer
de2f2e97 1215 new_accessor = xs_body_accessor
1216 new_predicate = xs_body_predicate
1ea12c91 1217 PREINIT:
1218 CV * cv;
1219 CODE:
1220 if ( ix >= max_xs_body )
1221 croak("Unknown Moose::XS body type");
1222
de2f2e97 1223 if ( !sv_isobject(attr) )
1224 croak("'attr' must be a Moose::Meta::Attribute");
1225
1226 cv = newXS(SvOK(name) ? SvPV_nolen(name) : NULL, xs_bodies[ix], __FILE__);
1ea12c91 1227
1228 if (cv == NULL)
1229 croak("Oi vey!");
1230
de2f2e97 1231 /* associate CV with meta attr */
f253044f 1232 stash_in_mg(aTHX_ (SV *)cv, attr);
de2f2e97 1233
1234 /* this will be set on first call */
1235 XSANY.any_i32 = 0;
1ea12c91 1236
1237 RETVAL = cv;
1238 OUTPUT:
1239 RETVAL
1240
1241
f253044f 1242MODULE = Moose PACKAGE = Moose::XS::Meta::Instance
4e783f63 1243PROTOTYPES: DISABLE
f253044f 1244
1245void
1246DESTROY(self)
1247 INPUT:
1248 SV *self;
1249 PREINIT:
1250 MI *mi = INT2PTR(MI *, SvIV(SvRV(self)));
1251 CODE:
2cd9d2ba 1252 if ( mi )
1253 delete_mi(aTHX_ mi);
1254
3c63e75d 1255
1256MODULE = Moose PACKAGE = Moose::XS::TypeConstraints
1257PROTOTYPES: ENABLE
1258
1259bool
1260_check_type(sv)
1261 INPUT:
1262 SV* sv
1263 ALIAS:
1264 Any = Any
1265 Item = Any
1266 Bool = Any
1267 Undef = Undef
1268 Defined = Defined
1269 Str = Str
1270 Value = Str
1271 Num = Num
1272 Int = Int
1273 GlobRef = GlobRef
1274 ArrayRef = ArrayRef
1275 HashRef = HashRef
1276 CodeRef = CodeRef
1277 Ref = Ref
1278 ScalarRef = ScalarRef
1279 FileHandle = FileHandle
1280 RegexpRef = RegexpRef
1281 Object = Object
1282 Role = Role
1283 ClassName = ClassName
1284 CODE:
1285 RETVAL = check_sv_type(ix, sv);
1286 OUTPUT:
1287 RETVAL
1288
1289bool
1290ObjectOfType(sv, class)
1291 INPUT:
1292 SV* sv
1293 SV* class
1294 PREINIT:
1295 HV *stash = gv_stashsv(class, 0);
1296 CODE:
1297 RETVAL = check_sv_class(aTHX_ stash, sv);
1298 OUTPUT:
1299 RETVAL