lua/lua.c

234 lines
5.2 KiB
C
Raw Normal View History

1993-07-28 17:18:00 +04:00
/*
2000-03-03 17:58:26 +03:00
** $Id: lua.c,v 1.33 2000/02/21 18:30:42 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"
1999-12-20 16:03:20 +03:00
#ifndef PROMPT
#define PROMPT "> "
#endif
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
typedef void (*handler)(int); /* type for signal actions */
static void laction (int i);
2000-01-19 19:50:14 +03:00
static lua_Dbghook old_linehook = NULL;
static lua_Dbghook old_callhook = NULL;
static handler lreset (void) {
return signal(SIGINT, laction);
}
static void lstop (void) {
lua_setlinehook(lua_state, old_linehook);
lua_setcallhook(lua_state, 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) */
2000-01-19 19:50:14 +03:00
old_linehook = lua_setlinehook(lua_state, (lua_Dbghook)lstop);
old_callhook = lua_setcallhook(lua_state, (lua_Dbghook)lstop);
}
static int ldo (int (*f)(lua_State *L, const char *), const char *name) {
int res;
handler h = lreset();
res = f(lua_state, 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,
1999-12-30 21:29:46 +03:00
"usage: lua [options]. Available options are:\n"
" - execute stdin as a file\n"
" -d turn debug on\n"
" -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"
" -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-22 21:05:23 +03:00
}
1997-12-19 21:34:23 +03:00
static void assign (char *arg) {
2000-03-03 17:58:26 +03:00
char *eq = strchr(arg, '=');
*eq = '\0'; /* spilt `arg' in two strings (name & value) */
lua_pushstring(eq+1);
lua_setglobal(arg);
}
static void getargs (int argc, char *argv[]) {
lua_beginblock(); {
int i;
lua_Object args = lua_createtable();
lua_pushobject(args);
lua_setglobal("arg");
for (i=0; i<argc; i++) {
/* arg[i] = argv[i] */
lua_pushobject(args); lua_pushnumber(i);
lua_pushstring(argv[i]); lua_settable();
}
/* arg.n = maximum index in table `arg' */
lua_pushobject(args); lua_pushstring("n");
lua_pushnumber(argc-1); lua_settable();
} lua_endblock();
}
static void file_input (char **argv, int arg) {
int result = ldo(lua_dofile, argv[arg]);
if (result) {
if (result == 2) {
fprintf(stderr, "lua: cannot execute file ");
perror(argv[arg]);
}
exit(1);
}
}
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();
1999-12-20 16:03:20 +03:00
if (prompt) {
const char *s = lua_getstring(lua_getglobal("_PROMPT"));
if (!s) s = PROMPT;
2000-03-03 17:58:26 +03:00
fputs(s, stdout);
1999-12-20 16:03:20 +03:00
}
1997-12-19 21:34:23 +03:00
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) {
2000-03-03 17:58:26 +03:00
fprintf(stderr, "lua: input line too long\n");
1997-12-19 21:34:23 +03:00
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;
lua_state = lua_newstate("stack", 1024, "builtin", 1, NULL);
1999-01-26 14:50:58 +03:00
lua_userinit();
1997-12-19 21:34:23 +03:00
if (argc < 2) { /* no arguments? */
if (isatty(0)) {
1999-12-30 21:29:46 +03:00
print_version();
1997-12-19 21:34:23 +03:00
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(lua_state, 1);
1999-12-30 21:29:46 +03:00
if (i==argc-1) { /* last argument? */
print_version();
manual_input(1);
}
1997-12-22 21:05:23 +03:00
break;
case 'v':
1999-12-30 21:29:46 +03:00
print_version();
1997-12-22 21:05:23 +03:00
break;
case 'e':
i++;
if (i>=argc) {
print_message();
exit(1);
}
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]);
exit(1);
1997-12-22 21:05:23 +03:00
}
break;
case 'f':
i++;
if (i>=argc) {
print_message();
exit(1);
}
2000-03-03 17:58:26 +03:00
getargs(argc-i, argv+i); /* collect remaining arguments */
file_input(argv, i);
2000-03-03 17:58:26 +03:00
i = argc; /* stop scanning arguments */
break;
1997-12-22 21:05:23 +03:00
default:
print_message();
exit(1);
}
}
else if (strchr(argv[i], '='))
assign(argv[i]);
else
file_input(argv, i);
}
#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
}