lua/lua.c

215 lines
4.9 KiB
C
Raw Normal View History

1993-07-28 17:18:00 +04:00
/*
1999-11-16 15:50:48 +03:00
** $Id: lua.c,v 1.25 1999/11/12 13:54:44 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
#include "lua.h"
1997-09-16 23:25:59 +04:00
#include "luadebug.h"
1993-07-28 17:18:00 +04:00
#include "lualib.h"
1997-09-16 23:25:59 +04:00
#ifdef _POSIX_SOURCE
#include <unistd.h>
#else
1999-11-16 15:50:48 +03:00
static int isatty (int x) { return x==0; } /* assume stdin is a tty */
#endif
1997-12-22 21:05:23 +03:00
typedef void (*handler)(int); /* type for signal actions */
static void laction (int i);
static lua_LHFunction old_linehook = NULL;
static lua_CHFunction old_callhook = NULL;
static handler lreset (void) {
return signal(SIGINT, laction);
}
static void lstop (void) {
lua_setlinehook(old_linehook);
lua_setcallhook(old_callhook);
lreset();
lua_error("interrupted!");
}
static void laction (int i) {
1999-11-09 20:59:35 +03:00
(void)i; /* to avoid warnings */
signal(SIGINT, SIG_DFL); /* if another SIGINT happens before lstop,
terminate process (default action) */
old_linehook = lua_setlinehook((lua_LHFunction)lstop);
old_callhook = lua_setcallhook((lua_CHFunction)lstop);
}
1999-08-17 00:52:00 +04:00
static int ldo (int (*f)(const char *), const char *name) {
int res;
handler h = lreset();
res = f(name); /* dostring | dofile */
signal(SIGINT, h); /* restore old action */
return res;
}
static void print_message (void) {
1997-12-22 21:05:23 +03: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"
" - execute stdin as a file\n"
" -- start arguments for table `arg'\n"
" a=b set global `a' with string `b'\n"
1997-12-22 21:05:23 +03:00
" name dofile `name'\n\n");
}
1997-12-19 21:34:23 +03:00
static void assign (char *arg) {
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);
}
}
static void getargs (int argc, char *argv[]) {
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();
}
static void manual_input (int prompt) {
1997-12-19 21:34:23 +03:00
int cont = 1;
while (cont) {
char buffer[BUFSIZ];
1997-12-19 21:34:23 +03:00
int i = 0;
lua_beginblock();
if (prompt)
printf("%s", lua_getstring(lua_getglobal("_PROMPT")));
for(;;) {
int c = getchar();
if (c == EOF) {
cont = 0;
break;
}
1997-12-19 21:34:23 +03:00
else if (c == '\n') {
if (i>0 && buffer[i-1] == '\\')
buffer[i-1] = '\n';
else break;
}
else if (i >= BUFSIZ-1) {
1997-12-19 21:34:23 +03:00
fprintf(stderr, "lua: argument line too long\n");
break;
}
else buffer[i++] = (char)c;
}
buffer[i] = '\0';
ldo(lua_dostring, buffer);
1997-12-19 21:34:23 +03:00
lua_endblock();
}
1997-12-19 21:34:23 +03:00
printf("\n");
}
int main (int argc, char *argv[]) {
int i;
1999-01-08 19:47:44 +03:00
lua_open();
1997-10-16 22:35:59 +04:00
lua_pushstring("> "); lua_setglobal("_PROMPT");
1999-01-26 14:50:58 +03:00
lua_userinit();
getargs(argc, argv);
1997-12-19 21:34:23 +03:00
if (argc < 2) { /* no arguments? */
if (isatty(0)) {
printf("%s %s\n", LUA_VERSION, LUA_COPYRIGHT);
manual_input(1);
}
else
ldo(lua_dofile, NULL); /* executes stdin as a file */
1997-10-06 18:51:32 +04:00
}
else for (i=1; i<argc; i++) {
1997-12-22 21:05:23 +03:00
if (argv[i][0] == '-') { /* option? */
switch (argv[i][1]) {
case 0:
ldo(lua_dofile, NULL); /* executes stdin as a file */
1997-12-22 21:05:23 +03:00
break;
case 'i':
manual_input(1);
break;
case 'q':
manual_input(0);
break;
case 'd':
lua_setdebug(1);
1997-12-22 21:05:23 +03:00
break;
case 'v':
1999-11-12 16:54:44 +03:00
printf("%s %s\n(written by %s)\n",
1997-12-22 21:05:23 +03:00
LUA_VERSION, LUA_COPYRIGHT, LUA_AUTHORS);
break;
case 'e':
i++;
if (ldo(lua_dostring, argv[i]) != 0) {
1997-12-22 21:05:23 +03:00
fprintf(stderr, "lua: error running argument `%s'\n", argv[i]);
return 1;
}
break;
case '-':
i = argc; /* end loop */
break;
1997-12-22 21:05:23 +03:00
default:
print_message();
exit(1);
}
}
else if (strchr(argv[i], '='))
assign(argv[i]);
else {
int result = ldo(lua_dofile, argv[i]);
if (result) {
if (result == 2) {
fprintf(stderr, "lua: cannot execute file ");
perror(argv[i]);
}
exit(1);
}
}
}
#ifdef DEBUG
1997-12-01 23:31:25 +03:00
lua_close();
#endif
1997-09-16 23:25:59 +04:00
return 0;
1993-07-28 17:18:00 +04:00
}