lua/liolib.c

696 lines
18 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2001-03-26 18:31:49 +04:00
** $Id: liolib.c,v 1.110 2001/03/06 20:09:38 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Standard I/O (and system) library
** See Copyright Notice in lua.h
*/
#include <ctype.h>
1993-07-28 17:18:00 +04:00
#include <stdio.h>
1997-12-18 22:11:43 +03:00
#include <stdlib.h>
1994-11-16 20:39:16 +03:00
#include <string.h>
#include <time.h>
1993-07-28 17:18:00 +04:00
2001-03-26 18:31:49 +04:00
#define LUA_PRIVATE
1993-07-28 17:18:00 +04:00
#include "lua.h"
#include "lauxlib.h"
1995-10-17 17:12:45 +03:00
#include "luadebug.h"
#include "lualib.h"
1993-07-28 17:18:00 +04:00
1997-09-16 23:25:59 +04:00
#ifndef OLD_ANSI
2000-06-20 21:13:21 +04:00
#include <errno.h>
1997-09-16 23:25:59 +04:00
#include <locale.h>
#endif
#ifndef l_realloc
#define l_malloc(s) malloc(s)
#define l_realloc(b,os,s) realloc(b, s)
#define l_free(b, os) free(b)
1997-09-16 23:25:59 +04:00
#endif
1997-03-20 23:36:58 +03:00
#ifdef POPEN
1999-08-17 00:52:00 +04:00
/* FILE *popen();
int pclose(); */
#define CLOSEFILE(L, f) ((pclose(f) == -1) ? fclose(f) : 0)
#else
/* no support for popen */
#define popen(x,y) NULL /* that is, popen always fails */
#define CLOSEFILE(L, f) (fclose(f))
#endif
#define INFILE 0
#define OUTFILE 1
2000-11-23 16:49:35 +03:00
#define NOFILE 2
2001-02-23 20:17:25 +03:00
#define FILEHANDLE l_s("FileHandle")
2001-02-23 20:17:25 +03:00
static const l_char *const filenames[] = {l_s("_INPUT"), l_s("_OUTPUT")};
2000-08-28 21:57:04 +04:00
static int pushresult (lua_State *L, int i) {
if (i) {
lua_pushuserdata(L, NULL);
2000-08-28 21:57:04 +04:00
return 1;
}
else {
lua_pushnil(L);
lua_pushstring(L, strerror(errno));
lua_pushnumber(L, errno);
2001-01-25 19:45:36 +03:00
return 3;
}
}
1999-01-04 15:41:12 +03:00
/*
** {======================================================
** FILE Operations
** =======================================================
*/
2001-01-25 19:45:36 +03:00
#define checkfile(L,f) (strcmp(lua_xtype(L,(f)), FILEHANDLE) == 0)
2001-01-25 19:45:36 +03:00
static FILE *getopthandle (lua_State *L, int inout) {
FILE *p = (FILE *)lua_touserdata(L, 1);
if (p != NULL) { /* is it a userdata ? */
if (!checkfile(L, 1)) {
2001-02-23 20:17:25 +03:00
if (strcmp(lua_xtype(L, 1), l_s("ClosedFileHandle")) == 0)
luaL_argerror(L, 1, l_s("file is closed"));
2001-01-25 19:45:36 +03:00
else
2001-02-23 20:17:25 +03:00
luaL_argerror(L, 1, l_s("(invalid value)"));
2001-01-25 19:45:36 +03:00
}
/* move it to stack top */
lua_pushvalue(L, 1); lua_remove(L, 1);
2001-01-25 19:45:36 +03:00
}
else if (inout != NOFILE) { /* try global value */
lua_getglobal(L, filenames[inout]);
if (!checkfile(L,-1))
2001-02-23 20:17:25 +03:00
luaL_verror(L, l_s("global variable `%.10s' is not a valid file handle"),
2001-01-25 19:45:36 +03:00
filenames[inout]);
p = (FILE *)lua_touserdata(L, -1);
}
return p; /* leave handle at stack top to avoid GC */
}
2001-01-25 19:45:36 +03:00
static void pushfile (lua_State *L, FILE *f) {
lua_pushusertag(L, f, lua_type2tag(L, FILEHANDLE));
}
2001-02-23 20:17:25 +03:00
static void setfilebyname (lua_State *L, FILE *f, const l_char *name) {
2001-01-25 19:45:36 +03:00
pushfile(L, f);
lua_setglobal(L, name);
}
2001-01-25 19:45:36 +03:00
#define setfile(L,f,inout) (setfilebyname(L,f,filenames[inout]))
2001-01-25 19:45:36 +03:00
static int setreturn (lua_State *L, FILE *f, int inout) {
if (f == NULL)
2000-08-28 21:57:04 +04:00
return pushresult(L, 0);
else {
2000-11-23 16:49:35 +03:00
if (inout != NOFILE)
2001-01-25 19:45:36 +03:00
setfile(L, f, inout);
pushfile(L, f);
2000-08-28 21:57:04 +04:00
return 1;
}
}
2001-01-25 19:45:36 +03:00
static int closefile (lua_State *L, FILE *f) {
if (f == stdin || f == stdout || f == stderr)
return 1;
else {
2001-02-09 22:52:54 +03:00
lua_pushuserdata(L, f);
2001-02-23 20:17:25 +03:00
lua_settag(L, lua_type2tag(L, l_s("ClosedFileHandle")));
return (CLOSEFILE(L, f) == 0);
}
}
2000-08-28 21:57:04 +04:00
static int io_close (lua_State *L) {
2001-01-25 19:45:36 +03:00
FILE *f = (FILE *)luaL_check_userdata(L, 1, FILEHANDLE);
return pushresult(L, closefile(L, f));
}
2000-08-28 21:57:04 +04:00
static int file_collect (lua_State *L) {
2001-01-25 19:45:36 +03:00
FILE *f = (FILE *)luaL_check_userdata(L, 1, FILEHANDLE);
2000-10-26 16:47:05 +04:00
if (f != stdin && f != stdout && f != stderr)
CLOSEFILE(L, f);
2000-08-28 21:57:04 +04:00
return 0;
}
2000-08-28 21:57:04 +04:00
static int io_open (lua_State *L) {
2001-01-25 19:45:36 +03:00
FILE *f = fopen(luaL_check_string(L, 1), luaL_check_string(L, 2));
return setreturn(L, f, NOFILE);
2000-11-23 16:49:35 +03:00
}
static int io_tmpfile (lua_State *L) {
2001-01-25 19:45:36 +03:00
return setreturn(L, tmpfile(), NOFILE);
}
2001-02-23 20:17:25 +03:00
static int io_fromto (lua_State *L, int inout, const l_char *mode) {
FILE *current;
if (lua_isnull(L, 1)) {
2001-01-25 19:45:36 +03:00
closefile(L, getopthandle(L, inout));
current = (inout == 0) ? stdin : stdout;
}
2001-01-25 19:45:36 +03:00
else if (checkfile(L, 1)) /* deprecated option */
current = (FILE *)lua_touserdata(L, 1);
else {
2001-02-23 20:17:25 +03:00
const l_char *s = luaL_check_string(L, 1);
current = (*s == l_c('|')) ? popen(s+1, mode) : fopen(s, mode);
}
2001-01-25 19:45:36 +03:00
return setreturn(L, current, inout);
}
2000-08-28 21:57:04 +04:00
static int io_readfrom (lua_State *L) {
2001-02-23 20:17:25 +03:00
return io_fromto(L, INFILE, l_s("r"));
1993-07-28 17:18:00 +04:00
}
2000-08-28 21:57:04 +04:00
static int io_writeto (lua_State *L) {
2001-02-23 20:17:25 +03:00
return io_fromto(L, OUTFILE, l_s("w"));
1993-07-28 17:18:00 +04:00
}
2000-08-28 21:57:04 +04:00
static int io_appendto (lua_State *L) {
2001-02-23 20:17:25 +03:00
FILE *current = fopen(luaL_check_string(L, 1), l_s("a"));
2001-01-25 19:45:36 +03:00
return setreturn(L, current, OUTFILE);
}
1999-01-04 15:41:12 +03:00
/*
** {======================================================
** READ
1999-01-04 15:41:12 +03:00
** =======================================================
*/
static int read_number (lua_State *L, FILE *f) {
double d;
2001-02-23 20:17:25 +03:00
if (fscanf(f, l_s("%lf"), &d) == 1) {
lua_pushnumber(L, d);
return 1;
}
else return 0; /* read fails */
}
2000-09-11 21:38:42 +04:00
static int read_word (lua_State *L, FILE *f) {
2001-02-22 20:15:18 +03:00
l_charint c;
2000-09-11 21:38:42 +04:00
luaL_Buffer b;
luaL_buffinit(L, &b);
2000-02-08 19:39:42 +03:00
do { c = fgetc(f); } while (isspace(c)); /* skip spaces */
while (c != EOF && !isspace(c)) {
2000-09-11 21:38:42 +04:00
luaL_putchar(&b, c);
c = fgetc(f);
}
ungetc(c, f);
2000-09-11 21:38:42 +04:00
luaL_pushresult(&b); /* close buffer */
2000-09-22 22:14:06 +04:00
return (lua_strlen(L, -1) > 0);
}
static int read_line (lua_State *L, FILE *f) {
2000-09-11 21:38:42 +04:00
int n = 0;
luaL_Buffer b;
luaL_buffinit(L, &b);
2000-05-24 17:54:49 +04:00
for (;;) {
2001-02-23 20:17:25 +03:00
l_char *p = luaL_prepbuffer(&b);
2000-09-11 21:38:42 +04:00
if (!fgets(p, LUAL_BUFFERSIZE, f)) /* read fails? */
break;
n = strlen(p);
2001-02-23 20:17:25 +03:00
if (p[n-1] != l_c('\n'))
2000-09-11 21:38:42 +04:00
luaL_addsize(&b, n);
2000-05-24 17:54:49 +04:00
else {
2000-09-11 21:38:42 +04:00
luaL_addsize(&b, n-1); /* do not add the `\n' */
2000-05-24 17:54:49 +04:00
break;
}
}
2000-09-11 21:38:42 +04:00
luaL_pushresult(&b); /* close buffer */
return (n > 0); /* read something? */
}
static void read_file (lua_State *L, FILE *f) {
2000-09-11 21:38:42 +04:00
size_t len = 0;
2001-01-11 21:59:20 +03:00
size_t size = LUAL_BUFFERSIZE;
size_t oldsize = 0;
2001-02-23 20:17:25 +03:00
l_char *buffer = NULL;
2000-09-11 21:38:42 +04:00
for (;;) {
2001-02-23 20:17:25 +03:00
l_char *newbuffer = (l_char *)l_realloc(buffer, oldsize, size);
if (newbuffer == NULL) {
l_free(buffer, oldsize);
2001-02-23 20:17:25 +03:00
lua_error(L, l_s("not enough memory to read a file"));
}
buffer = newbuffer;
2001-02-23 20:17:25 +03:00
len += fread(buffer+len, sizeof(l_char), size-len, f);
2000-09-11 21:38:42 +04:00
if (len < size) break; /* did not read all it could */
oldsize = size;
2000-09-11 21:38:42 +04:00
size *= 2;
}
lua_pushlstring(L, buffer, len);
l_free(buffer, size);
}
2000-05-24 17:54:49 +04:00
static int read_chars (lua_State *L, FILE *f, size_t n) {
2001-02-09 19:25:50 +03:00
if (n == 0) { /* test eof? */
2001-02-22 20:15:18 +03:00
l_charint c = fgetc(f);
2001-02-09 19:25:50 +03:00
ungetc(c, f);
lua_pushlstring(L, NULL, 0);
return (c != EOF);
}
2000-09-11 21:38:42 +04:00
else {
2001-02-23 20:17:25 +03:00
l_char *buffer;
2001-02-09 19:25:50 +03:00
size_t n1;
2001-02-23 20:17:25 +03:00
l_char statbuff[LUAL_BUFFERSIZE];
2001-02-09 19:25:50 +03:00
if (n <= LUAL_BUFFERSIZE)
buffer = statbuff;
else {
2001-02-23 20:17:25 +03:00
buffer = (l_char *)l_malloc(n);
2001-02-09 19:25:50 +03:00
if (buffer == NULL)
2001-02-23 20:17:25 +03:00
lua_error(L, l_s("not enough memory to read a file"));
2001-02-09 19:25:50 +03:00
}
2001-02-23 20:17:25 +03:00
n1 = fread(buffer, sizeof(l_char), n, f);
2001-02-09 19:25:50 +03:00
lua_pushlstring(L, buffer, n1);
if (buffer != statbuff) l_free(buffer, n);
return (n1 > 0 || n == 0);
2000-09-11 21:38:42 +04:00
}
}
2000-08-28 21:57:04 +04:00
static int io_read (lua_State *L) {
2001-01-25 19:45:36 +03:00
FILE *f = getopthandle(L, INFILE);
int nargs = lua_gettop(L)-1;
int success;
int n;
2001-01-25 19:45:36 +03:00
if (nargs == 0) { /* no arguments? */
success = read_line(L, f);
n = 2; /* will return n-1 results */
}
2001-01-25 19:45:36 +03:00
else { /* ensure stack space for all results and for auxlib's buffer */
2001-02-23 20:17:25 +03:00
luaL_checkstack(L, nargs+LUA_MINSTACK, l_s("too many arguments"));
2001-01-25 19:45:36 +03:00
success = 1;
for (n = 1; n<=nargs && success; n++) {
2001-01-26 17:16:24 +03:00
if (lua_type(L, n) == LUA_TNUMBER)
success = read_chars(L, f, (size_t)lua_tonumber(L, n));
else {
2001-02-23 20:17:25 +03:00
const l_char *p = lua_tostring(L, n);
if (!p || p[0] != l_c('*'))
lua_error(L, l_s("invalid `read' option"));
switch (p[1]) {
2001-02-23 20:17:25 +03:00
case l_c('n'): /* number */
success = read_number(L, f);
break;
2001-02-23 20:17:25 +03:00
case l_c('l'): /* line */
success = read_line(L, f);
break;
2001-02-23 20:17:25 +03:00
case l_c('a'): /* file */
read_file(L, f);
success = 1; /* always success */
break;
2001-02-23 20:17:25 +03:00
case l_c('w'): /* word */
2000-09-11 21:38:42 +04:00
success = read_word(L, f);
break;
default:
2001-02-23 20:17:25 +03:00
luaL_argerror(L, n, l_s("invalid format"));
success = 0; /* to avoid warnings */
}
}
}
}
if (!success) {
lua_pop(L, 1); /* remove last result */
lua_pushnil(L); /* push nil instead */
}
2001-01-25 19:45:36 +03:00
return n - 1;
}
1999-01-04 15:41:12 +03:00
/* }====================================================== */
2000-08-28 21:57:04 +04:00
static int io_write (lua_State *L) {
2001-01-25 19:45:36 +03:00
FILE *f = getopthandle(L, OUTFILE);
int nargs = lua_gettop(L)-1;
2001-01-25 19:45:36 +03:00
int arg;
int status = 1;
2001-01-25 19:45:36 +03:00
for (arg=1; arg<=nargs; arg++) {
2001-03-26 18:31:49 +04:00
if (lua_type(L, arg) == LUA_TNUMBER) {
1999-12-28 14:52:49 +03:00
/* optimization: could be done exactly as for strings */
2001-03-26 18:31:49 +04:00
status = status &&
fprintf(f, l_s(LUA_NUMBER_FMT), lua_tonumber(L, arg)) > 0;
1999-12-28 14:52:49 +03:00
}
else {
2000-05-24 17:54:49 +04:00
size_t l;
2001-02-23 20:17:25 +03:00
const l_char *s = luaL_check_lstr(L, arg, &l);
status = status && (fwrite(s, sizeof(l_char), l, f) == l);
}
}
pushresult(L, status);
2000-08-28 21:57:04 +04:00
return 1;
1993-07-28 17:18:00 +04:00
}
2000-08-28 21:57:04 +04:00
static int io_seek (lua_State *L) {
1999-08-17 00:52:00 +04:00
static const int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END};
2001-02-23 20:17:25 +03:00
static const l_char *const modenames[] = {l_s("set"), l_s("cur"), l_s("end"), NULL};
2001-01-25 19:45:36 +03:00
FILE *f = (FILE *)luaL_check_userdata(L, 1, FILEHANDLE);
2001-02-23 20:17:25 +03:00
int op = luaL_findstring(luaL_opt_string(L, 2, l_s("cur")), modenames);
2001-01-25 19:45:36 +03:00
long offset = luaL_opt_long(L, 3, 0);
2001-02-23 20:17:25 +03:00
luaL_arg_check(L, op != -1, 2, l_s("invalid mode"));
1998-08-25 00:14:56 +04:00
op = fseek(f, offset, mode[op]);
if (op)
2000-08-28 21:57:04 +04:00
return pushresult(L, 0); /* error */
else {
lua_pushnumber(L, ftell(f));
2000-08-28 21:57:04 +04:00
return 1;
}
1998-08-25 00:14:56 +04:00
}
2000-08-28 21:57:04 +04:00
static int io_flush (lua_State *L) {
2001-01-25 19:45:36 +03:00
FILE *f = getopthandle(L, NOFILE);
2001-02-23 20:17:25 +03:00
luaL_arg_check(L, f || lua_isnull(L, 1), 1, l_s("invalid file handle"));
2000-08-28 21:57:04 +04:00
return pushresult(L, fflush(f) == 0);
1998-08-25 00:14:56 +04:00
}
1999-01-04 15:41:12 +03:00
/* }====================================================== */
/*
** {======================================================
** Other O.S. Operations
** =======================================================
*/
1998-08-25 00:14:56 +04:00
2000-08-28 21:57:04 +04:00
static int io_execute (lua_State *L) {
lua_pushnumber(L, system(luaL_check_string(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1993-07-28 17:18:00 +04:00
}
2000-08-28 21:57:04 +04:00
static int io_remove (lua_State *L) {
return pushresult(L, remove(luaL_check_string(L, 1)) == 0);
1996-03-14 18:55:18 +03:00
}
2000-08-28 21:57:04 +04:00
static int io_rename (lua_State *L) {
return pushresult(L, rename(luaL_check_string(L, 1),
luaL_check_string(L, 2)) == 0);
1996-03-14 18:55:18 +03:00
}
2000-08-28 21:57:04 +04:00
static int io_tmpname (lua_State *L) {
2001-02-23 20:17:25 +03:00
l_char buff[L_tmpnam];
2000-11-23 16:49:35 +03:00
if (tmpnam(buff) != buff)
2001-02-23 20:17:25 +03:00
lua_error(L, l_s("unable to generate a unique filename"));
2000-11-23 16:49:35 +03:00
lua_pushstring(L, buff);
2000-08-28 21:57:04 +04:00
return 1;
1993-07-28 17:18:00 +04:00
}
2000-08-28 21:57:04 +04:00
static int io_getenv (lua_State *L) {
lua_pushstring(L, getenv(luaL_check_string(L, 1))); /* if NULL push nil */
2000-08-28 21:57:04 +04:00
return 1;
}
2000-08-28 21:57:04 +04:00
static int io_clock (lua_State *L) {
lua_pushnumber(L, ((lua_Number)clock())/(lua_Number)CLOCKS_PER_SEC);
2000-08-28 21:57:04 +04:00
return 1;
1998-05-21 02:21:35 +04:00
}
2000-12-18 16:42:19 +03:00
/*
** {======================================================
** Time/Date operations
** { year=%Y, month=%m, day=%d, hour=%H, min=%M, sec=%S,
** wday=%w+1, yday=%j, isdst=? }
** =======================================================
*/
2001-02-23 20:17:25 +03:00
static void setfield (lua_State *L, const l_char *key, int value) {
2000-12-18 16:42:19 +03:00
lua_pushstring(L, key);
lua_pushnumber(L, value);
lua_rawset(L, -3);
}
2001-02-23 20:17:25 +03:00
static int getfield (lua_State *L, const l_char *key, int d) {
2000-12-18 16:42:19 +03:00
int res;
lua_pushstring(L, key);
lua_rawget(L, -2);
if (lua_isnumber(L, -1))
res = (int)lua_tonumber(L, -1);
2000-12-18 16:42:19 +03:00
else {
if (d == -2)
2001-02-23 20:17:25 +03:00
luaL_verror(L, l_s("field `%.20s' missing in date table"), key);
2000-12-18 16:42:19 +03:00
res = d;
}
lua_pop(L, 1);
return res;
}
2000-08-28 21:57:04 +04:00
static int io_date (lua_State *L) {
2001-02-23 20:17:25 +03:00
const l_char *s = luaL_opt_string(L, 1, l_s("%c"));
2000-12-18 16:42:19 +03:00
time_t t = (time_t)luaL_opt_number(L, 2, -1);
2000-02-08 19:39:42 +03:00
struct tm *stm;
2000-12-18 16:42:19 +03:00
if (t == (time_t)-1) /* no time given? */
t = time(NULL); /* use current time */
2001-02-23 20:17:25 +03:00
if (*s == l_c('!')) { /* UTC? */
2000-12-18 16:42:19 +03:00
stm = gmtime(&t);
s++; /* skip `!' */
}
else
2000-12-18 16:42:19 +03:00
stm = localtime(&t);
if (stm == NULL) /* invalid date? */
lua_pushnil(L);
2001-02-23 20:17:25 +03:00
else if (strcmp(s, l_s("*t")) == 0) {
2000-12-18 16:42:19 +03:00
lua_newtable(L);
2001-02-23 20:17:25 +03:00
setfield(L, l_s("sec"), stm->tm_sec);
setfield(L, l_s("min"), stm->tm_min);
setfield(L, l_s("hour"), stm->tm_hour);
setfield(L, l_s("day"), stm->tm_mday);
setfield(L, l_s("month"), stm->tm_mon+1);
setfield(L, l_s("year"), stm->tm_year+1900);
setfield(L, l_s("wday"), stm->tm_wday+1);
setfield(L, l_s("yday"), stm->tm_yday+1);
setfield(L, l_s("isdst"), stm->tm_isdst);
2000-12-18 16:42:19 +03:00
}
else {
2001-02-23 20:17:25 +03:00
l_char b[256];
2000-12-18 16:42:19 +03:00
if (strftime(b, sizeof(b), s, stm))
lua_pushstring(L, b);
else
2001-02-23 20:17:25 +03:00
lua_error(L, l_s("invalid `date' format"));
2000-12-18 16:42:19 +03:00
}
2000-08-28 21:57:04 +04:00
return 1;
}
1997-07-01 23:32:41 +04:00
2000-12-18 16:42:19 +03:00
static int io_time (lua_State *L) {
if (lua_isnull(L, 1)) /* called without args? */
lua_pushnumber(L, time(NULL)); /* return current time */
else {
time_t t;
struct tm ts;
luaL_checktype(L, 1, LUA_TTABLE);
lua_settop(L, 1); /* make sure table is at the top */
2001-02-23 20:17:25 +03:00
ts.tm_sec = getfield(L, l_s("sec"), 0);
ts.tm_min = getfield(L, l_s("min"), 0);
ts.tm_hour = getfield(L, l_s("hour"), 12);
ts.tm_mday = getfield(L, l_s("day"), -2);
ts.tm_mon = getfield(L, l_s("month"), -2)-1;
ts.tm_year = getfield(L, l_s("year"), -2)-1900;
ts.tm_isdst = getfield(L, l_s("isdst"), -1);
2000-12-18 16:42:19 +03:00
t = mktime(&ts);
if (t == (time_t)-1)
lua_pushnil(L);
else
2000-12-18 16:42:19 +03:00
lua_pushnumber(L, t);
}
return 1;
}
static int io_difftime (lua_State *L) {
lua_pushnumber(L, difftime((time_t)luaL_check_number(L, 1),
(time_t)luaL_opt_number(L, 2, 0)));
return 1;
}
/* }====================================================== */
2000-11-23 16:49:35 +03:00
static int io_setloc (lua_State *L) {
1999-08-17 00:52:00 +04:00
static const int cat[] = {LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY,
LC_NUMERIC, LC_TIME};
2001-02-23 20:17:25 +03:00
static const l_char *const catnames[] = {l_s("all"), l_s("collate"), l_s("ctype"), l_s("monetary"),
l_s("numeric"), l_s("time"), NULL};
int op = luaL_findstring(luaL_opt_string(L, 2, l_s("all")), catnames);
luaL_arg_check(L, op != -1, 2, l_s("invalid option"));
lua_pushstring(L, setlocale(cat[op], luaL_check_string(L, 1)));
2000-08-28 21:57:04 +04:00
return 1;
1997-07-01 23:32:41 +04:00
}
1997-09-16 23:25:59 +04:00
2000-08-28 21:57:04 +04:00
static int io_exit (lua_State *L) {
exit(luaL_opt_int(L, 1, EXIT_SUCCESS));
2000-08-28 21:57:04 +04:00
return 0; /* to avoid warnings */
}
1999-01-04 15:41:12 +03:00
/* }====================================================== */
2000-08-28 21:57:04 +04:00
static int io_debug (lua_State *L) {
for (;;) {
2001-02-23 20:17:25 +03:00
l_char buffer[250];
fprintf(stderr, l_s("lua_debug> "));
if (fgets(buffer, sizeof(buffer), stdin) == 0 ||
2001-02-23 20:17:25 +03:00
strcmp(buffer, l_s("cont\n")) == 0)
2000-08-28 21:57:04 +04:00
return 0;
lua_dostring(L, buffer);
2000-08-28 21:57:04 +04:00
lua_settop(L, 0); /* remove eventual returns */
}
}
1995-10-17 17:12:45 +03:00
2000-09-05 23:33:32 +04:00
#define LEVELS1 12 /* size of the first part of the stack */
#define LEVELS2 10 /* size of the second part of the stack */
2000-08-28 21:57:04 +04:00
static int errorfb (lua_State *L) {
int level = 1; /* skip level 0 (it's this function) */
2000-09-05 23:33:32 +04:00
int firstpart = 1; /* still before eventual `...' */
2000-03-30 21:19:48 +04:00
lua_Debug ar;
luaL_Buffer b;
luaL_buffinit(L, &b);
2001-02-23 20:17:25 +03:00
luaL_addstring(&b, l_s("error: "));
luaL_addstring(&b, luaL_check_string(L, 1));
2001-02-23 20:17:25 +03:00
luaL_addstring(&b, l_s("\n"));
2000-01-19 15:00:45 +03:00
while (lua_getstack(L, level++, &ar)) {
2001-02-23 20:17:25 +03:00
l_char buff[120]; /* enough to fit following `sprintf's */
2000-09-12 22:41:55 +04:00
if (level == 2)
2001-02-23 20:17:25 +03:00
luaL_addstring(&b, l_s("stack traceback:\n"));
2000-09-12 22:41:55 +04:00
else if (level > LEVELS1 && firstpart) {
2000-09-05 23:33:32 +04:00
/* no more than `LEVELS2' more levels? */
if (!lua_getstack(L, level+LEVELS2, &ar))
level--; /* keep going */
else {
2001-02-23 20:17:25 +03:00
luaL_addstring(&b, l_s(" ...\n")); /* too many levels */
while (lua_getstack(L, level+LEVELS2, &ar)) /* find last levels */
level++;
2000-09-05 23:33:32 +04:00
}
firstpart = 0;
continue;
}
2001-02-23 20:17:25 +03:00
sprintf(buff, l_s("%4d: "), level-1);
luaL_addstring(&b, buff);
2001-02-23 20:17:25 +03:00
lua_getinfo(L, l_s("Snl"), &ar);
2000-01-19 15:00:45 +03:00
switch (*ar.namewhat) {
2001-02-23 20:17:25 +03:00
case l_c('g'): case l_c('l'): /* global, local */
sprintf(buff, l_s("function `%.50s'"), ar.name);
break;
2001-02-23 20:17:25 +03:00
case l_c('f'): /* field */
sprintf(buff, l_s("method `%.50s'"), ar.name);
break;
2001-02-23 20:17:25 +03:00
case l_c('t'): /* tag method */
sprintf(buff, l_s("`%.50s' tag method"), ar.name);
break;
default: {
2001-02-23 20:17:25 +03:00
if (*ar.what == l_c('m')) /* main? */
sprintf(buff, l_s("main of %.70s"), ar.short_src);
else if (*ar.what == l_c('C')) /* C function? */
sprintf(buff, l_s("%.70s"), ar.short_src);
1999-03-05 23:45:01 +03:00
else
2001-02-23 20:17:25 +03:00
sprintf(buff, l_s("function <%d:%.70s>"), ar.linedefined, ar.short_src);
ar.source = NULL; /* do not print source again */
1995-10-17 17:12:45 +03:00
}
}
luaL_addstring(&b, buff);
2000-09-05 23:33:32 +04:00
if (ar.currentline > 0) {
2001-02-23 20:17:25 +03:00
sprintf(buff, l_s(" at line %d"), ar.currentline);
luaL_addstring(&b, buff);
2000-09-05 23:33:32 +04:00
}
if (ar.source) {
2001-02-23 20:17:25 +03:00
sprintf(buff, l_s(" [%.70s]"), ar.short_src);
luaL_addstring(&b, buff);
2000-09-05 23:33:32 +04:00
}
2001-02-23 20:17:25 +03:00
luaL_addstring(&b, l_s("\n"));
1995-10-17 17:12:45 +03:00
}
luaL_pushresult(&b);
2001-03-26 18:31:49 +04:00
lua_getglobal(L, l_s(LUA_ALERT));
2000-08-28 21:57:04 +04:00
if (lua_isfunction(L, -1)) { /* avoid loop if _ALERT is not defined */
2000-09-12 22:41:55 +04:00
lua_pushvalue(L, -2); /* error message */
2000-09-14 18:09:31 +04:00
lua_rawcall(L, 1, 0);
}
2000-08-28 21:57:04 +04:00
return 0;
}
2001-02-02 22:02:40 +03:00
static const luaL_reg iolib[] = {
2001-02-23 20:17:25 +03:00
{l_s("appendto"), io_appendto},
{l_s("clock"), io_clock},
{l_s("closefile"), io_close},
{l_s("date"), io_date},
{l_s("debug"), io_debug},
{l_s("difftime"), io_difftime},
{l_s("execute"), io_execute},
{l_s("exit"), io_exit},
{l_s("flush"), io_flush},
{l_s("getenv"), io_getenv},
{l_s("openfile"), io_open},
{l_s("read"), io_read},
{l_s("readfrom"), io_readfrom},
{l_s("remove"), io_remove},
{l_s("rename"), io_rename},
{l_s("seek"), io_seek},
{l_s("setlocale"), io_setloc},
{l_s("time"), io_time},
{l_s("tmpfile"), io_tmpfile},
{l_s("tmpname"), io_tmpname},
{l_s("write"), io_write},
{l_s("writeto"), io_writeto},
2001-03-26 18:31:49 +04:00
{l_s(LUA_ERRORMESSAGE), errorfb}
};
2001-03-06 23:09:38 +03:00
LUALIB_API int lua_iolibopen (lua_State *L) {
2001-01-25 19:45:36 +03:00
int iotag = lua_newtype(L, FILEHANDLE, LUA_TUSERDATA);
2001-02-23 20:17:25 +03:00
lua_newtype(L, l_s("ClosedFileHandle"), LUA_TUSERDATA);
1999-11-22 20:39:51 +03:00
luaL_openl(L, iolib);
2001-01-25 19:45:36 +03:00
/* predefined file handles */
setfile(L, stdin, INFILE);
setfile(L, stdout, OUTFILE);
2001-02-23 20:17:25 +03:00
setfilebyname(L, stdin, l_s("_STDIN"));
setfilebyname(L, stdout, l_s("_STDOUT"));
setfilebyname(L, stderr, l_s("_STDERR"));
2001-01-25 19:45:36 +03:00
/* close files when collected */
lua_pushcfunction(L, file_collect);
2001-02-23 20:17:25 +03:00
lua_settagmethod(L, iotag, l_s("gc"));
2001-03-06 23:09:38 +03:00
return 0;
1993-07-28 17:18:00 +04:00
}