1993-07-28 21:18:00 +08:00
|
|
|
/*
|
2014-02-05 22:22:55 +08:00
|
|
|
** $Id: lua.c,v 1.208 2013/12/16 14:27:17 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
|
|
|
|
2009-12-17 20:26:09 +08:00
|
|
|
#if !defined(LUA_PROMPT)
|
|
|
|
#define LUA_PROMPT "> "
|
|
|
|
#define LUA_PROMPT2 ">> "
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(LUA_PROGNAME)
|
|
|
|
#define LUA_PROGNAME "lua"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(LUA_MAXINPUT)
|
|
|
|
#define LUA_MAXINPUT 512
|
|
|
|
#endif
|
|
|
|
|
2013-10-07 22:20:31 +08:00
|
|
|
#if !defined(LUA_INIT_VAR)
|
|
|
|
#define LUA_INIT_VAR "LUA_INIT"
|
2009-12-17 20:26:09 +08:00
|
|
|
#endif
|
|
|
|
|
2013-10-07 22:20:31 +08:00
|
|
|
#define LUA_INITVARVERSION \
|
|
|
|
LUA_INIT_VAR "_" LUA_VERSION_MAJOR "_" LUA_VERSION_MINOR
|
2010-07-25 23:03:37 +08:00
|
|
|
|
2009-12-17 20:26:09 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
** lua_stdin_is_tty detects whether the standard input is a 'tty' (that
|
|
|
|
** is, whether we're running lua interactively).
|
|
|
|
*/
|
|
|
|
#if defined(LUA_USE_ISATTY)
|
|
|
|
#include <unistd.h>
|
2012-05-23 23:37:09 +08:00
|
|
|
#define lua_stdin_is_tty() isatty(0)
|
2009-12-17 20:26:09 +08:00
|
|
|
#elif defined(LUA_WIN)
|
|
|
|
#include <io.h>
|
|
|
|
#include <stdio.h>
|
2012-05-23 23:37:09 +08:00
|
|
|
#define lua_stdin_is_tty() _isatty(_fileno(stdin))
|
2009-12-17 20:26:09 +08:00
|
|
|
#else
|
2012-05-23 23:37:09 +08:00
|
|
|
#define lua_stdin_is_tty() 1 /* assume stdin is a tty */
|
2009-12-17 20:26:09 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** lua_readline defines how to show a prompt and then read a line from
|
|
|
|
** the standard input.
|
|
|
|
** lua_saveline defines how to "save" a read line in a "history".
|
|
|
|
** lua_freeline defines how to free a line read by lua_readline.
|
|
|
|
*/
|
|
|
|
#if defined(LUA_USE_READLINE)
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <readline/readline.h>
|
|
|
|
#include <readline/history.h>
|
2012-05-23 23:37:09 +08:00
|
|
|
#define lua_readline(L,b,p) ((void)L, ((b)=readline(p)) != NULL)
|
2009-12-17 20:26:09 +08:00
|
|
|
#define lua_saveline(L,idx) \
|
2009-12-18 00:20:01 +08:00
|
|
|
if (lua_rawlen(L,idx) > 0) /* non-empty line? */ \
|
2009-12-17 20:26:09 +08:00
|
|
|
add_history(lua_tostring(L, idx)); /* add it to history */
|
2012-05-23 23:37:09 +08:00
|
|
|
#define lua_freeline(L,b) ((void)L, free(b))
|
2009-12-17 20:26:09 +08:00
|
|
|
|
|
|
|
#elif !defined(lua_readline)
|
|
|
|
|
2012-05-23 23:37:09 +08:00
|
|
|
#define lua_readline(L,b,p) \
|
2009-12-17 20:26:09 +08:00
|
|
|
((void)L, fputs(p, stdout), fflush(stdout), /* show prompt */ \
|
|
|
|
fgets(b, LUA_MAXINPUT, stdin) != NULL) /* get line */
|
2012-05-23 23:37:09 +08:00
|
|
|
#define lua_saveline(L,idx) { (void)L; (void)idx; }
|
|
|
|
#define lua_freeline(L,b) { (void)L; (void)b; }
|
2009-12-17 20:26:09 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2010-02-09 19:58:57 +08:00
|
|
|
static void print_usage (const char *badoption) {
|
2011-02-07 20:27:13 +08:00
|
|
|
luai_writestringerror("%s: ", progname);
|
|
|
|
if (badoption[1] == 'e' || badoption[1] == 'l')
|
2010-02-19 03:18:41 +08:00
|
|
|
luai_writestringerror("'%s' needs argument\n", badoption);
|
2011-02-07 20:27:13 +08:00
|
|
|
else
|
2010-02-19 03:18:41 +08:00
|
|
|
luai_writestringerror("unrecognized option '%s'\n", badoption);
|
|
|
|
luai_writestringerror(
|
2007-04-27 04:39: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"
|
2005-10-15 02:15:46 +08:00
|
|
|
" -i enter interactive mode after executing " LUA_QL("script") "\n"
|
2010-01-22 00:31:06 +08:00
|
|
|
" -l name require library " LUA_QL("name") "\n"
|
2002-11-19 21:49:43 +08:00
|
|
|
" -v show version information\n"
|
2011-08-18 04:19:52 +08:00
|
|
|
" -E ignore environment variables\n"
|
2005-10-15 02:15:46 +08:00
|
|
|
" -- stop handling options\n"
|
2010-01-22 00:31:06 +08:00
|
|
|
" - stop handling options and execute stdin\n"
|
2005-10-15 02:15:46 +08:00
|
|
|
,
|
2010-02-09 19:58:57 +08:00
|
|
|
progname);
|
2002-07-10 02:19:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void l_message (const char *pname, const char *msg) {
|
2010-02-19 03:18:41 +08:00
|
|
|
if (pname) luai_writestringerror("%s: ", pname);
|
|
|
|
luai_writestringerror("%s\n", msg);
|
2002-07-10 02:19:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-14 03:56:44 +08:00
|
|
|
static int report (lua_State *L, int status) {
|
2006-10-11 01:40:17 +08:00
|
|
|
if (status != LUA_OK && !lua_isnil(L, -1)) {
|
2003-10-24 02:06:22 +08:00
|
|
|
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);
|
2008-06-27 03:40:12 +08:00
|
|
|
/* force a complete garbage collection in case of errors */
|
|
|
|
lua_gc(L, LUA_GCCOLLECT, 0);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-11 00:23:19 +08:00
|
|
|
/* the next function is called unprotected, so it must avoid errors */
|
|
|
|
static void finalreport (lua_State *L, int status) {
|
|
|
|
if (status != LUA_OK) {
|
|
|
|
const char *msg = (lua_type(L, -1) == LUA_TSTRING) ? lua_tostring(L, -1)
|
|
|
|
: NULL;
|
|
|
|
if (msg == NULL) msg = "(error object is not a string)";
|
|
|
|
l_message(progname, msg);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-27 04:39:38 +08:00
|
|
|
static int traceback (lua_State *L) {
|
2007-06-22 23:33:54 +08:00
|
|
|
const char *msg = lua_tostring(L, 1);
|
|
|
|
if (msg)
|
2007-09-06 01:17:39 +08:00
|
|
|
luaL_traceback(L, L, msg, 1);
|
2007-06-22 23:33:54 +08: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)");
|
2005-08-27 01:32:05 +08:00
|
|
|
}
|
2005-01-11 01:21:10 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-03 01:36:32 +08:00
|
|
|
static int docall (lua_State *L, int narg, int nres) {
|
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 */
|
2007-04-27 04:39:38 +08:00
|
|
|
globalL = L; /* to be available to 'laction' */
|
2002-02-08 01:27:12 +08:00
|
|
|
signal(SIGINT, laction);
|
2010-07-03 01:36:32 +08:00
|
|
|
status = lua_pcall(L, narg, nres, 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 */
|
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) {
|
2011-06-16 22:30:58 +08:00
|
|
|
luai_writestring(LUA_COPYRIGHT, strlen(LUA_COPYRIGHT));
|
2011-05-27 00:09:40 +08:00
|
|
|
luai_writeline();
|
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) {
|
2006-10-11 01:40:17 +08:00
|
|
|
int status = luaL_loadfile(L, name);
|
2010-07-03 01:36:32 +08:00
|
|
|
if (status == LUA_OK) status = docall(L, 0, 0);
|
2004-07-14 03:56:44 +08:00
|
|
|
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) {
|
2006-10-11 01:40:17 +08:00
|
|
|
int status = luaL_loadbuffer(L, s, strlen(s), name);
|
2010-07-03 01:36:32 +08:00
|
|
|
if (status == LUA_OK) status = docall(L, 0, 0);
|
2004-07-14 03:56:44 +08:00
|
|
|
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) {
|
2010-07-03 01:36:32 +08:00
|
|
|
int status;
|
2012-04-21 01:05:17 +08:00
|
|
|
lua_getglobal(L, "require");
|
2005-03-30 00:47:48 +08:00
|
|
|
lua_pushstring(L, name);
|
2012-04-21 01:05:17 +08:00
|
|
|
status = docall(L, 1, 1); /* call 'require(name)' */
|
|
|
|
if (status == LUA_OK)
|
|
|
|
lua_setglobal(L, name); /* global[name] = require return */
|
2010-07-03 01:36:32 +08:00
|
|
|
return report(L, status);
|
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;
|
2010-03-13 11:57:46 +08:00
|
|
|
lua_getglobal(L, 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
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2006-06-24 00:09:15 +08:00
|
|
|
/* mark in error messages for incomplete statements */
|
2011-03-14 23:39:42 +08:00
|
|
|
#define EOFMARK "<eof>"
|
2011-05-04 00:01:57 +08:00
|
|
|
#define marklen (sizeof(EOFMARK)/sizeof(char) - 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);
|
2011-03-14 23:39:42 +08:00
|
|
|
if (lmsg >= marklen && strcmp(msg + lmsg - marklen, EOFMARK) == 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
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-16 22:27:17 +08:00
|
|
|
/* prompt the user, read a line, and push it into the Lua stack */
|
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);
|
2012-09-30 04:07:06 +08:00
|
|
|
int readstatus = lua_readline(L, b, prmt);
|
|
|
|
if (readstatus == 0)
|
2013-12-16 22:27:17 +08:00
|
|
|
return 0; /* no input (prompt will be popped by caller) */
|
|
|
|
lua_pop(L, 1); /* remove prompt */
|
2005-03-22 02:12:07 +08:00
|
|
|
l = strlen(b);
|
|
|
|
if (l > 0 && b[l-1] == '\n') /* line ends with newline? */
|
|
|
|
b[l-1] = '\0'; /* remove it */
|
2014-02-05 22:22:55 +08:00
|
|
|
if (firstline && b[0] == '=') /* for compatibility with 5.2, ... */
|
|
|
|
lua_pushfstring(L, "return %s", b + 1); /* change '=' 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-16 22:27:17 +08:00
|
|
|
/* try to compile line on the stack as 'return <line>'; on return, stack
|
|
|
|
has either compiled chunk or original line (if compilation failed) */
|
|
|
|
static int addreturn (lua_State *L) {
|
2002-05-02 04:48:12 +08:00
|
|
|
int status;
|
2013-12-16 22:27:17 +08:00
|
|
|
size_t len; const char *line;
|
|
|
|
lua_pushliteral(L, "return ");
|
|
|
|
lua_pushvalue(L, -2); /* duplicate line */
|
|
|
|
lua_concat(L, 2); /* new line is "return ..." */
|
|
|
|
line = lua_tolstring(L, -1, &len);
|
|
|
|
if ((status = luaL_loadbuffer(L, line, len, "=stdin")) == LUA_OK)
|
|
|
|
lua_remove(L, -3); /* remove original line */
|
|
|
|
else
|
|
|
|
lua_pop(L, 2); /* remove result from 'luaL_loadbuffer' and new line */
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* read multiple lines until a complete line */
|
|
|
|
static int multiline (lua_State *L) {
|
2002-07-11 04:44:34 +08:00
|
|
|
for (;;) { /* repeat until gets a complete line */
|
2013-12-16 22:27:17 +08:00
|
|
|
size_t len;
|
|
|
|
const char *line = lua_tolstring(L, 1, &len); /* get what it has */
|
|
|
|
int status = luaL_loadbuffer(L, line, len, "=stdin"); /* try it */
|
|
|
|
if (!incomplete(L, status) || !pushline(L, 0))
|
|
|
|
return status; /* cannot/should not try to add continuation line */
|
|
|
|
lua_pushliteral(L, "\n"); /* add newline... */
|
2005-03-22 02:12:07 +08:00
|
|
|
lua_insert(L, -2); /* ...between the two lines */
|
|
|
|
lua_concat(L, 3); /* join them */
|
2002-07-11 04:44:34 +08:00
|
|
|
}
|
2013-12-16 22:27:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int loadline (lua_State *L) {
|
|
|
|
int status;
|
|
|
|
lua_settop(L, 0);
|
|
|
|
if (!pushline(L, 1))
|
|
|
|
return -1; /* no input */
|
|
|
|
if ((status = addreturn(L)) != LUA_OK) /* 'return ...' did not work? */
|
|
|
|
status = multiline(L); /* try as command, maybe with continuation lines */
|
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 */
|
2013-12-16 22:27:17 +08:00
|
|
|
lua_assert(lua_gettop(L) == 1);
|
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) {
|
2010-07-03 01:36:32 +08:00
|
|
|
if (status == LUA_OK) status = docall(L, 0, LUA_MULTRET);
|
2004-07-14 03:56:44 +08:00
|
|
|
report(L, status);
|
2006-10-11 01:40:17 +08:00
|
|
|
if (status == LUA_OK && lua_gettop(L) > 0) { /* any result to print? */
|
2009-07-16 01:35:20 +08:00
|
|
|
luaL_checkstack(L, LUA_MINSTACK, "too many results to print");
|
2010-03-13 11:57:46 +08:00
|
|
|
lua_getglobal(L, "print");
|
2002-05-02 04:48:12 +08:00
|
|
|
lua_insert(L, 1);
|
2006-10-11 01:40:17 +08:00
|
|
|
if (lua_pcall(L, lua_gettop(L)-1, 0, 0) != LUA_OK)
|
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 */
|
2011-05-27 00:09:40 +08:00
|
|
|
luai_writeline();
|
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 */
|
2010-03-13 11:57:46 +08:00
|
|
|
lua_setglobal(L, "arg");
|
2005-10-15 02:15:46 +08:00
|
|
|
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));
|
2006-10-11 01:40:17 +08:00
|
|
|
if (status == LUA_OK)
|
2010-07-03 01:36:32 +08:00
|
|
|
status = docall(L, narg, LUA_MULTRET);
|
2005-10-15 02:15:46 +08:00
|
|
|
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 */
|
2009-11-25 02:05:12 +08:00
|
|
|
#define noextrachars(x) {if ((x)[2] != '\0') return -1;}
|
2006-05-24 22:16:39 +08:00
|
|
|
|
|
|
|
|
2011-08-05 02:16:16 +08:00
|
|
|
/* indices of various argument indicators in array args */
|
|
|
|
#define has_i 0 /* -i */
|
|
|
|
#define has_v 1 /* -v */
|
|
|
|
#define has_e 2 /* -e */
|
2011-08-18 04:19:52 +08:00
|
|
|
#define has_E 3 /* -E */
|
|
|
|
|
|
|
|
#define num_has 4 /* number of 'has_*' */
|
2011-08-05 02:16:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
static int collectargs (char **argv, int *args) {
|
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 '-':
|
2009-11-25 02:05:12 +08:00
|
|
|
noextrachars(argv[i]);
|
2006-05-24 22:16:39 +08:00
|
|
|
return (argv[i+1] != NULL ? i+1 : 0);
|
|
|
|
case '\0':
|
|
|
|
return i;
|
2011-08-18 04:19:52 +08:00
|
|
|
case 'E':
|
|
|
|
args[has_E] = 1;
|
|
|
|
break;
|
2006-05-24 22:16:39 +08:00
|
|
|
case 'i':
|
2009-11-25 02:05:12 +08:00
|
|
|
noextrachars(argv[i]);
|
2011-08-05 02:16:16 +08:00
|
|
|
args[has_i] = 1; /* go through */
|
2006-05-24 22:16:39 +08:00
|
|
|
case 'v':
|
2009-11-25 02:05:12 +08:00
|
|
|
noextrachars(argv[i]);
|
2011-08-05 02:16:16 +08:00
|
|
|
args[has_v] = 1;
|
2006-05-24 22:16:39 +08:00
|
|
|
break;
|
|
|
|
case 'e':
|
2011-08-05 02:16:16 +08:00
|
|
|
args[has_e] = 1; /* go through */
|
2010-10-19 00:06:33 +08:00
|
|
|
case 'l': /* both options need an argument */
|
|
|
|
if (argv[i][2] == '\0') { /* no concatenated argument? */
|
|
|
|
i++; /* try next 'argv' */
|
|
|
|
if (argv[i] == NULL || argv[i][0] == '-')
|
|
|
|
return -(i - 1); /* no next argument or it is another option */
|
2002-07-10 02:19:44 +08:00
|
|
|
}
|
2005-10-15 02:15:46 +08:00
|
|
|
break;
|
2010-02-09 19:58:57 +08:00
|
|
|
default: /* invalid option; return its index... */
|
|
|
|
return -i; /* ...as a negative value */
|
2005-10-15 02:15:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int runargs (lua_State *L, char **argv, int n) {
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < n; i++) {
|
|
|
|
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-11 01:40:17 +08:00
|
|
|
if (dostring(L, chunk, "=(command line)") != LUA_OK)
|
|
|
|
return 0;
|
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);
|
2006-10-11 01:40:17 +08:00
|
|
|
if (dolibrary(L, filename) != LUA_OK)
|
|
|
|
return 0; /* stop if file fails */
|
2005-10-15 02:15:46 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: break;
|
1996-06-11 03:35:46 +08:00
|
|
|
}
|
1994-12-15 03:58:20 +08:00
|
|
|
}
|
2006-10-11 01:40:17 +08:00
|
|
|
return 1;
|
2000-08-10 03:16:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-14 03:56:44 +08:00
|
|
|
static int handle_luainit (lua_State *L) {
|
2013-10-07 22:20:31 +08:00
|
|
|
const char *name = "=" LUA_INITVARVERSION;
|
2010-07-25 23:03:37 +08:00
|
|
|
const char *init = getenv(name + 1);
|
|
|
|
if (init == NULL) {
|
2013-10-07 22:20:31 +08:00
|
|
|
name = "=" LUA_INIT_VAR;
|
2010-07-25 23:03:37 +08:00
|
|
|
init = getenv(name + 1); /* try alternative name */
|
|
|
|
}
|
2006-10-11 01:40:17 +08:00
|
|
|
if (init == NULL) return LUA_OK;
|
2002-05-16 02:57:44 +08:00
|
|
|
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
|
2010-07-25 23:03:37 +08:00
|
|
|
return dostring(L, init, name);
|
2002-05-16 02:57:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-14 03:56:44 +08:00
|
|
|
static int pmain (lua_State *L) {
|
2010-10-26 03:01:37 +08:00
|
|
|
int argc = (int)lua_tointeger(L, 1);
|
2009-12-23 00:47:12 +08:00
|
|
|
char **argv = (char **)lua_touserdata(L, 2);
|
2005-10-15 02:15:46 +08:00
|
|
|
int script;
|
2011-08-18 04:19:52 +08:00
|
|
|
int args[num_has];
|
|
|
|
args[has_i] = args[has_v] = args[has_e] = args[has_E] = 0;
|
2005-10-15 02:15:46 +08:00
|
|
|
if (argv[0] && argv[0][0]) progname = argv[0];
|
2011-08-05 02:16:16 +08:00
|
|
|
script = collectargs(argv, args);
|
2010-01-22 00:31:06 +08:00
|
|
|
if (script < 0) { /* invalid arg? */
|
2010-02-09 19:58:57 +08:00
|
|
|
print_usage(argv[-script]);
|
2005-10-15 02:15:46 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2011-08-05 02:16:16 +08:00
|
|
|
if (args[has_v]) print_version();
|
2011-12-13 00:34:03 +08:00
|
|
|
if (args[has_E]) { /* option '-E'? */
|
|
|
|
lua_pushboolean(L, 1); /* signal for libraries to ignore env. vars. */
|
|
|
|
lua_setfield(L, LUA_REGISTRYINDEX, "LUA_NOENV");
|
|
|
|
}
|
2009-12-23 00:47:12 +08:00
|
|
|
/* open standard libraries */
|
|
|
|
luaL_checkversion(L);
|
|
|
|
lua_gc(L, LUA_GCSTOP, 0); /* stop collector during initialization */
|
|
|
|
luaL_openlibs(L); /* open libraries */
|
|
|
|
lua_gc(L, LUA_GCRESTART, 0);
|
2011-12-13 00:34:03 +08:00
|
|
|
if (!args[has_E] && handle_luainit(L) != LUA_OK)
|
|
|
|
return 0; /* error running LUA_INIT */
|
2009-12-23 00:47:12 +08:00
|
|
|
/* execute arguments -e and -l */
|
|
|
|
if (!runargs(L, argv, (script > 0) ? script : argc)) return 0;
|
|
|
|
/* execute main script (if there is one) */
|
|
|
|
if (script && handle_script(L, argv, script) != LUA_OK) return 0;
|
2011-08-05 02:16:16 +08:00
|
|
|
if (args[has_i]) /* -i option? */
|
2005-10-15 02:15:46 +08:00
|
|
|
dotty(L);
|
2011-08-05 02:16:16 +08:00
|
|
|
else if (script == 0 && !args[has_e] && !args[has_v]) { /* no arguments? */
|
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
|
|
|
}
|
2009-12-23 00:47:12 +08:00
|
|
|
lua_pushboolean(L, 1); /* signal no errors */
|
|
|
|
return 1;
|
2002-12-05 01:29:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-12 02:01:35 +08:00
|
|
|
int main (int argc, char **argv) {
|
2009-12-23 00:47:12 +08:00
|
|
|
int status, result;
|
2008-07-12 01:51:01 +08:00
|
|
|
lua_State *L = luaL_newstate(); /* create state */
|
2004-07-14 03:56:44 +08:00
|
|
|
if (L == NULL) {
|
2002-12-05 01:29:32 +08:00
|
|
|
l_message(argv[0], "cannot create state: not enough memory");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2009-12-23 00:47:12 +08:00
|
|
|
/* call 'pmain' in protected mode */
|
2010-04-14 23:14:21 +08:00
|
|
|
lua_pushcfunction(L, &pmain);
|
2010-01-22 00:49:21 +08:00
|
|
|
lua_pushinteger(L, argc); /* 1st argument */
|
|
|
|
lua_pushlightuserdata(L, argv); /* 2nd argument */
|
2010-04-14 23:14:21 +08:00
|
|
|
status = lua_pcall(L, 2, 1, 0);
|
2009-12-23 00:47:12 +08:00
|
|
|
result = lua_toboolean(L, -1); /* get result */
|
2009-08-11 00:23:19 +08:00
|
|
|
finalreport(L, status);
|
2004-07-14 03:56:44 +08:00
|
|
|
lua_close(L);
|
2009-12-23 00:47:12 +08:00
|
|
|
return (result && status == LUA_OK) ? EXIT_SUCCESS : EXIT_FAILURE;
|
1993-07-28 21:18:00 +08:00
|
|
|
}
|
|
|
|
|