/* ** $Id: lua.c,v 1.16 1999/01/06 13:12:41 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ #include #include #include #include #include "lua.h" #include "luadebug.h" #include "lualib.h" #ifndef OLD_ANSI #include #else #define setlocale(a,b) 0 #endif #ifdef _POSIX_SOURCE #include #else #define isatty(x) (x==0) /* assume stdin is a tty */ #endif 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_linehook = old_linehook; lua_callhook = old_callhook; lreset(); lua_error("interrupted!"); } static void laction (int i) { old_linehook = lua_linehook; old_callhook = lua_callhook; lua_linehook = (lua_LHFunction)lstop; lua_callhook = (lua_CHFunction)lstop; } static int ldo (int (*f)(char *), 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) { 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" " - executes stdin as a file\n" " a=b sets global `a' with string `b'\n" " name dofile `name'\n\n"); } 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 manual_input (int prompt) { int cont = 1; while (cont) { char buffer[BUFSIZ]; int i = 0; lua_beginblock(); if (prompt) printf("%s", lua_getstring(lua_getglobal("_PROMPT"))); for(;;) { int c = getchar(); if (c == EOF) { cont = 0; break; } else if (c == '\n') { if (i>0 && buffer[i-1] == '\\') buffer[i-1] = '\n'; else break; } else if (i >= BUFSIZ-1) { fprintf(stderr, "lua: argument line too long\n"); break; } else buffer[i++] = (char)c; } buffer[i] = '\0'; ldo(lua_dostring, buffer); lua_endblock(); } printf("\n"); } int main (int argc, char *argv[]) { int i; lua_open(); lua_pushstring("> "); lua_setglobal("_PROMPT"); lua_userinit(); setlocale(LC_ALL, ""); 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 */ } else for (i=1; i