]>
git.proxmox.com Git - mirror_zfs.git/blob - module/lua/llex.c
2 ** $Id: llex.c,v 2.63.1.3 2015/02/09 17:56:34 roberto Exp $
4 ** See Copyright Notice in lua.h
10 #include <sys/lua/lua.h>
24 #define next(ls) (ls->current = zgetc(ls->z))
28 #define currIsNewline(ls) (ls->current == '\n' || ls->current == '\r')
32 static const char *const luaX_tokens
[] = {
33 "and", "break", "do", "else", "elseif",
34 "end", "false", "for", "function", "goto", "if",
35 "in", "local", "nil", "not", "or", "repeat",
36 "return", "then", "true", "until", "while",
37 "..", "...", "==", ">=", "<=", "~=", "::", "<eof>",
38 "<number>", "<name>", "<string>"
42 #define save_and_next(ls) (save(ls, ls->current), next(ls))
45 static l_noret
lexerror (LexState
*ls
, const char *msg
, int token
);
48 static void save (LexState
*ls
, int c
) {
49 Mbuffer
*b
= ls
->buff
;
50 if (luaZ_bufflen(b
) + 1 > luaZ_sizebuffer(b
)) {
52 if (luaZ_sizebuffer(b
) >= MAX_SIZET
/2)
53 lexerror(ls
, "lexical element too long", 0);
54 newsize
= luaZ_sizebuffer(b
) * 2;
55 luaZ_resizebuffer(ls
->L
, b
, newsize
);
57 b
->buffer
[luaZ_bufflen(b
)++] = cast(char, c
);
61 void luaX_init (lua_State
*L
) {
63 for (i
=0; i
<NUM_RESERVED
; i
++) {
64 TString
*ts
= luaS_new(L
, luaX_tokens
[i
]);
65 luaS_fix(ts
); /* reserved words are never collected */
66 ts
->tsv
.extra
= cast_byte(i
+1); /* reserved word */
71 const char *luaX_token2str (LexState
*ls
, int token
) {
72 if (token
< FIRST_RESERVED
) { /* single-byte symbols? */
73 lua_assert(token
== cast(unsigned char, token
));
74 return (lisprint(token
)) ? luaO_pushfstring(ls
->L
, LUA_QL("%c"), token
) :
75 luaO_pushfstring(ls
->L
, "char(%d)", token
);
78 const char *s
= luaX_tokens
[token
- FIRST_RESERVED
];
79 if (token
< TK_EOS
) /* fixed format (symbols and reserved words)? */
80 return luaO_pushfstring(ls
->L
, LUA_QS
, s
);
81 else /* names, strings, and numerals */
87 static const char *txtToken (LexState
*ls
, int token
) {
93 return luaO_pushfstring(ls
->L
, LUA_QS
, luaZ_buffer(ls
->buff
));
95 return luaX_token2str(ls
, token
);
100 static l_noret
lexerror (LexState
*ls
, const char *msg
, int token
) {
101 char buff
[LUA_IDSIZE
];
102 luaO_chunkid(buff
, getstr(ls
->source
), LUA_IDSIZE
);
103 msg
= luaO_pushfstring(ls
->L
, "%s:%d: %s", buff
, ls
->linenumber
, msg
);
105 luaO_pushfstring(ls
->L
, "%s near %s", msg
, txtToken(ls
, token
));
106 luaD_throw(ls
->L
, LUA_ERRSYNTAX
);
110 l_noret
luaX_syntaxerror (LexState
*ls
, const char *msg
) {
111 lexerror(ls
, msg
, ls
->t
.token
);
116 ** creates a new string and anchors it in function's table so that
117 ** it will not be collected until the end of the function's compilation
118 ** (by that time it should be anchored in function's prototype)
120 TString
*luaX_newstring (LexState
*ls
, const char *str
, size_t l
) {
121 lua_State
*L
= ls
->L
;
122 TValue
*o
; /* entry for `str' */
123 TString
*ts
= luaS_newlstr(L
, str
, l
); /* create new string */
124 setsvalue2s(L
, L
->top
++, ts
); /* temporarily anchor it in stack */
125 o
= luaH_set(L
, ls
->fs
->h
, L
->top
- 1);
126 if (ttisnil(o
)) { /* not in use yet? (see 'addK') */
127 /* boolean value does not need GC barrier;
128 table has no metatable, so it does not need to invalidate cache */
129 setbvalue(o
, 1); /* t[string] = true */
132 else { /* string already present */
133 ts
= rawtsvalue(keyfromval(o
)); /* re-use value previously stored */
135 L
->top
--; /* remove string from stack */
141 ** increment line number and skips newline sequence (any of
142 ** \n, \r, \n\r, or \r\n)
144 static void inclinenumber (LexState
*ls
) {
145 int old
= ls
->current
;
146 lua_assert(currIsNewline(ls
));
147 next(ls
); /* skip `\n' or `\r' */
148 if (currIsNewline(ls
) && ls
->current
!= old
)
149 next(ls
); /* skip `\n\r' or `\r\n' */
150 if (++ls
->linenumber
>= MAX_INT
)
151 lexerror(ls
, "chunk has too many lines", 0);
155 void luaX_setinput (lua_State
*L
, LexState
*ls
, ZIO
*z
, TString
*source
,
159 ls
->current
= firstchar
;
160 ls
->lookahead
.token
= TK_EOS
; /* no look-ahead token */
166 ls
->envn
= luaS_new(L
, LUA_ENV
); /* create env name */
167 luaS_fix(ls
->envn
); /* never collect this name */
168 luaZ_resizebuffer(ls
->L
, ls
->buff
, LUA_MINBUFFER
); /* initialize buffer */
174 ** =======================================================
176 ** =======================================================
181 static int check_next (LexState
*ls
, const char *set
) {
182 if (ls
->current
== '\0' || !strchr(set
, ls
->current
))
190 ** change all characters 'from' in buffer to 'to'
192 static void buffreplace (LexState
*ls
, char from
, char to
) {
193 size_t n
= luaZ_bufflen(ls
->buff
);
194 char *p
= luaZ_buffer(ls
->buff
);
196 if (p
[n
] == from
) p
[n
] = to
;
200 #if !defined(getlocaledecpoint)
201 #define getlocaledecpoint() (localeconv()->decimal_point[0])
205 #define buff2d(b,e) luaO_str2d(luaZ_buffer(b), luaZ_bufflen(b) - 1, e)
208 ** in case of format error, try to change decimal point separator to
209 ** the one defined in the current locale and check again
211 static void trydecpoint (LexState
*ls
, SemInfo
*seminfo
) {
212 char old
= ls
->decpoint
;
213 ls
->decpoint
= getlocaledecpoint();
214 buffreplace(ls
, old
, ls
->decpoint
); /* try new decimal separator */
215 if (!buff2d(ls
->buff
, &seminfo
->r
)) {
216 /* format error with correct decimal point: no more options */
217 buffreplace(ls
, ls
->decpoint
, '.'); /* undo change (for error message) */
218 lexerror(ls
, "malformed number", TK_NUMBER
);
225 ** this function is quite liberal in what it accepts, as 'luaO_str2d'
226 ** will reject ill-formed numerals.
228 static void read_numeral (LexState
*ls
, SemInfo
*seminfo
) {
229 const char *expo
= "Ee";
230 int first
= ls
->current
;
231 lua_assert(lisdigit(ls
->current
));
233 if (first
== '0' && check_next(ls
, "Xx")) /* hexadecimal? */
236 if (check_next(ls
, expo
)) /* exponent part? */
237 (void) check_next(ls
, "+-"); /* optional exponent sign */
238 if (lisxdigit(ls
->current
) || ls
->current
== '.')
243 buffreplace(ls
, '.', ls
->decpoint
); /* follow locale for decimal point */
244 if (!buff2d(ls
->buff
, &seminfo
->r
)) /* format error? */
245 trydecpoint(ls
, seminfo
); /* try to update decimal point separator */
250 ** skip a sequence '[=*[' or ']=*]' and return its number of '='s or
251 ** -1 if sequence is malformed
253 static int skip_sep (LexState
*ls
) {
256 lua_assert(s
== '[' || s
== ']');
258 while (ls
->current
== '=') {
262 return (ls
->current
== s
) ? count
: (-count
) - 1;
266 static void read_long_string (LexState
*ls
, SemInfo
*seminfo
, int sep
) {
267 save_and_next(ls
); /* skip 2nd `[' */
268 if (currIsNewline(ls
)) /* string starts with a newline? */
269 inclinenumber(ls
); /* skip it */
271 switch (ls
->current
) {
273 lexerror(ls
, (seminfo
) ? "unfinished long string" :
274 "unfinished long comment", TK_EOS
);
275 break; /* to avoid warnings */
277 if (skip_sep(ls
) == sep
) {
278 save_and_next(ls
); /* skip 2nd `]' */
283 case '\n': case '\r': {
286 if (!seminfo
) luaZ_resetbuffer(ls
->buff
); /* avoid wasting space */
290 if (seminfo
) save_and_next(ls
);
296 seminfo
->ts
= luaX_newstring(ls
, luaZ_buffer(ls
->buff
) + (2 + sep
),
297 luaZ_bufflen(ls
->buff
) - 2*(2 + sep
));
301 static void escerror (LexState
*ls
, int *c
, int n
, const char *msg
) {
303 luaZ_resetbuffer(ls
->buff
); /* prepare error message */
305 for (i
= 0; i
< n
&& c
[i
] != EOZ
; i
++)
307 lexerror(ls
, msg
, TK_STRING
);
311 static int readhexaesc (LexState
*ls
) {
312 int c
[3], i
; /* keep input for error message */
313 int r
= 0; /* result accumulator */
314 c
[0] = 'x'; /* for error message */
315 for (i
= 1; i
< 3; i
++) { /* read two hexadecimal digits */
317 if (!lisxdigit(c
[i
]))
318 escerror(ls
, c
, i
+ 1, "hexadecimal digit expected");
319 r
= (r
<< 4) + luaO_hexavalue(c
[i
]);
325 static int readdecesc (LexState
*ls
) {
327 int r
= 0; /* result accumulator */
328 for (i
= 0; i
< 3 && lisdigit(ls
->current
); i
++) { /* read up to 3 digits */
330 r
= 10*r
+ c
[i
] - '0';
334 escerror(ls
, c
, i
, "decimal escape too large");
339 static void read_string (LexState
*ls
, int del
, SemInfo
*seminfo
) {
340 save_and_next(ls
); /* keep delimiter (for error messages) */
341 while (ls
->current
!= del
) {
342 switch (ls
->current
) {
344 lexerror(ls
, "unfinished string", TK_EOS
);
345 break; /* to avoid warnings */
348 lexerror(ls
, "unfinished string", TK_STRING
);
349 break; /* to avoid warnings */
350 case '\\': { /* escape sequences */
351 int c
; /* final character to be saved */
352 next(ls
); /* do not save the `\' */
353 switch (ls
->current
) {
354 case 'a': c
= '\a'; goto read_save
;
355 case 'b': c
= '\b'; goto read_save
;
356 case 'f': c
= '\f'; goto read_save
;
357 case 'n': c
= '\n'; goto read_save
;
358 case 'r': c
= '\r'; goto read_save
;
359 case 't': c
= '\t'; goto read_save
;
360 case 'v': c
= '\v'; goto read_save
;
361 case 'x': c
= readhexaesc(ls
); goto read_save
;
362 case '\n': case '\r':
363 inclinenumber(ls
); c
= '\n'; goto only_save
;
364 case '\\': case '\"': case '\'':
365 c
= ls
->current
; goto read_save
;
366 case EOZ
: goto no_save
; /* will raise an error next loop */
367 case 'z': { /* zap following span of spaces */
368 next(ls
); /* skip the 'z' */
369 while (lisspace(ls
->current
)) {
370 if (currIsNewline(ls
)) inclinenumber(ls
);
376 if (!lisdigit(ls
->current
))
377 escerror(ls
, &ls
->current
, 1, "invalid escape sequence");
378 /* digital escape \ddd */
383 read_save
: next(ls
); /* read next character */
384 only_save
: save(ls
, c
); /* save 'c' */
391 save_and_next(ls
); /* skip delimiter */
392 seminfo
->ts
= luaX_newstring(ls
, luaZ_buffer(ls
->buff
) + 1,
393 luaZ_bufflen(ls
->buff
) - 2);
397 static int llex (LexState
*ls
, SemInfo
*seminfo
) {
398 luaZ_resetbuffer(ls
->buff
);
400 switch (ls
->current
) {
401 case '\n': case '\r': { /* line breaks */
405 case ' ': case '\f': case '\t': case '\v': { /* spaces */
409 case '-': { /* '-' or '--' (comment) */
411 if (ls
->current
!= '-') return '-';
412 /* else is a comment */
414 if (ls
->current
== '[') { /* long comment? */
415 int sep
= skip_sep(ls
);
416 luaZ_resetbuffer(ls
->buff
); /* `skip_sep' may dirty the buffer */
418 read_long_string(ls
, NULL
, sep
); /* skip long comment */
419 luaZ_resetbuffer(ls
->buff
); /* previous call may dirty the buff. */
423 /* else short comment */
424 while (!currIsNewline(ls
) && ls
->current
!= EOZ
)
425 next(ls
); /* skip until end of line (or end of file) */
428 case '[': { /* long string or simply '[' */
429 int sep
= skip_sep(ls
);
431 read_long_string(ls
, seminfo
, sep
);
433 } else if (sep
== -1) {
436 lexerror(ls
, "invalid long string delimiter", TK_STRING
);
442 if (ls
->current
!= '=') return '=';
443 else { next(ls
); return TK_EQ
; }
447 if (ls
->current
!= '=') return '<';
448 else { next(ls
); return TK_LE
; }
452 if (ls
->current
!= '=') return '>';
453 else { next(ls
); return TK_GE
; }
457 if (ls
->current
!= '=') return '~';
458 else { next(ls
); return TK_NE
; }
462 if (ls
->current
!= ':') return ':';
463 else { next(ls
); return TK_DBCOLON
; }
465 case '"': case '\'': { /* short literal strings */
466 read_string(ls
, ls
->current
, seminfo
);
469 case '.': { /* '.', '..', '...', or number */
471 if (check_next(ls
, ".")) {
472 if (check_next(ls
, "."))
473 return TK_DOTS
; /* '...' */
474 else return TK_CONCAT
; /* '..' */
476 else if (!lisdigit(ls
->current
)) return '.';
477 /* else go through */
480 case '0': case '1': case '2': case '3': case '4':
481 case '5': case '6': case '7': case '8': case '9': {
482 read_numeral(ls
, seminfo
);
489 if (lislalpha(ls
->current
)) { /* identifier or reserved word? */
493 } while (lislalnum(ls
->current
));
494 ts
= luaX_newstring(ls
, luaZ_buffer(ls
->buff
),
495 luaZ_bufflen(ls
->buff
));
497 if (isreserved(ts
)) /* reserved word? */
498 return ts
->tsv
.extra
- 1 + FIRST_RESERVED
;
503 else { /* single-char tokens (+ - / ...) */
514 void luaX_next (LexState
*ls
) {
515 ls
->lastline
= ls
->linenumber
;
516 if (ls
->lookahead
.token
!= TK_EOS
) { /* is there a look-ahead token? */
517 ls
->t
= ls
->lookahead
; /* use this one */
518 ls
->lookahead
.token
= TK_EOS
; /* and discharge it */
521 ls
->t
.token
= llex(ls
, &ls
->t
.seminfo
); /* read next token */
525 int luaX_lookahead (LexState
*ls
) {
526 lua_assert(ls
->lookahead
.token
== TK_EOS
);
527 ls
->lookahead
.token
= llex(ls
, &ls
->lookahead
.seminfo
);
528 return ls
->lookahead
.token
;