This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate:
[perl5.git] / universal.c
CommitLineData
d6376244
JH
1/* universal.c
2 *
f27f8384 3 * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
2c351e65 4 * 2005, 2006, by Larry Wall and others
d6376244
JH
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
9 */
10
d31a8517
AT
11/*
12 * "The roots of those mountains must be roots indeed; there must be
13 * great secrets buried there which have not been discovered since the
14 * beginning." --Gandalf, relating Gollum's story
15 */
16
40d34c0d
SB
17/* This file contains the code that implements the functions in Perl's
18 * UNIVERSAL package, such as UNIVERSAL->can().
19 */
20
6d4a7be2 21#include "EXTERN.h"
864dbfa3 22#define PERL_IN_UNIVERSAL_C
6d4a7be2 23#include "perl.h"
6d4a7be2 24
5095c3e6
JH
25#ifdef USE_PERLIO
26#include "perliol.h" /* For the PERLIO_F_XXX */
27#endif
28
6d4a7be2 29/*
30 * Contributed by Graham Barr <Graham.Barr@tiuk.ti.com>
31 * The main guts of traverse_isa was actually copied from gv_fetchmeth
32 */
33
76e3520e 34STATIC SV *
301daebc
MS
35S_isa_lookup(pTHX_ HV *stash, const char *name, HV* name_stash,
36 int len, int level)
6d4a7be2 37{
38 AV* av;
39 GV* gv;
40 GV** gvp;
0e2d6244 41 HV* hv = NULL;
f4362cdc 42 SV* subgen = NULL;
26ab6a78 43 const char *hvname;
6d4a7be2 44
301daebc
MS
45 /* A stash/class can go by many names (ie. User == main::User), so
46 we compare the stash itself just in case */
47 if (name_stash && (stash == name_stash))
48 return &PL_sv_yes;
6d4a7be2 49
26ab6a78
NC
50 hvname = HvNAME_get(stash);
51
52 if (strEQ(hvname, name))
3280af22 53 return &PL_sv_yes;
6d4a7be2 54
4e58e0cf
JH
55 if (strEQ(name, "UNIVERSAL"))
56 return &PL_sv_yes;
57
6d4a7be2 58 if (level > 100)
46e4b22b 59 Perl_croak(aTHX_ "Recursive inheritance detected in package '%s'",
26ab6a78 60 hvname);
6d4a7be2 61
62 gvp = (GV**)hv_fetch(stash, "::ISA::CACHE::", 14, FALSE);
63
46e4b22b
GS
64 if (gvp && (gv = *gvp) != (GV*)&PL_sv_undef && (subgen = GvSV(gv))
65 && (hv = GvHV(gv)))
66 {
eb160463 67 if (SvIV(subgen) == (IV)PL_sub_generation) {
46e4b22b 68 SV* sv;
6d29369a 69 SV** const svp = (SV**)hv_fetch(hv, name, len, FALSE);
46e4b22b
GS
70 if (svp && (sv = *svp) != (SV*)&PL_sv_undef) {
71 DEBUG_o( Perl_deb(aTHX_ "Using cached ISA %s for package %s\n",
26ab6a78 72 name, hvname) );
46e4b22b
GS
73 return sv;
74 }
75 }
76 else {
77 DEBUG_o( Perl_deb(aTHX_ "ISA Cache in package %s is stale\n",
26ab6a78 78 hvname) );
46e4b22b
GS
79 hv_clear(hv);
80 sv_setiv(subgen, PL_sub_generation);
81 }
6d4a7be2 82 }
83
84 gvp = (GV**)hv_fetch(stash,"ISA",3,FALSE);
46e4b22b 85
3280af22 86 if (gvp && (gv = *gvp) != (GV*)&PL_sv_undef && (av = GvAV(gv))) {
46e4b22b 87 if (!hv || !subgen) {
6d4a7be2 88 gvp = (GV**)hv_fetch(stash, "::ISA::CACHE::", 14, TRUE);
89
90 gv = *gvp;
91
92 if (SvTYPE(gv) != SVt_PVGV)
93 gv_init(gv, stash, "::ISA::CACHE::", 14, TRUE);
94
46e4b22b
GS
95 if (!hv)
96 hv = GvHVn(gv);
97 if (!subgen) {
98 subgen = newSViv(PL_sub_generation);
99 GvSV(gv) = subgen;
100 }
6d4a7be2 101 }
46e4b22b 102 if (hv) {
6d4a7be2 103 SV** svp = AvARRAY(av);
93965878
NIS
104 /* NOTE: No support for tied ISA */
105 I32 items = AvFILLp(av) + 1;
6d4a7be2 106 while (items--) {
1a9219e7
AL
107 SV* const sv = *svp++;
108 HV* const basestash = gv_stashsv(sv, FALSE);
6d4a7be2 109 if (!basestash) {
599cee73 110 if (ckWARN(WARN_MISC))
9014280d 111 Perl_warner(aTHX_ packWARN(WARN_SYNTAX),
26ab6a78
NC
112 "Can't locate package %"SVf" for @%s::ISA",
113 sv, hvname);
6d4a7be2 114 continue;
115 }
301daebc
MS
116 if (&PL_sv_yes == isa_lookup(basestash, name, name_stash,
117 len, level + 1)) {
3280af22
NIS
118 (void)hv_store(hv,name,len,&PL_sv_yes,0);
119 return &PL_sv_yes;
6d4a7be2 120 }
121 }
3280af22 122 (void)hv_store(hv,name,len,&PL_sv_no,0);
6d4a7be2 123 }
124 }
4e58e0cf 125 return &PL_sv_no;
6d4a7be2 126}
127
954c1994 128/*
ccfc67b7
JH
129=head1 SV Manipulation Functions
130
954c1994
GS
131=for apidoc sv_derived_from
132
133Returns a boolean indicating whether the SV is derived from the specified
134class. This is the function that implements C<UNIVERSAL::isa>. It works
135for class names as well as for objects.
136
137=cut
138*/
139
55497cff 140bool
864dbfa3 141Perl_sv_derived_from(pTHX_ SV *sv, const char *name)
55497cff 142{
4b6d7cf0 143 HV *stash;
46e4b22b 144
255c29c3 145 SvGETMAGIC(sv);
55497cff 146
147 if (SvROK(sv)) {
4b6d7cf0 148 const char *type;
55497cff 149 sv = SvRV(sv);
150 type = sv_reftype(sv,0);
4b6d7cf0
NC
151 if (type && strEQ(type,name))
152 return TRUE;
153 stash = SvOBJECT(sv) ? SvSTASH(sv) : NULL;
55497cff 154 }
155 else {
156 stash = gv_stashsv(sv, FALSE);
157 }
46e4b22b 158
4b6d7cf0
NC
159 if (stash) {
160 HV * const name_stash = gv_stashpv(name, FALSE);
161 return isa_lookup(stash, name, name_stash, strlen(name), 0) == &PL_sv_yes;
162 }
163 else
164 return FALSE;
301daebc 165
55497cff 166}
167
1b026014
NIS
168#include "XSUB.h"
169
fe20fd30
JH
170PERL_XS_EXPORT_C void XS_UNIVERSAL_isa(pTHX_ CV *cv);
171PERL_XS_EXPORT_C void XS_UNIVERSAL_can(pTHX_ CV *cv);
172PERL_XS_EXPORT_C void XS_UNIVERSAL_VERSION(pTHX_ CV *cv);
18729d3e 173XS(XS_utf8_is_utf8);
1b026014
NIS
174XS(XS_utf8_valid);
175XS(XS_utf8_encode);
176XS(XS_utf8_decode);
177XS(XS_utf8_upgrade);
178XS(XS_utf8_downgrade);
179XS(XS_utf8_unicode_to_native);
180XS(XS_utf8_native_to_unicode);
29569577
JH
181XS(XS_Internals_SvREADONLY);
182XS(XS_Internals_SvREFCNT);
f044d0d1 183XS(XS_Internals_hv_clear_placehold);
5095c3e6 184XS(XS_PerlIO_get_layers);
5e8f8cda 185XS(XS_Regexp_DESTROY);
108e6616 186XS(XS_Internals_hash_seed);
7f047bfa 187XS(XS_Internals_rehash_seed);
cdeba5a7 188XS(XS_Internals_HvREHASH);
0cb96387
GS
189
190void
191Perl_boot_core_UNIVERSAL(pTHX)
192{
c05e0e2f 193 const char file[] = __FILE__;
0cb96387 194
ed6a78eb
NC
195 newXS("UNIVERSAL::isa", XS_UNIVERSAL_isa, (char *)file);
196 newXS("UNIVERSAL::can", XS_UNIVERSAL_can, (char *)file);
197 newXS("UNIVERSAL::VERSION", XS_UNIVERSAL_VERSION, (char *)file);
198 newXS("utf8::is_utf8", XS_utf8_is_utf8, (char *)file);
199 newXS("utf8::valid", XS_utf8_valid, (char *)file);
200 newXS("utf8::encode", XS_utf8_encode, (char *)file);
201 newXS("utf8::decode", XS_utf8_decode, (char *)file);
202 newXS("utf8::upgrade", XS_utf8_upgrade, (char *)file);
203 newXS("utf8::downgrade", XS_utf8_downgrade, (char *)file);
204 newXS("utf8::native_to_unicode", XS_utf8_native_to_unicode, (char *)file);
205 newXS("utf8::unicode_to_native", XS_utf8_unicode_to_native, (char *)file);
206 newXSproto("Internals::SvREADONLY",XS_Internals_SvREADONLY, (char *)file, "\\[$%@];$");
207 newXSproto("Internals::SvREFCNT",XS_Internals_SvREFCNT, (char *)file, "\\[$%@];$");
dfd4ef2f 208 newXSproto("Internals::hv_clear_placeholders",
ed6a78eb 209 XS_Internals_hv_clear_placehold, (char *)file, "\\%");
e0dae7fe 210 newXSproto("PerlIO::get_layers",
ed6a78eb
NC
211 XS_PerlIO_get_layers, (char *)file, "*;@");
212 newXS("Regexp::DESTROY", XS_Regexp_DESTROY, (char *)file);
213 newXSproto("Internals::hash_seed",XS_Internals_hash_seed, (char *)file, "");
214 newXSproto("Internals::rehash_seed",XS_Internals_rehash_seed, (char *)file, "");
215 newXSproto("Internals::HvREHASH", XS_Internals_HvREHASH, (char *)file, "\\%");
0cb96387
GS
216}
217
55497cff 218
6d4a7be2 219XS(XS_UNIVERSAL_isa)
220{
221 dXSARGS;
6d4a7be2 222
223 if (items != 2)
cea2e8a9 224 Perl_croak(aTHX_ "Usage: UNIVERSAL::isa(reference, kind)");
1a9219e7
AL
225 else {
226 SV * const sv = ST(0);
227 const char *name;
6d4a7be2 228
1a9219e7 229 SvGETMAGIC(sv);
f8f70380 230
1a9219e7
AL
231 if (!SvOK(sv) || !(SvROK(sv) || (SvPOK(sv) && SvCUR(sv))
232 || (SvGMAGICAL(sv) && SvPOKp(sv) && SvCUR(sv))))
233 XSRETURN_UNDEF;
d3f7f2b2 234
1a9219e7 235 name = SvPV_nolen_const(ST(1));
f8f70380 236
1a9219e7
AL
237 ST(0) = boolSV(sv_derived_from(sv, name));
238 XSRETURN(1);
239 }
6d4a7be2 240}
241
6d4a7be2 242XS(XS_UNIVERSAL_can)
243{
244 dXSARGS;
245 SV *sv;
c501bbfe 246 const char *name;
6d4a7be2 247 SV *rv;
6f08146e 248 HV *pkg = NULL;
6d4a7be2 249
250 if (items != 2)
cea2e8a9 251 Perl_croak(aTHX_ "Usage: UNIVERSAL::can(object-ref, method)");
6d4a7be2 252
253 sv = ST(0);
f8f70380 254
255c29c3 255 SvGETMAGIC(sv);
d3f7f2b2 256
6563884d
JH
257 if (!SvOK(sv) || !(SvROK(sv) || (SvPOK(sv) && SvCUR(sv))
258 || (SvGMAGICAL(sv) && SvPOKp(sv) && SvCUR(sv))))
f8f70380
GS
259 XSRETURN_UNDEF;
260
291a7e74 261 name = SvPV_nolen_const(ST(1));
3280af22 262 rv = &PL_sv_undef;
6d4a7be2 263
46e4b22b 264 if (SvROK(sv)) {
6f08146e 265 sv = (SV*)SvRV(sv);
46e4b22b 266 if (SvOBJECT(sv))
6f08146e
NIS
267 pkg = SvSTASH(sv);
268 }
269 else {
270 pkg = gv_stashsv(sv, FALSE);
271 }
272
273 if (pkg) {
1a9219e7 274 GV * const gv = gv_fetchmethod_autoload(pkg, name, FALSE);
dc848c6f 275 if (gv && isGV(gv))
276 rv = sv_2mortal(newRV((SV*)GvCV(gv)));
6d4a7be2 277 }
278
279 ST(0) = rv;
280 XSRETURN(1);
281}
282
6d4a7be2 283XS(XS_UNIVERSAL_VERSION)
284{
285 dXSARGS;
286 HV *pkg;
287 GV **gvp;
288 GV *gv;
289 SV *sv;
c05e0e2f 290 const char *undef;
6d4a7be2 291
1571675a 292 if (SvROK(ST(0))) {
6d4a7be2 293 sv = (SV*)SvRV(ST(0));
1571675a 294 if (!SvOBJECT(sv))
cea2e8a9 295 Perl_croak(aTHX_ "Cannot find version of an unblessed reference");
6d4a7be2 296 pkg = SvSTASH(sv);
297 }
298 else {
299 pkg = gv_stashsv(ST(0), FALSE);
300 }
301
0e2d6244 302 gvp = pkg ? (GV**)hv_fetch(pkg,"VERSION",7,FALSE) : NULL;
6d4a7be2 303
83fd6193 304 if (gvp && isGV(gv = *gvp) && (sv = GvSV(gv)) && SvOK(sv)) {
1a9219e7 305 SV * const nsv = sv_newmortal();
6d4a7be2 306 sv_setsv(nsv, sv);
307 sv = nsv;
f4362cdc 308 undef = NULL;
6d4a7be2 309 }
310 else {
3280af22 311 sv = (SV*)&PL_sv_undef;
6d4a7be2 312 undef = "(undef)";
313 }
314
1571675a 315 if (items > 1) {
1571675a
GS
316 SV *req = ST(1);
317
62658f4d 318 if (undef) {
26ab6a78 319 if (pkg) {
1a9219e7 320 const char * const name = HvNAME_get(pkg);
26ab6a78 321 Perl_croak(aTHX_
62658f4d 322 "%s does not define $%s::VERSION--version check failed",
26ab6a78
NC
323 name, name);
324 } else {
8c18bf38 325 Perl_croak(aTHX_
291a7e74
NC
326 "%s defines neither package nor VERSION--version check failed",
327 SvPVx_nolen_const(ST(0)) );
62658f4d
PM
328 }
329 }
1571675a 330 if (!SvNIOK(sv) && SvPOK(sv)) {
8c18bf38 331 STRLEN len;
1a9219e7 332 const char *const str = SvPV_const(sv,len);
1571675a
GS
333 while (len) {
334 --len;
335 /* XXX could DWIM "1.2.3" here */
336 if (!isDIGIT(str[len]) && str[len] != '.' && str[len] != '_')
337 break;
338 }
339 if (len) {
4305d8ab 340 if (SvNOK(req) && SvPOK(req)) {
1571675a
GS
341 /* they said C<use Foo v1.2.3> and $Foo::VERSION
342 * doesn't look like a float: do string compare */
343 if (sv_cmp(req,sv) == 1) {
d2560b70
RB
344 Perl_croak(aTHX_ "%s v%"VDf" required--"
345 "this is only v%"VDf,
1571675a
GS
346 HvNAME(pkg), req, sv);
347 }
348 goto finish;
349 }
350 /* they said C<use Foo 1.002_003> and $Foo::VERSION
351 * doesn't look like a float: force numeric compare */
155aba94 352 (void)SvUPGRADE(sv, SVt_PVNV);
1571675a
GS
353 SvNVX(sv) = str_to_version(sv);
354 SvPOK_off(sv);
355 SvNOK_on(sv);
356 }
357 }
358 /* if we get here, we're looking for a numeric comparison,
359 * so force the required version into a float, even if they
360 * said C<use Foo v1.2.3> */
4305d8ab 361 if (SvNOK(req) && SvPOK(req)) {
1571675a
GS
362 NV n = SvNV(req);
363 req = sv_newmortal();
364 sv_setnv(req, n);
365 }
366
f6eb1a96 367 if (SvNV(req) > SvNV(sv))
1571675a 368 Perl_croak(aTHX_ "%s version %s required--this is only version %s",
26ab6a78 369 HvNAME_get(pkg), SvPV_nolen(req), SvPV_nolen(sv));
2d8e6c8d 370 }
6d4a7be2 371
1571675a 372finish:
6d4a7be2 373 ST(0) = sv;
374
375 XSRETURN(1);
376}
377
18729d3e
JH
378XS(XS_utf8_is_utf8)
379{
380 dXSARGS;
381 if (items != 1)
382 Perl_croak(aTHX_ "Usage: utf8::is_utf8(sv)");
1a9219e7
AL
383 else {
384 const SV * const sv = ST(0);
385 if (SvUTF8(sv))
386 XSRETURN_YES;
387 else
388 XSRETURN_NO;
18729d3e
JH
389 }
390 XSRETURN_EMPTY;
391}
392
1b026014
NIS
393XS(XS_utf8_valid)
394{
18729d3e
JH
395 dXSARGS;
396 if (items != 1)
397 Perl_croak(aTHX_ "Usage: utf8::valid(sv)");
1a9219e7
AL
398 else {
399 SV * const sv = ST(0);
400 STRLEN len;
401 const char * const s = SvPV_const(sv,len);
402 if (!SvUTF8(sv) || is_utf8_string((U8*)s,len))
403 XSRETURN_YES;
404 else
405 XSRETURN_NO;
406 }
18729d3e 407 XSRETURN_EMPTY;
1b026014
NIS
408}
409
410XS(XS_utf8_encode)
411{
412 dXSARGS;
413 if (items != 1)
414 Perl_croak(aTHX_ "Usage: utf8::encode(sv)");
1a9219e7 415 sv_utf8_encode(ST(0));
1b026014
NIS
416 XSRETURN_EMPTY;
417}
418
419XS(XS_utf8_decode)
420{
421 dXSARGS;
422 if (items != 1)
423 Perl_croak(aTHX_ "Usage: utf8::decode(sv)");
1a9219e7
AL
424 else {
425 SV * const sv = ST(0);
c501bbfe 426 const bool RETVAL = sv_utf8_decode(sv);
1b026014
NIS
427 ST(0) = boolSV(RETVAL);
428 sv_2mortal(ST(0));
429 }
430 XSRETURN(1);
431}
432
433XS(XS_utf8_upgrade)
434{
435 dXSARGS;
436 if (items != 1)
437 Perl_croak(aTHX_ "Usage: utf8::upgrade(sv)");
1a9219e7
AL
438 else {
439 SV * const sv = ST(0);
1b026014
NIS
440 STRLEN RETVAL;
441 dXSTARG;
442
443 RETVAL = sv_utf8_upgrade(sv);
444 XSprePUSH; PUSHi((IV)RETVAL);
445 }
446 XSRETURN(1);
447}
448
449XS(XS_utf8_downgrade)
450{
451 dXSARGS;
452 if (items < 1 || items > 2)
453 Perl_croak(aTHX_ "Usage: utf8::downgrade(sv, failok=0)");
1a9219e7
AL
454 else {
455 SV * const sv = ST(0);
c501bbfe
AL
456 const bool failok = (items < 2) ? 0 : (int)SvIV(ST(1));
457 const bool RETVAL = sv_utf8_downgrade(sv, failok);
1b026014 458
1b026014
NIS
459 ST(0) = boolSV(RETVAL);
460 sv_2mortal(ST(0));
461 }
462 XSRETURN(1);
463}
464
465XS(XS_utf8_native_to_unicode)
466{
467 dXSARGS;
c501bbfe 468 const UV uv = SvUV(ST(0));
b7953727
JH
469
470 if (items > 1)
471 Perl_croak(aTHX_ "Usage: utf8::native_to_unicode(sv)");
472
1b026014
NIS
473 ST(0) = sv_2mortal(newSViv(NATIVE_TO_UNI(uv)));
474 XSRETURN(1);
475}
476
477XS(XS_utf8_unicode_to_native)
478{
479 dXSARGS;
c501bbfe 480 const UV uv = SvUV(ST(0));
b7953727
JH
481
482 if (items > 1)
483 Perl_croak(aTHX_ "Usage: utf8::unicode_to_native(sv)");
484
1b026014
NIS
485 ST(0) = sv_2mortal(newSViv(UNI_TO_NATIVE(uv)));
486 XSRETURN(1);
487}
488
14a976d6 489XS(XS_Internals_SvREADONLY) /* This is dangerous stuff. */
29569577
JH
490{
491 dXSARGS;
1a9219e7 492 SV * const sv = SvRV(ST(0));
c501bbfe 493
29569577
JH
494 if (items == 1) {
495 if (SvREADONLY(sv))
496 XSRETURN_YES;
497 else
498 XSRETURN_NO;
499 }
500 else if (items == 2) {
501 if (SvTRUE(ST(1))) {
502 SvREADONLY_on(sv);
503 XSRETURN_YES;
504 }
505 else {
14a976d6 506 /* I hope you really know what you are doing. */
29569577
JH
507 SvREADONLY_off(sv);
508 XSRETURN_NO;
509 }
510 }
14a976d6 511 XSRETURN_UNDEF; /* Can't happen. */
29569577
JH
512}
513
14a976d6 514XS(XS_Internals_SvREFCNT) /* This is dangerous stuff. */
29569577
JH
515{
516 dXSARGS;
1a9219e7 517 SV * const sv = SvRV(ST(0));
c501bbfe 518
29569577 519 if (items == 1)
14a976d6 520 XSRETURN_IV(SvREFCNT(sv) - 1); /* Minus the ref created for us. */
29569577 521 else if (items == 2) {
14a976d6 522 /* I hope you really know what you are doing. */
29569577
JH
523 SvREFCNT(sv) = SvIV(ST(1));
524 XSRETURN_IV(SvREFCNT(sv));
525 }
14a976d6 526 XSRETURN_UNDEF; /* Can't happen. */
29569577
JH
527}
528
f044d0d1 529XS(XS_Internals_hv_clear_placehold)
dfd4ef2f
NC
530{
531 dXSARGS;
c501bbfe 532
704547c4
AB
533 if (items != 1)
534 Perl_croak(aTHX_ "Usage: UNIVERSAL::hv_clear_placeholders(hv)");
1a9219e7
AL
535 else {
536 HV * const hv = (HV *) SvRV(ST(0));
537 hv_clear_placeholders(hv);
538 XSRETURN(0);
539 }
dfd4ef2f 540}
5095c3e6 541
5e8f8cda
JH
542XS(XS_Regexp_DESTROY)
543{
0188be2e 544 PERL_UNUSED_ARG(cv);
5e8f8cda
JH
545}
546
5095c3e6
JH
547XS(XS_PerlIO_get_layers)
548{
549 dXSARGS;
550 if (items < 1 || items % 2 == 0)
551 Perl_croak(aTHX_ "Usage: PerlIO_get_layers(filehandle[,args])");
e0dae7fe 552#ifdef USE_PERLIO
5095c3e6
JH
553 {
554 SV * sv;
555 GV * gv;
556 IO * io;
557 bool input = TRUE;
558 bool details = FALSE;
559
560 if (items > 1) {
1a9219e7 561 SV * const *svp;
5095c3e6 562 for (svp = MARK + 2; svp <= SP; svp += 2) {
1a9219e7
AL
563 SV * const * const varp = svp;
564 SV * const * const valp = svp + 1;
5095c3e6 565 STRLEN klen;
1a9219e7 566 const char * const key = SvPV_const(*varp, klen);
5095c3e6
JH
567
568 switch (*key) {
569 case 'i':
570 if (klen == 5 && memEQ(key, "input", 5)) {
571 input = SvTRUE(*valp);
572 break;
573 }
574 goto fail;
575 case 'o':
576 if (klen == 6 && memEQ(key, "output", 6)) {
577 input = !SvTRUE(*valp);
578 break;
579 }
580 goto fail;
581 case 'd':
582 if (klen == 7 && memEQ(key, "details", 7)) {
583 details = SvTRUE(*valp);
584 break;
585 }
586 goto fail;
587 default:
588 fail:
589 Perl_croak(aTHX_
590 "get_layers: unknown argument '%s'",
591 key);
592 }
593 }
594
595 SP -= (items - 1);
596 }
597
598 sv = POPs;
599 gv = (GV*)sv;
600
601 if (!isGV(sv)) {
602 if (SvROK(sv) && isGV(SvRV(sv)))
603 gv = (GV*)SvRV(sv);
7b146116 604 else if (SvPOKp(sv))
057b822e 605 gv = gv_fetchsv(sv, 0, SVt_PVIO);
5095c3e6
JH
606 }
607
608 if (gv && (io = GvIO(gv))) {
609 dTARGET;
1a9219e7 610 AV* const av = PerlIO_get_layers(aTHX_ input ?
5095c3e6
JH
611 IoIFP(io) : IoOFP(io));
612 I32 i;
1a9219e7 613 const I32 last = av_len(av);
5095c3e6
JH
614 I32 nitem = 0;
615
616 for (i = last; i >= 0; i -= 3) {
1a9219e7
AL
617 SV * const * const namsvp = av_fetch(av, i - 2, FALSE);
618 SV * const * const argsvp = av_fetch(av, i - 1, FALSE);
619 SV * const * const flgsvp = av_fetch(av, i, FALSE);
5095c3e6 620
1a9219e7
AL
621 const bool namok = namsvp && *namsvp && SvPOK(*namsvp);
622 const bool argok = argsvp && *argsvp && SvPOK(*argsvp);
623 const bool flgok = flgsvp && *flgsvp && SvIOK(*flgsvp);
5095c3e6
JH
624
625 if (details) {
4c58c75a
NC
626 XPUSHs(namok
627 ? newSVpvn(SvPVX_const(*namsvp), SvCUR(*namsvp))
628 : &PL_sv_undef);
629 XPUSHs(argok
630 ? newSVpvn(SvPVX_const(*argsvp), SvCUR(*argsvp))
631 : &PL_sv_undef);
5095c3e6
JH
632 if (flgok)
633 XPUSHi(SvIVX(*flgsvp));
634 else
635 XPUSHs(&PL_sv_undef);
636 nitem += 3;
637 }
638 else {
639 if (namok && argok)
640 XPUSHs(Perl_newSVpvf(aTHX_ "%"SVf"(%"SVf")",
641 *namsvp, *argsvp));
642 else if (namok)
643 XPUSHs(Perl_newSVpvf(aTHX_ "%"SVf, *namsvp));
644 else
645 XPUSHs(&PL_sv_undef);
646 nitem++;
647 if (flgok) {
1a9219e7 648 const IV flags = SvIVX(*flgsvp);
5095c3e6
JH
649
650 if (flags & PERLIO_F_UTF8) {
651 XPUSHs(newSVpvn("utf8", 4));
652 nitem++;
653 }
654 }
655 }
656 }
657
658 SvREFCNT_dec(av);
659
660 XSRETURN(nitem);
661 }
662 }
e0dae7fe 663#endif
5095c3e6
JH
664
665 XSRETURN(0);
666}
667
108e6616 668XS(XS_Internals_hash_seed)
e8e58922 669{
108e6616
NC
670 /* Using dXSARGS would also have dITEM and dSP,
671 * which define 2 unused local variables. */
e503e849 672 dAXMARK;
0188be2e 673 PERL_UNUSED_ARG(cv);
71a0dd65 674 PERL_UNUSED_VAR(mark);
4a04c497 675 XSRETURN_UV(PERL_HASH_SEED);
e8e58922
JH
676}
677
7f047bfa 678XS(XS_Internals_rehash_seed)
6c2cec5b
NC
679{
680 /* Using dXSARGS would also have dITEM and dSP,
681 * which define 2 unused local variables. */
e503e849 682 dAXMARK;
0188be2e 683 PERL_UNUSED_ARG(cv);
71a0dd65 684 PERL_UNUSED_VAR(mark);
7f047bfa 685 XSRETURN_UV(PL_rehash_seed);
6c2cec5b
NC
686}
687
cdeba5a7
NC
688XS(XS_Internals_HvREHASH) /* Subject to change */
689{
690 dXSARGS;
691 if (SvROK(ST(0))) {
1a9219e7 692 const HV * const hv = (HV *) SvRV(ST(0));
cdeba5a7
NC
693 if (items == 1 && SvTYPE(hv) == SVt_PVHV) {
694 if (HvREHASH(hv))
695 XSRETURN_YES;
696 else
697 XSRETURN_NO;
698 }
699 }
700 Perl_croak(aTHX_ "Internals::HvREHASH $hashref");
701}
583439ab
NC
702
703/*
704 * Local variables:
705 * c-indentation-style: bsd
706 * c-basic-offset: 4
707 * indent-tabs-mode: t
708 * End:
709 *
d8294a4d
NC
710 * ex: set ts=8 sts=4 sw=4 noet:
711 */