1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/* xsutils.c
*
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
* by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
/*
* "Perilous to us all are the devices of an art deeper than we possess
* ourselves." --Gandalf
*/
#include "EXTERN.h"
#define PERL_IN_XSUTILS_C
#include "perl.h"
/*
* Contributed by Spider Boardman (spider.boardman@orb.nashua.nh.us).
*/
/* package attributes; */
PERL_XS_EXPORT_C void XS_attributes__warn_reserved(pTHX_ CV *cv);
PERL_XS_EXPORT_C void XS_attributes_reftype(pTHX_ CV *cv);
PERL_XS_EXPORT_C void XS_attributes__modify_attrs(pTHX_ CV *cv);
PERL_XS_EXPORT_C void XS_attributes__guess_stash(pTHX_ CV *cv);
PERL_XS_EXPORT_C void XS_attributes__fetch_attrs(pTHX_ CV *cv);
PERL_XS_EXPORT_C void XS_attributes_bootstrap(pTHX_ CV *cv);
/*
* Note that only ${pkg}::bootstrap definitions should go here.
* This helps keep down the start-up time, which is especially
* relevant for users who don't invoke any features which are
* (partially) implemented here.
*
* The various bootstrap definitions can take care of doing
* package-specific newXS() calls. Since the layout of the
* bundled *.pm files is in a version-specific directory,
* version checks in these bootstrap calls are optional.
*/
void
Perl_boot_core_xsutils(pTHX)
{
const char file[] = __FILE__;
newXS("attributes::bootstrap", XS_attributes_bootstrap, (char *)file);
}
#include "XSUB.h"
static int
modify_SV_attributes(pTHX_ SV *sv, SV **retlist, SV **attrlist, int numattrs)
{
SV *attr;
int nret;
for (nret = 0 ; numattrs && (attr = *attrlist++); numattrs--) {
STRLEN len;
const char *name = SvPV_const(attr, len);
const bool negated = (*name == '-');
if (negated) {
name++;
len--;
}
switch (SvTYPE(sv)) {
case SVt_PVCV:
switch ((int)len) {
#ifdef CVf_ASSERTION
case 9:
if (memEQ(name, "assertion", 9)) {
if (negated)
CvFLAGS((CV*)sv) &= ~CVf_ASSERTION;
else
CvFLAGS((CV*)sv) |= CVf_ASSERTION;
continue;
}
break;
#endif
case 6:
switch (name[3]) {
case 'l':
#ifdef CVf_LVALUE
if (memEQ(name, "lvalue", 6)) {
if (negated)
CvFLAGS((CV*)sv) &= ~CVf_LVALUE;
else
CvFLAGS((CV*)sv) |= CVf_LVALUE;
continue;
}
break;
case 'k':
#endif /* defined CVf_LVALUE */
if (memEQ(name, "locked", 6)) {
if (negated)
CvFLAGS((CV*)sv) &= ~CVf_LOCKED;
else
CvFLAGS((CV*)sv) |= CVf_LOCKED;
continue;
}
break;
case 'h':
if (memEQ(name, "method", 6)) {
if (negated)
CvFLAGS((CV*)sv) &= ~CVf_METHOD;
else
CvFLAGS((CV*)sv) |= CVf_METHOD;
continue;
}
break;
}
break;
}
break;
default:
switch ((int)len) {
case 6:
switch (name[5]) {
case 'd':
if (memEQ(name, "share", 5)) {
if (negated)
Perl_croak(aTHX_ "A variable may not be unshared");
SvSHARE(sv);
continue;
}
break;
case 'e':
if (memEQ(name, "uniqu", 5)) {
if (SvTYPE(sv) == SVt_PVGV) {
if (negated) {
GvUNIQUE_off(sv);
} else {
GvUNIQUE_on(sv);
}
}
/* Hope this came from toke.c if not a GV. */
continue;
}
}
}
break;
}
/* anything recognized had a 'continue' above */
*retlist++ = attr;
nret++;
}
return nret;
}
/* package attributes; */
XS(XS_attributes_bootstrap)
{
dXSARGS;
const char file[] = __FILE__;
if( items > 1 )
Perl_croak(aTHX_ "Usage: attributes::bootstrap $module");
newXSproto("attributes::_warn_reserved", XS_attributes__warn_reserved, (char *)file, "");
newXS("attributes::_modify_attrs", XS_attributes__modify_attrs, (char *)file);
newXSproto("attributes::_guess_stash", XS_attributes__guess_stash, (char *)file, "$");
newXSproto("attributes::_fetch_attrs", XS_attributes__fetch_attrs, (char *)file, "$");
newXSproto("attributes::reftype", XS_attributes_reftype, (char *)file, "$");
XSRETURN(0);
}
XS(XS_attributes__modify_attrs)
{
dXSARGS;
SV *rv, *sv;
if (items < 1) {
usage:
Perl_croak(aTHX_
"Usage: attributes::_modify_attrs $reference, @attributes");
}
rv = ST(0);
if (!(SvOK(rv) && SvROK(rv)))
goto usage;
sv = SvRV(rv);
if (items > 1)
XSRETURN(modify_SV_attributes(aTHX_ sv, &ST(0), &ST(1), items-1));
XSRETURN(0);
}
XS(XS_attributes__fetch_attrs)
{
dXSARGS;
SV *rv, *sv;
cv_flags_t cvflags;
if (items != 1) {
usage:
Perl_croak(aTHX_
"Usage: attributes::_fetch_attrs $reference");
}
rv = ST(0);
SP -= items;
if (!(SvOK(rv) && SvROK(rv)))
goto usage;
sv = SvRV(rv);
switch (SvTYPE(sv)) {
case SVt_PVCV:
cvflags = CvFLAGS((CV*)sv);
if (cvflags & CVf_LOCKED)
XPUSHs(sv_2mortal(newSVpvn("locked", 6)));
#ifdef CVf_LVALUE
if (cvflags & CVf_LVALUE)
XPUSHs(sv_2mortal(newSVpvn("lvalue", 6)));
#endif
if (cvflags & CVf_METHOD)
XPUSHs(sv_2mortal(newSVpvn("method", 6)));
if (GvUNIQUE(CvGV((CV*)sv)))
XPUSHs(sv_2mortal(newSVpvn("unique", 6)));
break;
case SVt_PVGV:
if (GvUNIQUE(sv))
XPUSHs(sv_2mortal(newSVpvn("unique", 6)));
break;
default:
break;
}
PUTBACK;
}
XS(XS_attributes__guess_stash)
{
dXSARGS;
SV *rv, *sv;
dXSTARG;
if (items != 1) {
usage:
Perl_croak(aTHX_
"Usage: attributes::_guess_stash $reference");
}
rv = ST(0);
ST(0) = TARG;
if (!(SvOK(rv) && SvROK(rv)))
goto usage;
sv = SvRV(rv);
if (SvOBJECT(sv))
sv_setpv(TARG, HvNAME_get(SvSTASH(sv)));
#if 0 /* this was probably a bad idea */
else if (SvPADMY(sv))
sv_setsv(TARG, &PL_sv_no); /* unblessed lexical */
#endif
else {
const HV *stash = Nullhv;
switch (SvTYPE(sv)) {
case SVt_PVCV:
if (CvGV(sv) && isGV(CvGV(sv)) && GvSTASH(CvGV(sv)))
stash = GvSTASH(CvGV(sv));
else if (/* !CvANON(sv) && */ CvSTASH(sv))
stash = CvSTASH(sv);
break;
case SVt_PVMG:
if (!(SvFAKE(sv) && SvTIED_mg(sv, PERL_MAGIC_glob)))
break;
/*FALLTHROUGH*/
case SVt_PVGV:
if (GvGP(sv) && GvESTASH((GV*)sv))
stash = GvESTASH((GV*)sv);
break;
default:
break;
}
if (stash)
sv_setpv(TARG, HvNAME_get(stash));
}
SvSETMAGIC(TARG);
XSRETURN(1);
}
XS(XS_attributes_reftype)
{
dXSARGS;
SV *rv, *sv;
dXSTARG;
if (items != 1) {
usage:
Perl_croak(aTHX_
"Usage: attributes::reftype $reference");
}
rv = ST(0);
ST(0) = TARG;
if (SvGMAGICAL(rv))
mg_get(rv);
if (!(SvOK(rv) && SvROK(rv)))
goto usage;
sv = SvRV(rv);
sv_setpv(TARG, sv_reftype(sv, 0));
SvSETMAGIC(TARG);
XSRETURN(1);
}
XS(XS_attributes__warn_reserved)
{
dXSARGS;
if (items != 0) {
Perl_croak(aTHX_
"Usage: attributes::_warn_reserved ()");
}
EXTEND(SP,1);
ST(0) = boolSV(ckWARN(WARN_RESERVED));
XSRETURN(1);
}
/*
* Local variables:
* c-indentation-style: bsd
* c-basic-offset: 4
* indent-tabs-mode: t
* End:
*
* ex: set ts=8 sts=4 sw=4 noet:
*/
|