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
|
/* vi: set ft=c : */
/* Perls before 5.18 lack isIDCONT_uni, but baring minor differences of weird
* Unicode characters, isALNUM_uni is close enough
*/
#ifndef isIDCONT_uni
#define isIDCONT_uni(c) isALNUM_uni(c)
#endif
#define sv_cat_c(sv, c) MY_sv_cat_c(aTHX_ sv, c)
static void MY_sv_cat_c(pTHX_ SV *sv, U32 c)
{
char ds[UTF8_MAXBYTES + 1], *d;
d = (char *)uvchr_to_utf8((U8 *)ds, c);
if (d - ds > 1) {
sv_utf8_upgrade(sv);
}
sv_catpvn(sv, ds, d - ds);
}
#define lex_consume(s) MY_lex_consume(aTHX_ s)
static int MY_lex_consume(pTHX_ char *s)
{
/* I want strprefix() */
size_t i;
for(i = 0; s[i]; i++) {
if(s[i] != PL_parser->bufptr[i])
return 0;
}
lex_read_to(PL_parser->bufptr + i);
return i;
}
enum {
LEX_IDENT_PACKAGENAME = (1<<0),
};
#define lex_scan_ident( ) MY_lex_scan_ident(aTHX_ 0)
#define lex_scan_packagename() MY_lex_scan_ident(aTHX_ LEX_IDENT_PACKAGENAME)
static SV *MY_lex_scan_ident(pTHX_ int flags)
{
I32 c;
bool at_start = TRUE;
char *ident = PL_parser->bufptr;
/* Don't get confused by things that look like attrs */
if((flags & LEX_IDENT_PACKAGENAME) && (ident[0] == ':' && ident[1] != ':'))
return FALSE;
while((c = lex_peek_unichar(0))) {
if(at_start ? isIDFIRST_uni(c) : isALNUM_uni(c))
at_start = FALSE;
/* TODO: This sucks in the case of a false Foo:Bar match */
else if((flags & LEX_IDENT_PACKAGENAME) && (c == ':') && (PL_parser->bufptr[1] == ':')) {
lex_read_unichar(0);
if(lex_read_unichar(0) != ':')
/* Probably unreachable now due to condition above? */
croak("Expected colon to be followed by another in package name");
}
else
break;
lex_read_unichar(0);
}
STRLEN len = PL_parser->bufptr - ident;
if(!len)
return NULL;
SV *ret = newSVpvn(ident, len);
if(lex_bufutf8())
SvUTF8_on(ret);
return ret;
}
#define lex_scan_attrval_into(name, val) MY_lex_scan_attrval_into(aTHX_ name, val)
static bool MY_lex_scan_attrval_into(pTHX_ SV *name, SV *val)
{
/* TODO: really want lex_scan_ident_into() */
SV *n = lex_scan_ident();
if(!n)
return FALSE;
sv_setsv(name, n);
SvREFCNT_dec(n);
if(name != val)
SvPOK_off(val);
/* Do not read space here as space is not allowed between NAME(ARGS) */
if(lex_peek_unichar(0) != '(')
return TRUE;
lex_read_unichar(0);
if(name == val)
sv_cat_c(val, '(');
else
sv_setpvs(val, "");
int count = 1;
I32 c = lex_peek_unichar(0);
while(count && c != -1) {
if(c == '(')
count++;
if(c == ')')
count--;
if(c == '\\') {
/* The next char does not bump count even if it is ( or );
* the \\ is still captured
*/
sv_cat_c(val, lex_read_unichar(0));
c = lex_peek_unichar(0);
if(c == -1)
goto unterminated;
}
/* Don't append final closing ')' on split name/val */
if(count || (name == val))
sv_cat_c(val, c);
lex_read_unichar(0);
c = lex_peek_unichar(0);
}
if(c == -1)
return FALSE;
return TRUE;
unterminated:
croak("Unterminated attribute parameter in attribute list");
}
#define lex_scan_attr() MY_lex_scan_attr(aTHX)
static SV *MY_lex_scan_attr(pTHX)
{
SV *ret = newSV(0);
if(MY_lex_scan_attrval_into(aTHX_ ret, ret))
return ret;
SvREFCNT_dec(ret);
return NULL;
}
#define lex_scan_attrs(compcv) MY_lex_scan_attrs(aTHX_ compcv)
static OP *MY_lex_scan_attrs(pTHX_ CV *compcv)
{
/* Attributes are supplied to newATTRSUB() as an OP_LIST containing
* OP_CONSTs, one attribute in each as a plain SV. Note that we don't have
* to parse inside the contents of the parens; that is handled by the
* attribute handlers themselves
*/
OP *attrs = NULL;
SV *attr;
lex_read_space(0);
while((attr = lex_scan_attr())) {
lex_read_space(0);
if(compcv && strEQ(SvPV_nolen(attr), "lvalue")) {
CvLVALUE_on(compcv);
}
if(!attrs)
attrs = newLISTOP(OP_LIST, 0, NULL, NULL);
attrs = op_append_elem(OP_LIST, attrs, newSVOP(OP_CONST, 0, attr));
/* Accept additional colons to prefix additional attrs */
if(lex_peek_unichar(0) == ':') {
lex_read_unichar(0);
lex_read_space(0);
}
}
return attrs;
}
#define lex_scan_lexvar() MY_lex_scan_lexvar(aTHX)
static SV *MY_lex_scan_lexvar(pTHX)
{
int sigil = lex_peek_unichar(0);
switch(sigil) {
case '$':
case '@':
case '%':
lex_read_unichar(0);
break;
default:
croak("Expected a lexical variable");
}
SV *ret = lex_scan_ident();
if(!ret)
return NULL;
/* prepend sigil - which we know to be a single byte */
SvGROW(ret, SvCUR(ret) + 1);
Move(SvPVX(ret), SvPVX(ret) + 1, SvCUR(ret), char);
SvPVX(ret)[0] = sigil;
SvCUR(ret)++;
SvPVX(ret)[SvCUR(ret)] = 0;
return ret;
}
#define lex_scan_parenthesized() MY_lex_scan_parenthesized(aTHX)
static SV *MY_lex_scan_parenthesized(pTHX)
{
I32 c;
int parencount = 0;
SV *ret = newSVpvs("");
if(lex_bufutf8())
SvUTF8_on(ret);
c = lex_peek_unichar(0);
while(c != -1) {
sv_cat_c(ret, lex_read_unichar(0));
switch(c) {
case '(': parencount++; break;
case ')': parencount--; break;
}
if(!parencount)
break;
c = lex_peek_unichar(0);
}
if(SvCUR(ret))
return ret;
SvREFCNT_dec(ret);
return NULL;
}
#define lex_scan_version(flags) MY_lex_scan_version(aTHX_ flags)
static SV *MY_lex_scan_version(pTHX_ int flags)
{
I32 c;
SV *tmpsv = sv_2mortal(newSVpvs(""));
/* scan_version() expects a version to end in linefeed, semicolon or
* openbrace; gets confused if other keywords are fine. We'll have to
* extract it first.
* https://rt.cpan.org/Ticket/Display.html?id=132903
*/
while((c = lex_peek_unichar(0))) {
/* Allow a single leading v before accepting only digits, dot, underscore */
if((!SvCUR(tmpsv) && (c == 'v')) || strchr("0123456789._", c))
sv_cat_c(tmpsv, lex_read_unichar(0));
else
break;
}
if(!SvCUR(tmpsv) && (flags & PARSE_OPTIONAL))
return NULL;
SV *ret = newSV(0);
scan_version(SvPVX(tmpsv), ret, FALSE);
return ret;
}
#define parse_lexvar() MY_parse_lexvar(aTHX)
static PADOFFSET MY_parse_lexvar(pTHX)
{
/* TODO: Rewrite this in terms of using lex_scan_lexvar()
*/
char *lexname = PL_parser->bufptr;
if(lex_read_unichar(0) != '$')
croak("Expected a lexical scalar at %s", lexname);
if(!isIDFIRST_uni(lex_peek_unichar(0)))
croak("Expected a lexical scalar at %s", lexname);
lex_read_unichar(0);
while(isIDCONT_uni(lex_peek_unichar(0)))
lex_read_unichar(0);
/* Forbid $_ */
if(PL_parser->bufptr - lexname == 2 && lexname[1] == '_')
croak("Can't use global $_ in \"my\"");
return pad_add_name_pvn(lexname, PL_parser->bufptr - lexname, 0, NULL, NULL);
}
#define parse_scoped_block(flags) MY_parse_scoped_block(aTHX_ flags)
static OP *MY_parse_scoped_block(pTHX_ int flags)
{
OP *ret;
I32 save_ix = block_start(TRUE);
ret = parse_block(flags);
return block_end(save_ix, ret);
}
|