1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2000-03-03 17:58:26 +03:00
|
|
|
** $Id: liolib.c,v 1.57 2000/02/08 16:34:31 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Standard I/O (and system) library
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
1999-10-07 23:18:36 +04:00
|
|
|
#include <ctype.h>
|
1997-12-18 22:11:43 +03:00
|
|
|
#include <errno.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
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
#define LUA_REENTRANT
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lauxlib.h"
|
1993-07-28 17:18:00 +04:00
|
|
|
#include "lua.h"
|
1995-10-17 17:12:45 +03:00
|
|
|
#include "luadebug.h"
|
1994-08-17 19:10:04 +04:00
|
|
|
#include "lualib.h"
|
1993-07-28 17:18:00 +04:00
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
#ifndef OLD_ANSI
|
|
|
|
#include <locale.h>
|
|
|
|
#else
|
1998-12-27 23:21:28 +03:00
|
|
|
/* no support for locale and for strerror: fake them */
|
1999-11-22 16:12:07 +03:00
|
|
|
#define setlocale(a,b) ((void)a, strcmp((b),"C")==0?"C":NULL)
|
1997-09-16 23:25:59 +04:00
|
|
|
#define LC_ALL 0
|
|
|
|
#define LC_COLLATE 0
|
|
|
|
#define LC_CTYPE 0
|
|
|
|
#define LC_MONETARY 0
|
|
|
|
#define LC_NUMERIC 0
|
|
|
|
#define LC_TIME 0
|
1997-12-09 16:50:08 +03:00
|
|
|
#define strerror(e) "(no error message provided by operating system)"
|
1997-09-16 23:25:59 +04:00
|
|
|
#endif
|
1997-03-20 23:36:58 +03:00
|
|
|
|
1995-10-04 16:53:10 +03:00
|
|
|
|
1999-04-05 23:47:05 +04:00
|
|
|
#define IOTAG 1
|
|
|
|
|
|
|
|
#define FIRSTARG 2 /* 1st is upvalue */
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
#define CLOSEDTAG(L, tag) ((tag)-1) /* assume that CLOSEDTAG = iotag-1 */
|
1997-11-27 18:59:44 +03:00
|
|
|
|
1998-01-07 19:26:48 +03:00
|
|
|
|
1997-11-27 18:59:44 +03:00
|
|
|
#define FINPUT "_INPUT"
|
|
|
|
#define FOUTPUT "_OUTPUT"
|
|
|
|
|
|
|
|
|
1995-11-10 20:55:48 +03:00
|
|
|
#ifdef POPEN
|
1999-08-17 00:52:00 +04:00
|
|
|
/* FILE *popen();
|
|
|
|
int pclose(); */
|
1999-11-22 16:12:07 +03:00
|
|
|
#define CLOSEFILE(L, f) ((pclose(f) == -1) ? fclose(f) : 0)
|
1995-11-10 20:55:48 +03:00
|
|
|
#else
|
1998-12-27 23:21:28 +03:00
|
|
|
/* no support for popen */
|
1995-10-04 16:53:10 +03:00
|
|
|
#define popen(x,y) NULL /* that is, popen always fails */
|
1999-11-22 16:12:07 +03:00
|
|
|
#define CLOSEFILE(L, f) (fclose(f))
|
1995-10-04 16:53:10 +03:00
|
|
|
#endif
|
|
|
|
|
1995-11-03 18:43:50 +03:00
|
|
|
|
1998-12-27 23:21:28 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void pushresult (lua_State *L, int i) {
|
1996-03-14 18:55:18 +03:00
|
|
|
if (i)
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushuserdata(L, NULL);
|
1996-11-01 20:03:36 +03:00
|
|
|
else {
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushnil(L);
|
|
|
|
lua_pushstring(L, strerror(errno));
|
|
|
|
lua_pushnumber(L, errno);
|
1995-10-04 16:53:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-01-04 15:41:12 +03:00
|
|
|
/*
|
|
|
|
** {======================================================
|
|
|
|
** FILE Operations
|
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static int gettag (lua_State *L) {
|
|
|
|
return (int)lua_getnumber(L, lua_getparam(L, IOTAG));
|
1999-01-04 15:41:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-08 19:39:42 +03:00
|
|
|
static FILE *gethandle (lua_State *L, lua_Object f) {
|
1999-11-22 16:12:07 +03:00
|
|
|
if (lua_isuserdata(L, f)) {
|
2000-02-08 19:39:42 +03:00
|
|
|
int ftag = lua_tag(L, f);
|
|
|
|
int iotag = gettag(L);
|
|
|
|
if (ftag == iotag)
|
|
|
|
return (FILE *)lua_getuserdata(L, f);
|
|
|
|
if (ftag == CLOSEDTAG(L, iotag))
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_error(L, "cannot access a closed file");
|
2000-02-08 19:39:42 +03:00
|
|
|
/* else go through */
|
1997-10-30 23:29:09 +03:00
|
|
|
}
|
2000-02-08 19:39:42 +03:00
|
|
|
return NULL;
|
1997-10-30 23:29:09 +03:00
|
|
|
}
|
1997-06-27 00:39:10 +04:00
|
|
|
|
1999-03-16 23:07:54 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static FILE *getfilebyname (lua_State *L, const char *name) {
|
2000-02-08 19:39:42 +03:00
|
|
|
FILE *handle = gethandle(L, lua_rawgetglobal(L, name));
|
|
|
|
if (!handle)
|
2000-03-03 17:58:26 +03:00
|
|
|
luaL_verror(L, "`%.50s' is not a file handle", name);
|
2000-02-08 19:39:42 +03:00
|
|
|
return handle;
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static FILE *getfile (lua_State *L, int arg) {
|
2000-02-08 19:39:42 +03:00
|
|
|
return gethandle(L, lua_getparam(L, arg));
|
1998-08-25 00:14:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static FILE *getnonullfile (lua_State *L, int arg) {
|
|
|
|
FILE *f = getfile(L, arg);
|
|
|
|
luaL_arg_check(L, f, arg, "invalid file handle");
|
1999-03-16 23:07:54 +03:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static FILE *getfileparam (lua_State *L, const char *name, int *arg) {
|
|
|
|
FILE *f = getfile(L, *arg);
|
1998-08-25 00:14:56 +04:00
|
|
|
if (f) {
|
1997-10-30 23:29:09 +03:00
|
|
|
(*arg)++;
|
1998-08-25 00:14:56 +04:00
|
|
|
return f;
|
1997-10-30 23:29:09 +03:00
|
|
|
}
|
|
|
|
else
|
1999-11-22 16:12:07 +03:00
|
|
|
return getfilebyname(L, name);
|
1997-10-30 23:29:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static int closefile (lua_State *L, FILE *f) {
|
1999-08-10 17:05:16 +04:00
|
|
|
if (f == stdin || f == stdout)
|
|
|
|
return 1;
|
|
|
|
else {
|
1999-11-22 16:12:07 +03:00
|
|
|
int tag = gettag(L);
|
|
|
|
lua_pushusertag(L, f, tag);
|
|
|
|
lua_settag(L, CLOSEDTAG(L, tag));
|
|
|
|
return (CLOSEFILE(L, f) == 0);
|
1998-12-28 16:44:54 +03:00
|
|
|
}
|
1998-11-20 18:41:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_close (lua_State *L) {
|
|
|
|
pushresult(L, closefile(L, getnonullfile(L, FIRSTARG)));
|
1999-03-16 23:07:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void gc_close (lua_State *L) {
|
|
|
|
FILE *f = getnonullfile(L, FIRSTARG);
|
1999-04-05 23:47:05 +04:00
|
|
|
if (f != stdin && f != stdout && f != stderr) {
|
1999-11-22 16:12:07 +03:00
|
|
|
CLOSEFILE(L, f);
|
1999-04-05 23:47:05 +04:00
|
|
|
}
|
1999-03-26 16:48:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_open (lua_State *L) {
|
|
|
|
FILE *f = fopen(luaL_check_string(L, FIRSTARG), luaL_check_string(L, FIRSTARG+1));
|
|
|
|
if (f) lua_pushusertag(L, f, gettag(L));
|
|
|
|
else pushresult(L, 0);
|
1995-10-04 16:53:10 +03:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void setfile (lua_State *L, FILE *f, const char *name, int tag) {
|
|
|
|
lua_pushusertag(L, f, tag);
|
|
|
|
lua_setglobal(L, name);
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void setreturn (lua_State *L, FILE *f, const char *name) {
|
1999-06-23 17:48:39 +04:00
|
|
|
if (f == NULL)
|
1999-11-22 16:12:07 +03:00
|
|
|
pushresult(L, 0);
|
1999-06-23 17:48:39 +04:00
|
|
|
else {
|
1999-11-22 16:12:07 +03:00
|
|
|
int tag = gettag(L);
|
|
|
|
setfile(L, f, name, tag);
|
|
|
|
lua_pushusertag(L, f, tag);
|
1999-06-23 17:48:39 +04:00
|
|
|
}
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_readfrom (lua_State *L) {
|
1997-06-27 00:39:10 +04:00
|
|
|
FILE *current;
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_Object f = lua_getparam(L, FIRSTARG);
|
1997-06-27 00:39:10 +04:00
|
|
|
if (f == LUA_NOOBJECT) {
|
1999-11-22 16:12:07 +03:00
|
|
|
if (closefile(L, getfilebyname(L, FINPUT)))
|
1999-08-10 17:05:16 +04:00
|
|
|
current = stdin;
|
|
|
|
else
|
|
|
|
current = NULL; /* to signal error */
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
else if (lua_tag(L, f) == gettag(L)) /* deprecated option */
|
2000-02-08 19:39:42 +03:00
|
|
|
current = (FILE *)lua_getuserdata(L, f);
|
1996-11-01 20:03:36 +03:00
|
|
|
else {
|
1999-11-22 16:12:07 +03:00
|
|
|
const char *s = luaL_check_string(L, FIRSTARG);
|
1999-03-16 23:07:54 +03:00
|
|
|
current = (*s == '|') ? popen(s+1, "r") : fopen(s, "r");
|
1996-11-01 20:03:36 +03:00
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
setreturn(L, current, FINPUT);
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_writeto (lua_State *L) {
|
1997-06-27 00:39:10 +04:00
|
|
|
FILE *current;
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_Object f = lua_getparam(L, FIRSTARG);
|
1997-06-27 00:39:10 +04:00
|
|
|
if (f == LUA_NOOBJECT) {
|
1999-11-22 16:12:07 +03:00
|
|
|
if (closefile(L, getfilebyname(L, FOUTPUT)))
|
1999-08-10 17:05:16 +04:00
|
|
|
current = stdout;
|
|
|
|
else
|
|
|
|
current = NULL; /* to signal error */
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
else if (lua_tag(L, f) == gettag(L)) /* deprecated option */
|
2000-02-08 19:39:42 +03:00
|
|
|
current = (FILE *)lua_getuserdata(L, f);
|
1996-11-01 20:03:36 +03:00
|
|
|
else {
|
1999-11-22 16:12:07 +03:00
|
|
|
const char *s = luaL_check_string(L, FIRSTARG);
|
1999-03-16 23:07:54 +03:00
|
|
|
current = (*s == '|') ? popen(s+1,"w") : fopen(s, "w");
|
1996-11-01 20:03:36 +03:00
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
setreturn(L, current, FOUTPUT);
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_appendto (lua_State *L) {
|
|
|
|
FILE *current = fopen(luaL_check_string(L, FIRSTARG), "a");
|
|
|
|
setreturn(L, current, FOUTPUT);
|
1995-11-10 20:55:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-01-04 15:41:12 +03:00
|
|
|
/*
|
|
|
|
** {======================================================
|
1998-12-27 23:21:28 +03:00
|
|
|
** READ
|
1999-01-04 15:41:12 +03:00
|
|
|
** =======================================================
|
|
|
|
*/
|
1998-12-27 23:21:28 +03:00
|
|
|
|
1999-04-15 00:40:32 +04:00
|
|
|
|
1999-10-07 23:18:36 +04:00
|
|
|
|
|
|
|
#ifdef COMPAT_READPATTERN
|
|
|
|
|
1999-04-15 00:40:32 +04:00
|
|
|
/*
|
|
|
|
** We cannot lookahead without need, because this can lock stdin.
|
|
|
|
** This flag signals when we need to read a next char.
|
|
|
|
*/
|
|
|
|
#define NEED_OTHER (EOF-1) /* just some flag different from EOF */
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static int read_pattern (lua_State *L, FILE *f, const char *p) {
|
1998-12-27 23:21:28 +03:00
|
|
|
int inskip = 0; /* {skip} level */
|
1999-04-15 00:40:32 +04:00
|
|
|
int c = NEED_OTHER;
|
1998-12-27 23:21:28 +03:00
|
|
|
while (*p != '\0') {
|
|
|
|
switch (*p) {
|
|
|
|
case '{':
|
|
|
|
inskip++;
|
|
|
|
p++;
|
|
|
|
continue;
|
|
|
|
case '}':
|
1999-11-22 16:12:07 +03:00
|
|
|
if (!inskip) lua_error(L, "unbalanced braces in read pattern");
|
1998-12-27 23:21:28 +03:00
|
|
|
inskip--;
|
|
|
|
p++;
|
|
|
|
continue;
|
|
|
|
default: {
|
1999-11-22 16:12:07 +03:00
|
|
|
const char *ep = luaI_classend(L, p); /* get what is next */
|
1998-12-27 23:21:28 +03:00
|
|
|
int m; /* match result */
|
1999-04-15 00:40:32 +04:00
|
|
|
if (c == NEED_OTHER) c = getc(f);
|
1999-05-05 23:23:11 +04:00
|
|
|
m = (c==EOF) ? 0 : luaI_singlematch(c, p, ep);
|
1998-12-27 23:21:28 +03:00
|
|
|
if (m) {
|
1999-11-22 16:12:07 +03:00
|
|
|
if (!inskip) luaL_addchar(L, c);
|
1999-04-15 00:40:32 +04:00
|
|
|
c = NEED_OTHER;
|
1998-12-27 23:21:28 +03:00
|
|
|
}
|
|
|
|
switch (*ep) {
|
1999-05-05 23:23:11 +04:00
|
|
|
case '+': /* repetition (1 or more) */
|
|
|
|
if (!m) goto break_while; /* pattern fails? */
|
|
|
|
/* else go through */
|
|
|
|
case '*': /* repetition (0 or more) */
|
|
|
|
while (m) { /* reads the same item until it fails */
|
|
|
|
c = getc(f);
|
|
|
|
m = (c==EOF) ? 0 : luaI_singlematch(c, p, ep);
|
1999-11-22 16:12:07 +03:00
|
|
|
if (m && !inskip) luaL_addchar(L, c);
|
1999-05-05 23:23:11 +04:00
|
|
|
}
|
|
|
|
/* go through to continue reading the pattern */
|
1998-12-27 23:21:28 +03:00
|
|
|
case '?': /* optional */
|
|
|
|
p = ep+1; /* continues reading the pattern */
|
|
|
|
continue;
|
|
|
|
default:
|
1999-04-15 00:40:32 +04:00
|
|
|
if (!m) goto break_while; /* pattern fails? */
|
|
|
|
p = ep; /* else continues reading the pattern */
|
1998-12-27 23:21:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-04-15 00:40:32 +04:00
|
|
|
} break_while:
|
|
|
|
if (c != NEED_OTHER) ungetc(c, f);
|
|
|
|
return (*p == '\0');
|
1998-12-27 23:21:28 +03:00
|
|
|
}
|
1998-06-03 01:20:54 +04:00
|
|
|
|
1999-10-07 23:18:36 +04:00
|
|
|
#else
|
|
|
|
|
2000-03-03 17:58:26 +03:00
|
|
|
#define read_pattern(L, f, p) (lua_error(L, "read patterns are deprecated"), 0)
|
1999-10-07 23:18:36 +04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1998-12-27 23:21:28 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static int read_number (lua_State *L, FILE *f) {
|
1998-12-27 23:21:28 +03:00
|
|
|
double d;
|
|
|
|
if (fscanf(f, "%lf", &d) == 1) {
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushnumber(L, d);
|
1998-12-27 23:21:28 +03:00
|
|
|
return 1;
|
1998-06-03 01:20:54 +04:00
|
|
|
}
|
1998-12-27 23:21:28 +03:00
|
|
|
else return 0; /* read fails */
|
1998-06-03 01:20:54 +04:00
|
|
|
}
|
|
|
|
|
1998-12-27 23:21:28 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void read_word (lua_State *L, FILE *f) {
|
1999-10-07 23:18:36 +04:00
|
|
|
int c;
|
2000-02-08 19:39:42 +03:00
|
|
|
do { c = fgetc(f); } while (isspace(c)); /* skip spaces */
|
1999-10-07 23:18:36 +04:00
|
|
|
while (c != EOF && !isspace(c)) {
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_addchar(L, c);
|
1999-10-07 23:18:36 +04:00
|
|
|
c = fgetc(f);
|
|
|
|
}
|
|
|
|
ungetc(c, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-09-13 23:42:02 +04:00
|
|
|
#define HUNK_LINE 256
|
1998-12-27 23:21:28 +03:00
|
|
|
#define HUNK_FILE BUFSIZ
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static int read_line (lua_State *L, FILE *f) {
|
1998-12-27 23:21:28 +03:00
|
|
|
int n;
|
|
|
|
char *b;
|
|
|
|
do {
|
1999-11-22 16:12:07 +03:00
|
|
|
b = luaL_openspace(L, HUNK_LINE);
|
1998-12-27 23:21:28 +03:00
|
|
|
if (!fgets(b, HUNK_LINE, f)) return 0; /* read fails */
|
|
|
|
n = strlen(b);
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_addsize(L, n);
|
1998-12-27 23:21:28 +03:00
|
|
|
} while (b[n-1] != '\n');
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_addsize(L, -1); /* remove '\n' */
|
1998-12-27 23:21:28 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void read_file (lua_State *L, FILE *f) {
|
1998-12-27 23:21:28 +03:00
|
|
|
int n;
|
|
|
|
do {
|
1999-11-22 16:12:07 +03:00
|
|
|
char *b = luaL_openspace(L, HUNK_FILE);
|
1998-12-27 23:21:28 +03:00
|
|
|
n = fread(b, sizeof(char), HUNK_FILE, f);
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_addsize(L, n);
|
1998-12-27 23:21:28 +03:00
|
|
|
} while (n==HUNK_FILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static int read_chars (lua_State *L, FILE *f, int n) {
|
|
|
|
char *b = luaL_openspace(L, n);
|
1999-10-07 23:18:36 +04:00
|
|
|
int n1 = fread(b, sizeof(char), n, f);
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_addsize(L, n1);
|
1999-10-07 23:18:36 +04:00
|
|
|
return (n == n1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_read (lua_State *L) {
|
1999-04-05 23:47:05 +04:00
|
|
|
int arg = FIRSTARG;
|
1999-11-22 16:12:07 +03:00
|
|
|
FILE *f = getfileparam(L, FINPUT, &arg);
|
|
|
|
lua_Object op = lua_getparam(L, arg);
|
1999-10-07 23:18:36 +04:00
|
|
|
do { /* repeat for each part */
|
1998-12-27 23:21:28 +03:00
|
|
|
long l;
|
|
|
|
int success;
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_resetbuffer(L);
|
|
|
|
if (lua_isnumber(L, op))
|
|
|
|
success = read_chars(L, f, (int)lua_getnumber(L, op));
|
1999-10-07 23:18:36 +04:00
|
|
|
else {
|
1999-11-22 16:12:07 +03:00
|
|
|
const char *p = luaL_opt_string(L, arg, "*l");
|
1999-10-07 23:18:36 +04:00
|
|
|
if (p[0] != '*')
|
1999-11-22 16:12:07 +03:00
|
|
|
success = read_pattern(L, f, p); /* deprecated! */
|
1999-10-07 23:18:36 +04:00
|
|
|
else {
|
|
|
|
switch (p[1]) {
|
|
|
|
case 'n': /* number */
|
1999-11-22 16:12:07 +03:00
|
|
|
if (!read_number(L, f)) return; /* read fails */
|
1999-10-07 23:18:36 +04:00
|
|
|
continue; /* number is already pushed; avoid the "pushstring" */
|
|
|
|
case 'l': /* line */
|
1999-11-22 16:12:07 +03:00
|
|
|
success = read_line(L, f);
|
1999-10-07 23:18:36 +04:00
|
|
|
break;
|
|
|
|
case 'a': /* file */
|
1999-11-22 16:12:07 +03:00
|
|
|
read_file(L, f);
|
1999-10-07 23:18:36 +04:00
|
|
|
success = 1; /* always success */
|
|
|
|
break;
|
|
|
|
case 'w': /* word */
|
1999-11-22 16:12:07 +03:00
|
|
|
read_word(L, f);
|
1999-10-07 23:18:36 +04:00
|
|
|
success = 0; /* must read something to succeed */
|
|
|
|
break;
|
|
|
|
default:
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_argerror(L, arg, "invalid format");
|
1999-10-07 23:18:36 +04:00
|
|
|
success = 0; /* to avoid warnings */
|
|
|
|
}
|
|
|
|
}
|
1998-12-27 23:21:28 +03:00
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
l = luaL_getsize(L);
|
1998-12-27 23:21:28 +03:00
|
|
|
if (!success && l==0) return; /* read fails */
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushlstring(L, luaL_buffer(L), l);
|
|
|
|
} while ((op = lua_getparam(L, ++arg)) != LUA_NOOBJECT);
|
1995-11-10 20:55:48 +03:00
|
|
|
}
|
|
|
|
|
1999-01-04 15:41:12 +03:00
|
|
|
/* }====================================================== */
|
|
|
|
|
1995-11-10 20:55:48 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_write (lua_State *L) {
|
1999-04-05 23:47:05 +04:00
|
|
|
int arg = FIRSTARG;
|
1999-11-22 16:12:07 +03:00
|
|
|
FILE *f = getfileparam(L, FOUTPUT, &arg);
|
1996-11-01 20:03:36 +03:00
|
|
|
int status = 1;
|
1999-10-07 23:18:36 +04:00
|
|
|
lua_Object o;
|
1999-12-28 14:52:49 +03:00
|
|
|
while ((o = lua_getparam(L, arg)) != LUA_NOOBJECT) {
|
|
|
|
if (lua_type(L, o)[2] == 'm') { /* nuMber? */ /* LUA_NUMBER */
|
|
|
|
/* optimization: could be done exactly as for strings */
|
|
|
|
status = status && fprintf(f, "%.16g", lua_getnumber(L, o)) > 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
long l;
|
|
|
|
const char *s = luaL_check_lstr(L, arg, &l);
|
|
|
|
status = status && ((long)fwrite(s, sizeof(char), l, f) == l);
|
1999-10-07 23:18:36 +04:00
|
|
|
}
|
1999-12-28 14:52:49 +03:00
|
|
|
arg++;
|
1999-10-07 23:18:36 +04:00
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
pushresult(L, status);
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void 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};
|
1999-11-22 16:12:07 +03:00
|
|
|
FILE *f = getnonullfile(L, FIRSTARG);
|
|
|
|
int op = luaL_findstring(luaL_opt_string(L, FIRSTARG+1, "cur"), modenames);
|
|
|
|
long offset = luaL_opt_long(L, FIRSTARG+2, 0);
|
|
|
|
luaL_arg_check(L, op != -1, FIRSTARG+1, "invalid mode");
|
1998-08-25 00:14:56 +04:00
|
|
|
op = fseek(f, offset, mode[op]);
|
|
|
|
if (op)
|
1999-11-22 16:12:07 +03:00
|
|
|
pushresult(L, 0); /* error */
|
1998-08-25 00:14:56 +04:00
|
|
|
else
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushnumber(L, ftell(f));
|
1998-08-25 00:14:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_flush (lua_State *L) {
|
|
|
|
FILE *f = getfile(L, FIRSTARG);
|
|
|
|
luaL_arg_check(L, f || lua_getparam(L, FIRSTARG) == LUA_NOOBJECT, FIRSTARG,
|
1999-03-26 16:48:26 +03:00
|
|
|
"invalid file handle");
|
1999-11-22 16:12:07 +03:00
|
|
|
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
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_execute (lua_State *L) {
|
|
|
|
lua_pushnumber(L, system(luaL_check_string(L, 1)));
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_remove (lua_State *L) {
|
|
|
|
pushresult(L, remove(luaL_check_string(L, 1)) == 0);
|
1996-03-14 18:55:18 +03:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_rename (lua_State *L) {
|
|
|
|
pushresult(L, rename(luaL_check_string(L, 1),
|
|
|
|
luaL_check_string(L, 2)) == 0);
|
1996-03-14 18:55:18 +03:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_tmpname (lua_State *L) {
|
|
|
|
lua_pushstring(L, tmpnam(NULL));
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
1996-02-09 22:02:30 +03:00
|
|
|
|
1994-08-12 03:11:57 +04:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_getenv (lua_State *L) {
|
|
|
|
lua_pushstring(L, getenv(luaL_check_string(L, 1))); /* if NULL push nil */
|
1994-08-12 03:11:57 +04:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_clock (lua_State *L) {
|
|
|
|
lua_pushnumber(L, ((double)clock())/CLOCKS_PER_SEC);
|
1998-05-21 02:21:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_date (lua_State *L) {
|
1998-12-27 23:21:28 +03:00
|
|
|
char b[256];
|
1999-11-22 16:12:07 +03:00
|
|
|
const char *s = luaL_opt_string(L, 1, "%c");
|
2000-02-08 19:39:42 +03:00
|
|
|
struct tm *stm;
|
1998-12-27 23:21:28 +03:00
|
|
|
time_t t;
|
2000-02-08 19:39:42 +03:00
|
|
|
time(&t); stm = localtime(&t);
|
|
|
|
if (strftime(b, sizeof(b), s, stm))
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushstring(L, b);
|
1996-11-01 20:03:36 +03:00
|
|
|
else
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_error(L, "invalid `date' format");
|
1994-10-19 20:02:20 +03:00
|
|
|
}
|
1997-07-01 23:32:41 +04:00
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void 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",
|
1998-06-18 21:04:28 +04:00
|
|
|
"numeric", "time", NULL};
|
1999-11-22 16:12:07 +03:00
|
|
|
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)));
|
1997-07-01 23:32:41 +04:00
|
|
|
}
|
1997-09-16 23:25:59 +04:00
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_exit (lua_State *L) {
|
|
|
|
exit(luaL_opt_int(L, 1, EXIT_SUCCESS));
|
1994-08-12 03:11:57 +04:00
|
|
|
}
|
|
|
|
|
1999-01-04 15:41:12 +03:00
|
|
|
/* }====================================================== */
|
|
|
|
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void io_debug (lua_State *L) {
|
1998-12-27 23:21:28 +03:00
|
|
|
for (;;) {
|
1994-08-18 02:34:20 +04:00
|
|
|
char buffer[250];
|
1994-12-13 18:55:41 +03:00
|
|
|
fprintf(stderr, "lua_debug> ");
|
1999-03-16 23:07:54 +03:00
|
|
|
if (fgets(buffer, sizeof(buffer), stdin) == 0 ||
|
|
|
|
strcmp(buffer, "cont\n") == 0)
|
|
|
|
return;
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_dostring(L, buffer);
|
1994-08-18 02:34:20 +04:00
|
|
|
}
|
|
|
|
}
|
1994-08-12 03:11:57 +04:00
|
|
|
|
1995-10-17 17:12:45 +03:00
|
|
|
|
1998-12-27 23:21:28 +03:00
|
|
|
|
1998-08-21 21:43:44 +04:00
|
|
|
#define MESSAGESIZE 150
|
1999-11-22 16:12:07 +03:00
|
|
|
#define MAXMESSAGE (MESSAGESIZE*10)
|
1998-08-21 21:43:44 +04:00
|
|
|
|
1999-03-05 00:23:39 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void errorfb (lua_State *L) {
|
1998-08-21 21:43:44 +04:00
|
|
|
char buff[MAXMESSAGE];
|
1997-03-18 18:30:50 +03:00
|
|
|
int level = 1; /* skip level 0 (it's this function) */
|
2000-01-19 15:00:45 +03:00
|
|
|
lua_Dbgactreg ar;
|
|
|
|
lua_Object alertfunc = lua_rawgetglobal(L, "_ALERT");
|
1999-12-27 16:04:53 +03:00
|
|
|
sprintf(buff, "error: %.200s\n", lua_getstring(L, lua_getparam(L, 1)));
|
2000-01-19 15:00:45 +03:00
|
|
|
while (lua_getstack(L, level++, &ar)) {
|
2000-03-03 17:58:26 +03:00
|
|
|
char buffchunk[60];
|
2000-01-19 15:00:45 +03:00
|
|
|
lua_getinfo(L, "Snl", &ar);
|
|
|
|
luaL_chunkid(buffchunk, ar.source, sizeof(buffchunk));
|
2000-03-03 17:58:26 +03:00
|
|
|
if (level == 2) strcat(buff, "Stack traceback:\n");
|
1999-05-14 16:24:04 +04:00
|
|
|
strcat(buff, " ");
|
1998-08-21 21:43:44 +04:00
|
|
|
if (strlen(buff) > MAXMESSAGE-MESSAGESIZE) {
|
|
|
|
strcat(buff, "...\n");
|
|
|
|
break; /* buffer is full */
|
|
|
|
}
|
2000-01-19 15:00:45 +03:00
|
|
|
switch (*ar.namewhat) {
|
|
|
|
case 'g': case 'l': /* global, local */
|
|
|
|
sprintf(buff+strlen(buff), "function `%.50s'", ar.name);
|
1995-10-26 17:21:56 +03:00
|
|
|
break;
|
2000-01-19 15:00:45 +03:00
|
|
|
case 'f': /* field */
|
|
|
|
sprintf(buff+strlen(buff), "method `%.50s'", ar.name);
|
1999-12-30 21:28:40 +03:00
|
|
|
break;
|
2000-01-19 15:00:45 +03:00
|
|
|
case 't': /* tag method */
|
|
|
|
sprintf(buff+strlen(buff), "`%.50s' tag method", ar.name);
|
1995-10-26 17:21:56 +03:00
|
|
|
break;
|
1996-11-01 20:03:36 +03:00
|
|
|
default: {
|
2000-01-19 15:00:45 +03:00
|
|
|
if (*ar.what == 'm') /* main? */
|
1999-05-14 16:24:04 +04:00
|
|
|
sprintf(buff+strlen(buff), "main of %.70s", buffchunk);
|
2000-01-19 15:00:45 +03:00
|
|
|
else if (*ar.what == 'C') /* C function? */
|
1999-05-14 16:24:04 +04:00
|
|
|
sprintf(buff+strlen(buff), "%.70s", buffchunk);
|
1999-03-05 23:45:01 +03:00
|
|
|
else
|
1999-05-14 16:24:04 +04:00
|
|
|
sprintf(buff+strlen(buff), "function <%d:%.70s>",
|
2000-01-19 15:00:45 +03:00
|
|
|
ar.linedefined, buffchunk);
|
|
|
|
ar.source = NULL;
|
1995-10-17 17:12:45 +03:00
|
|
|
}
|
1995-10-26 17:21:56 +03:00
|
|
|
}
|
2000-01-19 15:00:45 +03:00
|
|
|
if (ar.currentline > 0)
|
|
|
|
sprintf(buff+strlen(buff), " at line %d", ar.currentline);
|
|
|
|
if (ar.source)
|
1999-05-14 16:24:04 +04:00
|
|
|
sprintf(buff+strlen(buff), " [%.70s]", buffchunk);
|
1998-08-21 21:43:44 +04:00
|
|
|
strcat(buff, "\n");
|
1995-10-17 17:12:45 +03:00
|
|
|
}
|
2000-01-19 15:00:45 +03:00
|
|
|
if (lua_isfunction(L, alertfunc)) { /* avoid loop if _ALERT is not defined */
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushstring(L, buff);
|
2000-01-19 15:00:45 +03:00
|
|
|
lua_callfunction(L, alertfunc);
|
1999-02-22 17:17:24 +03:00
|
|
|
}
|
1995-11-03 18:43:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-03-27 01:23:15 +03:00
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
static const struct luaL_reg iolib[] = {
|
1999-03-16 23:07:54 +03:00
|
|
|
{"_ERRORMESSAGE", errorfb},
|
1998-08-21 21:43:44 +04:00
|
|
|
{"clock", io_clock},
|
1999-03-16 23:07:54 +03:00
|
|
|
{"date", io_date},
|
1998-08-21 21:43:44 +04:00
|
|
|
{"debug", io_debug},
|
1999-03-16 23:07:54 +03:00
|
|
|
{"execute", io_execute},
|
|
|
|
{"exit", io_exit},
|
|
|
|
{"getenv", io_getenv},
|
1999-04-05 23:47:05 +04:00
|
|
|
{"remove", io_remove},
|
|
|
|
{"rename", io_rename},
|
|
|
|
{"setlocale", setloc},
|
|
|
|
{"tmpname", io_tmpname}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-08-17 00:52:00 +04:00
|
|
|
static const struct luaL_reg iolibtag[] = {
|
1999-04-05 23:47:05 +04:00
|
|
|
{"appendto", io_appendto},
|
|
|
|
{"closefile", io_close},
|
|
|
|
{"flush", io_flush},
|
1999-03-16 23:07:54 +03:00
|
|
|
{"openfile", io_open},
|
1998-08-21 21:43:44 +04:00
|
|
|
{"read", io_read},
|
1999-03-16 23:07:54 +03:00
|
|
|
{"readfrom", io_readfrom},
|
1998-08-25 00:14:56 +04:00
|
|
|
{"seek", io_seek},
|
1999-03-16 23:07:54 +03:00
|
|
|
{"write", io_write},
|
|
|
|
{"writeto", io_writeto}
|
1997-11-28 15:40:37 +03:00
|
|
|
};
|
|
|
|
|
1999-03-16 23:07:54 +03:00
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
static void openwithtags (lua_State *L) {
|
1999-11-09 20:59:35 +03:00
|
|
|
unsigned int i;
|
1999-11-22 16:12:07 +03:00
|
|
|
int iotag = lua_newtag(L);
|
|
|
|
lua_newtag(L); /* alloc CLOSEDTAG: assume that CLOSEDTAG = iotag-1 */
|
1999-04-05 23:47:05 +04:00
|
|
|
for (i=0; i<sizeof(iolibtag)/sizeof(iolibtag[0]); i++) {
|
|
|
|
/* put iotag as upvalue for these functions */
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushnumber(L, iotag);
|
|
|
|
lua_pushcclosure(L, iolibtag[i].func, 1);
|
|
|
|
lua_setglobal(L, iolibtag[i].name);
|
1999-04-05 23:47:05 +04:00
|
|
|
}
|
1999-03-16 23:07:54 +03:00
|
|
|
/* predefined file handles */
|
1999-11-22 16:12:07 +03:00
|
|
|
setfile(L, stdin, FINPUT, iotag);
|
|
|
|
setfile(L, stdout, FOUTPUT, iotag);
|
|
|
|
setfile(L, stdin, "_STDIN", iotag);
|
|
|
|
setfile(L, stdout, "_STDOUT", iotag);
|
|
|
|
setfile(L, stderr, "_STDERR", iotag);
|
1999-03-16 23:07:54 +03:00
|
|
|
/* close file when collected */
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushnumber(L, iotag);
|
|
|
|
lua_pushcclosure(L, gc_close, 1);
|
|
|
|
lua_settagmethod(L, iotag, "gc");
|
1999-04-05 23:47:05 +04:00
|
|
|
}
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void lua_iolibopen (lua_State *L) {
|
1999-11-22 20:39:51 +03:00
|
|
|
luaL_openl(L, iolib);
|
1999-11-22 16:12:07 +03:00
|
|
|
openwithtags(L);
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
1998-12-27 23:21:28 +03:00
|
|
|
|