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