summaryrefslogtreecommitdiff
path: root/src/lib/liolib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/liolib.c')
-rw-r--r--src/lib/liolib.c553
1 files changed, 344 insertions, 209 deletions
diff --git a/src/lib/liolib.c b/src/lib/liolib.c
index 15ea6587..d833cec5 100644
--- a/src/lib/liolib.c
+++ b/src/lib/liolib.c
@@ -1,5 +1,5 @@
/*
-** $Id: liolib.c,v 1.21 1998/06/18 17:04:28 roberto Exp $
+** $Id: liolib.c,v 1.41 1999/06/23 13:48:39 roberto Exp $
** Standard I/O (and system) library
** See Copyright Notice in lua.h
*/
@@ -20,6 +20,7 @@
#ifndef OLD_ANSI
#include <locale.h>
#else
+/* no support for locale and for strerror: fake them */
#define setlocale(a,b) 0
#define LC_ALL 0
#define LC_COLLATE 0
@@ -31,10 +32,12 @@
#endif
-#define CLOSEDTAG 2
-#define IOTAG 1
+#define IOTAG 1
+
+#define FIRSTARG 2 /* 1st is upvalue */
+
+#define CLOSEDTAG(tag) ((tag)-1) /* assume that CLOSEDTAG = iotag-1 */
-#define FIRSTARG 3 /* 1st and 2nd are upvalues */
#define FINPUT "_INPUT"
#define FOUTPUT "_OUTPUT"
@@ -43,262 +46,371 @@
#ifdef POPEN
FILE *popen();
int pclose();
+#define CLOSEFILE(f) {if (pclose(f) == -1) fclose(f);}
#else
+/* no support for popen */
#define popen(x,y) NULL /* that is, popen always fails */
-#define pclose(x) (-1)
+#define CLOSEFILE(f) {fclose(f);}
#endif
-static int gettag (int i)
-{
- return lua_getnumber(lua_getparam(i));
-}
-
-static void pushresult (int i)
-{
+static void pushresult (int i) {
if (i)
lua_pushuserdata(NULL);
else {
lua_pushnil();
lua_pushstring(strerror(errno));
+ lua_pushnumber(errno);
}
}
-static int ishandler (lua_Object f)
-{
+/*
+** {======================================================
+** FILE Operations
+** =======================================================
+*/
+
+static int gettag (void) {
+ return (int)lua_getnumber(lua_getparam(IOTAG));
+}
+
+
+static int ishandle (lua_Object f) {
if (lua_isuserdata(f)) {
- if (lua_tag(f) == gettag(CLOSEDTAG))
+ int tag = gettag();
+ if (lua_tag(f) == CLOSEDTAG(tag))
lua_error("cannot access a closed file");
- return lua_tag(f) == gettag(IOTAG);
+ return lua_tag(f) == tag;
}
else return 0;
}
-static FILE *getfile (char *name)
-{
+
+static FILE *getfilebyname (char *name) {
lua_Object f = lua_getglobal(name);
- if (!ishandler(f))
+ if (!ishandle(f))
luaL_verror("global variable `%.50s' is not a file handle", name);
return lua_getuserdata(f);
}
-static FILE *getfileparam (char *name, int *arg)
-{
- lua_Object f = lua_getparam(*arg);
- if (ishandler(f)) {
+static FILE *getfile (int arg) {
+ lua_Object f = lua_getparam(arg);
+ return (ishandle(f)) ? lua_getuserdata(f) : NULL;
+}
+
+
+static FILE *getnonullfile (int arg) {
+ FILE *f = getfile(arg);
+ luaL_arg_check(f, arg, "invalid file handle");
+ return f;
+}
+
+
+static FILE *getfileparam (char *name, int *arg) {
+ FILE *f = getfile(*arg);
+ if (f) {
(*arg)++;
- return lua_getuserdata(f);
+ return f;
}
else
- return getfile(name);
+ return getfilebyname(name);
+}
+
+
+static void closefile (FILE *f) {
+ if (f != stdin && f != stdout) {
+ int tag = gettag();
+ CLOSEFILE(f);
+ lua_pushusertag(f, tag);
+ lua_settag(CLOSEDTAG(tag));
+ }
+}
+
+
+static void io_close (void) {
+ closefile(getnonullfile(FIRSTARG));
+}
+
+
+static void gc_close (void) {
+ FILE *f = getnonullfile(FIRSTARG);
+ if (f != stdin && f != stdout && f != stderr) {
+ CLOSEFILE(f);
+ }
}
-static void closefile (char *name)
-{
- FILE *f = getfile(name);
- if (f == stdin || f == stdout) return;
- if (pclose(f) == -1)
- fclose(f);
- lua_pushobject(lua_getglobal(name));
- lua_settag(gettag(CLOSEDTAG));
+static void io_open (void) {
+ FILE *f = fopen(luaL_check_string(FIRSTARG), luaL_check_string(FIRSTARG+1));
+ if (f) lua_pushusertag(f, gettag());
+ else pushresult(0);
}
-static void setfile (FILE *f, char *name, int tag)
-{
+static void setfile (FILE *f, char *name, int tag) {
lua_pushusertag(f, tag);
lua_setglobal(name);
}
-static void setreturn (FILE *f, char *name)
-{
- int tag = gettag(IOTAG);
- setfile(f, name, tag);
- lua_pushusertag(f, tag);
+static void setreturn (FILE *f, char *name) {
+ if (f == NULL)
+ pushresult(0);
+ else {
+ int tag = gettag();
+ setfile(f, name, tag);
+ lua_pushusertag(f, tag);
+ }
}
-static void io_readfrom (void)
-{
+static void io_readfrom (void) {
FILE *current;
lua_Object f = lua_getparam(FIRSTARG);
if (f == LUA_NOOBJECT) {
- closefile(FINPUT);
+ closefile(getfilebyname(FINPUT));
current = stdin;
}
- else if (lua_tag(f) == gettag(IOTAG))
+ else if (lua_tag(f) == gettag()) /* deprecated option */
current = lua_getuserdata(f);
else {
char *s = luaL_check_string(FIRSTARG);
current = (*s == '|') ? popen(s+1, "r") : fopen(s, "r");
- if (current == NULL) {
- pushresult(0);
- return;
- }
}
setreturn(current, FINPUT);
}
-static void io_writeto (void)
-{
+static void io_writeto (void) {
FILE *current;
lua_Object f = lua_getparam(FIRSTARG);
if (f == LUA_NOOBJECT) {
- closefile(FOUTPUT);
+ closefile(getfilebyname(FOUTPUT));
current = stdout;
}
- else if (lua_tag(f) == gettag(IOTAG))
+ else if (lua_tag(f) == gettag()) /* deprecated option */
current = lua_getuserdata(f);
else {
char *s = luaL_check_string(FIRSTARG);
- current = (*s == '|') ? popen(s+1,"w") : fopen(s,"w");
- if (current == NULL) {
- pushresult(0);
- return;
- }
+ current = (*s == '|') ? popen(s+1,"w") : fopen(s, "w");
}
setreturn(current, FOUTPUT);
}
-static void io_appendto (void)
-{
- char *s = luaL_check_string(FIRSTARG);
- FILE *fp = fopen (s, "a");
- if (fp != NULL)
- setreturn(fp, FOUTPUT);
- else
- pushresult(0);
+static void io_appendto (void) {
+ FILE *current = fopen(luaL_check_string(FIRSTARG), "a");
+ setreturn(current, FOUTPUT);
}
+
+/*
+** {======================================================
+** READ
+** =======================================================
+*/
+
+
+/*
+** 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 */
-static void read_until (FILE *f, int lim) {
- int l = 0;
- int c;
- for (c = getc(f); c != EOF && c != lim; c = getc(f)) {
- luaL_addchar(c);
- l++;
+static int read_pattern (FILE *f, char *p) {
+ int inskip = 0; /* {skip} level */
+ int c = NEED_OTHER;
+ while (*p != '\0') {
+ switch (*p) {
+ case '{':
+ inskip++;
+ p++;
+ continue;
+ case '}':
+ if (!inskip) lua_error("unbalanced braces in read pattern");
+ inskip--;
+ p++;
+ continue;
+ default: {
+ char *ep = luaI_classend(p); /* get what is next */
+ int m; /* match result */
+ if (c == NEED_OTHER) c = getc(f);
+ m = (c==EOF) ? 0 : luaI_singlematch(c, p, ep);
+ if (m) {
+ if (!inskip) luaL_addchar(c);
+ c = NEED_OTHER;
+ }
+ switch (*ep) {
+ 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);
+ if (m && !inskip) luaL_addchar(c);
+ }
+ /* go through to continue reading the pattern */
+ case '?': /* optional */
+ p = ep+1; /* continues reading the pattern */
+ continue;
+ default:
+ if (!m) goto break_while; /* pattern fails? */
+ p = ep; /* else continues reading the pattern */
+ }
+ }
+ }
+ } break_while:
+ if (c != NEED_OTHER) ungetc(c, f);
+ return (*p == '\0');
+}
+
+
+static int read_number (FILE *f) {
+ double d;
+ if (fscanf(f, "%lf", &d) == 1) {
+ lua_pushnumber(d);
+ return 1;
}
- if (l > 0 || c == lim) /* read anything? */
- lua_pushlstring(luaL_buffer(), l);
+ else return 0; /* read fails */
+}
+
+
+#define HUNK_LINE 1024
+#define HUNK_FILE BUFSIZ
+
+static int read_line (FILE *f) {
+ /* equivalent to: return read_pattern(f, "[^\n]*{\n}"); */
+ int n;
+ char *b;
+ do {
+ b = luaL_openspace(HUNK_LINE);
+ if (!fgets(b, HUNK_LINE, f)) return 0; /* read fails */
+ n = strlen(b);
+ luaL_addsize(n);
+ } while (b[n-1] != '\n');
+ luaL_addsize(-1); /* remove '\n' */
+ return 1;
+}
+
+
+static void read_file (FILE *f) {
+ /* equivalent to: return read_pattern(f, ".*"); */
+ int n;
+ do {
+ char *b = luaL_openspace(HUNK_FILE);
+ n = fread(b, sizeof(char), HUNK_FILE, f);
+ luaL_addsize(n);
+ } while (n==HUNK_FILE);
}
+
static void io_read (void) {
+ static char *options[] = {"*n", "*l", "*a", ".*", "*w", NULL};
int arg = FIRSTARG;
FILE *f = getfileparam(FINPUT, &arg);
- char *p = luaL_opt_string(arg, NULL);
- luaL_resetbuffer();
- if (p == NULL) /* default: read a line */
- read_until(f, '\n');
- else if (p[0] == '.' && p[1] == '*' && p[2] == 0) /* p = ".*" */
- read_until(f, EOF);
- else {
- int l = 0; /* number of chars read in buffer */
- int inskip = 0; /* to control {skips} */
- int c = NEED_OTHER;
- while (*p) {
- switch (*p) {
- case '{':
- inskip++;
- p++;
- continue;
- case '}':
- if (inskip == 0)
- lua_error("unbalanced braces in read pattern");
- inskip--;
- p++;
- continue;
- default: {
- char *ep; /* get what is next */
- int m; /* match result */
- if (c == NEED_OTHER) c = getc(f);
- if (c == EOF) {
- luaI_singlematch(0, p, &ep); /* to set "ep" */
- m = 0;
- }
- else {
- m = luaI_singlematch(c, p, &ep);
- if (m) {
- if (inskip == 0) {
- luaL_addchar(c);
- l++;
- }
- c = NEED_OTHER;
- }
- }
- switch (*ep) {
- case '*': /* repetition */
- if (!m) p = ep+1; /* else stay in (repeat) the same item */
- continue;
- case '?': /* optional */
- p = ep+1; /* continues reading the pattern */
- continue;
- default:
- if (m) p = ep; /* continues reading the pattern */
- else
- goto break_while; /* pattern fails */
- }
- }
- }
- } break_while:
- if (c >= 0) /* not EOF nor NEED_OTHER? */
- ungetc(c, f);
- if (l > 0 || *p == 0) /* read something or did not fail? */
- lua_pushlstring(luaL_buffer(), l);
- }
+ char *p = luaL_opt_string(arg++, "*l");
+ do { /* repeat for each part */
+ long l;
+ int success;
+ luaL_resetbuffer();
+ switch (luaL_findstring(p, options)) {
+ case 0: /* number */
+ if (!read_number(f)) return; /* read fails */
+ continue; /* number is already pushed; avoid the "pushstring" */
+ case 1: /* line */
+ success = read_line(f);
+ break;
+ case 2: case 3: /* file */
+ read_file(f);
+ success = 1; /* always success */
+ break;
+ case 4: /* word */
+ success = read_pattern(f, "{%s*}%S+");
+ break;
+ default:
+ success = read_pattern(f, p);
+ }
+ l = luaL_getsize();
+ if (!success && l==0) return; /* read fails */
+ lua_pushlstring(luaL_buffer(), l);
+ } while ((p = luaL_opt_string(arg++, NULL)) != NULL);
}
+/* }====================================================== */
+
-static void io_write (void)
-{
+static void io_write (void) {
int arg = FIRSTARG;
FILE *f = getfileparam(FOUTPUT, &arg);
int status = 1;
char *s;
long l;
while ((s = luaL_opt_lstr(arg++, NULL, &l)) != NULL)
- status = status && (fwrite(s, 1, l, f) == l);
+ status = status && ((long)fwrite(s, 1, l, f) == l);
pushresult(status);
}
-static void io_execute (void)
-{
+static void io_seek (void) {
+ static int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END};
+ static char *modenames[] = {"set", "cur", "end", NULL};
+ FILE *f = getnonullfile(FIRSTARG);
+ int op = luaL_findstring(luaL_opt_string(FIRSTARG+1, "cur"), modenames);
+ long offset = luaL_opt_long(FIRSTARG+2, 0);
+ luaL_arg_check(op != -1, FIRSTARG+1, "invalid mode");
+ op = fseek(f, offset, mode[op]);
+ if (op)
+ pushresult(0); /* error */
+ else
+ lua_pushnumber(ftell(f));
+}
+
+
+static void io_flush (void) {
+ FILE *f = getfile(FIRSTARG);
+ luaL_arg_check(f || lua_getparam(FIRSTARG) == LUA_NOOBJECT, FIRSTARG,
+ "invalid file handle");
+ pushresult(fflush(f) == 0);
+}
+
+/* }====================================================== */
+
+
+/*
+** {======================================================
+** Other O.S. Operations
+** =======================================================
+*/
+
+static void io_execute (void) {
lua_pushnumber(system(luaL_check_string(1)));
}
-static void io_remove (void)
-{
+static void io_remove (void) {
pushresult(remove(luaL_check_string(1)) == 0);
}
-static void io_rename (void)
-{
+static void io_rename (void) {
pushresult(rename(luaL_check_string(1),
luaL_check_string(2)) == 0);
}
-static void io_tmpname (void)
-{
+static void io_tmpname (void) {
lua_pushstring(tmpnam(NULL));
}
-static void io_getenv (void)
-{
+static void io_getenv (void) {
lua_pushstring(getenv(luaL_check_string(1))); /* if NULL push nil */
}
@@ -308,12 +420,11 @@ static void io_clock (void) {
}
-static void io_date (void)
-{
- time_t t;
- struct tm *tm;
+static void io_date (void) {
+ char b[256];
char *s = luaL_opt_string(1, "%c");
- char b[BUFSIZ];
+ struct tm *tm;
+ time_t t;
time(&t); tm = localtime(&t);
if (strftime(b,sizeof(b),s,tm))
lua_pushstring(b);
@@ -322,8 +433,7 @@ static void io_date (void)
}
-static void setloc (void)
-{
+static void setloc (void) {
static int cat[] = {LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC,
LC_TIME};
static char *catnames[] = {"all", "collate", "ctype", "monetary",
@@ -334,115 +444,140 @@ static void setloc (void)
}
-static void io_exit (void)
-{
+static void io_exit (void) {
lua_Object o = lua_getparam(1);
exit(lua_isnumber(o) ? (int)lua_getnumber(o) : 1);
}
+/* }====================================================== */
+
+
-static void io_debug (void)
-{
- while (1) {
+static void io_debug (void) {
+ for (;;) {
char buffer[250];
fprintf(stderr, "lua_debug> ");
- if (fgets(buffer, sizeof(buffer), stdin) == 0) return;
- if (strcmp(buffer, "cont\n") == 0) return;
+ if (fgets(buffer, sizeof(buffer), stdin) == 0 ||
+ strcmp(buffer, "cont\n") == 0)
+ return;
lua_dostring(buffer);
}
}
-static void lua_printstack (FILE *f)
-{
+
+#define MESSAGESIZE 150
+#define MAXMESSAGE (MESSAGESIZE*10)
+
+
+#define MAXSRC 60
+
+
+static void errorfb (void) {
+ char buff[MAXMESSAGE];
int level = 1; /* skip level 0 (it's this function) */
lua_Object func;
+ sprintf(buff, "lua error: %.200s\n", lua_getstring(lua_getparam(1)));
while ((func = lua_stackedfunction(level++)) != LUA_NOOBJECT) {
char *name;
int currentline;
- char *filename;
+ char *chunkname;
+ char buffchunk[MAXSRC];
int linedefined;
- lua_funcinfo(func, &filename, &linedefined);
- fprintf(f, (level==2) ? "Active Stack:\n\t" : "\t");
+ lua_funcinfo(func, &chunkname, &linedefined);
+ luaL_chunkid(buffchunk, chunkname, sizeof(buffchunk));
+ if (level == 2) strcat(buff, "Active Stack:\n");
+ strcat(buff, " ");
+ if (strlen(buff) > MAXMESSAGE-MESSAGESIZE) {
+ strcat(buff, "...\n");
+ break; /* buffer is full */
+ }
switch (*lua_getobjname(func, &name)) {
case 'g':
- fprintf(f, "function %s", name);
+ sprintf(buff+strlen(buff), "function `%.50s'", name);
break;
case 't':
- fprintf(f, "`%s' tag method", name);
+ sprintf(buff+strlen(buff), "`%.50s' tag method", name);
break;
default: {
if (linedefined == 0)
- fprintf(f, "main of %s", filename);
+ sprintf(buff+strlen(buff), "main of %.70s", buffchunk);
else if (linedefined < 0)
- fprintf(f, "%s", filename);
+ sprintf(buff+strlen(buff), "%.70s", buffchunk);
else
- fprintf(f, "function (%s:%d)", filename, linedefined);
- filename = NULL;
+ sprintf(buff+strlen(buff), "function <%d:%.70s>",
+ linedefined, buffchunk);
+ chunkname = NULL;
}
}
if ((currentline = lua_currentline(func)) > 0)
- fprintf(f, " at line %d", currentline);
- if (filename)
- fprintf(f, " [in file %s]", filename);
- fprintf(f, "\n");
+ sprintf(buff+strlen(buff), " at line %d", currentline);
+ if (chunkname)
+ sprintf(buff+strlen(buff), " [%.70s]", buffchunk);
+ strcat(buff, "\n");
+ }
+ func = lua_rawgetglobal("_ALERT");
+ if (lua_isfunction(func)) { /* avoid error loop if _ALERT is not defined */
+ lua_pushstring(buff);
+ lua_callfunction(func);
}
-}
-
-
-static void errorfb (void)
-{
- fprintf(stderr, "lua: %s\n", lua_getstring(lua_getparam(1)));
- lua_printstack(stderr);
}
static struct luaL_reg iolib[] = {
-{"setlocale", setloc},
-{"execute", io_execute},
-{"remove", io_remove},
-{"rename", io_rename},
-{"tmpname", io_tmpname},
-{"getenv", io_getenv},
-{"date", io_date},
-{"clock", io_clock},
-{"exit", io_exit},
-{"debug", io_debug},
-{"print_stack", errorfb}
+ {"_ERRORMESSAGE", errorfb},
+ {"clock", io_clock},
+ {"date", io_date},
+ {"debug", io_debug},
+ {"execute", io_execute},
+ {"exit", io_exit},
+ {"getenv", io_getenv},
+ {"remove", io_remove},
+ {"rename", io_rename},
+ {"setlocale", setloc},
+ {"tmpname", io_tmpname}
};
+
static struct luaL_reg iolibtag[] = {
-{"readfrom", io_readfrom},
-{"writeto", io_writeto},
-{"appendto", io_appendto},
-{"read", io_read},
-{"write", io_write}
+ {"appendto", io_appendto},
+ {"closefile", io_close},
+ {"flush", io_flush},
+ {"openfile", io_open},
+ {"read", io_read},
+ {"readfrom", io_readfrom},
+ {"seek", io_seek},
+ {"write", io_write},
+ {"writeto", io_writeto}
};
-static void openwithtags (void)
-{
- int iotag = lua_newtag();
- int closedtag = lua_newtag();
+
+static void openwithtags (void) {
int i;
+ int iotag = lua_newtag();
+ lua_newtag(); /* alloc CLOSEDTAG: assume that CLOSEDTAG = iotag-1 */
for (i=0; i<sizeof(iolibtag)/sizeof(iolibtag[0]); i++) {
- /* put both tags as upvalues for these functions */
+ /* put iotag as upvalue for these functions */
lua_pushnumber(iotag);
- lua_pushnumber(closedtag);
- lua_pushcclosure(iolibtag[i].func, 2);
+ lua_pushcclosure(iolibtag[i].func, 1);
lua_setglobal(iolibtag[i].name);
}
+ /* predefined file handles */
setfile(stdin, FINPUT, iotag);
setfile(stdout, FOUTPUT, iotag);
setfile(stdin, "_STDIN", iotag);
setfile(stdout, "_STDOUT", iotag);
setfile(stderr, "_STDERR", iotag);
+ /* close file when collected */
+ lua_pushnumber(iotag);
+ lua_pushcclosure(gc_close, 1);
+ lua_settagmethod(iotag, "gc");
}
-void lua_iolibopen (void)
-{
+void lua_iolibopen (void) {
+ /* register lib functions */
luaL_openlib(iolib, (sizeof(iolib)/sizeof(iolib[0])));
openwithtags();
- lua_pushcfunction(errorfb);
- lua_seterrormethod();
}
+