Check if reallocation of PL_linestr is necessary before doing it.
[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
78160085 22#define skipspace(a) S_skipspace(aTHX_ a)
23#define incline(a) S_incline(aTHX_ a)
24#define filter_gets(a,b,c) S_filter_gets(aTHX_ a,b,c)
25#define scan_str(a,b,c) S_scan_str(aTHX_ a,b,c)
26#define scan_word(a,b,c,d,e) S_scan_word(aTHX_ a,b,c,d,e)
27
28STATIC void S_incline(pTHX_ char *s);
29STATIC char* S_skipspace(pTHX_ char *s);
30STATIC char * S_filter_gets(pTHX_ SV *sv, PerlIO *fp, STRLEN append);
31STATIC char* S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims);
32STATIC char* S_scan_word(pTHX_ char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp);
33
e807ee50 34#define DPTR2FPTR(t,p) ((t)PTR2nat(p)) /* data pointer to function pointer */
35#define FPTR2DPTR(t,p) ((t)PTR2nat(p)) /* function pointer to data pointer */
c630715a 36#define PTR2nat(p) (PTRV)(p) /* pointer to integer of PTRSIZE */
e807ee50 37#define MEM_WRAP_CHECK_(n,t) MEM_WRAP_CHECK(n,t),
14ab3472 38
39/* conditionalise these two because as of 5.9.5 we already get them from
40 the headers (mst) */
41#ifndef Newx
e807ee50 42#define Newx(v,n,t) (v = (MEM_WRAP_CHECK_(n,t) (t*)safemalloc((MEM_SIZE)((n)*sizeof(t)))))
14ab3472 43#endif
44#ifndef SvPVX_const
0ba8c7aa 45#define SvPVX_const(sv) ((const char*) (0 + SvPVX(sv)))
14ab3472 46#endif
47
0ba8c7aa 48#define SvPV_renew(sv,n) \
49 STMT_START { SvLEN_set(sv, n); \
50 SvPV_set((sv), (MEM_WRAP_CHECK_(n,char) \
51 (char*)saferealloc((Malloc_t)SvPVX(sv), \
52 (MEM_SIZE)((n))))); \
53 } STMT_END
e807ee50 54
c630715a 55/* On MacOS, respect nonbreaking spaces */
56#ifdef MACOS_TRADITIONAL
57#define SPACE_OR_TAB(c) ((c)==' '||(c)=='\312'||(c)=='\t')
58#else
59#define SPACE_OR_TAB(c) ((c)==' '||(c)=='\t')
60#endif
e807ee50 61
0ba8c7aa 62#define CLINE (PL_copline = (CopLINE(PL_curcop) < PL_copline ? CopLINE(PL_curcop) : PL_copline))
63
e807ee50 64#define LEX_NORMAL 10 /* normal code (ie not within "...") */
65#define LEX_INTERPNORMAL 9 /* code within a string, eg "$foo[$x+1]" */
66#define LEX_INTERPCASEMOD 8 /* expecting a \U, \Q or \E etc */
67#define LEX_INTERPPUSH 7 /* starting a new sublex parse level */
68#define LEX_INTERPSTART 6 /* expecting the start of a $var */
69
70 /* at end of code, eg "$x" followed by: */
71#define LEX_INTERPEND 5 /* ... eg not one of [, { or -> */
72#define LEX_INTERPENDMAYBE 4 /* ... eg one of [, { or -> */
73
74#define LEX_INTERPCONCAT 3 /* expecting anything, eg at start of
75 string or after \E, $foo, etc */
76#define LEX_INTERPCONST 2 /* NOT USED */
77#define LEX_FORMLINE 1 /* expecting a format line */
78#define LEX_KNOWNEXT 0 /* next token known; just return it */
79
14ab3472 80/* and these two are my own madness (mst) */
71511651 81
82#if PERL_REVISION == 5 && PERL_VERSION == 8 && PERL_SUBVERSION >= 8
83#define PERL_5_8_8_PLUS
84#endif
85
e38f5a74 86#if PERL_REVISION == 5 && PERL_VERSION > 8
87#define PERL_5_9_PLUS
88#endif
89
90#ifdef PERL_5_9_PLUS
14ab3472 91/* 5.9+ moves a bunch of things to a PL_parser struct so we need to
92 declare the backcompat macros for things to still work (mst) */
93
94/* XXX temporary backwards compatibility */
95#define PL_lex_brackets (PL_parser->lex_brackets)
96#define PL_lex_brackstack (PL_parser->lex_brackstack)
97#define PL_lex_casemods (PL_parser->lex_casemods)
98#define PL_lex_casestack (PL_parser->lex_casestack)
99#define PL_lex_defer (PL_parser->lex_defer)
100#define PL_lex_dojoin (PL_parser->lex_dojoin)
101#define PL_lex_expect (PL_parser->lex_expect)
102#define PL_lex_formbrack (PL_parser->lex_formbrack)
103#define PL_lex_inpat (PL_parser->lex_inpat)
104#define PL_lex_inwhat (PL_parser->lex_inwhat)
105#define PL_lex_op (PL_parser->lex_op)
106#define PL_lex_repl (PL_parser->lex_repl)
107#define PL_lex_starts (PL_parser->lex_starts)
108#define PL_lex_stuff (PL_parser->lex_stuff)
109#define PL_multi_start (PL_parser->multi_start)
110#define PL_multi_open (PL_parser->multi_open)
111#define PL_multi_close (PL_parser->multi_close)
112#define PL_pending_ident (PL_parser->pending_ident)
113#define PL_preambled (PL_parser->preambled)
114#define PL_sublex_info (PL_parser->sublex_info)
115#define PL_linestr (PL_parser->linestr)
116#define PL_sublex_info (PL_parser->sublex_info)
117#define PL_linestr (PL_parser->linestr)
118#define PL_expect (PL_parser->expect)
119#define PL_copline (PL_parser->copline)
120#define PL_bufptr (PL_parser->bufptr)
121#define PL_oldbufptr (PL_parser->oldbufptr)
122#define PL_oldoldbufptr (PL_parser->oldoldbufptr)
123#define PL_linestart (PL_parser->linestart)
124#define PL_bufend (PL_parser->bufend)
125#define PL_last_uni (PL_parser->last_uni)
126#define PL_last_lop (PL_parser->last_lop)
127#define PL_last_lop_op (PL_parser->last_lop_op)
128#define PL_lex_state (PL_parser->lex_state)
129#define PL_rsfp (PL_parser->rsfp)
130#define PL_rsfp_filters (PL_parser->rsfp_filters)
131#define PL_in_my (PL_parser->in_my)
132#define PL_in_my_stash (PL_parser->in_my_stash)
133#define PL_tokenbuf (PL_parser->tokenbuf)
134#define PL_multi_end (PL_parser->multi_end)
135#define PL_error_count (PL_parser->error_count)
136/* these three are from the non-PERL_MAD path but I don't -think- I need
137 the PERL_MAD stuff since my code isn't really populating things (mst) */
138# define PL_nexttoke (PL_parser->nexttoke)
139# define PL_nexttype (PL_parser->nexttype)
140# define PL_nextval (PL_parser->nextval)
141/* end of backcompat macros form 5.9 toke.c (mst) */
78160085 142#endif
14ab3472 143
144/* when ccflags include -DDEBUGGING we need this for earlier 5.8 perls */
145#ifndef SvPV_nolen_const
146#define SvPV_nolen_const SvPV_nolen
147#endif
148
71511651 149/* and now we're back to the toke.c stuff again (mst) */
150
e807ee50 151static const char ident_too_long[] =
152 "Identifier too long";
153static const char c_without_g[] =
154 "Use of /c modifier is meaningless without /g";
155static const char c_in_subst[] =
156 "Use of /c modifier is meaningless in s///";
157
158#ifdef USE_UTF8_SCRIPTS
159# define UTF (!IN_BYTES)
160#else
161# define UTF ((PL_linestr && DO_UTF8(PL_linestr)) || (PL_hints & HINT_UTF8))
162#endif
163
164/* Invoke the idxth filter function for the current rsfp. */
165/* maxlen 0 = read one text line */
166I32
167Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen)
168{
169 filter_t funcp;
170 SV *datasv = NULL;
171
172 if (!PL_rsfp_filters)
173 return -1;
174 if (idx > AvFILLp(PL_rsfp_filters)) { /* Any more filters? */
175 /* Provide a default input filter to make life easy. */
176 /* Note that we append to the line. This is handy. */
177 DEBUG_P(PerlIO_printf(Perl_debug_log,
178 "filter_read %d: from rsfp\n", idx));
179 if (maxlen) {
180 /* Want a block */
181 int len ;
182 const int old_len = SvCUR(buf_sv);
183
184 /* ensure buf_sv is large enough */
185 SvGROW(buf_sv, (STRLEN)(old_len + maxlen)) ;
186 if ((len = PerlIO_read(PL_rsfp, SvPVX(buf_sv) + old_len, maxlen)) <= 0){
187 if (PerlIO_error(PL_rsfp))
188 return -1; /* error */
189 else
190 return 0 ; /* end of file */
191 }
192 SvCUR_set(buf_sv, old_len + len) ;
193 } else {
194 /* Want a line */
195 if (sv_gets(buf_sv, PL_rsfp, SvCUR(buf_sv)) == NULL) {
196 if (PerlIO_error(PL_rsfp))
197 return -1; /* error */
198 else
199 return 0 ; /* end of file */
200 }
201 }
202 return SvCUR(buf_sv);
203 }
204 /* Skip this filter slot if filter has been deleted */
205 if ( (datasv = FILTER_DATA(idx)) == &PL_sv_undef) {
206 DEBUG_P(PerlIO_printf(Perl_debug_log,
207 "filter_read %d: skipped (filter deleted)\n",
208 idx));
209 return FILTER_READ(idx+1, buf_sv, maxlen); /* recurse */
210 }
211 /* Get function pointer hidden within datasv */
212 funcp = DPTR2FPTR(filter_t, IoANY(datasv));
213 DEBUG_P(PerlIO_printf(Perl_debug_log,
214 "filter_read %d: via function %p (%s)\n",
215 idx, datasv, SvPV_nolen_const(datasv)));
216 /* Call function. The function is expected to */
217 /* call "FILTER_READ(idx+1, buf_sv)" first. */
218 /* Return: <0:error, =0:eof, >0:not eof */
219 return (*funcp)(aTHX_ idx, buf_sv, maxlen);
220}
221
222STATIC char *
223S_filter_gets(pTHX_ register SV *sv, register PerlIO *fp, STRLEN append)
224{
225#ifdef PERL_CR_FILTER
226 if (!PL_rsfp_filters) {
227 filter_add(S_cr_textfilter,NULL);
228 }
229#endif
230 if (PL_rsfp_filters) {
231 if (!append)
232 SvCUR_set(sv, 0); /* start with empty line */
233 if (FILTER_READ(0, sv, 0) > 0)
234 return ( SvPVX(sv) ) ;
235 else
236 return Nullch ;
237 }
238 else
239 return (sv_gets(sv, fp, append));
240}
241
242/*
243 * S_skipspace
244 * Called to gobble the appropriate amount and type of whitespace.
245 * Skips comments as well.
246 */
247
248STATIC char *
249S_skipspace(pTHX_ register char *s)
250{
251 if (PL_lex_formbrack && PL_lex_brackets <= PL_lex_formbrack) {
252 while (s < PL_bufend && SPACE_OR_TAB(*s))
253 s++;
254 return s;
255 }
256 for (;;) {
257 STRLEN prevlen;
258 SSize_t oldprevlen, oldoldprevlen;
259 SSize_t oldloplen = 0, oldunilen = 0;
260 while (s < PL_bufend && isSPACE(*s)) {
261 if (*s++ == '\n' && PL_in_eval && !PL_rsfp)
262 incline(s);
263 }
264
265 /* comment */
266 if (s < PL_bufend && *s == '#') {
267 while (s < PL_bufend && *s != '\n')
268 s++;
269 if (s < PL_bufend) {
270 s++;
271 if (PL_in_eval && !PL_rsfp) {
272 incline(s);
273 continue;
274 }
275 }
276 }
277
278 /* only continue to recharge the buffer if we're at the end
279 * of the buffer, we're not reading from a source filter, and
280 * we're in normal lexing mode
281 */
282 if (s < PL_bufend || !PL_rsfp || PL_sublex_info.sub_inwhat ||
283 PL_lex_state == LEX_FORMLINE)
284 return s;
285
286 /* try to recharge the buffer */
287 if ((s = filter_gets(PL_linestr, PL_rsfp,
288 (prevlen = SvCUR(PL_linestr)))) == Nullch)
289 {
290 /* end of file. Add on the -p or -n magic */
291 if (PL_minus_p) {
292 sv_setpv(PL_linestr,
293 ";}continue{print or die qq(-p destination: $!\\n);}");
294 PL_minus_n = PL_minus_p = 0;
295 }
296 else if (PL_minus_n) {
297 sv_setpvn(PL_linestr, ";}", 2);
298 PL_minus_n = 0;
299 }
300 else
301 sv_setpvn(PL_linestr,";", 1);
302
303 /* reset variables for next time we lex */
304 PL_oldoldbufptr = PL_oldbufptr = PL_bufptr = s = PL_linestart
305 = SvPVX(PL_linestr);
306 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
307 PL_last_lop = PL_last_uni = Nullch;
308
309 /* Close the filehandle. Could be from -P preprocessor,
310 * STDIN, or a regular file. If we were reading code from
311 * STDIN (because the commandline held no -e or filename)
312 * then we don't close it, we reset it so the code can
313 * read from STDIN too.
314 */
315
316 if (PL_preprocess && !PL_in_eval)
317 (void)PerlProc_pclose(PL_rsfp);
318 else if ((PerlIO*)PL_rsfp == PerlIO_stdin())
319 PerlIO_clearerr(PL_rsfp);
320 else
321 (void)PerlIO_close(PL_rsfp);
322 PL_rsfp = Nullfp;
323 return s;
324 }
325
326 /* not at end of file, so we only read another line */
327 /* make corresponding updates to old pointers, for yyerror() */
328 oldprevlen = PL_oldbufptr - PL_bufend;
329 oldoldprevlen = PL_oldoldbufptr - PL_bufend;
330 if (PL_last_uni)
331 oldunilen = PL_last_uni - PL_bufend;
332 if (PL_last_lop)
333 oldloplen = PL_last_lop - PL_bufend;
334 PL_linestart = PL_bufptr = s + prevlen;
335 PL_bufend = s + SvCUR(PL_linestr);
336 s = PL_bufptr;
337 PL_oldbufptr = s + oldprevlen;
338 PL_oldoldbufptr = s + oldoldprevlen;
339 if (PL_last_uni)
340 PL_last_uni = s + oldunilen;
341 if (PL_last_lop)
342 PL_last_lop = s + oldloplen;
343 incline(s);
344
345 /* debugger active and we're not compiling the debugger code,
346 * so store the line into the debugger's array of lines
347 */
348 if (PERLDB_LINE && PL_curstash != PL_debstash) {
349 SV * const sv = NEWSV(85,0);
350
351 sv_upgrade(sv, SVt_PVMG);
352 sv_setpvn(sv,PL_bufptr,PL_bufend-PL_bufptr);
353 (void)SvIOK_on(sv);
354 SvIV_set(sv, 0);
355 av_store(CopFILEAV(PL_curcop),(I32)CopLINE(PL_curcop),sv);
356 }
357 }
358}
359
360STATIC char *
361S_scan_word(pTHX_ register char *s, char *dest, STRLEN destlen, int allow_package, STRLEN *slp)
362{
363 register char *d = dest;
364 register char * const e = d + destlen - 3; /* two-character token, ending NUL */
365 for (;;) {
366 if (d >= e)
367 Perl_croak(aTHX_ ident_too_long);
368 if (isALNUM(*s)) /* UTF handled below */
369 *d++ = *s++;
370 else if (*s == '\'' && allow_package && isIDFIRST_lazy_if(s+1,UTF)) {
371 *d++ = ':';
372 *d++ = ':';
373 s++;
374 }
375 else if (*s == ':' && s[1] == ':' && allow_package && s[2] != '$') {
376 *d++ = *s++;
377 *d++ = *s++;
378 }
379 else if (UTF && UTF8_IS_START(*s) && isALNUM_utf8((U8*)s)) {
380 char *t = s + UTF8SKIP(s);
381 while (UTF8_IS_CONTINUED(*t) && is_utf8_mark((U8*)t))
382 t += UTF8SKIP(t);
383 if (d + (t - s) > e)
384 Perl_croak(aTHX_ ident_too_long);
385 Copy(s, d, t - s, char);
386 d += t - s;
387 s = t;
388 }
389 else {
390 *d = '\0';
391 *slp = d - dest;
392 return s;
393 }
394 }
395}
396
397/*
398 * S_incline
399 * This subroutine has nothing to do with tilting, whether at windmills
400 * or pinball tables. Its name is short for "increment line". It
401 * increments the current line number in CopLINE(PL_curcop) and checks
402 * to see whether the line starts with a comment of the form
403 * # line 500 "foo.pm"
404 * If so, it sets the current line number and file to the values in the comment.
405 */
406
407STATIC void
78160085 408S_incline(pTHX_ char *s)
e807ee50 409{
410 char *t;
78160085 411 char *n;
412 char *e;
e807ee50 413 char ch;
414
415 CopLINE_inc(PL_curcop);
416 if (*s++ != '#')
417 return;
418 while (SPACE_OR_TAB(*s)) s++;
419 if (strnEQ(s, "line", 4))
420 s += 4;
421 else
422 return;
423 if (SPACE_OR_TAB(*s))
424 s++;
425 else
426 return;
427 while (SPACE_OR_TAB(*s)) s++;
428 if (!isDIGIT(*s))
429 return;
430 n = s;
431 while (isDIGIT(*s))
432 s++;
433 while (SPACE_OR_TAB(*s))
434 s++;
435 if (*s == '"' && (t = strchr(s+1, '"'))) {
436 s++;
437 e = t + 1;
438 }
439 else {
78160085 440 for (t = s; !isSPACE(*t); t++) ;
e807ee50 441 e = t;
442 }
443 while (SPACE_OR_TAB(*e) || *e == '\r' || *e == '\f')
444 e++;
445 if (*e != '\n' && *e != '\0')
446 return; /* false alarm */
447
448 ch = *t;
449 *t = '\0';
450 if (t - s > 0) {
71511651 451/* this chunk was added to S_incline during 5.8.8. I don't know why but I don't
452 honestly care since I probably want to be bug-compatible anyway (mst) */
453
454/* ... my kingdom for a perl parser in perl ... (mst) */
455
456#ifdef PERL_5_8_8_PLUS
e807ee50 457#ifndef USE_ITHREADS
458 const char *cf = CopFILE(PL_curcop);
459 if (cf && strlen(cf) > 7 && strnEQ(cf, "(eval ", 6)) {
460 /* must copy *{"::_<(eval N)[oldfilename:L]"}
461 * to *{"::_<newfilename"} */
462 char smallbuf[256], smallbuf2[256];
463 char *tmpbuf, *tmpbuf2;
464 GV **gvp, *gv2;
465 STRLEN tmplen = strlen(cf);
466 STRLEN tmplen2 = strlen(s);
467 if (tmplen + 3 < sizeof smallbuf)
468 tmpbuf = smallbuf;
469 else
470 Newx(tmpbuf, tmplen + 3, char);
471 if (tmplen2 + 3 < sizeof smallbuf2)
472 tmpbuf2 = smallbuf2;
473 else
474 Newx(tmpbuf2, tmplen2 + 3, char);
475 tmpbuf[0] = tmpbuf2[0] = '_';
476 tmpbuf[1] = tmpbuf2[1] = '<';
477 memcpy(tmpbuf + 2, cf, ++tmplen);
478 memcpy(tmpbuf2 + 2, s, ++tmplen2);
479 ++tmplen; ++tmplen2;
480 gvp = (GV**)hv_fetch(PL_defstash, tmpbuf, tmplen, FALSE);
481 if (gvp) {
482 gv2 = *(GV**)hv_fetch(PL_defstash, tmpbuf2, tmplen2, TRUE);
483 if (!isGV(gv2))
484 gv_init(gv2, PL_defstash, tmpbuf2, tmplen2, FALSE);
485 /* adjust ${"::_<newfilename"} to store the new file name */
486 GvSV(gv2) = newSVpvn(tmpbuf2 + 2, tmplen2 - 2);
487 GvHV(gv2) = (HV*)SvREFCNT_inc(GvHV(*gvp));
488 GvAV(gv2) = (AV*)SvREFCNT_inc(GvAV(*gvp));
489 }
490 if (tmpbuf != smallbuf) Safefree(tmpbuf);
491 if (tmpbuf2 != smallbuf2) Safefree(tmpbuf2);
492 }
493#endif
71511651 494#endif
495/* second endif closes out the "are we 5.8.(8+)" conditional */
e807ee50 496 CopFILE_free(PL_curcop);
497 CopFILE_set(PL_curcop, s);
498 }
499 *t = ch;
500 CopLINE_set(PL_curcop, atoi(n)-1);
501}
0ba8c7aa 502
503/* scan_str
504 takes: start position in buffer
505 keep_quoted preserve \ on the embedded delimiter(s)
506 keep_delims preserve the delimiters around the string
507 returns: position to continue reading from buffer
508 side-effects: multi_start, multi_close, lex_repl or lex_stuff, and
509 updates the read buffer.
510
511 This subroutine pulls a string out of the input. It is called for:
512 q single quotes q(literal text)
513 ' single quotes 'literal text'
514 qq double quotes qq(interpolate $here please)
515 " double quotes "interpolate $here please"
516 qx backticks qx(/bin/ls -l)
517 ` backticks `/bin/ls -l`
518 qw quote words @EXPORT_OK = qw( func() $spam )
519 m// regexp match m/this/
520 s/// regexp substitute s/this/that/
521 tr/// string transliterate tr/this/that/
522 y/// string transliterate y/this/that/
523 ($*@) sub prototypes sub foo ($)
524 (stuff) sub attr parameters sub foo : attr(stuff)
525 <> readline or globs <FOO>, <>, <$fh>, or <*.c>
526
527 In most of these cases (all but <>, patterns and transliterate)
528 yylex() calls scan_str(). m// makes yylex() call scan_pat() which
529 calls scan_str(). s/// makes yylex() call scan_subst() which calls
530 scan_str(). tr/// and y/// make yylex() call scan_trans() which
531 calls scan_str().
532
533 It skips whitespace before the string starts, and treats the first
534 character as the delimiter. If the delimiter is one of ([{< then
535 the corresponding "close" character )]}> is used as the closing
536 delimiter. It allows quoting of delimiters, and if the string has
537 balanced delimiters ([{<>}]) it allows nesting.
538
539 On success, the SV with the resulting string is put into lex_stuff or,
540 if that is already non-NULL, into lex_repl. The second case occurs only
541 when parsing the RHS of the special constructs s/// and tr/// (y///).
542 For convenience, the terminating delimiter character is stuffed into
543 SvIVX of the SV.
544*/
545
546STATIC char *
547S_scan_str(pTHX_ char *start, int keep_quoted, int keep_delims)
548{
549 SV *sv; /* scalar value: string */
550 char *tmps; /* temp string, used for delimiter matching */
551 register char *s = start; /* current position in the buffer */
552 register char term; /* terminating character */
553 register char *to; /* current position in the sv's data */
554 I32 brackets = 1; /* bracket nesting level */
555 bool has_utf8 = FALSE; /* is there any utf8 content? */
556 I32 termcode; /* terminating char. code */
71511651 557 /* 5.8.7+ uses UTF8_MAXBYTES but also its utf8.h defs _MAXLEN to it so
558 I'm reasonably hopeful this won't destroy anything (mst) */
559 U8 termstr[UTF8_MAXLEN]; /* terminating string */
0ba8c7aa 560 STRLEN termlen; /* length of terminating string */
561 char *last = NULL; /* last position for nesting bracket */
562
563 /* skip space before the delimiter */
564 if (isSPACE(*s))
565 s = skipspace(s);
566
567 /* mark where we are, in case we need to report errors */
568 CLINE;
569
570 /* after skipping whitespace, the next character is the terminator */
571 term = *s;
572 if (!UTF) {
573 termcode = termstr[0] = term;
574 termlen = 1;
575 }
576 else {
577 termcode = utf8_to_uvchr((U8*)s, &termlen);
578 Copy(s, termstr, termlen, U8);
579 if (!UTF8_IS_INVARIANT(term))
580 has_utf8 = TRUE;
581 }
582
583 /* mark where we are */
584 PL_multi_start = CopLINE(PL_curcop);
585 PL_multi_open = term;
586
587 /* find corresponding closing delimiter */
588 if (term && (tmps = strchr("([{< )]}> )]}>",term)))
589 termcode = termstr[0] = term = tmps[5];
590
591 PL_multi_close = term;
592
593 /* create a new SV to hold the contents. 87 is leak category, I'm
594 assuming. 79 is the SV's initial length. What a random number. */
595 sv = NEWSV(87,79);
596 sv_upgrade(sv, SVt_PVIV);
597 SvIV_set(sv, termcode);
598 (void)SvPOK_only(sv); /* validate pointer */
599
600 /* move past delimiter and try to read a complete string */
601 if (keep_delims)
602 sv_catpvn(sv, s, termlen);
603 s += termlen;
604 for (;;) {
605 if (PL_encoding && !UTF) {
606 bool cont = TRUE;
607
608 while (cont) {
609 int offset = s - SvPVX_const(PL_linestr);
610 const bool found = sv_cat_decode(sv, PL_encoding, PL_linestr,
611 &offset, (char*)termstr, termlen);
612 const char *ns = SvPVX_const(PL_linestr) + offset;
613 char *svlast = SvEND(sv) - 1;
614
615 for (; s < ns; s++) {
616 if (*s == '\n' && !PL_rsfp)
617 CopLINE_inc(PL_curcop);
618 }
619 if (!found)
620 goto read_more_line;
621 else {
622 /* handle quoted delimiters */
623 if (SvCUR(sv) > 1 && *(svlast-1) == '\\') {
624 const char *t;
625 for (t = svlast-2; t >= SvPVX_const(sv) && *t == '\\';)
626 t--;
627 if ((svlast-1 - t) % 2) {
628 if (!keep_quoted) {
629 *(svlast-1) = term;
630 *svlast = '\0';
631 SvCUR_set(sv, SvCUR(sv) - 1);
632 }
633 continue;
634 }
635 }
636 if (PL_multi_open == PL_multi_close) {
637 cont = FALSE;
638 }
639 else {
640 const char *t;
641 char *w;
642 if (!last)
643 last = SvPVX(sv);
644 for (t = w = last; t < svlast; w++, t++) {
645 /* At here, all closes are "was quoted" one,
646 so we don't check PL_multi_close. */
647 if (*t == '\\') {
648 if (!keep_quoted && *(t+1) == PL_multi_open)
649 t++;
650 else
651 *w++ = *t++;
652 }
653 else if (*t == PL_multi_open)
654 brackets++;
655
656 *w = *t;
657 }
658 if (w < t) {
659 *w++ = term;
660 *w = '\0';
661 SvCUR_set(sv, w - SvPVX_const(sv));
662 }
663 last = w;
664 if (--brackets <= 0)
665 cont = FALSE;
666 }
667 }
668 }
669 if (!keep_delims) {
670 SvCUR_set(sv, SvCUR(sv) - 1);
671 *SvEND(sv) = '\0';
672 }
673 break;
674 }
675
676 /* extend sv if need be */
677 SvGROW(sv, SvCUR(sv) + (PL_bufend - s) + 1);
678 /* set 'to' to the next character in the sv's string */
679 to = SvPVX(sv)+SvCUR(sv);
680
681 /* if open delimiter is the close delimiter read unbridle */
682 if (PL_multi_open == PL_multi_close) {
683 for (; s < PL_bufend; s++,to++) {
684 /* embedded newlines increment the current line number */
685 if (*s == '\n' && !PL_rsfp)
686 CopLINE_inc(PL_curcop);
687 /* handle quoted delimiters */
688 if (*s == '\\' && s+1 < PL_bufend && term != '\\') {
689 if (!keep_quoted && s[1] == term)
690 s++;
691 /* any other quotes are simply copied straight through */
692 else
693 *to++ = *s++;
694 }
695 /* terminate when run out of buffer (the for() condition), or
696 have found the terminator */
697 else if (*s == term) {
698 if (termlen == 1)
699 break;
700 if (s+termlen <= PL_bufend && memEQ(s, (char*)termstr, termlen))
701 break;
702 }
703 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
704 has_utf8 = TRUE;
705 *to = *s;
706 }
707 }
708
709 /* if the terminator isn't the same as the start character (e.g.,
710 matched brackets), we have to allow more in the quoting, and
711 be prepared for nested brackets.
712 */
713 else {
714 /* read until we run out of string, or we find the terminator */
715 for (; s < PL_bufend; s++,to++) {
716 /* embedded newlines increment the line count */
717 if (*s == '\n' && !PL_rsfp)
718 CopLINE_inc(PL_curcop);
719 /* backslashes can escape the open or closing characters */
720 if (*s == '\\' && s+1 < PL_bufend) {
721 if (!keep_quoted &&
722 ((s[1] == PL_multi_open) || (s[1] == PL_multi_close)))
723 s++;
724 else
725 *to++ = *s++;
726 }
727 /* allow nested opens and closes */
728 else if (*s == PL_multi_close && --brackets <= 0)
729 break;
730 else if (*s == PL_multi_open)
731 brackets++;
732 else if (!has_utf8 && !UTF8_IS_INVARIANT((U8)*s) && UTF)
733 has_utf8 = TRUE;
734 *to = *s;
735 }
736 }
737 /* terminate the copied string and update the sv's end-of-string */
738 *to = '\0';
739 SvCUR_set(sv, to - SvPVX_const(sv));
740
741 /*
742 * this next chunk reads more into the buffer if we're not done yet
743 */
744
745 if (s < PL_bufend)
746 break; /* handle case where we are done yet :-) */
747
748#ifndef PERL_STRICT_CR
749 if (to - SvPVX_const(sv) >= 2) {
750 if ((to[-2] == '\r' && to[-1] == '\n') ||
751 (to[-2] == '\n' && to[-1] == '\r'))
752 {
753 to[-2] = '\n';
754 to--;
755 SvCUR_set(sv, to - SvPVX_const(sv));
756 }
757 else if (to[-1] == '\r')
758 to[-1] = '\n';
759 }
760 else if (to - SvPVX_const(sv) == 1 && to[-1] == '\r')
761 to[-1] = '\n';
762#endif
763
764 read_more_line:
765 /* if we're out of file, or a read fails, bail and reset the current
766 line marker so we can report where the unterminated string began
767 */
768 if (!PL_rsfp ||
769 !(PL_oldoldbufptr = PL_oldbufptr = s = PL_linestart = filter_gets(PL_linestr, PL_rsfp, 0))) {
770 sv_free(sv);
771 CopLINE_set(PL_curcop, (line_t)PL_multi_start);
772 return Nullch;
773 }
774 /* we read a line, so increment our line counter */
775 CopLINE_inc(PL_curcop);
776
777 /* update debugger info */
778 if (PERLDB_LINE && PL_curstash != PL_debstash) {
779 SV *sv = NEWSV(88,0);
780
781 sv_upgrade(sv, SVt_PVMG);
782 sv_setsv(sv,PL_linestr);
783 (void)SvIOK_on(sv);
784 SvIV_set(sv, 0);
785 av_store(CopFILEAV(PL_curcop), (I32)CopLINE(PL_curcop), sv);
786 }
787
788 /* having changed the buffer, we must update PL_bufend */
789 PL_bufend = SvPVX(PL_linestr) + SvCUR(PL_linestr);
790 PL_last_lop = PL_last_uni = Nullch;
791 }
792
793 /* at this point, we have successfully read the delimited string */
794
795 if (!PL_encoding || UTF) {
796 if (keep_delims)
797 sv_catpvn(sv, s, termlen);
798 s += termlen;
799 }
800 if (has_utf8 || PL_encoding)
801 SvUTF8_on(sv);
802
803 PL_multi_end = CopLINE(PL_curcop);
804
805 /* if we allocated too much space, give some back */
806 if (SvCUR(sv) + 5 < SvLEN(sv)) {
807 SvLEN_set(sv, SvCUR(sv) + 1);
71511651 808/* 5.8.8 uses SvPV_renew, no prior version actually has the damn thing (mst) */
809#ifdef PERL_5_8_8_PLUS
0ba8c7aa 810 SvPV_renew(sv, SvLEN(sv));
71511651 811#else
812 Renew(SvPVX(sv), SvLEN(sv), char);
813#endif
0ba8c7aa 814 }
815
816 /* decide whether this is the first or second quoted string we've read
817 for this op
818 */
819
820 if (PL_lex_stuff)
821 PL_lex_repl = sv;
822 else
823 PL_lex_stuff = sv;
824 return s;
825}
826
827/*
828 * S_force_next
829 * When the lexer realizes it knows the next token (for instance,
830 * it is reordering tokens for the parser) then it can call S_force_next
831 * to know what token to return the next time the lexer is called. Caller
832 * will need to set PL_nextval[], and possibly PL_expect to ensure the lexer
833 * handles the token correctly.
834 */
835
836STATIC void
837S_force_next(pTHX_ I32 type)
838{
839 PL_nexttype[PL_nexttoke] = type;
840 PL_nexttoke++;
841 if (PL_lex_state != LEX_KNOWNEXT) {
842 PL_lex_defer = PL_lex_state;
843 PL_lex_expect = PL_expect;
844 PL_lex_state = LEX_KNOWNEXT;
845 }
846}