lua/lua.c

323 lines
7.4 KiB
C
Raw Normal View History

1993-07-28 21:18:00 +08:00
/*
** $Id: lua.c,v 1.48 2000/08/31 14:28: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
#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
#include "lua.h"
1997-09-17 03:25:59 +08:00
#include "luadebug.h"
1993-07-28 21:18:00 +08:00
#include "lualib.h"
2000-08-29 01:57:04 +08:00
2000-08-10 03:16:57 +08:00
lua_State *lua_state = NULL;
2000-08-29 01:57:04 +08:00
#define L lua_state
2000-08-10 03:16:57 +08:00
1999-12-20 21:03:20 +08:00
#ifndef PROMPT
#define PROMPT "> "
#endif
1997-09-17 03:25:59 +08:00
#ifdef _POSIX_SOURCE
#include <unistd.h>
#else
1999-11-16 20:50:48 +08:00
static int isatty (int x) { return x==0; } /* assume stdin is a tty */
#endif
2000-08-10 03:16:57 +08:00
/*
** global options
*/
struct Options {
int toclose;
int stacksize;
};
typedef void (*handler)(int); /* type for signal actions */
static void laction (int i);
2000-03-31 01:19:48 +08:00
static lua_Hook old_linehook = NULL;
static lua_Hook old_callhook = NULL;
2000-08-10 03:16:57 +08:00
#ifdef USERINIT
extern void USERINIT (void);
#else
#define USERINIT userinit
2000-08-15 01:45:59 +08:00
static void userinit (void) {
2000-08-29 01:57:04 +08:00
lua_iolibopen(L);
lua_strlibopen(L);
lua_mathlibopen(L);
lua_dblibopen(L);
2000-08-10 03:16:57 +08:00
}
#endif
static handler lreset (void) {
return signal(SIGINT, laction);
}
static void lstop (void) {
2000-08-29 01:57:04 +08:00
lua_setlinehook(L, old_linehook);
lua_setcallhook(L, old_callhook);
lreset();
2000-08-29 01:57:04 +08:00
lua_error(L, "interrupted!");
}
static void laction (int i) {
1999-11-10 01:59:35 +08:00
(void)i; /* to avoid warnings */
signal(SIGINT, SIG_DFL); /* if another SIGINT happens before lstop,
terminate process (default action) */
2000-08-29 01:57:04 +08:00
old_linehook = lua_setlinehook(L, (lua_Hook)lstop);
old_callhook = lua_setcallhook(L, (lua_Hook)lstop);
}
2000-08-29 01:57:04 +08:00
static int ldo (int (*f)(lua_State *l, const char *), const char *name) {
int res;
handler h = lreset();
int top = lua_gettop(L);
2000-08-29 01:57:04 +08:00
res = f(L, name); /* dostring | dofile */
lua_settop(L, top); /* remove eventual results */
signal(SIGINT, h); /* restore old action */
if (res == LUA_ERRMEM) {
/* Lua gives no message in such case, so lua.c provides one */
fprintf(stderr, "lua: memory allocation error\n");
}
return res;
}
static void print_message (void) {
1997-12-23 02:05:23 +08:00
fprintf(stderr,
1999-12-31 02:29:46 +08:00
"usage: lua [options]. Available options are:\n"
" - execute stdin as a file\n"
2000-05-11 01:00:21 +08:00
" -c close lua when exiting\n"
1999-12-31 02:29:46 +08:00
" -e stat execute string `stat'\n"
" -f name execute file `name' with remaining arguments in table `arg'\n"
" -i enter interactive mode with prompt\n"
" -q enter interactive mode without prompt\n"
2000-06-19 21:15:15 +08:00
" -sNUM set stack size to NUM (must be the first option)\n"
1999-12-31 02:29:46 +08:00
" -v print version information\n"
" a=b set global `a' to string `b'\n"
" name execute file `name'\n"
);
}
static void print_version (void) {
printf("%s %s\n", LUA_VERSION, LUA_COPYRIGHT);
1997-12-23 02:05:23 +08:00
}
1997-12-20 02:34:23 +08:00
static void assign (char *arg) {
2000-03-03 22:58:26 +08:00
char *eq = strchr(arg, '=');
*eq = '\0'; /* spilt `arg' in two strings (name & value) */
2000-08-29 01:57:04 +08:00
lua_pushstring(L, eq+1);
lua_setglobal(L, arg);
}
2000-08-29 01:57:04 +08:00
static void getargs (char *argv[]) {
2000-04-15 01:46:29 +08:00
int i;
2000-08-29 01:57:04 +08:00
lua_newtable(L);
for (i=0; argv[i]; i++) {
/* arg[i] = argv[i] */
2000-08-29 01:57:04 +08:00
lua_pushobject(L, -1); lua_pushnumber(L, i);
lua_pushstring(L, argv[i]); lua_settable(L);
}
/* arg.n = maximum index in table `arg' */
2000-08-29 01:57:04 +08:00
lua_pushobject(L, -1); lua_pushstring(L, "n");
lua_pushnumber(L, i-1); lua_settable(L);
2000-04-15 01:46:29 +08:00
}
2000-08-29 01:57:04 +08:00
static int l_getargs (lua_State *l) {
char **argv = (char **)lua_touserdata(l, -1);
2000-08-29 01:57:04 +08:00
getargs(argv);
return 1;
}
2000-08-10 03:16:57 +08:00
static int file_input (const char *argv) {
int result = ldo(lua_dofile, argv);
if (result) {
if (result == LUA_ERRFILE) {
fprintf(stderr, "lua: cannot execute file ");
perror(argv);
}
2000-08-10 03:16:57 +08:00
return EXIT_FAILURE;
}
2000-08-10 03:16:57 +08:00
else
return EXIT_SUCCESS;
}
2000-08-10 03:16:57 +08:00
/* maximum length of an input string */
#ifndef MAXINPUT
#define MAXINPUT BUFSIZ
#endif
static void manual_input (int version, int prompt) {
1997-12-20 02:34:23 +08:00
int cont = 1;
if (version) print_version();
1997-12-20 02:34:23 +08:00
while (cont) {
char buffer[MAXINPUT];
1997-12-20 02:34:23 +08:00
int i = 0;
1999-12-20 21:03:20 +08:00
if (prompt) {
2000-08-29 01:57:04 +08:00
const char *s;
lua_getglobal(L, "_PROMPT");
s = lua_tostring(L, -1);
1999-12-20 21:03:20 +08:00
if (!s) s = PROMPT;
2000-03-03 22:58:26 +08:00
fputs(s, stdout);
lua_pop(L, 1); /* remove global */
1999-12-20 21:03:20 +08:00
}
1997-12-20 02:34:23 +08:00
for(;;) {
int c = getchar();
if (c == EOF) {
cont = 0;
break;
}
1997-12-20 02:34:23 +08:00
else if (c == '\n') {
if (i>0 && buffer[i-1] == '\\')
buffer[i-1] = '\n';
else break;
}
else if (i >= MAXINPUT-1) {
2000-03-03 22:58:26 +08:00
fprintf(stderr, "lua: input line too long\n");
1997-12-20 02:34:23 +08:00
break;
}
else buffer[i++] = (char)c;
}
buffer[i] = '\0';
ldo(lua_dostring, buffer);
2000-08-29 01:57:04 +08:00
lua_settop(L, 0); /* remove eventual results */
}
1997-12-20 02:34:23 +08:00
printf("\n");
}
2000-08-10 03:16:57 +08:00
static int handle_argv (char *argv[], struct Options *opt) {
if (opt->stacksize > 0) argv++; /* skip option `-s' (if present) */
if (*argv == NULL) { /* no more arguments? */
1997-12-20 02:34:23 +08:00
if (isatty(0)) {
manual_input(1, 1);
1997-12-20 02:34:23 +08:00
}
else
ldo(lua_dofile, NULL); /* executes stdin as a file */
1997-10-06 22:51:32 +08:00
}
2000-08-10 03:16:57 +08:00
else { /* other arguments; loop over them */
int i;
for (i = 0; argv[i] != NULL; i++) {
if (argv[i][0] != '-') { /* not an option? */
if (strchr(argv[i], '='))
assign(argv[i]);
else
if (file_input(argv[i]) != EXIT_SUCCESS)
return EXIT_FAILURE; /* stop if file fails */
}
else switch (argv[i][1]) { /* option */
case 0: {
ldo(lua_dofile, NULL); /* executes stdin as a file */
break;
1999-12-31 02:29:46 +08:00
}
2000-08-10 03:16:57 +08:00
case 'i': {
manual_input(0, 1);
break;
}
case 'q': {
manual_input(0, 0);
break;
}
2000-08-10 03:16:57 +08:00
case 'c': {
opt->toclose = 1;
break;
1997-12-23 02:05:23 +08:00
}
2000-08-10 03:16:57 +08:00
case 'v': {
print_version();
break;
}
case 'e': {
i++;
if (argv[i] == NULL) {
print_message();
return EXIT_FAILURE;
}
if (ldo(lua_dostring, argv[i]) != 0) {
fprintf(stderr, "lua: error running argument `%s'\n", argv[i]);
return EXIT_FAILURE;
}
break;
}
case 'f': {
i++;
if (argv[i] == NULL) {
print_message();
return EXIT_FAILURE;
}
2000-08-29 01:57:04 +08:00
getargs(argv+i); /* collect remaining arguments */
lua_setglobal(L, "arg");
2000-08-10 03:16:57 +08:00
return file_input(argv[i]); /* stop scanning arguments */
}
case 's': {
fprintf(stderr, "lua: stack size (`-s') must be the first option\n");
return EXIT_FAILURE;
}
default: {
print_message();
2000-08-10 03:16:57 +08:00
return EXIT_FAILURE;
}
2000-08-10 03:16:57 +08:00
}
}
}
2000-08-10 03:16:57 +08:00
return EXIT_SUCCESS;
}
static void getstacksize (int argc, char *argv[], struct Options *opt) {
if (argc >= 2 && argv[1][0] == '-' && argv[1][1] == 's') {
int stacksize = atoi(&argv[1][2]);
2000-08-31 22:28:17 +08:00
if (stacksize <= 0) {
2000-08-10 03:16:57 +08:00
fprintf(stderr, "lua: invalid stack size ('%s')\n", &argv[1][2]);
exit(EXIT_FAILURE);
}
opt->stacksize = stacksize;
}
else
opt->stacksize = 0; /* no stack size */
}
static void register_getargs (char *argv[]) {
2000-08-29 01:57:04 +08:00
lua_pushuserdata(L, argv);
lua_pushcclosure(L, l_getargs, 1);
lua_setglobal(L, "getargs");
2000-08-10 03:16:57 +08:00
}
int main (int argc, char *argv[]) {
struct Options opt;
int status;
opt.toclose = 0;
getstacksize(argc, argv, &opt); /* handle option `-s' */
2000-08-29 01:57:04 +08:00
L = lua_newstate(opt.stacksize, 1); /* create state */
2000-08-10 03:16:57 +08:00
USERINIT(); /* open libraries */
register_getargs(argv); /* create `getargs' function */
status = handle_argv(argv+1, &opt);
if (opt.toclose)
2000-08-29 01:57:04 +08:00
lua_close(L);
2000-05-11 01:00:21 +08:00
return status;
1993-07-28 21:18:00 +08:00
}