1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2000-08-28 21:57:04 +04:00
|
|
|
** $Id: liolib.c,v 1.71 2000/08/22 17:47:17 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>
|
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"
|
2000-06-12 17:52:05 +04:00
|
|
|
|
|
|
|
#include "lauxlib.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
|
2000-06-20 21:13:21 +04:00
|
|
|
#include <errno.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
#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
|
2000-06-20 21:13:21 +04:00
|
|
|
#define strerror(e) "generic I/O error"
|
|
|
|
#define errno (-1)
|
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
|
|
|
|
1997-11-27 18:59:44 +03:00
|
|
|
|
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
|
|
|
|
2000-03-20 22:13:45 +03:00
|
|
|
#define INFILE 0
|
|
|
|
#define OUTFILE 1
|
|
|
|
|
|
|
|
typedef struct IOCtrl {
|
2000-08-22 21:47:17 +04:00
|
|
|
int ref[2]; /* ref for strings _INPUT/_OUTPUT */
|
2000-03-20 22:13:45 +03:00
|
|
|
int iotag; /* tag for file handles */
|
|
|
|
int closedtag; /* tag for closed handles */
|
|
|
|
} IOCtrl;
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-08-22 21:47:17 +04:00
|
|
|
static const char *const filenames[] = {"_INPUT", "_OUTPUT"};
|
2000-03-20 22:13:45 +03:00
|
|
|
|
1998-12-27 23:21:28 +03:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int pushresult (lua_State *L, int i) {
|
|
|
|
if (i) {
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushuserdata(L, NULL);
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
|
|
|
}
|
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);
|
2000-08-28 21:57:04 +04:00
|
|
|
return 3;;
|
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
|
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static FILE *gethandle (lua_State *L, IOCtrl *ctrl, int f) {
|
|
|
|
void *p = lua_touserdata(L, f);
|
2000-08-22 21:47:17 +04:00
|
|
|
if (p != NULL) { /* is `f' a userdata ? */
|
2000-02-08 19:39:42 +03:00
|
|
|
int ftag = lua_tag(L, f);
|
2000-08-22 21:47:17 +04:00
|
|
|
if (ftag == ctrl->iotag) /* does it have the correct tag? */
|
|
|
|
return (FILE *)p;
|
2000-03-20 22:13:45 +03:00
|
|
|
else if (ftag == ctrl->closedtag)
|
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
|
|
|
|
2000-03-20 22:13:45 +03:00
|
|
|
static FILE *getnonullfile (lua_State *L, IOCtrl *ctrl, int arg) {
|
2000-08-28 21:57:04 +04:00
|
|
|
FILE *f = gethandle(L, ctrl, arg);
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_arg_check(L, f, arg, "invalid file handle");
|
1999-03-16 23:07:54 +03:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-22 21:47:17 +04:00
|
|
|
static FILE *getfilebyref (lua_State *L, IOCtrl *ctrl, int inout) {
|
|
|
|
FILE *f;
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_getglobals(L);
|
|
|
|
lua_getref(L, ctrl->ref[inout]);
|
|
|
|
lua_rawget(L);
|
|
|
|
f = gethandle(L, ctrl, -1);
|
|
|
|
lua_settop(L, -1); /* remove global */
|
2000-08-22 21:47:17 +04:00
|
|
|
if (f == NULL)
|
|
|
|
luaL_verror(L, "global variable `%.10s' is not a file handle",
|
|
|
|
filenames[inout]);
|
|
|
|
return f;
|
1997-10-30 23:29:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-20 22:13:45 +03:00
|
|
|
static void setfilebyname (lua_State *L, IOCtrl *ctrl, FILE *f,
|
|
|
|
const char *name) {
|
|
|
|
lua_pushusertag(L, f, ctrl->iotag);
|
|
|
|
lua_setglobal(L, name);
|
1998-11-20 18:41:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-22 21:47:17 +04:00
|
|
|
#define setfile(L,ctrl,f,inout) (setfilebyname(L,ctrl,f,filenames[inout]))
|
1999-03-16 23:07:54 +03:00
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int setreturn (lua_State *L, IOCtrl *ctrl, FILE *f, int inout) {
|
2000-03-20 22:13:45 +03:00
|
|
|
if (f == NULL)
|
2000-08-28 21:57:04 +04:00
|
|
|
return pushresult(L, 0);
|
2000-03-20 22:13:45 +03:00
|
|
|
else {
|
|
|
|
setfile(L, ctrl, f, inout);
|
|
|
|
lua_pushusertag(L, f, ctrl->iotag);
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
1999-04-05 23:47:05 +04:00
|
|
|
}
|
1999-03-26 16:48:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-20 22:13:45 +03:00
|
|
|
static int closefile (lua_State *L, IOCtrl *ctrl, FILE *f) {
|
2000-05-30 22:55:16 +04:00
|
|
|
if (f == stdin || f == stdout || f == stderr)
|
2000-03-20 22:13:45 +03:00
|
|
|
return 1;
|
|
|
|
else {
|
|
|
|
lua_pushusertag(L, f, ctrl->iotag);
|
|
|
|
lua_settag(L, ctrl->closedtag);
|
|
|
|
return (CLOSEFILE(L, f) == 0);
|
|
|
|
}
|
1995-10-04 16:53:10 +03:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_close (lua_State *L) {
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
|
|
|
return pushresult(L, closefile(L, ctrl, getnonullfile(L, ctrl, 2)));
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int file_collect (lua_State *L) {
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
|
|
|
if (ctrl == (IOCtrl *)lua_touserdata(L, 2)) {
|
2000-08-22 21:47:17 +04:00
|
|
|
/* collectig `ctrl' itself */
|
|
|
|
lua_unref(L, ctrl->ref[INFILE]);
|
|
|
|
lua_unref(L, ctrl->ref[OUTFILE]);
|
|
|
|
free(ctrl);
|
|
|
|
}
|
|
|
|
else { /* collecting a file: Close it */
|
|
|
|
FILE *f = getnonullfile(L, ctrl, 2);
|
|
|
|
if (f != stdin && f != stdout && f != stderr)
|
|
|
|
CLOSEFILE(L, f);
|
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
return 0;
|
2000-05-30 22:55:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_open (lua_State *L) {
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
2000-03-20 22:13:45 +03:00
|
|
|
FILE *f = fopen(luaL_check_string(L, 2), luaL_check_string(L, 3));
|
2000-08-28 21:57:04 +04:00
|
|
|
if (f) {
|
|
|
|
lua_pushusertag(L, f, ctrl->iotag);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return pushresult(L, 0);
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
2000-03-20 22:13:45 +03:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_fromto (lua_State *L, int inout, const char *mode) {
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
1997-06-27 00:39:10 +04:00
|
|
|
FILE *current;
|
2000-08-28 21:57:04 +04:00
|
|
|
if (lua_isnull(L, 2)) {
|
2000-08-22 21:47:17 +04:00
|
|
|
closefile(L, ctrl, getfilebyref(L, ctrl, inout));
|
|
|
|
current = (inout == 0) ? stdin : stdout;
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
else if (lua_tag(L, 2) == ctrl->iotag) /* deprecated option */
|
|
|
|
current = (FILE *)lua_touserdata(L, 2);
|
1996-11-01 20:03:36 +03:00
|
|
|
else {
|
2000-03-20 22:13:45 +03:00
|
|
|
const char *s = luaL_check_string(L, 2);
|
|
|
|
current = (*s == '|') ? popen(s+1, mode) : fopen(s, mode);
|
1996-11-01 20:03:36 +03:00
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
return setreturn(L, ctrl, current, inout);
|
2000-03-20 22:13:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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) {
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
2000-03-20 22:13:45 +03:00
|
|
|
FILE *current = fopen(luaL_check_string(L, 2), "a");
|
2000-08-28 21:57:04 +04:00
|
|
|
return setreturn(L, ctrl, current, OUTFILE);
|
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
|
|
|
|
2000-04-25 01:05:11 +04:00
|
|
|
#ifdef LUA_COMPAT_READPATTERN
|
1999-10-07 23:18:36 +04:00
|
|
|
|
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;
|
2000-05-24 17:54:49 +04:00
|
|
|
for (;;) {
|
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);
|
2000-05-24 17:54:49 +04:00
|
|
|
if (b[n-1] != '\n')
|
|
|
|
luaL_addsize(L, n);
|
|
|
|
else {
|
|
|
|
luaL_addsize(L, n-1); /* do not add the `\n' */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
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) {
|
2000-05-24 17:54:49 +04:00
|
|
|
size_t n;
|
1998-12-27 23:21:28 +03:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-24 17:54:49 +04:00
|
|
|
static int read_chars (lua_State *L, FILE *f, size_t n) {
|
1999-11-22 16:12:07 +03:00
|
|
|
char *b = luaL_openspace(L, n);
|
2000-05-24 17:54:49 +04:00
|
|
|
size_t 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_read (lua_State *L) {
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
|
|
|
int lastarg = lua_gettop(L);
|
|
|
|
int firstarg = 2;
|
|
|
|
FILE *f = gethandle(L, ctrl, firstarg);
|
|
|
|
int n = 0;
|
|
|
|
if (f) firstarg++;
|
2000-08-22 21:47:17 +04:00
|
|
|
else f = getfilebyref(L, ctrl, INFILE); /* get _INPUT */
|
1999-10-07 23:18:36 +04:00
|
|
|
do { /* repeat for each part */
|
2000-05-24 17:54:49 +04:00
|
|
|
size_t l;
|
1998-12-27 23:21:28 +03:00
|
|
|
int success;
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_resetbuffer(L);
|
2000-08-28 21:57:04 +04:00
|
|
|
if (lua_isnumber(L, firstarg+n))
|
|
|
|
success = read_chars(L, f, (size_t)lua_tonumber(L, firstarg+n));
|
1999-10-07 23:18:36 +04:00
|
|
|
else {
|
2000-08-28 21:57:04 +04:00
|
|
|
const char *p = luaL_opt_string(L, firstarg+n, "*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 */
|
2000-08-28 21:57:04 +04:00
|
|
|
if (!read_number(L, f)) return n; /* read fails */
|
|
|
|
n++;
|
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:
|
2000-08-28 21:57:04 +04:00
|
|
|
luaL_argerror(L, firstarg+n, "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);
|
2000-08-28 21:57:04 +04:00
|
|
|
if (!success && l==0) return n; /* read fails */
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushlstring(L, luaL_buffer(L), l);
|
2000-08-28 21:57:04 +04:00
|
|
|
n++;
|
|
|
|
} while (firstarg+n <= lastarg);
|
|
|
|
return n;
|
1995-11-10 20:55:48 +03:00
|
|
|
}
|
|
|
|
|
1999-01-04 15:41:12 +03:00
|
|
|
/* }====================================================== */
|
|
|
|
|
1995-11-10 20:55:48 +03:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_write (lua_State *L) {
|
|
|
|
int lastarg = lua_gettop(L);
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
2000-03-20 22:13:45 +03:00
|
|
|
int arg = 2;
|
1996-11-01 20:03:36 +03:00
|
|
|
int status = 1;
|
2000-08-28 21:57:04 +04:00
|
|
|
FILE *f = gethandle(L, ctrl, arg);
|
2000-08-22 21:47:17 +04:00
|
|
|
if (f) arg++;
|
|
|
|
else f = getfilebyref(L, ctrl, OUTFILE); /* get _OUTPUT */
|
2000-08-28 21:57:04 +04:00
|
|
|
for (; arg <= lastarg; arg++) {
|
|
|
|
if (lua_type(L, arg)[2] == 'm') { /* nuMber? */ /* LUA_NUMBER */
|
1999-12-28 14:52:49 +03:00
|
|
|
/* optimization: could be done exactly as for strings */
|
2000-08-28 21:57:04 +04:00
|
|
|
status = status && fprintf(f, "%.16g", 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;
|
1999-12-28 14:52:49 +03:00
|
|
|
const char *s = luaL_check_lstr(L, arg, &l);
|
2000-05-24 17:54:49 +04:00
|
|
|
status = status && (fwrite(s, sizeof(char), l, f) == l);
|
1999-10-07 23:18:36 +04:00
|
|
|
}
|
|
|
|
}
|
1999-11-22 16:12:07 +03:00
|
|
|
pushresult(L, status);
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03: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};
|
2000-08-28 21:57:04 +04:00
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
2000-03-20 22:13:45 +03:00
|
|
|
FILE *f = getnonullfile(L, ctrl, 2);
|
|
|
|
int op = luaL_findstring(luaL_opt_string(L, 3, "cur"), modenames);
|
|
|
|
long offset = luaL_opt_long(L, 4, 0);
|
|
|
|
luaL_arg_check(L, op != -1, 3, "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 {
|
1999-11-22 16:12:07 +03:00
|
|
|
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) {
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)lua_touserdata(L, 1);
|
|
|
|
FILE *f = gethandle(L, ctrl, 2);
|
|
|
|
luaL_arg_check(L, f || lua_isnull(L, 2), 2, "invalid file handle");
|
|
|
|
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) {
|
1999-11-22 16:12:07 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03: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
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +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),
|
1999-11-22 16:12:07 +03:00
|
|
|
luaL_check_string(L, 2)) == 0);
|
1996-03-14 18:55:18 +03:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_tmpname (lua_State *L) {
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushstring(L, tmpnam(NULL));
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
1996-02-09 22:02:30 +03:00
|
|
|
|
1994-08-12 03:11:57 +04:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_getenv (lua_State *L) {
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushstring(L, getenv(luaL_check_string(L, 1))); /* if NULL push nil */
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
1994-08-12 03:11:57 +04:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_clock (lua_State *L) {
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushnumber(L, ((double)clock())/CLOCKS_PER_SEC);
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
1998-05-21 02:21:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int 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");
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
1994-10-19 20:02:20 +03:00
|
|
|
}
|
1997-07-01 23:32:41 +04:00
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int 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)));
|
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
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_exit (lua_State *L) {
|
1999-11-22 16:12:07 +03:00
|
|
|
exit(luaL_opt_int(L, 1, EXIT_SUCCESS));
|
2000-08-28 21:57:04 +04:00
|
|
|
return 0; /* to avoid warnings */
|
1994-08-12 03:11:57 +04:00
|
|
|
}
|
|
|
|
|
1999-01-04 15:41:12 +03:00
|
|
|
/* }====================================================== */
|
|
|
|
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int 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)
|
2000-08-28 21:57:04 +04:00
|
|
|
return 0;
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_dostring(L, buffer);
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_settop(L, 0); /* remove eventual returns */
|
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
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int 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-03-30 21:19:48 +04:00
|
|
|
lua_Debug ar;
|
2000-08-28 21:57:04 +04:00
|
|
|
sprintf(buff, "error: %.200s\n", lua_tostring(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-22 19:24:13 +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-08-28 21:57:04 +04:00
|
|
|
lua_getglobals(L);
|
2000-05-26 23:17:57 +04:00
|
|
|
lua_pushstring(L, LUA_ALERT);
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_rawget(L);
|
|
|
|
if (lua_isfunction(L, -1)) { /* avoid loop if _ALERT is not defined */
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushstring(L, buff);
|
2000-08-28 21:57:04 +04:00
|
|
|
lua_call(L, 1, 0);
|
1999-02-22 17:17:24 +03:00
|
|
|
}
|
2000-08-28 21:57:04 +04:00
|
|
|
return 0;
|
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[] = {
|
2000-05-09 18:50:16 +04:00
|
|
|
{LUA_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
|
|
|
|
2000-03-20 22:13:45 +03:00
|
|
|
static void openwithcontrol (lua_State *L) {
|
|
|
|
IOCtrl *ctrl = (IOCtrl *)malloc(sizeof(IOCtrl));
|
1999-11-09 20:59:35 +03:00
|
|
|
unsigned int i;
|
2000-03-20 22:13:45 +03:00
|
|
|
int ctrltag = lua_newtag(L);
|
|
|
|
ctrl->iotag = lua_newtag(L);
|
|
|
|
ctrl->closedtag = lua_newtag(L);
|
1999-04-05 23:47:05 +04:00
|
|
|
for (i=0; i<sizeof(iolibtag)/sizeof(iolibtag[0]); i++) {
|
2000-03-20 22:13:45 +03:00
|
|
|
/* put `ctrl' as upvalue for these functions */
|
|
|
|
lua_pushusertag(L, ctrl, ctrltag);
|
1999-11-22 16:12:07 +03:00
|
|
|
lua_pushcclosure(L, iolibtag[i].func, 1);
|
|
|
|
lua_setglobal(L, iolibtag[i].name);
|
1999-04-05 23:47:05 +04:00
|
|
|
}
|
2000-08-22 21:47:17 +04:00
|
|
|
/* create references to variable names */
|
|
|
|
lua_pushstring(L, filenames[INFILE]);
|
|
|
|
ctrl->ref[INFILE] = lua_ref(L, 1);
|
|
|
|
lua_pushstring(L, filenames[OUTFILE]);
|
|
|
|
ctrl->ref[OUTFILE] = lua_ref(L, 1);
|
1999-03-16 23:07:54 +03:00
|
|
|
/* predefined file handles */
|
2000-03-20 22:13:45 +03:00
|
|
|
setfile(L, ctrl, stdin, INFILE);
|
|
|
|
setfile(L, ctrl, stdout, OUTFILE);
|
|
|
|
setfilebyname(L, ctrl, stdin, "_STDIN");
|
|
|
|
setfilebyname(L, ctrl, stdout, "_STDOUT");
|
|
|
|
setfilebyname(L, ctrl, stderr, "_STDERR");
|
|
|
|
/* delete `ctrl' when collected */
|
|
|
|
lua_pushusertag(L, ctrl, ctrltag);
|
2000-08-22 21:47:17 +04:00
|
|
|
lua_pushcclosure(L, file_collect, 1);
|
2000-03-20 22:13:45 +03:00
|
|
|
lua_settagmethod(L, ctrltag, "gc");
|
2000-05-30 22:55:16 +04:00
|
|
|
/* close files when collected */
|
2000-08-22 21:47:17 +04:00
|
|
|
lua_copytagmethods(L, ctrl->iotag, ctrltag);
|
1999-04-05 23:47:05 +04:00
|
|
|
}
|
|
|
|
|
2000-08-22 21:47:17 +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);
|
2000-03-20 22:13:45 +03:00
|
|
|
openwithcontrol(L);
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
1998-12-27 23:21:28 +03:00
|
|
|
|