]>
git.saurik.com Git - redis.git/blob - deps/lua/src/lua.c
2 ** $Id: lua.c,v 1.160.1.2 2007/12/28 15:32:23 roberto Exp $
3 ** Lua stand-alone interpreter
4 ** See Copyright Notice in lua.h
22 static lua_State
*globalL
= NULL
;
24 static const char *progname
= LUA_PROGNAME
;
28 static void lstop (lua_State
*L
, lua_Debug
*ar
) {
29 (void)ar
; /* unused arg. */
30 lua_sethook(L
, NULL
, 0, 0);
31 luaL_error(L
, "interrupted!");
35 static void laction (int i
) {
36 signal(i
, SIG_DFL
); /* if another SIGINT happens before lstop,
37 terminate process (default action) */
38 lua_sethook(globalL
, lstop
, LUA_MASKCALL
| LUA_MASKRET
| LUA_MASKCOUNT
, 1);
42 static void print_usage (void) {
44 "usage: %s [options] [script [args]].\n"
45 "Available options are:\n"
46 " -e stat execute string " LUA_QL("stat") "\n"
47 " -l name require library " LUA_QL("name") "\n"
48 " -i enter interactive mode after executing " LUA_QL("script") "\n"
49 " -v show version information\n"
50 " -- stop handling options\n"
51 " - execute stdin and stop handling options\n"
58 static void l_message (const char *pname
, const char *msg
) {
59 if (pname
) fprintf(stderr
, "%s: ", pname
);
60 fprintf(stderr
, "%s\n", msg
);
65 static int report (lua_State
*L
, int status
) {
66 if (status
&& !lua_isnil(L
, -1)) {
67 const char *msg
= lua_tostring(L
, -1);
68 if (msg
== NULL
) msg
= "(error object is not a string)";
69 l_message(progname
, msg
);
76 static int traceback (lua_State
*L
) {
77 if (!lua_isstring(L
, 1)) /* 'message' not a string? */
78 return 1; /* keep it intact */
79 lua_getfield(L
, LUA_GLOBALSINDEX
, "debug");
80 if (!lua_istable(L
, -1)) {
84 lua_getfield(L
, -1, "traceback");
85 if (!lua_isfunction(L
, -1)) {
89 lua_pushvalue(L
, 1); /* pass error message */
90 lua_pushinteger(L
, 2); /* skip this function and traceback */
91 lua_call(L
, 2, 1); /* call debug.traceback */
96 static int docall (lua_State
*L
, int narg
, int clear
) {
98 int base
= lua_gettop(L
) - narg
; /* function index */
99 lua_pushcfunction(L
, traceback
); /* push traceback function */
100 lua_insert(L
, base
); /* put it under chunk and args */
101 signal(SIGINT
, laction
);
102 status
= lua_pcall(L
, narg
, (clear
? 0 : LUA_MULTRET
), base
);
103 signal(SIGINT
, SIG_DFL
);
104 lua_remove(L
, base
); /* remove traceback function */
105 /* force a complete garbage collection in case of errors */
106 if (status
!= 0) lua_gc(L
, LUA_GCCOLLECT
, 0);
111 static void print_version (void) {
112 l_message(NULL
, LUA_RELEASE
" " LUA_COPYRIGHT
);
116 static int getargs (lua_State
*L
, char **argv
, int n
) {
120 while (argv
[argc
]) argc
++; /* count total number of arguments */
121 narg
= argc
- (n
+ 1); /* number of arguments to the script */
122 luaL_checkstack(L
, narg
+ 3, "too many arguments to script");
123 for (i
=n
+1; i
< argc
; i
++)
124 lua_pushstring(L
, argv
[i
]);
125 lua_createtable(L
, narg
, n
+ 1);
126 for (i
=0; i
< argc
; i
++) {
127 lua_pushstring(L
, argv
[i
]);
128 lua_rawseti(L
, -2, i
- n
);
134 static int dofile (lua_State
*L
, const char *name
) {
135 int status
= luaL_loadfile(L
, name
) || docall(L
, 0, 1);
136 return report(L
, status
);
140 static int dostring (lua_State
*L
, const char *s
, const char *name
) {
141 int status
= luaL_loadbuffer(L
, s
, strlen(s
), name
) || docall(L
, 0, 1);
142 return report(L
, status
);
146 static int dolibrary (lua_State
*L
, const char *name
) {
147 lua_getglobal(L
, "require");
148 lua_pushstring(L
, name
);
149 return report(L
, docall(L
, 1, 1));
153 static const char *get_prompt (lua_State
*L
, int firstline
) {
155 lua_getfield(L
, LUA_GLOBALSINDEX
, firstline
? "_PROMPT" : "_PROMPT2");
156 p
= lua_tostring(L
, -1);
157 if (p
== NULL
) p
= (firstline
? LUA_PROMPT
: LUA_PROMPT2
);
158 lua_pop(L
, 1); /* remove global */
163 static int incomplete (lua_State
*L
, int status
) {
164 if (status
== LUA_ERRSYNTAX
) {
166 const char *msg
= lua_tolstring(L
, -1, &lmsg
);
167 const char *tp
= msg
+ lmsg
- (sizeof(LUA_QL("<eof>")) - 1);
168 if (strstr(msg
, LUA_QL("<eof>")) == tp
) {
173 return 0; /* else... */
177 static int pushline (lua_State
*L
, int firstline
) {
178 char buffer
[LUA_MAXINPUT
];
181 const char *prmt
= get_prompt(L
, firstline
);
182 if (lua_readline(L
, b
, prmt
) == 0)
183 return 0; /* no input */
185 if (l
> 0 && b
[l
-1] == '\n') /* line ends with newline? */
186 b
[l
-1] = '\0'; /* remove it */
187 if (firstline
&& b
[0] == '=') /* first line starts with `=' ? */
188 lua_pushfstring(L
, "return %s", b
+1); /* change it to `return' */
190 lua_pushstring(L
, b
);
196 static int loadline (lua_State
*L
) {
200 return -1; /* no input */
201 for (;;) { /* repeat until gets a complete line */
202 status
= luaL_loadbuffer(L
, lua_tostring(L
, 1), lua_strlen(L
, 1), "=stdin");
203 if (!incomplete(L
, status
)) break; /* cannot try to add lines? */
204 if (!pushline(L
, 0)) /* no more input? */
206 lua_pushliteral(L
, "\n"); /* add a new line... */
207 lua_insert(L
, -2); /* ...between the two lines */
208 lua_concat(L
, 3); /* join them */
211 lua_remove(L
, 1); /* remove line */
216 static void dotty (lua_State
*L
) {
218 const char *oldprogname
= progname
;
220 while ((status
= loadline(L
)) != -1) {
221 if (status
== 0) status
= docall(L
, 0, 0);
223 if (status
== 0 && lua_gettop(L
) > 0) { /* any result to print? */
224 lua_getglobal(L
, "print");
226 if (lua_pcall(L
, lua_gettop(L
)-1, 0, 0) != 0)
227 l_message(progname
, lua_pushfstring(L
,
228 "error calling " LUA_QL("print") " (%s)",
229 lua_tostring(L
, -1)));
232 lua_settop(L
, 0); /* clear stack */
235 progname
= oldprogname
;
239 static int handle_script (lua_State
*L
, char **argv
, int n
) {
242 int narg
= getargs(L
, argv
, n
); /* collect arguments */
243 lua_setglobal(L
, "arg");
245 if (strcmp(fname
, "-") == 0 && strcmp(argv
[n
-1], "--") != 0)
246 fname
= NULL
; /* stdin */
247 status
= luaL_loadfile(L
, fname
);
248 lua_insert(L
, -(narg
+1));
250 status
= docall(L
, narg
, 0);
253 return report(L
, status
);
257 /* check that argument has no extra characters at the end */
258 #define notail(x) {if ((x)[2] != '\0') return -1;}
261 static int collectargs (char **argv
, int *pi
, int *pv
, int *pe
) {
263 for (i
= 1; argv
[i
] != NULL
; i
++) {
264 if (argv
[i
][0] != '-') /* not an option? */
266 switch (argv
[i
][1]) { /* option */
269 return (argv
[i
+1] != NULL
? i
+1 : 0);
274 *pi
= 1; /* go through */
280 *pe
= 1; /* go through */
282 if (argv
[i
][2] == '\0') {
284 if (argv
[i
] == NULL
) return -1;
287 default: return -1; /* invalid option */
294 static int runargs (lua_State
*L
, char **argv
, int n
) {
296 for (i
= 1; i
< n
; i
++) {
297 if (argv
[i
] == NULL
) continue;
298 lua_assert(argv
[i
][0] == '-');
299 switch (argv
[i
][1]) { /* option */
301 const char *chunk
= argv
[i
] + 2;
302 if (*chunk
== '\0') chunk
= argv
[++i
];
303 lua_assert(chunk
!= NULL
);
304 if (dostring(L
, chunk
, "=(command line)") != 0)
309 const char *filename
= argv
[i
] + 2;
310 if (*filename
== '\0') filename
= argv
[++i
];
311 lua_assert(filename
!= NULL
);
312 if (dolibrary(L
, filename
))
313 return 1; /* stop if file fails */
323 static int handle_luainit (lua_State
*L
) {
324 const char *init
= getenv(LUA_INIT
);
325 if (init
== NULL
) return 0; /* status OK */
326 else if (init
[0] == '@')
327 return dofile(L
, init
+1);
329 return dostring(L
, init
, "=" LUA_INIT
);
340 static int pmain (lua_State
*L
) {
341 struct Smain
*s
= (struct Smain
*)lua_touserdata(L
, 1);
342 char **argv
= s
->argv
;
344 int has_i
= 0, has_v
= 0, has_e
= 0;
346 if (argv
[0] && argv
[0][0]) progname
= argv
[0];
347 lua_gc(L
, LUA_GCSTOP
, 0); /* stop collector during initialization */
348 luaL_openlibs(L
); /* open libraries */
349 lua_gc(L
, LUA_GCRESTART
, 0);
350 s
->status
= handle_luainit(L
);
351 if (s
->status
!= 0) return 0;
352 script
= collectargs(argv
, &has_i
, &has_v
, &has_e
);
353 if (script
< 0) { /* invalid args? */
358 if (has_v
) print_version();
359 s
->status
= runargs(L
, argv
, (script
> 0) ? script
: s
->argc
);
360 if (s
->status
!= 0) return 0;
362 s
->status
= handle_script(L
, argv
, script
);
363 if (s
->status
!= 0) return 0;
366 else if (script
== 0 && !has_e
&& !has_v
) {
367 if (lua_stdin_is_tty()) {
371 else dofile(L
, NULL
); /* executes stdin as a file */
377 int main (int argc
, char **argv
) {
380 lua_State
*L
= lua_open(); /* create state */
382 l_message(argv
[0], "cannot create state: not enough memory");
387 status
= lua_cpcall(L
, &pmain
, &s
);
390 return (status
|| s
.status
) ? EXIT_FAILURE
: EXIT_SUCCESS
;