1993-07-28 21:18:00 +08:00
|
|
|
/*
|
1999-12-20 21:03:20 +08:00
|
|
|
** $Id: lua.c,v 1.28 1999/12/06 11:41:28 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
|
|
|
|
|
|
|
#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"
|
|
|
|
|
1994-12-15 03:58:20 +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>
|
1997-06-10 01:29:16 +08:00
|
|
|
#else
|
1999-11-16 20:50:48 +08:00
|
|
|
static int isatty (int x) { return x==0; } /* assume stdin is a tty */
|
1997-06-10 01:29:16 +08:00
|
|
|
#endif
|
|
|
|
|
1998-02-12 04:56:05 +08:00
|
|
|
typedef void (*handler)(int); /* type for signal actions */
|
|
|
|
|
|
|
|
static void laction (int i);
|
|
|
|
|
1998-12-28 21:44:54 +08:00
|
|
|
|
1999-01-06 21:12:41 +08:00
|
|
|
static lua_LHFunction old_linehook = NULL;
|
|
|
|
static lua_CHFunction old_callhook = NULL;
|
|
|
|
|
|
|
|
|
1998-12-28 21:44:54 +08:00
|
|
|
static handler lreset (void) {
|
1998-02-12 04:56:05 +08:00
|
|
|
return signal(SIGINT, laction);
|
|
|
|
}
|
|
|
|
|
1998-12-28 21:44:54 +08:00
|
|
|
|
|
|
|
static void lstop (void) {
|
1999-11-22 21:12:07 +08:00
|
|
|
lua_setlinehook(lua_state, old_linehook);
|
|
|
|
lua_setcallhook(lua_state, old_callhook);
|
1998-02-12 04:56:05 +08:00
|
|
|
lreset();
|
|
|
|
lua_error("interrupted!");
|
|
|
|
}
|
|
|
|
|
1998-12-28 21:44:54 +08:00
|
|
|
|
|
|
|
static void laction (int i) {
|
1999-11-10 01:59:35 +08:00
|
|
|
(void)i; /* to avoid warnings */
|
1999-07-03 02:22:38 +08:00
|
|
|
signal(SIGINT, SIG_DFL); /* if another SIGINT happens before lstop,
|
|
|
|
terminate process (default action) */
|
1999-11-22 21:12:07 +08:00
|
|
|
old_linehook = lua_setlinehook(lua_state, (lua_LHFunction)lstop);
|
|
|
|
old_callhook = lua_setcallhook(lua_state, (lua_CHFunction)lstop);
|
1998-02-12 04:56:05 +08:00
|
|
|
}
|
|
|
|
|
1998-12-28 21:44:54 +08:00
|
|
|
|
1999-11-22 21:12:07 +08:00
|
|
|
static int ldo (int (*f)(lua_State *L, const char *), const char *name) {
|
1998-02-12 04:56:05 +08:00
|
|
|
int res;
|
|
|
|
handler h = lreset();
|
1999-11-22 21:12:07 +08:00
|
|
|
res = f(lua_state, name); /* dostring | dofile */
|
1998-02-12 04:56:05 +08:00
|
|
|
signal(SIGINT, h); /* restore old action */
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-28 21:44:54 +08:00
|
|
|
static void print_message (void) {
|
1997-12-23 02:05:23 +08:00
|
|
|
fprintf(stderr,
|
|
|
|
"Lua: command line options:\n"
|
|
|
|
" -v print version information\n"
|
|
|
|
" -d turn debug on\n"
|
|
|
|
" -e stat dostring `stat'\n"
|
|
|
|
" -q interactive mode without prompt\n"
|
|
|
|
" -i interactive mode with prompt\n"
|
1999-08-19 01:40:54 +08:00
|
|
|
" - execute stdin as a file\n"
|
|
|
|
" -- start arguments for table `arg'\n"
|
|
|
|
" a=b set global `a' with string `b'\n"
|
1997-12-23 02:05:23 +08:00
|
|
|
" name dofile `name'\n\n");
|
|
|
|
}
|
1997-12-20 02:34:23 +08:00
|
|
|
|
1997-06-10 01:29:16 +08:00
|
|
|
|
1998-12-28 21:44:54 +08:00
|
|
|
static void assign (char *arg) {
|
1997-12-04 03:57:54 +08:00
|
|
|
if (strlen(arg) >= 500)
|
|
|
|
fprintf(stderr, "lua: shell argument too long");
|
|
|
|
else {
|
|
|
|
char buffer[500];
|
|
|
|
char *eq = strchr(arg, '=');
|
|
|
|
lua_pushstring(eq+1);
|
|
|
|
strncpy(buffer, arg, eq-arg);
|
|
|
|
buffer[eq-arg] = 0;
|
|
|
|
lua_setglobal(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-19 01:40:54 +08:00
|
|
|
static void getargs (int argc, char *argv[]) {
|
1999-12-06 19:41:28 +08:00
|
|
|
lua_beginblock(); {
|
1999-08-19 01:40:54 +08:00
|
|
|
int i, j;
|
|
|
|
lua_Object args = lua_createtable();
|
|
|
|
lua_pushobject(args);
|
|
|
|
lua_setglobal("arg");
|
|
|
|
for (i=0; i<argc; i++)
|
|
|
|
if (strcmp(argv[i], "--") == 0) break;
|
|
|
|
for (j = 0; j<argc; j++) {
|
|
|
|
/* arg[j-i] = argv[j] */
|
|
|
|
lua_pushobject(args); lua_pushnumber(j-i);
|
|
|
|
lua_pushstring(argv[j]); lua_settable();
|
|
|
|
}
|
|
|
|
/* arg.n = maximum index in table `arg' */
|
|
|
|
lua_pushobject(args); lua_pushstring("n");
|
|
|
|
lua_pushnumber(argc-(i+1)); lua_settable();
|
|
|
|
/* arg.nn = minimum index in table `arg' */
|
|
|
|
lua_pushobject(args); lua_pushstring("nn");
|
|
|
|
lua_pushnumber(-i); lua_settable();
|
1999-12-06 19:41:28 +08:00
|
|
|
} lua_endblock();
|
1999-08-19 01:40:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-28 21:44:54 +08:00
|
|
|
static void manual_input (int prompt) {
|
1997-12-20 02:34:23 +08:00
|
|
|
int cont = 1;
|
|
|
|
while (cont) {
|
1998-12-28 21:44:54 +08:00
|
|
|
char buffer[BUFSIZ];
|
1997-12-20 02:34:23 +08:00
|
|
|
int i = 0;
|
|
|
|
lua_beginblock();
|
1999-12-20 21:03:20 +08:00
|
|
|
if (prompt) {
|
|
|
|
const char *s = lua_getstring(lua_getglobal("_PROMPT"));
|
|
|
|
if (!s) s = PROMPT;
|
|
|
|
printf("%s", s);
|
|
|
|
}
|
1997-12-20 02:34:23 +08:00
|
|
|
for(;;) {
|
|
|
|
int c = getchar();
|
|
|
|
if (c == EOF) {
|
|
|
|
cont = 0;
|
|
|
|
break;
|
1997-12-12 01:00:21 +08:00
|
|
|
}
|
1997-12-20 02:34:23 +08:00
|
|
|
else if (c == '\n') {
|
|
|
|
if (i>0 && buffer[i-1] == '\\')
|
|
|
|
buffer[i-1] = '\n';
|
|
|
|
else break;
|
|
|
|
}
|
1998-12-28 21:44:54 +08:00
|
|
|
else if (i >= BUFSIZ-1) {
|
1997-12-20 02:34:23 +08:00
|
|
|
fprintf(stderr, "lua: argument line too long\n");
|
|
|
|
break;
|
|
|
|
}
|
1998-12-28 21:44:54 +08:00
|
|
|
else buffer[i++] = (char)c;
|
1996-09-25 01:30:28 +08:00
|
|
|
}
|
1998-12-28 21:44:54 +08:00
|
|
|
buffer[i] = '\0';
|
1998-02-12 04:56:05 +08:00
|
|
|
ldo(lua_dostring, buffer);
|
1997-12-20 02:34:23 +08:00
|
|
|
lua_endblock();
|
1995-10-23 21:54:11 +08:00
|
|
|
}
|
1997-12-20 02:34:23 +08:00
|
|
|
printf("\n");
|
1995-10-06 22:11:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-19 01:40:54 +08:00
|
|
|
int main (int argc, char *argv[]) {
|
1996-06-11 03:35:46 +08:00
|
|
|
int i;
|
1999-12-06 19:41:28 +08:00
|
|
|
lua_state = lua_newstate("stack", 1024, "builtin", 1, NULL);
|
1999-01-26 19:50:58 +08:00
|
|
|
lua_userinit();
|
1999-08-19 01:40:54 +08:00
|
|
|
getargs(argc, argv);
|
1997-12-20 02:34:23 +08:00
|
|
|
if (argc < 2) { /* no arguments? */
|
|
|
|
if (isatty(0)) {
|
|
|
|
printf("%s %s\n", LUA_VERSION, LUA_COPYRIGHT);
|
|
|
|
manual_input(1);
|
|
|
|
}
|
|
|
|
else
|
1998-02-12 04:56:05 +08:00
|
|
|
ldo(lua_dofile, NULL); /* executes stdin as a file */
|
1997-10-06 22:51:32 +08:00
|
|
|
}
|
1996-06-11 03:35:46 +08:00
|
|
|
else for (i=1; i<argc; i++) {
|
1997-12-23 02:05:23 +08:00
|
|
|
if (argv[i][0] == '-') { /* option? */
|
|
|
|
switch (argv[i][1]) {
|
|
|
|
case 0:
|
1998-02-12 04:56:05 +08:00
|
|
|
ldo(lua_dofile, NULL); /* executes stdin as a file */
|
1997-12-23 02:05:23 +08:00
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
manual_input(1);
|
|
|
|
break;
|
|
|
|
case 'q':
|
|
|
|
manual_input(0);
|
|
|
|
break;
|
|
|
|
case 'd':
|
1999-11-22 21:12:07 +08:00
|
|
|
lua_setdebug(lua_state, 1);
|
1997-12-23 02:05:23 +08:00
|
|
|
break;
|
|
|
|
case 'v':
|
1999-11-12 21:54:44 +08:00
|
|
|
printf("%s %s\n(written by %s)\n",
|
1997-12-23 02:05:23 +08:00
|
|
|
LUA_VERSION, LUA_COPYRIGHT, LUA_AUTHORS);
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
i++;
|
1998-02-12 04:56:05 +08:00
|
|
|
if (ldo(lua_dostring, argv[i]) != 0) {
|
1997-12-23 02:05:23 +08:00
|
|
|
fprintf(stderr, "lua: error running argument `%s'\n", argv[i]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
1999-08-19 01:40:54 +08:00
|
|
|
case '-':
|
|
|
|
i = argc; /* end loop */
|
|
|
|
break;
|
1997-12-23 02:05:23 +08:00
|
|
|
default:
|
|
|
|
print_message();
|
1997-12-23 04:03:50 +08:00
|
|
|
exit(1);
|
1996-06-11 03:35:46 +08:00
|
|
|
}
|
|
|
|
}
|
1997-12-04 03:57:54 +08:00
|
|
|
else if (strchr(argv[i], '='))
|
|
|
|
assign(argv[i]);
|
1996-06-11 03:35:46 +08:00
|
|
|
else {
|
1998-02-12 04:56:05 +08:00
|
|
|
int result = ldo(lua_dofile, argv[i]);
|
1996-06-11 03:35:46 +08:00
|
|
|
if (result) {
|
|
|
|
if (result == 2) {
|
1997-04-05 06:24:51 +08:00
|
|
|
fprintf(stderr, "lua: cannot execute file ");
|
|
|
|
perror(argv[i]);
|
1996-06-11 03:35:46 +08:00
|
|
|
}
|
1997-12-23 04:03:50 +08:00
|
|
|
exit(1);
|
1996-06-11 03:35:46 +08:00
|
|
|
}
|
|
|
|
}
|
1994-12-15 03:58:20 +08:00
|
|
|
}
|
1997-12-11 22:48:46 +08:00
|
|
|
#ifdef DEBUG
|
1997-12-02 04:31:25 +08:00
|
|
|
lua_close();
|
|
|
|
#endif
|
1997-09-17 03:25:59 +08:00
|
|
|
return 0;
|
1993-07-28 21:18:00 +08:00
|
|
|
}
|
|
|
|
|