B::Hooks::OP::Check::Install::Files is not indexed
[p5sagit/Devel-Declare.git] / stolen_chunk_of_toke.c
CommitLineData
e807ee50 1/* stolen_chunk_of_toke.c - from perl 5.8.8 toke.c
2 *
3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others
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
11/*
12 * "It all comes from here, the stench and the peril." --Frodo
13 */
14
15/*
16 * this is all blatantly stolen. I sincerely hopes it doesn't fuck anything
17 * up but if it does blame me (Matt S Trout), not the poor original authors
18 */
19
71511651 20/* the following #defines are stolen from assorted headers, not toke.c (mst) */
e807ee50 21
a25db2dc 22#define skipspace(a) S_skipspace(aTHX_ a, 0)
23#define peekspace(a) S_skipspace(aTHX_ a, 1)
24#define skipspace_force(a) S_skipspace(aTHX_ a, 2)
78160085 25#define incline(a) S_incline(aTHX_ a)
26#define filter_gets(a,b,c) S_filter_gets(aTHX_ a,b,c)
27#define scan_str(a,b,c) S_scan_str(aTHX_ a,b,c)
28#define scan_word(a,b,c,d,e) S_scan_word(aTHX_ a,b,c,d,e)
92997e69 29#define scan_ident(a,b,c,d,e) S_scan_ident(aTHX_ a,b,c,d,e)
78160085 30
31STATIC void S_incline(pTHX_ char *s);
a25db2dc 32STATIC char* S_skipspace(pTHX_ char *s, int incline);
78160085 33STATIC char * S_filter_gets(pTHX_ SV *sv, PerlIO *fp, STRLEN append);
34STATIC char* S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims);
35STATIC char* S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp);
36
e807ee50 37#define DPTR2FPTR(t,p) ((t)PTR2nat(p)) /* data pointer to function pointer */
38#define FPTR2DPTR(t,p) ((t)PTR2nat(p)) /* function pointer to data pointer */
c630715a 39#define PTR2nat(p) (PTRV)(p) /* pointer to integer of PTRSIZE */
14ab3472 40
41/* conditionalise these two because as of 5.9.5 we already get them from
42 the headers (mst) */
43#ifndef Newx
e807ee50 44#define Newx(v,n,t) (v = (MEM_WRAP_CHECK_(n,t) (t*)safemalloc((MEM_SIZE)((n)*sizeof(t)))))
14ab3472 45#endif
46#ifndef SvPVX_const
0ba8c7aa 47#define SvPVX_const(sv) ((const char*) (0 + SvPVX(sv)))
14ab3472 48#endif
60d774aa 49#ifndef MEM_WRAP_CHECK_
50#define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
51#endif
14ab3472 52
0ba8c7aa 53#define SvPV_renew(sv,n) \
54 STMT_START { SvLEN_set(sv, n); \
55 SvPV_set((sv), (MEM_WRAP_CHECK_(n,char) \
56 (char*)saferealloc((Malloc_t)SvPVX(sv), \
57 (MEM_SIZE)((n))))); \
58 } STMT_END
e807ee50 59
d6e7537a 60#define isCONTROLVAR(x) (isUPPER(x) || strchr("[\\]^_?", (x)))
61
c630715a 62/* On MacOS, respect nonbreaking spaces */
63#ifdef MACOS_TRADITIONAL
64#define SPACE_OR_TAB(c) ((c)==' '||(c)=='\312'||(c)=='\t')
65#else
66#define SPACE_OR_TAB(c) ((c)==' '||(c)=='\t')
67#endif
e807ee50 68
2688337b 69/*
70 * Normally, during compile time, PL_curcop == &PL_compiling is true. However,
71 * Devel::Declare makes the interpreter call back to perl during compile time,
72 * which temporarily enters runtime. Then perl space calls various functions
73 * from this file, which are designed to work during compile time. They all
74 * happen to operate on PL_curcop, not PL_compiling. That doesn't make a
75 * difference in the core, but it does for Devel::Declare, which operates at
76 * runtime, but still wants to mangle the things that are about to be compiled.
77 * That's why we define our own PL_curcop and make it point to PL_compiling
78 * here.
79 */
df718437 80#undef PL_curcop
81#define PL_curcop (&PL_compiling)
2688337b 82
0ba8c7aa 83#define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline))
84
e807ee50 85#define LEX_NORMAL 10 /* normal code (ie not within "...") */
86#define LEX_INTERPNORMAL 9 /* code within a string, eg "$foo[$x+1]" */
87#define LEX_INTERPCASEMOD 8 /* expecting a \U, \Q or \E etc */
88#define LEX_INTERPPUSH 7 /* starting a new sublex parse level */
89#define LEX_INTERPSTART 6 /* expecting the start of a $var */
90
91 /* at end of code, eg "$x" followed by: */
92#define LEX_INTERPEND 5 /* ... eg not one of [, { or -> */
93#define LEX_INTERPENDMAYBE 4 /* ... eg one of [, { or -> */
94
95#define LEX_INTERPCONCAT 3 /* expecting anything, eg at start of
96 string or after \E, $foo, etc */
97#define LEX_INTERPCONST 2 /* NOT USED */
98#define LEX_FORMLINE 1 /* expecting a format line */
99#define LEX_KNOWNEXT 0 /* next token known; just return it */
100
14ab3472 101/* and these two are my own madness (mst) */
71511651 102
103#if PERL_REVISION == 5 && PERL_VERSION == 8 && PERL_SUBVERSION >= 8
104#define PERL_5_8_8_PLUS
105#endif
106
e38f5a74 107#if PERL_REVISION == 5 && PERL_VERSION > 8
108#define PERL_5_9_PLUS
109#endif
110
1479b0b1 111#if !defined(PERL_5_9_PLUS) && defined(PERL_IMPLICIT_CONTEXT)
ef91f92b 112/* These two are not exported from the core on Windows. With 5.9+
113 it's not an issue, because they're part of the PL_parser structure,
114 which is exported. On multiplicity/thread builds we can work
115 around the lack of export by this formulation, where we provide
116 a substitute implementation of the unexported accessor functions.
117 On single-interpreter builds we can't, because access is directly
118 via symbols that are not exported. */
119# define Perl_Ilinestart_ptr my_Ilinestart_ptr
120char **my_Ilinestart_ptr(pTHX) { return &(aTHX->Ilinestart); }
121# define Perl_Isublex_info_ptr my_Isublex_info_ptr
122static SUBLEXINFO *my_Isublex_info_ptr(pTHX) { return &(aTHX->Isublex_info); }
123#endif
124
e38f5a74 125#ifdef PERL_5_9_PLUS
14ab3472 126/* 5.9+ moves a bunch of things to a PL_parser struct so we need to
127 declare the backcompat macros for things to still work (mst) */
128
129/* XXX temporary backwards compatibility */
130#define PL_lex_brackets (PL_parser->lex_brackets)
131#define PL_lex_brackstack (PL_parser->lex_brackstack)
132#define PL_lex_casemods (PL_parser->lex_casemods)
133#define PL_lex_casestack (PL_parser->lex_casestack)
134#define PL_lex_defer (PL_parser->lex_defer)
135#define PL_lex_dojoin (PL_parser->lex_dojoin)
136#define PL_lex_expect (PL_parser->lex_expect)
137#define PL_lex_formbrack (PL_parser->lex_formbrack)
138#define PL_lex_inpat (PL_parser->lex_inpat)
139#define PL_lex_inwhat (PL_parser->lex_inwhat)
140#define PL_lex_op (PL_parser->lex_op)
141#define PL_lex_repl (PL_parser->lex_repl)
142#define PL_lex_starts (PL_parser->lex_starts)
143#define PL_lex_stuff (PL_parser->lex_stuff)
144#define PL_multi_start (PL_parser->multi_start)
145#define PL_multi_open (PL_parser->multi_open)
146#define PL_multi_close (PL_parser->multi_close)
147#define PL_pending_ident (PL_parser->pending_ident)
148#define PL_preambled (PL_parser->preambled)
149#define PL_sublex_info (PL_parser->sublex_info)
150#define PL_linestr (PL_parser->linestr)
151#define PL_sublex_info (PL_parser->sublex_info)
152#define PL_linestr (PL_parser->linestr)
153#define PL_expect (PL_parser->expect)
154#define PL_copline (PL_parser->copline)
155#define PL_bufptr (PL_parser->bufptr)
156#define PL_oldbufptr (PL_parser->oldbufptr)
157#define PL_oldoldbufptr (PL_parser->oldoldbufptr)
158#define PL_linestart (PL_parser->linestart)
159#define PL_bufend (PL_parser->bufend)
160#define PL_last_uni (PL_parser->last_uni)
161#define PL_last_lop (PL_parser->last_lop)
162#define PL_last_lop_op (PL_parser->last_lop_op)
163#define PL_lex_state (PL_parser->lex_state)
164#define PL_rsfp (PL_parser->rsfp)
165#define PL_rsfp_filters (PL_parser->rsfp_filters)
166#define PL_in_my (PL_parser->in_my)
167#define PL_in_my_stash (PL_parser->in_my_stash)
168#define PL_tokenbuf (PL_parser->tokenbuf)
169#define PL_multi_end (PL_parser->multi_end)
170#define PL_error_count (PL_parser->error_count)
52eaf5fa 171#define PL_nexttoke (PL_parser->nexttoke)
172/* these are from the non-PERL_MAD path but I don't -think- I need
14ab3472 173 the PERL_MAD stuff since my code isn't really populating things (mst) */
52eaf5fa 174# ifdef PERL_MAD
175# define PL_curforce (PL_parser->curforce)
176# define PL_lasttoke (PL_parser->lasttoke)
177# else
14ab3472 178# define PL_nexttype (PL_parser->nexttype)
179# define PL_nextval (PL_parser->nextval)
52eaf5fa 180# endif
181/* end of backcompat macros from 5.9 toke.c (mst) */
78160085 182#endif
14ab3472 183
184/* when ccflags include -DDEBUGGING we need this for earlier 5.8 perls */
185#ifndef SvPV_nolen_const
186#define SvPV_nolen_const SvPV_nolen
187#endif
188
3f61a25a 189/* utf8_to_uvchr_buf() not defined in earlier perls, but less-capable
190 * substitute is available */
191
192#ifndef utf8_to_uvchr_buf
193#define utf8_to_uvchr_buf(s, e, lp) ((e), utf8_to_uvchr(s, lp))
194#endif
195
52790f4f 196#ifndef isIDFIRST_lazy_if_safe
197# define isIDFIRST_lazy_if_safe(p,e,UTF) \
198 ((! UTF || p > e) ? isIDFIRST_lazy_if(p,UTF) : 0)
199#endif
200#ifndef isALNUM_lazy_if_safe
201# define isALNUM_lazy_if_safe(p,e,UTF) \
202 ((! UTF || p > e) ? isALNUM_lazy_if(p,UTF) : 0)
203#endif
204#ifndef isALNUM_utf8_safe
205# define isALNUM_utf8_safe(p,e) ((p > e) ? isALNUM_utf8(p) : 0)
206#endif
207
71511651 208/* and now we're back to the toke.c stuff again (mst) */
209
e807ee50 210static const char ident_too_long[] =
211 "Identifier too long";
212static const char c_without_g[] =
213 "Use of /c modifier is meaningless without /g";
214static const char c_in_subst[] =
215 "Use of /c modifier is meaningless in s///";
216
217#ifdef USE_UTF8_SCRIPTS
218# define UTF (!IN_BYTES)
219#else
220# define UTF ((PL_linestr && DO_UTF8(PL_linestr)) || (PL_hints & HINT_UTF8))
221#endif
222
223/* Invoke the idxth filter function for the current rsfp. */
224/* maxlen 0 = read one text line */
225I32
226Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
227{
228 filter_t funcp;
229 SV *datasv = NULL;
230
231 if (!PL_rsfp_filters)
232 return -1;
233 if (idx > AvFILLp(PL_rsfp_filters)) { /* Any more filters? */
234 /* Provide a default input filter to make life easy. */
235 /* Note that we append to the line. This is handy. */
236 DEBUG_P(PerlIO_printf(Perl_debug_log,
237 "filter_read %d: from rsfp\n", idx));
238 if (maxlen) {
239 /* Want a block */
240 int len ;
241 const int old_len = SvCUR(buf_sv);
242
243 /* ensure buf_sv is large enough */
244 SvGROW(buf_sv, (STRLEN)(old_len + maxlen)) ;
245 if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len, maxlen)) <= 0){
246 if (PerlIO_error(PL_rsfp))
247 return -1; /* error */
248 else
249 return 0 ; /* end of file */
250 }
251 SvCUR_set(buf_sv, old_len + len) ;
252 } else {
253 /* Want a line */
254 if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) {
255 if (PerlIO_error(PL_rsfp))
256 return -1; /* error */
257 else
258 return 0 ; /* end of file */
259 }
260 }
261 return SvCUR(buf_sv);
262 }
263 /* Skip this filter slot if filter has been deleted */
264 if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef) {
265 DEBUG_P(PerlIO_printf(Perl_debug_log,
266 "filter_read %d: skipped (filter deleted)\n",
267 idx));
268 return FILTER_READ(idx+1, buf_sv, maxlen); /* recurse */
269 }
270 /* Get function pointer hidden within datasv */
271 funcp = DPTR2FPTR(filter_t, IoANY(datasv));
272 DEBUG_P(PerlIO_printf(Perl_debug_log,
273 "filter_read %d: via function %p (%s)\n",
274 idx, datasv, SvPV_nolen_const(datasv)));
275 /* Call function. The function is expected to */
276 /* call "FILTER_READ(idx+1, buf_sv)" first. */
277 /* Return: <0:error, =0:eof, >0:not eof */
278 return (*funcp)(aTHX_ idx, buf_sv, maxlen);
279}
280
281STATIC char *
282S_filter_gets(pTHX_ register SV *sv, register PerlIO *fp, STRLEN append)
283{
284#ifdef PERL_CR_FILTER
285 if (!PL_rsfp_filters) {
286 filter_add(S_cr_textfilter,NULL);
287 }
288#endif
289 if (PL_rsfp_filters) {
290 if (!append)
291 SvCUR_set(sv, 0); /* start with empty line */
292 if (FILTER_READ(0, sv, 0) > 0)
293 return ( SvPVX(sv) ) ;
294 else
295 return Nullch ;
296 }
297 else
298 return (sv_gets(sv, fp, append));
299}
300
301/*
302 * S_skipspace
303 * Called to gobble the appropriate amount and type of whitespace.
304 * Skips comments as well.
305 */
306
307STATIC char *
a25db2dc 308S_skipspace(pTHX_ register char *s, int incline)
e807ee50 309{
310 if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
311 while (s < PL_bufend && SPACE_OR_TAB(*s))
312 s++;
313 return s;
314 }
315 for (;;) {
316 STRLEN prevlen;
317 SSize_t oldprevlen, oldoldprevlen;
318 SSize_t oldloplen = 0, oldunilen = 0;
319 while (s < PL_bufend && isSPACE(*s)) {
ec25cea7 320 if (*s++ == '\n' && ((incline == 2) || (PL_in_eval && !PL_rsfp && !incline)))
e807ee50 321 incline(s);
322 }
323
324 /* comment */
325 if (s < PL_bufend && *s == '#') {
326 while (s < PL_bufend && *s != '\n')
327 s++;
328 if (s < PL_bufend) {
329 s++;
a25db2dc 330 if (PL_in_eval && !PL_rsfp && !incline) {
e807ee50 331 incline(s);
332 continue;
333 }
334 }
335 }
336
a25db2dc 337 /* also skip leading whitespace on the beginning of a line before deciding
338 * whether or not to recharge the linestr. --rafl
339 */
340 while (s < PL_bufend && isSPACE(*s)) {
341 if (*s++ == '\n' && PL_in_eval && !PL_rsfp && !incline)
342 incline(s);
343 }
344
e807ee50 345 /* only continue to recharge the buffer if we're at the end
346 * of the buffer, we're not reading from a source filter, and
347 * we're in normal lexing mode
348 */
7fc37409 349 if (s < PL_bufend || !PL_rsfp || PL_lex_inwhat ||
e807ee50 350 PL_lex_state == LEX_FORMLINE)
351 return s;
352
353 /* try to recharge the buffer */
354 if ((s = filter_gets(PL_linestr, PL_rsfp,
355 (prevlen = SvCUR(PL_linestr)))) == Nullch)
356 {
357 /* end of file. Add on the -p or -n magic */
358 if (PL_minus_p) {
359 sv_setpv(PL_linestr,
360 ";}continue{print or die qq(-p destination: $!\\n);}");
361 PL_minus_n = PL_minus_p = 0;
362 }
363 else if (PL_minus_n) {
364 sv_setpvn(PL_linestr, ";}", 2);
365 PL_minus_n = 0;
366 }
367 else
368 sv_setpvn(PL_linestr,";", 1);
369
370 /* reset variables for next time we lex */
371 PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = s = PL_linestart
372 = SvPVX(PL_linestr);
373 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
374 PL_last_lop = PL_last_uni = Nullch;
375
35fc8ada 376 /* In perl versions previous to p4-rawid: //depot/perl@32954 -P
377 * preprocessors were supported here. We don't support -P at all, even
378 * on perls that support it, and use the following chunk from blead
379 * perl. (rafl)
380 */
381
382 /* Close the filehandle. Could be from
e807ee50 383 * STDIN, or a regular file. If we were reading code from
384 * STDIN (because the commandline held no -e or filename)
385 * then we don't close it, we reset it so the code can
386 * read from STDIN too.
387 */
388
35fc8ada 389 if ((PerlIO*)PL_rsfp == PerlIO_stdin())
e807ee50 390 PerlIO_clearerr(PL_rsfp);
391 else
392 (void)PerlIO_close(PL_rsfp);
393 PL_rsfp = Nullfp;
394 return s;
395 }
396
397 /* not at end of file, so we only read another line */
398 /* make corresponding updates to old pointers, for yyerror() */
399 oldprevlen = PL_oldbufptr - PL_bufend;
400 oldoldprevlen = PL_oldoldbufptr - PL_bufend;
401 if (PL_last_uni)
402 oldunilen = PL_last_uni - PL_bufend;
403 if (PL_last_lop)
404 oldloplen = PL_last_lop - PL_bufend;
405 PL_linestart = PL_bufptr = s + prevlen;
406 PL_bufend = s + SvCUR(PL_linestr);
407 s = PL_bufptr;
408 PL_oldbufptr = s + oldprevlen;
409 PL_oldoldbufptr = s + oldoldprevlen;
410 if (PL_last_uni)
411 PL_last_uni = s + oldunilen;
412 if (PL_last_lop)
413 PL_last_lop = s + oldloplen;
a25db2dc 414 if (!incline)
415 incline(s);
e807ee50 416
417 /* debugger active and we're not compiling the debugger code,
418 * so store the line into the debugger's array of lines
419 */
420 if (PERLDB_LINE && PL_curstash != PL_debstash) {
ec25cea7 421 AV *fileav = CopFILEAV(PL_curcop);
422 if (fileav) {
423 SV * const sv = NEWSV(85,0);
424 sv_upgrade(sv, SVt_PVMG);
425 sv_setpvn(sv,PL_bufptr,PL_bufend-PL_bufptr);
426 (void)SvIOK_on(sv);
427 SvIV_set(sv, 0);
428 av_store(fileav,(I32)CopLINE(PL_curcop),sv);
429 }
e807ee50 430 }
431 }
432}
433
434STATIC char *
435S_scan_word(pTHX_ register char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp)
436{
437 register char *d = dest;
438 register char * const e = d + destlen - 3; /* two-character token, ending NUL */
439 for (;;) {
440 if (d >= e)
441 Perl_croak(aTHX_ ident_too_long);
52790f4f 442 if (UTF && isIDFIRST_utf8_safe((const U8*) s, (const U8*) PL_bufend)) {
443 /* The UTF-8 case must come first, otherwise things
444 * like c\N{COMBINING TILDE} would start failing, as the
445 * isALNUM case below would gobble the 'c' up.
446 */
447
448 char *t = s + UTF8SKIP(s);
449 while (isIDCONT_utf8_safe((const U8*) t, (const U8*) PL_bufend)) {
450 t += UTF8SKIP(t);
451 }
452 if (d + (t - s) > e)
453 Perl_croak(aTHX_ "%s", ident_too_long);
454 Copy(s, d, t - s, char);
455 *d += t - s;
456 s = t;
457 }
458 else if (isALNUM(*s))
459 do {
460 *d++ = *s++;
461 } while (isWORDCHAR_A(*s) && d < e);
462 else if ( *s == '\''
463 && allow_package
464 && isIDFIRST_lazy_if_safe(s+1, PL_bufend, UTF))
465 {
e807ee50 466 *d++ = ':';
467 *d++ = ':';
468 s++;
469 }
470 else if (*s == ':' && s[1] == ':' && allow_package && s[2] != '$') {
471 *d++ = *s++;
472 *d++ = *s++;
473 }
e807ee50 474 else {
475 *d = '\0';
476 *slp = d - dest;
477 return s;
478 }
479 }
480}
481
482/*
483 * S_incline
484 * This subroutine has nothing to do with tilting, whether at windmills
485 * or pinball tables. Its name is short for "increment line". It
486 * increments the current line number in CopLINE(PL_curcop) and checks
487 * to see whether the line starts with a comment of the form
488 * # line 500 "foo.pm"
489 * If so, it sets the current line number and file to the values in the comment.
490 */
491
492STATIC void
78160085 493S_incline(pTHX_ char *s)
e807ee50 494{
495 char *t;
78160085 496 char *n;
497 char *e;
e807ee50 498 char ch;
499
500 CopLINE_inc(PL_curcop);
501 if (*s++ != '#')
502 return;
503 while (SPACE_OR_TAB(*s)) s++;
504 if (strnEQ(s, "line", 4))
505 s += 4;
506 else
507 return;
508 if (SPACE_OR_TAB(*s))
509 s++;
510 else
511 return;
512 while (SPACE_OR_TAB(*s)) s++;
513 if (!isDIGIT(*s))
514 return;
515 n = s;
516 while (isDIGIT(*s))
517 s++;
518 while (SPACE_OR_TAB(*s))
519 s++;
520 if (*s == '"' && (t = strchr(s+1, '"'))) {
521 s++;
522 e = t + 1;
523 }
524 else {
78160085 525 for (t = s; !isSPACE(*t); t++) ;
e807ee50 526 e = t;
527 }
528 while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')
529 e++;
530 if (*e != '\n' && *e != '\0')
531 return; /* false alarm */
532
533 ch = *t;
534 *t = '\0';
535 if (t - s > 0) {
71511651 536/* this chunk was added to S_incline during 5.8.8. I don't know why but I don't
537 honestly care since I probably want to be bug-compatible anyway (mst) */
538
539/* ... my kingdom for a perl parser in perl ... (mst) */
540
541#ifdef PERL_5_8_8_PLUS
e807ee50 542#ifndef USE_ITHREADS
543 const char *cf = CopFILE(PL_curcop);
544 if (cf && strlen(cf) > 7 && strnEQ(cf, "(eval ", 6)) {
545 /* must copy *{"::_<(eval N)[oldfilename:L]"}
546 * to *{"::_<newfilename"} */
547 char smallbuf[256], smallbuf2[256];
548 char *tmpbuf, *tmpbuf2;
549 GV **gvp, *gv2;
550 STRLEN tmplen = strlen(cf);
551 STRLEN tmplen2 = strlen(s);
552 if (tmplen + 3 < sizeof smallbuf)
553 tmpbuf = smallbuf;
554 else
555 Newx(tmpbuf, tmplen + 3, char);
556 if (tmplen2 + 3 < sizeof smallbuf2)
557 tmpbuf2 = smallbuf2;
558 else
559 Newx(tmpbuf2, tmplen2 + 3, char);
560 tmpbuf[0] = tmpbuf2[0] = '_';
561 tmpbuf[1] = tmpbuf2[1] = '<';
562 memcpy(tmpbuf + 2, cf, ++tmplen);
563 memcpy(tmpbuf2 + 2, s, ++tmplen2);
564 ++tmplen; ++tmplen2;
565 gvp = (GV**)hv_fetch(PL_defstash, tmpbuf, tmplen, FALSE);
566 if (gvp) {
567 gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE);
568 if (!isGV(gv2))
569 gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE);
570 /* adjust ${"::_<newfilename"} to store the new file name */
571 GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2);
572 GvHV(gv2) = (HV*)SvREFCNT_inc(GvHV(*gvp));
573 GvAV(gv2) = (AV*)SvREFCNT_inc(GvAV(*gvp));
574 }
575 if (tmpbuf != smallbuf) Safefree(tmpbuf);
576 if (tmpbuf2 != smallbuf2) Safefree(tmpbuf2);
577 }
578#endif
71511651 579#endif
580/* second endif closes out the "are we 5.8.(8+)" conditional */
e807ee50 581 CopFILE_free(PL_curcop);
582 CopFILE_set(PL_curcop, s);
583 }
584 *t = ch;
585 CopLINE_set(PL_curcop, atoi(n)-1);
586}
0ba8c7aa 587
588/* scan_str
589 takes: start position in buffer
590 keep_quoted preserve \ on the embedded delimiter(s)
591 keep_delims preserve the delimiters around the string
592 returns: position to continue reading from buffer
593 side-effects: multi_start, multi_close, lex_repl or lex_stuff, and
594 updates the read buffer.
595
596 This subroutine pulls a string out of the input. It is called for:
597 q single quotes q(literal text)
598 ' single quotes 'literal text'
599 qq double quotes qq(interpolate $here please)
600 " double quotes "interpolate $here please"
601 qx backticks qx(/bin/ls -l)
602 ` backticks `/bin/ls -l`
603 qw quote words @EXPORT_OK = qw( func() $spam )
604 m// regexp match m/this/
605 s/// regexp substitute s/this/that/
606 tr/// string transliterate tr/this/that/
607 y/// string transliterate y/this/that/
608 ($*@) sub prototypes sub foo ($)
609 (stuff) sub attr parameters sub foo : attr(stuff)
610 <> readline or globs <FOO>, <>, <$fh>, or <*.c>
611
612 In most of these cases (all but <>, patterns and transliterate)
613 yylex() calls scan_str(). m// makes yylex() call scan_pat() which
614 calls scan_str(). s/// makes yylex() call scan_subst() which calls
615 scan_str(). tr/// and y/// make yylex() call scan_trans() which
616 calls scan_str().
617
618 It skips whitespace before the string starts, and treats the first
619 character as the delimiter. If the delimiter is one of ([{< then
620 the corresponding "close" character )]}> is used as the closing
621 delimiter. It allows quoting of delimiters, and if the string has
622 balanced delimiters ([{<>}]) it allows nesting.
623
624 On success, the SV with the resulting string is put into lex_stuff or,
625 if that is already non-NULL, into lex_repl. The second case occurs only
626 when parsing the RHS of the special constructs s/// and tr/// (y///).
627 For convenience, the terminating delimiter character is stuffed into
628 SvIVX of the SV.
629*/
630
631STATIC char *
632S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims)
633{
634 SV *sv; /* scalar value: string */
635 char *tmps; /* temp string, used for delimiter matching */
636 register char *s = start; /* current position in the buffer */
637 register char term; /* terminating character */
638 register char *to; /* current position in the sv's data */
639 I32 brackets = 1; /* bracket nesting level */
640 bool has_utf8 = FALSE; /* is there any utf8 content? */
641 I32 termcode; /* terminating char. code */
71511651 642 /* 5.8.7+ uses UTF8_MAXBYTES but also its utf8.h defs _MAXLEN to it so
643 I'm reasonably hopeful this won't destroy anything (mst) */
644 U8 termstr[UTF8_MAXLEN]; /* terminating string */
0ba8c7aa 645 STRLEN termlen; /* length of terminating string */
646 char *last = NULL; /* last position for nesting bracket */
647
648 /* skip space before the delimiter */
649 if (isSPACE(*s))
650 s = skipspace(s);
651
652 /* mark where we are, in case we need to report errors */
653 CLINE;
654
655 /* after skipping whitespace, the next character is the terminator */
656 term = *s;
657 if (!UTF) {
658 termcode = termstr[0] = term;
659 termlen = 1;
660 }
661 else {
3f61a25a 662 termcode = utf8_to_uvchr_buf((U8*)s, PL_bufend, &termlen);
0ba8c7aa 663 Copy(s, termstr, termlen, U8);
664 if (!UTF8_IS_INVARIANT(term))
665 has_utf8 = TRUE;
666 }
667
668 /* mark where we are */
669 PL_multi_start = CopLINE(PL_curcop);
670 PL_multi_open = term;
671
672 /* find corresponding closing delimiter */
673 if (term && (tmps = strchr("([{< )]}> )]}>",term)))
674 termcode = termstr[0] = term = tmps[5];
675
676 PL_multi_close = term;
677
678 /* create a new SV to hold the contents. 87 is leak category, I'm
679 assuming. 79 is the SV's initial length. What a random number. */
680 sv = NEWSV(87,79);
681 sv_upgrade(sv, SVt_PVIV);
682 SvIV_set(sv, termcode);
683 (void)SvPOK_only(sv); /* validate pointer */
684
685 /* move past delimiter and try to read a complete string */
686 if (keep_delims)
687 sv_catpvn(sv, s, termlen);
688 s += termlen;
689 for (;;) {
690 if (PL_encoding && !UTF) {
691 bool cont = TRUE;
692
693 while (cont) {
694 int offset = s - SvPVX_const(PL_linestr);
695 const bool found = sv_cat_decode(sv, PL_encoding, PL_linestr,
696 &offset, (char*)termstr, termlen);
697 const char *ns = SvPVX_const(PL_linestr) + offset;
698 char *svlast = SvEND(sv) - 1;
699
700 for (; s < ns; s++) {
701 if (*s == '\n' && !PL_rsfp)
702 CopLINE_inc(PL_curcop);
703 }
704 if (!found)
705 goto read_more_line;
706 else {
707 /* handle quoted delimiters */
708 if (SvCUR(sv) > 1 && *(svlast-1) == '\\') {
709 const char *t;
710 for (t = svlast-2; t >= SvPVX_const(sv) && *t == '\\';)
711 t--;
712 if ((svlast-1 - t) % 2) {
713 if (!keep_quoted) {
714 *(svlast-1) = term;
715 *svlast = '\0';
716 SvCUR_set(sv, SvCUR(sv) - 1);
717 }
718 continue;
719 }
720 }
721 if (PL_multi_open == PL_multi_close) {
722 cont = FALSE;
723 }
724 else {
725 const char *t;
726 char *w;
727 if (!last)
728 last = SvPVX(sv);
729 for (t = w = last; t < svlast; w++, t++) {
730 /* At here, all closes are "was quoted" one,
731 so we don't check PL_multi_close. */
732 if (*t == '\\') {
733 if (!keep_quoted && *(t+1) == PL_multi_open)
734 t++;
735 else
736 *w++ = *t++;
737 }
738 else if (*t == PL_multi_open)
739 brackets++;
740
741 *w = *t;
742 }
743 if (w < t) {
744 *w++ = term;
745 *w = '\0';
746 SvCUR_set(sv, w - SvPVX_const(sv));
747 }
748 last = w;
749 if (--brackets <= 0)
750 cont = FALSE;
751 }
752 }
753 }
754 if (!keep_delims) {
755 SvCUR_set(sv, SvCUR(sv) - 1);
756 *SvEND(sv) = '\0';
757 }
758 break;
759 }
760
761 /* extend sv if need be */
762 SvGROW(sv, SvCUR(sv) + (PL_bufend - s) + 1);
763 /* set 'to' to the next character in the sv's string */
764 to = SvPVX(sv)+SvCUR(sv);
765
766 /* if open delimiter is the close delimiter read unbridle */
767 if (PL_multi_open == PL_multi_close) {
768 for (; s < PL_bufend; s++,to++) {
769 /* embedded newlines increment the current line number */
770 if (*s == '\n' && !PL_rsfp)
771 CopLINE_inc(PL_curcop);
772 /* handle quoted delimiters */
773 if (*s == '\\' && s+1 < PL_bufend && term != '\\') {
774 if (!keep_quoted && s[1] == term)
775 s++;
776 /* any other quotes are simply copied straight through */
777 else
778 *to++ = *s++;
779 }
780 /* terminate when run out of buffer (the for() condition), or
781 have found the terminator */
782 else if (*s == term) {
783 if (termlen == 1)
784 break;
785 if (s+termlen <= PL_bufend && memEQ(s, (char*)termstr, termlen))
786 break;
787 }
788 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
789 has_utf8 = TRUE;
790 *to = *s;
791 }
792 }
793
794 /* if the terminator isn't the same as the start character (e.g.,
795 matched brackets), we have to allow more in the quoting, and
796 be prepared for nested brackets.
797 */
798 else {
799 /* read until we run out of string, or we find the terminator */
800 for (; s < PL_bufend; s++,to++) {
801 /* embedded newlines increment the line count */
802 if (*s == '\n' && !PL_rsfp)
803 CopLINE_inc(PL_curcop);
804 /* backslashes can escape the open or closing characters */
805 if (*s == '\\' && s+1 < PL_bufend) {
806 if (!keep_quoted &&
807 ((s[1] == PL_multi_open) || (s[1] == PL_multi_close)))
808 s++;
809 else
810 *to++ = *s++;
811 }
812 /* allow nested opens and closes */
813 else if (*s == PL_multi_close && --brackets <= 0)
814 break;
815 else if (*s == PL_multi_open)
816 brackets++;
817 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
818 has_utf8 = TRUE;
819 *to = *s;
820 }
821 }
822 /* terminate the copied string and update the sv's end-of-string */
823 *to = '\0';
824 SvCUR_set(sv, to - SvPVX_const(sv));
825
826 /*
827 * this next chunk reads more into the buffer if we're not done yet
828 */
829
830 if (s < PL_bufend)
831 break; /* handle case where we are done yet :-) */
832
833#ifndef PERL_STRICT_CR
834 if (to - SvPVX_const(sv) >= 2) {
835 if ((to[-2] == '\r' && to[-1] == '\n') ||
836 (to[-2] == '\n' && to[-1] == '\r'))
837 {
838 to[-2] = '\n';
839 to--;
840 SvCUR_set(sv, to - SvPVX_const(sv));
841 }
842 else if (to[-1] == '\r')
843 to[-1] = '\n';
844 }
845 else if (to - SvPVX_const(sv) == 1 && to[-1] == '\r')
846 to[-1] = '\n';
847#endif
848
849 read_more_line:
850 /* if we're out of file, or a read fails, bail and reset the current
851 line marker so we can report where the unterminated string began
852 */
853 if (!PL_rsfp ||
854 !(PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = filter_gets(PL_linestr, PL_rsfp, 0))) {
855 sv_free(sv);
856 CopLINE_set(PL_curcop, (line_t)PL_multi_start);
857 return Nullch;
858 }
859 /* we read a line, so increment our line counter */
860 CopLINE_inc(PL_curcop);
861
862 /* update debugger info */
863 if (PERLDB_LINE && PL_curstash != PL_debstash) {
ec25cea7 864 AV *fileav = CopFILEAV(PL_curcop);
865 if (fileav) {
866 SV *sv = NEWSV(88,0);
867 sv_upgrade(sv, SVt_PVMG);
868 sv_setsv(sv,PL_linestr);
869 (void)SvIOK_on(sv);
870 SvIV_set(sv, 0);
871 av_store(fileav, (I32)CopLINE(PL_curcop), sv);
872 }
0ba8c7aa 873 }
874
875 /* having changed the buffer, we must update PL_bufend */
876 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
877 PL_last_lop = PL_last_uni = Nullch;
878 }
879
880 /* at this point, we have successfully read the delimited string */
881
882 if (!PL_encoding || UTF) {
883 if (keep_delims)
884 sv_catpvn(sv, s, termlen);
885 s += termlen;
886 }
887 if (has_utf8 || PL_encoding)
888 SvUTF8_on(sv);
889
890 PL_multi_end = CopLINE(PL_curcop);
891
892 /* if we allocated too much space, give some back */
893 if (SvCUR(sv) + 5 < SvLEN(sv)) {
894 SvLEN_set(sv, SvCUR(sv) + 1);
71511651 895/* 5.8.8 uses SvPV_renew, no prior version actually has the damn thing (mst) */
896#ifdef PERL_5_8_8_PLUS
0ba8c7aa 897 SvPV_renew(sv, SvLEN(sv));
71511651 898#else
899 Renew(SvPVX(sv), SvLEN(sv), char);
900#endif
0ba8c7aa 901 }
902
903 /* decide whether this is the first or second quoted string we've read
904 for this op
905 */
906
907 if (PL_lex_stuff)
908 PL_lex_repl = sv;
909 else
910 PL_lex_stuff = sv;
911 return s;
912}
913
92997e69 914#define XFAKEBRACK 128
915
916STATIC char *
917S_scan_ident(pTHX_ register char *s, register const char *send, char *dest, STRLEN destlen, I32 ck_uni)
918{
919 register char *d;
920 register char *e;
921 char *bracket = Nullch;
922 char funny = *s++;
923
924 if (isSPACE(*s))
925 s = skipspace(s);
926 d = dest;
927 e = d + destlen - 3; /* two-character token, ending NUL */
928 if (isDIGIT(*s)) {
929 while (isDIGIT(*s)) {
930 if (d >= e)
931 Perl_croak(aTHX_ ident_too_long);
932 *d++ = *s++;
933 }
934 }
935 else {
936 for (;;) {
937 if (d >= e)
938 Perl_croak(aTHX_ ident_too_long);
52790f4f 939 if (UTF && isIDFIRST_utf8_safe((const U8*) s, (const U8*) PL_bufend)) {
940 /* The UTF-8 case must come first, otherwise things
941 * like c\N{COMBINING TILDE} would start failing, as the
942 * isALNUM case below would gobble the 'c' up.
943 */
944
945 char *t = s + UTF8SKIP(s);
946 while (isIDCONT_utf8_safe((const U8*) t, (const U8*) PL_bufend)) {
947 t += UTF8SKIP(t);
948 }
949 if (d + (t - s) > e)
950 Perl_croak(aTHX_ "%s", ident_too_long);
951 Copy(s, d, t - s, char);
952 *d += t - s;
953 s = t;
954 }
955 else if (isALNUM(*s))
956 do {
957 *d++ = *s++;
958 } while (isWORDCHAR_A(*s) && d < e);
959 else if (*s == '\'' && isIDFIRST_lazy_if_safe(s+1,send,UTF)) {
92997e69 960 *d++ = ':';
961 *d++ = ':';
962 s++;
963 }
964 else if (*s == ':' && s[1] == ':') {
965 *d++ = *s++;
966 *d++ = *s++;
967 }
92997e69 968 else
969 break;
970 }
971 }
972 *d = '\0';
973 d = dest;
974 if (*d) {
975 if (PL_lex_state != LEX_NORMAL)
976 PL_lex_state = LEX_INTERPENDMAYBE;
977 return s;
978 }
979 if (*s == '$' && s[1] &&
52790f4f 980 ( isALNUM_lazy_if_safe(s+1,send,UTF)
981 || s[1] == '$' || s[1] == '{' || strnEQ(s+1,"::",2)) )
92997e69 982 {
983 return s;
984 }
985 if (*s == '{') {
986 bracket = s;
987 s++;
ec25cea7 988 } else if (ck_uni) {
989 /* we always call this with ck_uni == 0, so no need for check_uni() */
990 /* check_uni(); */
92997e69 991 }
92997e69 992 if (s < send)
993 *d = *s++;
994 d[1] = '\0';
995 if (*d == '^' && *s && isCONTROLVAR(*s)) {
996 *d = toCTRL(*s);
997 s++;
998 }
999 if (bracket) {
1000 if (isSPACE(s[-1])) {
1001 while (s < send) {
1002 const char ch = *s++;
1003 if (!SPACE_OR_TAB(ch)) {
1004 *d = ch;
1005 break;
1006 }
1007 }
1008 }
52790f4f 1009 if (isIDFIRST_lazy_if_safe(d,d+destlen,UTF)) {
92997e69 1010 d++;
1011 if (UTF) {
1012 e = s;
52790f4f 1013 while ( ( e < send
1014 && isIDFIRST_utf8_safe(e, send)
1015 || *e == ':'))
1016 {
92997e69 1017 e += UTF8SKIP(e);
52790f4f 1018 while (e < send && isIDFIRST_utf8_safe(e, send))
92997e69 1019 e += UTF8SKIP(e);
1020 }
1021 Copy(s, d, e - s, char);
1022 d += e - s;
1023 s = e;
1024 }
1025 else {
1026 while ((isALNUM(*s) || *s == ':') && d < e)
1027 *d++ = *s++;
1028 if (d >= e)
1029 Perl_croak(aTHX_ ident_too_long);
1030 }
1031 *d = '\0';
1032 while (s < send && SPACE_OR_TAB(*s)) s++;
1033 if ((*s == '[' || (*s == '{' && strNE(dest, "sub")))) {
d6e7537a 1034 /* we don't want perl to guess what is meant. the keyword
1035 * parser decides that later. (rafl)
1036 */
1037 /*
92997e69 1038 if (ckWARN(WARN_AMBIGUOUS) && keyword(dest, d - dest)) {
1039 const char *brack = *s == '[' ? "[...]" : "{...}";
1040 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
1041 "Ambiguous use of %c{%s%s} resolved to %c%s%s",
1042 funny, dest, brack, funny, dest, brack);
1043 }
d6e7537a 1044 */
92997e69 1045 bracket++;
1046 PL_lex_brackstack[PL_lex_brackets++] = (char)(XOPERATOR | XFAKEBRACK);
1047 return s;
1048 }
1049 }
1050 /* Handle extended ${^Foo} variables
1051 * 1999-02-27 mjd-perl-patch@plover.com */
1052 else if (!isALNUM(*d) && !isPRINT(*d) /* isCTRL(d) */
1053 && isALNUM(*s))
1054 {
1055 d++;
1056 while (isALNUM(*s) && d < e) {
1057 *d++ = *s++;
1058 }
1059 if (d >= e)
1060 Perl_croak(aTHX_ ident_too_long);
1061 *d = '\0';
1062 }
1063 if (*s == '}') {
1064 s++;
1065 if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets) {
1066 PL_lex_state = LEX_INTERPEND;
1067 PL_expect = XREF;
1068 }
1069 if (funny == '#')
1070 funny = '@';
d6e7537a 1071 /* we don't want perl to guess what is meant. the keyword
1072 * parser decides that later. (rafl)
1073 */
1074 /*
92997e69 1075 if (PL_lex_state == LEX_NORMAL) {
1076 if (ckWARN(WARN_AMBIGUOUS) &&
1077 (keyword(dest, d - dest) || get_cv(dest, FALSE)))
1078 {
1079 Perl_warner(aTHX_ packWARN(WARN_AMBIGUOUS),
1080 "Ambiguous use of %c{%s} resolved to %c%s",
1081 funny, dest, funny, dest);
1082 }
1083 }
d6e7537a 1084 */
92997e69 1085 }
1086 else {
1087 s = bracket; /* let the parser handle it */
1088 *dest = '\0';
1089 }
1090 }
d6e7537a 1091 /* don't intuit. we really just want the string. (rafl) */
1092 /*
92997e69 1093 else if (PL_lex_state == LEX_INTERPNORMAL && !PL_lex_brackets && !intuit_more(s))
1094 PL_lex_state = LEX_INTERPEND;
d6e7537a 1095 */
92997e69 1096 return s;
1097}