1993-07-28 21:18:00 +08:00
|
|
|
/*
|
1997-09-17 03:25:59 +08:00
|
|
|
** $Id: $
|
|
|
|
** 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
|
|
|
|
1993-07-28 21:18:00 +08:00
|
|
|
#include <stdio.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
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#ifndef OLD_ANSI
|
|
|
|
#include <locale.h>
|
1996-05-04 04:10:59 +08:00
|
|
|
#else
|
1997-09-17 03:25:59 +08:00
|
|
|
#define setlocale(a,b) 0
|
1996-05-04 04:10:59 +08:00
|
|
|
#endif
|
1995-10-23 21:54:11 +08:00
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
#ifdef _POSIX_SOURCE
|
|
|
|
#include <unistd.h>
|
1997-06-10 01:29:16 +08:00
|
|
|
#else
|
1997-09-17 03:25:59 +08:00
|
|
|
#define isatty(x) (x==0) /* assume stdin is a tty */
|
1997-06-10 01:29:16 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1995-10-06 22:11:40 +08:00
|
|
|
static void manual_input (void)
|
|
|
|
{
|
1996-09-25 01:30:28 +08:00
|
|
|
if (isatty(0)) {
|
|
|
|
char buffer[250];
|
|
|
|
while (fgets(buffer, sizeof(buffer), stdin) != 0) {
|
|
|
|
lua_beginblock();
|
|
|
|
lua_dostring(buffer);
|
|
|
|
lua_endblock();
|
|
|
|
}
|
1995-10-23 21:54:11 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
lua_dofile(NULL); /* executes stdin as a file */
|
1995-10-06 22:11:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-11-29 01:12:49 +08:00
|
|
|
int main (int argc, char *argv[])
|
1993-07-28 21:18:00 +08:00
|
|
|
{
|
1996-06-11 03:35:46 +08:00
|
|
|
int i;
|
1997-07-02 03:32:41 +08:00
|
|
|
setlocale(LC_ALL, "");
|
1997-09-17 03:25:59 +08:00
|
|
|
lua_iolibopen ();
|
|
|
|
lua_strlibopen ();
|
|
|
|
lua_mathlibopen ();
|
1996-06-11 03:35:46 +08:00
|
|
|
if (argc < 2)
|
1995-10-06 22:11:40 +08:00
|
|
|
manual_input();
|
1996-06-11 03:35:46 +08:00
|
|
|
else for (i=1; i<argc; i++) {
|
|
|
|
if (strcmp(argv[i], "-") == 0)
|
|
|
|
manual_input();
|
1997-09-17 03:25:59 +08:00
|
|
|
else if (strcmp(argv[i], "-d") == 0)
|
|
|
|
lua_debug = 1;
|
1996-06-11 03:35:46 +08:00
|
|
|
else if (strcmp(argv[i], "-v") == 0)
|
|
|
|
printf("%s %s\n(written by %s)\n\n",
|
|
|
|
LUA_VERSION, LUA_COPYRIGHT, LUA_AUTHORS);
|
1996-07-06 04:55:43 +08:00
|
|
|
else if ((strcmp(argv[i], "-e") == 0 && i++) || strchr(argv[i], '=')) {
|
|
|
|
if (lua_dostring(argv[i]) != 0) {
|
1996-06-11 03:35:46 +08:00
|
|
|
fprintf(stderr, "lua: error running argument `%s'\n", argv[i]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
1997-09-17 03:25:59 +08:00
|
|
|
int result = 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
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
1994-12-15 03:58:20 +08:00
|
|
|
}
|
1997-09-17 03:25:59 +08:00
|
|
|
return 0;
|
1993-07-28 21:18:00 +08:00
|
|
|
}
|
|
|
|
|