lua/lua.c

390 lines
9.9 KiB
C
Raw Normal View History

1993-07-28 17:18:00 +04:00
/*
** $Id: lua.c,v 1.171 2008/07/11 17:51:01 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
1993-07-28 17:18:00 +04:00
*/
1993-12-17 21:41:19 +03:00
#include <signal.h>
1993-07-28 17:18:00 +04:00
#include <stdio.h>
1998-01-19 22:49:49 +03:00
#include <stdlib.h>
1995-02-07 19:04:15 +03:00
#include <string.h>
1993-07-28 17:18:00 +04:00
2002-12-04 20:38:31 +03:00
#define lua_c
1993-07-28 17:18:00 +04:00
#include "lua.h"
2002-02-15 01:23:43 +03:00
#include "lauxlib.h"
1993-07-28 17:18:00 +04:00
#include "lualib.h"
2000-08-28 21:57:04 +04:00
2002-11-11 16:28:06 +03:00
static lua_State *globalL = NULL;
2005-03-21 21:12:07 +03:00
static const char *progname = LUA_PROGNAME;
2002-06-18 21:12:05 +04:00
static void lstop (lua_State *L, lua_Debug *ar) {
(void)ar; /* unused arg. */
lua_sethook(L, NULL, 0, 0);
luaL_error(L, "interrupted!");
}
static void laction (int i) {
2002-04-01 18:42:33 +04:00
signal(i, SIG_DFL); /* if another SIGINT happens before lstop,
terminate process (default action) */
lua_sethook(globalL, lstop, LUA_MASKCALL | LUA_MASKRET | LUA_MASKCOUNT, 1);
}
static void print_usage (void) {
fprintf(stderr,
"usage: %s [options] [script [args]]\n"
"Available options are:\n"
2005-05-17 23:49:15 +04:00
" -e stat execute string " LUA_QL("stat") "\n"
" -l name require library " LUA_QL("name") "\n"
2005-10-14 22:15:46 +04:00
" -i enter interactive mode after executing " LUA_QL("script") "\n"
" -v show version information\n"
2005-10-14 22:15:46 +04:00
" -- stop handling options\n"
2005-10-14 22:34:23 +04:00
" - execute stdin and stop handling options\n"
2005-10-14 22:15:46 +04:00
,
progname);
2005-09-06 21:19:33 +04:00
fflush(stderr);
}
static void l_message (const char *pname, const char *msg) {
if (pname) fprintf(stderr, "%s: ", pname);
fprintf(stderr, "%s\n", msg);
2005-09-06 21:19:33 +04:00
fflush(stderr);
}
static int report (lua_State *L, int status) {
2006-10-10 21:40:17 +04:00
if (status != LUA_OK && !lua_isnil(L, -1)) {
const char *msg = lua_tostring(L, -1);
if (msg == NULL) msg = "(error object is not a string)";
l_message(progname, msg);
lua_pop(L, 1);
/* force a complete garbage collection in case of errors */
lua_gc(L, LUA_GCCOLLECT, 0);
2002-05-02 00:48:12 +04:00
}
return status;
2002-02-07 20:27:12 +03:00
}
static int traceback (lua_State *L) {
2007-06-22 19:33:54 +04:00
const char *msg = lua_tostring(L, 1);
if (msg)
2007-09-05 21:17:39 +04:00
luaL_traceback(L, L, msg, 1);
2007-06-22 19:33:54 +04:00
else if (!lua_isnoneornil(L, 1)) { /* is there an error object? */
if (!luaL_callmeta(L, 1, "__tostring")) /* try its 'tostring' metamethod */
lua_pushliteral(L, "(no error message)");
}
return 1;
}
static int docall (lua_State *L, int narg, int clear) {
2002-05-02 00:48:12 +04:00
int status;
int base = lua_gettop(L) - narg; /* function index */
lua_pushcfunction(L, traceback); /* push traceback function */
lua_insert(L, base); /* put it under chunk and args */
globalL = L; /* to be available to 'laction' */
2002-02-07 20:27:12 +03:00
signal(SIGINT, laction);
status = lua_pcall(L, narg, (clear ? 0 : LUA_MULTRET), base);
2002-02-07 20:27:12 +03:00
signal(SIGINT, SIG_DFL);
lua_remove(L, base); /* remove traceback function */
2002-05-02 00:48:12 +04:00
return status;
}
1999-12-30 21:29:46 +03:00
static void print_version (void) {
printf("%s\n", LUA_COPYRIGHT);
1997-12-22 21:05:23 +03:00
}
1997-12-19 21:34:23 +03:00
2005-10-14 22:15:46 +04:00
static int getargs (lua_State *L, char **argv, int n) {
int narg;
int i;
2005-10-14 22:15:46 +04:00
int argc = 0;
while (argv[argc]) argc++; /* count total number of arguments */
narg = argc - (n + 1); /* number of arguments to the script */
luaL_checkstack(L, narg + 3, "too many arguments to script");
for (i=n+1; i < argc; i++)
lua_pushstring(L, argv[i]);
lua_createtable(L, narg, n + 1);
for (i=0; i < argc; i++) {
2000-09-05 23:33:32 +04:00
lua_pushstring(L, argv[i]);
2004-08-26 18:19:55 +04:00
lua_rawseti(L, -2, i - n);
}
return narg;
2002-05-02 00:48:12 +04:00
}
static int dofile (lua_State *L, const char *name) {
2006-10-10 21:40:17 +04:00
int status = luaL_loadfile(L, name);
if (status == LUA_OK) status = docall(L, 0, 1);
return report(L, status);
2002-05-23 23:43:04 +04:00
}
static int dostring (lua_State *L, const char *s, const char *name) {
2006-10-10 21:40:17 +04:00
int status = luaL_loadbuffer(L, s, strlen(s), name);
if (status == LUA_OK) status = docall(L, 0, 1);
return report(L, status);
}
2000-08-09 23:16:57 +04:00
static int dolibrary (lua_State *L, const char *name) {
2005-03-29 20:47:48 +04:00
lua_getglobal(L, "require");
lua_pushstring(L, name);
2007-09-05 21:17:39 +04:00
return report(L, docall(L, 1, 1));
}
static const char *get_prompt (lua_State *L, int firstline) {
2005-03-21 21:12:07 +03:00
const char *p;
2005-08-25 23:55:38 +04:00
lua_getfield(L, LUA_GLOBALSINDEX, firstline ? "_PROMPT" : "_PROMPT2");
2002-02-07 20:27:12 +03:00
p = lua_tostring(L, -1);
2005-03-21 21:12:07 +03:00
if (p == NULL) p = (firstline ? LUA_PROMPT : LUA_PROMPT2);
2002-02-07 20:27:12 +03:00
lua_pop(L, 1); /* remove global */
return p;
}
2006-06-23 20:09:15 +04:00
/* mark in error messages for incomplete statements */
#define mark "<eof>"
2006-06-23 20:09:15 +04:00
#define marklen (sizeof(mark) - 1)
2002-02-07 20:27:12 +03:00
static int incomplete (lua_State *L, int status) {
if (status == LUA_ERRSYNTAX) {
size_t lmsg;
const char *msg = lua_tolstring(L, -1, &lmsg);
2006-06-23 20:09:15 +04:00
if (lmsg >= marklen && strcmp(msg + lmsg - marklen, mark) == 0) {
lua_pop(L, 1);
return 1;
}
2002-05-02 00:48:12 +04:00
}
return 0; /* else... */
2002-02-07 20:27:12 +03:00
}
2005-03-21 21:12:07 +03:00
static int pushline (lua_State *L, int firstline) {
char buffer[LUA_MAXINPUT];
char *b = buffer;
size_t l;
const char *prmt = get_prompt(L, firstline);
if (lua_readline(L, b, prmt) == 0)
return 0; /* no input */
l = strlen(b);
if (l > 0 && b[l-1] == '\n') /* line ends with newline? */
b[l-1] = '\0'; /* remove it */
if (firstline && b[0] == '=') /* first line starts with `=' ? */
lua_pushfstring(L, "return %s", b+1); /* change it to `return' */
else
lua_pushstring(L, b);
lua_freeline(L, b);
2005-03-21 21:12:07 +03:00
return 1;
}
static int loadline (lua_State *L) {
2002-05-02 00:48:12 +04:00
int status;
lua_settop(L, 0);
2005-03-21 21:12:07 +03:00
if (!pushline(L, 1))
return -1; /* no input */
for (;;) { /* repeat until gets a complete line */
2006-09-18 18:03:18 +04:00
status = luaL_loadbuffer(L, lua_tostring(L, 1), lua_objlen(L, 1), "=stdin");
if (!incomplete(L, status)) break; /* cannot try to add lines? */
2005-03-21 21:12:07 +03:00
if (!pushline(L, 0)) /* no more input? */
return -1;
2005-03-21 21:12:07 +03:00
lua_pushliteral(L, "\n"); /* add a new line... */
lua_insert(L, -2); /* ...between the two lines */
lua_concat(L, 3); /* join them */
}
2005-03-21 21:12:07 +03:00
lua_saveline(L, 1);
lua_remove(L, 1); /* remove line */
2002-05-02 00:48:12 +04:00
return status;
2002-02-07 20:27:12 +03:00
}
static void dotty (lua_State *L) {
2002-05-02 00:48:12 +04:00
int status;
2002-06-18 21:12:05 +04:00
const char *oldprogname = progname;
progname = NULL;
while ((status = loadline(L)) != -1) {
2006-10-10 21:40:17 +04:00
if (status == LUA_OK) status = docall(L, 0, 0);
report(L, status);
2006-10-10 21:40:17 +04:00
if (status == LUA_OK && lua_gettop(L) > 0) { /* any result to print? */
lua_getglobal(L, "print");
2002-05-02 00:48:12 +04:00
lua_insert(L, 1);
2006-10-10 21:40:17 +04:00
if (lua_pcall(L, lua_gettop(L)-1, 0, 0) != LUA_OK)
2005-05-17 23:49:15 +04:00
l_message(progname, lua_pushfstring(L,
"error calling " LUA_QL("print") " (%s)",
lua_tostring(L, -1)));
}
}
lua_settop(L, 0); /* clear stack */
luai_writestring("\n", 1);
2005-09-06 21:19:33 +04:00
fflush(stdout);
2002-06-18 21:12:05 +04:00
progname = oldprogname;
}
2005-10-14 22:15:46 +04:00
static int handle_script (lua_State *L, char **argv, int n) {
int status;
const char *fname;
int narg = getargs(L, argv, n); /* collect arguments */
lua_setglobal(L, "arg");
fname = argv[n];
2006-09-11 18:07:24 +04:00
if (strcmp(fname, "-") == 0 && strcmp(argv[n-1], "--") != 0)
2005-10-14 22:15:46 +04:00
fname = NULL; /* stdin */
status = luaL_loadfile(L, fname);
lua_insert(L, -(narg+1));
2006-10-10 21:40:17 +04:00
if (status == LUA_OK)
2005-10-14 22:15:46 +04:00
status = docall(L, narg, 0);
else
2006-09-11 18:07:24 +04:00
lua_pop(L, narg);
2005-10-14 22:15:46 +04:00
return report(L, status);
}
2005-10-14 22:15:46 +04:00
/* check that argument has no extra characters at the end */
#define notail(x) {if ((x)[2] != '\0') return -1;}
2005-10-24 21:38:47 +04:00
static int collectargs (char **argv, int *pi, int *pv, int *pe) {
2005-10-14 22:15:46 +04:00
int i;
for (i = 1; argv[i] != NULL; i++) {
if (argv[i][0] != '-') /* not an option? */
return i;
switch (argv[i][1]) { /* option */
case '-':
notail(argv[i]);
return (argv[i+1] != NULL ? i+1 : 0);
case '\0':
return i;
case 'i':
notail(argv[i]);
*pi = 1; /* go through */
case 'v':
notail(argv[i]);
*pv = 1;
break;
case 'e':
*pe = 1; /* go through */
2005-10-14 22:15:46 +04:00
case 'l':
if (argv[i][2] == '\0') {
i++;
if (argv[i] == NULL) return -1;
}
2005-10-14 22:15:46 +04:00
break;
default: return -1; /* invalid option */
}
}
return 0;
}
static int runargs (lua_State *L, char **argv, int n) {
int i;
for (i = 1; i < n; i++) {
if (argv[i] == NULL) continue;
lua_assert(argv[i][0] == '-');
switch (argv[i][1]) { /* option */
case 'e': {
const char *chunk = argv[i] + 2;
if (*chunk == '\0') chunk = argv[++i];
lua_assert(chunk != NULL);
2006-10-10 21:40:17 +04:00
if (dostring(L, chunk, "=(command line)") != LUA_OK)
return 0;
2005-10-14 22:15:46 +04:00
break;
}
2005-10-14 22:15:46 +04:00
case 'l': {
const char *filename = argv[i] + 2;
if (*filename == '\0') filename = argv[++i];
lua_assert(filename != NULL);
2006-10-10 21:40:17 +04:00
if (dolibrary(L, filename) != LUA_OK)
return 0; /* stop if file fails */
2005-10-14 22:15:46 +04:00
break;
}
default: break;
}
}
2006-10-10 21:40:17 +04:00
return 1;
2000-08-09 23:16:57 +04:00
}
static int handle_luainit (lua_State *L) {
const char *init = getenv(LUA_INIT);
2006-10-10 21:40:17 +04:00
if (init == NULL) return LUA_OK;
2002-05-15 22:57:44 +04:00
else if (init[0] == '@')
return dofile(L, init+1);
2002-05-15 22:57:44 +04:00
else
return dostring(L, init, "=" LUA_INIT);
2002-05-15 22:57:44 +04:00
}
2002-12-04 20:29:32 +03:00
struct Smain {
int argc;
char **argv;
2006-10-10 21:40:17 +04:00
int ok;
2002-12-04 20:29:32 +03:00
};
static int pmain (lua_State *L) {
struct Smain *s = (struct Smain *)lua_touserdata(L, 1);
2005-10-14 22:15:46 +04:00
char **argv = s->argv;
int script;
int has_i = 0, has_v = 0, has_e = 0;
if (argv[0] && argv[0][0]) progname = argv[0];
lua_gc(L, LUA_GCSTOP, 0); /* stop collector during initialization */
luaL_openlibs(L); /* open libraries */
lua_gc(L, LUA_GCRESTART, 0);
lua_checkversion(L);
2006-10-10 21:40:17 +04:00
s->ok = (handle_luainit(L) == LUA_OK);
if (!s->ok) return 0;
2005-10-24 21:38:47 +04:00
script = collectargs(argv, &has_i, &has_v, &has_e);
2005-10-14 22:15:46 +04:00
if (script < 0) { /* invalid args? */
print_usage();
2006-10-10 21:40:17 +04:00
s->ok = 0;
2005-10-14 22:15:46 +04:00
return 0;
}
if (has_v) print_version();
2006-10-10 21:40:17 +04:00
s->ok = runargs(L, argv, (script > 0) ? script : s->argc);
if (!s->ok) return 0;
2005-10-14 22:15:46 +04:00
if (script)
2006-10-10 21:40:17 +04:00
s->ok = (handle_script(L, argv, script) == LUA_OK);
if (!s->ok) return 0;
2005-10-14 22:15:46 +04:00
if (has_i)
dotty(L);
else if (script == 0 && !has_e && !has_v) {
if (lua_stdin_is_tty()) {
print_version();
dotty(L);
}
2005-10-14 22:15:46 +04:00
else dofile(L, NULL); /* executes stdin as a file */
2002-12-04 20:29:32 +03:00
}
return 0;
}
int main (int argc, char **argv) {
2002-12-04 20:29:32 +03:00
int status;
struct Smain s;
2008-07-11 21:51:01 +04:00
lua_State *L = luaL_newstate(); /* create state */
if (L == NULL) {
2002-12-04 20:29:32 +03:00
l_message(argv[0], "cannot create state: not enough memory");
return EXIT_FAILURE;
}
s.argc = argc;
s.argv = argv;
status = lua_cpcall(L, &pmain, &s);
report(L, status);
lua_close(L);
2006-10-10 21:40:17 +04:00
return (s.ok && status == LUA_OK) ? EXIT_SUCCESS : EXIT_FAILURE;
1993-07-28 17:18:00 +04:00
}