lua/liolib.c

695 lines
18 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: liolib.c,v 1.124 2001/10/26 17:33:30 roberto Exp $
1997-09-16 23:25:59 +04:00
** Standard I/O (and system) library
** See Copyright Notice in lua.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
#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
#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
#define FILEHANDLE "FileHandle"
#define CLOSEDFILEHANDLE "ClosedFileHandle"
static const char *const filenames[] = {"_INPUT", "_OUTPUT"};
static const char *const basicfiles[] = {"_STDIN", "_STDOUT"};
2000-08-28 21:57:04 +04:00
static int pushresult (lua_State *L, int i) {
if (i) {
2001-06-07 17:46:29 +04:00
lua_pushnumber(L, 1);
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
** =======================================================
*/
#define checkfile(L,f) (strcmp(lua_type(L,(f)), FILEHANDLE) == 0)
2001-01-25 19:45:36 +03:00
static FILE *getopthandle (lua_State *L, int inout) {
2001-08-31 23:46:07 +04:00
FILE *p = (FILE *)(lua_touserdata(L, 1));
2001-01-25 19:45:36 +03:00
if (p != NULL) { /* is it a userdata ? */
if (!checkfile(L, 1)) { /* not a valid file handle? */
if (strcmp(lua_type(L, 1), CLOSEDFILEHANDLE) == 0)
luaL_argerror(L, 1, "file is closed");
2001-01-25 19:45:36 +03:00
else
luaL_argerror(L, 1, "(invalid value)");
2001-01-25 19:45:36 +03:00
}
lua_pushvalue(L, 1); lua_remove(L, 1); /* move it to stack top */
2001-01-25 19:45:36 +03:00
}
else { /* try global value */
2001-01-25 19:45:36 +03:00
lua_getglobal(L, filenames[inout]);
if (!checkfile(L,-1))
luaL_verror(L, "global variable `%.10s' is not a valid file handle",
2001-01-25 19:45:36 +03:00
filenames[inout]);
2001-08-31 23:46:07 +04:00
p = (FILE *)(lua_touserdata(L, -1));
2001-01-25 19:45:36 +03:00
}
return p; /* leave handle at stack top to avoid GC */
}
static void newfile (lua_State *L, FILE *f) {
lua_newuserdatabox(L, f);
lua_settag(L, lua_name2tag(L, FILEHANDLE));
}
static void newfilewithname (lua_State *L, FILE *f, const char *name) {
newfile(L, f);
lua_setglobal(L, name);
}
static int setnewfile (lua_State *L, FILE *f, int inout) {
if (f == NULL)
2000-08-28 21:57:04 +04:00
return pushresult(L, 0);
else {
newfile(L, f);
if (inout != NOFILE) {
lua_pushvalue(L, -1);
lua_setglobal(L, filenames[inout]);
}
2000-08-28 21:57:04 +04:00
return 1;
}
}
static void resetfile (lua_State *L, int inout) {
lua_getglobal(L, basicfiles[inout]);
lua_setglobal(L, filenames[inout]);
}
2000-08-28 21:57:04 +04:00
static int io_close (lua_State *L) {
2001-08-31 23:46:07 +04:00
FILE *f = (FILE *)(luaL_check_userdata(L, 1, FILEHANDLE));
2001-06-08 20:48:32 +04:00
int status = 1;
if (f != stdin && f != stdout && f != stderr) {
lua_settop(L, 1); /* make sure file is on top */
lua_settag(L, lua_name2tag(L, CLOSEDFILEHANDLE));
status = (CLOSEFILE(L, f) == 0);
}
return pushresult(L, status);
}
2000-08-28 21:57:04 +04:00
static int file_collect (lua_State *L) {
2001-08-31 23:46:07 +04: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 setnewfile(L, f, NOFILE);
2000-11-23 16:49:35 +03:00
}
static int io_tmpfile (lua_State *L) {
return setnewfile(L, tmpfile(), NOFILE);
}
static int io_fromto (lua_State *L, int inout, const char *mode) {
FILE *current;
if (lua_isnull(L, 1)) {
getopthandle(L, inout);
resetfile(L, inout);
return io_close(L);
}
else {
const char *s = luaL_check_string(L, 1);
current = (*s == '|') ? popen(s+1, mode) : fopen(s, mode);
return setnewfile(L, current, inout);
}
}
2000-08-28 21:57:04 +04:00
static int io_readfrom (lua_State *L) {
return io_fromto(L, INFILE, "r");
1993-07-28 17:18:00 +04:00
}
2000-08-28 21:57:04 +04:00
static int io_writeto (lua_State *L) {
return io_fromto(L, OUTFILE, "w");
1993-07-28 17:18:00 +04:00
}
2000-08-28 21:57:04 +04:00
static int io_appendto (lua_State *L) {
FILE *current = fopen(luaL_check_string(L, 1), "a");
return setnewfile(L, current, OUTFILE);
}
1999-01-04 15:41:12 +03:00
/*
** {======================================================
** READ
1999-01-04 15:41:12 +03:00
** =======================================================
*/
#ifndef LUA_MAXUNTIL
#define LUA_MAXUNTIL 100
#endif
/*
** Knuth-Morris-Pratt algorithm for string searching
** (based on `Algorithms in MODULA-3', Robert Sedgewick;
** Addison-Wesley, 1993.)
*/
static void prep_read_until (int next[], const char *p, int pl) {
int i = 0;
int j = -1;
next[0] = -1;
while (i < pl) {
if (j == -1 || p[i] == p[j]) {
i++; j++; next[i] = j;
}
else j = next[j];
}
}
static int read_until (lua_State *L, FILE *f, const char *p, int pl) {
int c;
int j;
int next[LUA_MAXUNTIL+1];
2000-09-11 21:38:42 +04:00
luaL_Buffer b;
luaL_buffinit(L, &b);
prep_read_until(next, p, pl);
j = 0;
2001-07-17 00:24:48 +04:00
while ((c = getc(f)) != EOF) {
NoRead:
if (c == p[j]) {
j++; /* go to next char in pattern */
if (j == pl) { /* complete match? */
luaL_pushresult(&b); /* close buffer */
return 1; /* always success */
}
}
else if (j == 0)
luaL_putchar(&b, c);
else { /* match fail */
luaL_addlstring(&b, p, j - next[j]); /* put failed part on result */
j = next[j]; /* backtrack pattern index */
goto NoRead; /* repeat without reading next char */
}
}
/* end of file without a match */
luaL_addlstring(&b, p, j); /* put failed part on result */
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_number (lua_State *L, FILE *f) {
lua_Number d;
if (fscanf(f, LUA_NUMBER_SCAN, &d) == 1) {
lua_pushnumber(L, d);
return 1;
2000-05-24 17:54:49 +04:00
}
else return 0; /* read fails */
}
static int test_eof (lua_State *L, FILE *f) {
int c = getc(f);
ungetc(c, f);
lua_pushlstring(L, NULL, 0);
return (c != EOF);
}
2000-05-24 17:54:49 +04:00
static int read_chars (lua_State *L, FILE *f, size_t n) {
2001-07-12 18:59:14 +04:00
size_t rlen; /* how much to read */
size_t nr; /* number of chars actually read */
luaL_Buffer b;
luaL_buffinit(L, &b);
2001-07-12 18:59:14 +04:00
rlen = LUAL_BUFFERSIZE; /* try to read that much each time */
do {
char *p = luaL_prepbuffer(&b);
2001-07-12 18:59:14 +04:00
if (rlen > n) rlen = n; /* cannot read more than asked */
nr = fread(p, sizeof(char), rlen, f);
2001-07-12 18:59:14 +04:00
luaL_addsize(&b, nr);
n -= nr; /* still have to read `n' chars */
} while (n > 0 && nr == rlen); /* until end of count or eof */
luaL_pushresult(&b); /* close buffer */
return (n == 0 || lua_strlen(L, -1) > 0);
}
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_until(L, f, "\n", 1); /* read until \n (a line) */
2001-01-25 19:45:36 +03:00
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 */
luaL_check_stack(L, nargs+LUA_MINSTACK, "too many arguments");
2001-01-25 19:45:36 +03:00
success = 1;
for (n = 1; n<=nargs && success; n++) {
if (lua_rawtag(L, n) == LUA_TNUMBER) {
size_t l = (size_t)lua_tonumber(L, n);
success = (l == 0) ? test_eof(L, f) : read_chars(L, f, l);
}
else {
const char *p = lua_tostring(L, n);
if (!p || p[0] != '*')
lua_error(L, "invalid `read' option");
switch (p[1]) {
case 'n': /* number */
success = read_number(L, f);
break;
case 'l': /* line */
success = read_until(L, f, "\n", 1); /* read until \n */
break;
case 'a': /* file */
read_chars(L, f, ~((size_t)0)); /* read MAX_SIZE_T chars */
success = 1; /* always success */
break;
case 'w': /* word */
lua_error(L, "obsolete option `*w'");
break;
case 'u': { /* read until */
size_t pl = lua_strlen(L, n) - 2;
luaL_arg_check(L, 0 < pl && pl <= LUA_MAXUNTIL, n,
"invalid read-until length");
2001-08-31 23:46:07 +04:00
success = read_until(L, f, p+2, (int)(pl));
break;
}
default:
luaL_argerror(L, n, "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++) {
if (lua_rawtag(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, 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;
const char *s = luaL_check_lstr(L, arg, &l);
status = status && (fwrite(s, sizeof(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};
static const char *const modenames[] = {"set", "cur", "end", NULL};
2001-08-31 23:46:07 +04:00
FILE *f = (FILE *)(luaL_check_userdata(L, 1, FILEHANDLE));
int op = luaL_findstring(luaL_opt_string(L, 2, "cur"), modenames);
2001-01-25 19:45:36 +03:00
long offset = luaL_opt_long(L, 3, 0);
luaL_arg_check(L, op != -1, 2, "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-08-31 23:46:07 +04:00
FILE *f = (lua_isnull(L, 1)) ? (FILE *)(NULL) :
(FILE *)(luaL_check_userdata(L, 1, FILEHANDLE));
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) {
char buff[L_tmpnam];
2000-11-23 16:49:35 +03:00
if (tmpnam(buff) != buff)
lua_error(L, "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=? }
** =======================================================
*/
static void setfield (lua_State *L, const char *key, int value) {
2000-12-18 16:42:19 +03:00
lua_pushstring(L, key);
lua_pushnumber(L, value);
lua_rawset(L, -3);
}
static int getfield (lua_State *L, const 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))
2001-08-31 23:46:07 +04:00
res = (int)(lua_tonumber(L, -1));
2000-12-18 16:42:19 +03:00
else {
if (d == -2)
luaL_verror(L, "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) {
const char *s = luaL_opt_string(L, 1, "%c");
2001-08-31 23:46:07 +04:00
time_t t = (time_t)(luaL_opt_number(L, 2, -1));
2000-02-08 19:39:42 +03:00
struct tm *stm;
2001-08-31 23:46:07 +04:00
if (t == (time_t)(-1)) /* no time given? */
2000-12-18 16:42:19 +03:00
t = time(NULL); /* use current time */
if (*s == '!') { /* 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);
else if (strcmp(s, "*t") == 0) {
2000-12-18 16:42:19 +03:00
lua_newtable(L);
setfield(L, "sec", stm->tm_sec);
setfield(L, "min", stm->tm_min);
setfield(L, "hour", stm->tm_hour);
setfield(L, "day", stm->tm_mday);
setfield(L, "month", stm->tm_mon+1);
setfield(L, "year", stm->tm_year+1900);
setfield(L, "wday", stm->tm_wday+1);
setfield(L, "yday", stm->tm_yday+1);
setfield(L, "isdst", stm->tm_isdst);
2000-12-18 16:42:19 +03:00
}
else {
char b[256];
2000-12-18 16:42:19 +03:00
if (strftime(b, sizeof(b), s, stm))
lua_pushstring(L, b);
else
lua_error(L, "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_check_rawtype(L, 1, LUA_TTABLE);
2000-12-18 16:42:19 +03:00
lua_settop(L, 1); /* make sure table is at the top */
ts.tm_sec = getfield(L, "sec", 0);
ts.tm_min = getfield(L, "min", 0);
ts.tm_hour = getfield(L, "hour", 12);
ts.tm_mday = getfield(L, "day", -2);
ts.tm_mon = getfield(L, "month", -2)-1;
ts.tm_year = getfield(L, "year", -2)-1900;
ts.tm_isdst = getfield(L, "isdst", -1);
2000-12-18 16:42:19 +03:00
t = mktime(&ts);
2001-08-31 23:46:07 +04:00
if (t == (time_t)(-1))
2000-12-18 16:42:19 +03:00
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) {
2001-08-31 23:46:07 +04:00
lua_pushnumber(L, difftime((time_t)(luaL_check_number(L, 1)),
(time_t)(luaL_opt_number(L, 2, 0))));
2000-12-18 16:42:19 +03:00
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};
static const char *const catnames[] = {"all", "collate", "ctype", "monetary",
"numeric", "time", NULL};
int op = luaL_findstring(luaL_opt_string(L, 2, "all"), catnames);
luaL_arg_check(L, op != -1, 2, "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 (;;) {
char buffer[250];
fprintf(stderr, "lua_debug> ");
if (fgets(buffer, sizeof(buffer), stdin) == 0 ||
strcmp(buffer, "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);
luaL_addstring(&b, "error: ");
luaL_addstring(&b, luaL_check_string(L, 1));
luaL_addstring(&b, "\n");
2000-01-19 15:00:45 +03:00
while (lua_getstack(L, level++, &ar)) {
char buff[120]; /* enough to fit following `sprintf's */
2000-09-12 22:41:55 +04:00
if (level == 2)
luaL_addstring(&b, "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 {
luaL_addstring(&b, " ...\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;
}
sprintf(buff, "%4d: ", level-1);
luaL_addstring(&b, buff);
lua_getinfo(L, "Snl", &ar);
2000-01-19 15:00:45 +03:00
switch (*ar.namewhat) {
case 'g': case 'l': /* global, local */
sprintf(buff, "function `%.50s'", ar.name);
break;
case 'f': /* field */
sprintf(buff, "method `%.50s'", ar.name);
break;
case 't': /* tag method */
sprintf(buff, "`%.50s' tag method", ar.name);
break;
default: {
if (*ar.what == 'm') /* main? */
sprintf(buff, "main of %.70s", ar.short_src);
else if (*ar.what == 'C') /* C function? */
sprintf(buff, "%.70s", ar.short_src);
1999-03-05 23:45:01 +03:00
else
sprintf(buff, "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) {
sprintf(buff, " at line %d", ar.currentline);
luaL_addstring(&b, buff);
2000-09-05 23:33:32 +04:00
}
if (ar.source) {
sprintf(buff, " [%.70s]", ar.short_src);
luaL_addstring(&b, buff);
2000-09-05 23:33:32 +04:00
}
luaL_addstring(&b, "\n");
1995-10-17 17:12:45 +03:00
}
luaL_pushresult(&b);
lua_getglobal(L, 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[] = {
{"appendto", io_appendto},
{"clock", io_clock},
{"closefile", io_close},
{"date", io_date},
{"debug", io_debug},
{"difftime", io_difftime},
{"execute", io_execute},
{"exit", io_exit},
{"flush", io_flush},
{"getenv", io_getenv},
{"openfile", io_open},
{"read", io_read},
{"readfrom", io_readfrom},
{"remove", io_remove},
{"rename", io_rename},
{"seek", io_seek},
{"setlocale", io_setloc},
{"time", io_time},
{"tmpfile", io_tmpfile},
{"tmpname", io_tmpname},
{"write", io_write},
{"writeto", io_writeto},
{LUA_ERRORMESSAGE, errorfb}
};
2001-03-06 23:09:38 +03:00
LUALIB_API int lua_iolibopen (lua_State *L) {
int iotag = lua_newtype(L, FILEHANDLE, LUA_TUSERDATA);
lua_newtype(L, 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 */
newfilewithname(L, stdin, basicfiles[INFILE]);
newfilewithname(L, stdout, basicfiles[OUTFILE]);
newfilewithname(L, stderr, "_STDERR");
resetfile(L, INFILE);
resetfile(L, OUTFILE);
2001-01-25 19:45:36 +03:00
/* close files when collected */
lua_pushcfunction(L, file_collect);
lua_settagmethod(L, iotag, "gc");
2001-03-06 23:09:38 +03:00
return 0;
1993-07-28 17:18:00 +04:00
}