123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692 |
- /*
- ** $Id: liolib.c,v 1.105 2001/02/09 16:25:50 roberto Exp roberto $
- ** Standard I/O (and system) library
- ** See Copyright Notice in lua.h
- */
- #include <ctype.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include "lua.h"
- #include "lauxlib.h"
- #include "luadebug.h"
- #include "lualib.h"
- #ifndef OLD_ANSI
- #include <errno.h>
- #include <locale.h>
- #endif
- #ifndef l_realloc
- #define l_malloc(s) malloc(s)
- #define l_realloc(b,os,s) realloc(b, s)
- #define l_free(b, os) free(b)
- #endif
- #ifdef POPEN
- /* 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
- #define NOFILE 2
- #define FILEHANDLE "FileHandle"
- static const char *const filenames[] = {"_INPUT", "_OUTPUT"};
- static int pushresult (lua_State *L, int i) {
- if (i) {
- lua_pushuserdata(L, NULL);
- return 1;
- }
- else {
- lua_pushnil(L);
- lua_pushstring(L, strerror(errno));
- lua_pushnumber(L, errno);
- return 3;
- }
- }
- /*
- ** {======================================================
- ** FILE Operations
- ** =======================================================
- */
- #define checkfile(L,f) (strcmp(lua_xtype(L,(f)), FILEHANDLE) == 0)
- static FILE *getopthandle (lua_State *L, int inout) {
- FILE *p = (FILE *)lua_touserdata(L, 1);
- if (p != NULL) { /* is it a userdata ? */
- if (!checkfile(L, 1)) {
- if (strcmp(lua_xtype(L, 1), "ClosedFileHandle") == 0)
- luaL_argerror(L, 1, "file is closed");
- else
- luaL_argerror(L, 1, "(invalid value)");
- }
- /* move it to stack top */
- lua_pushvalue(L, 1); lua_remove(L, 1);
- }
- else if (inout != NOFILE) { /* try global value */
- lua_getglobal(L, filenames[inout]);
- if (!checkfile(L,-1))
- luaL_verror(L, "global variable `%.10s' is not a valid file handle",
- filenames[inout]);
- p = (FILE *)lua_touserdata(L, -1);
- }
- return p; /* leave handle at stack top to avoid GC */
- }
- static void pushfile (lua_State *L, FILE *f) {
- lua_pushusertag(L, f, lua_type2tag(L, FILEHANDLE));
- }
- static void setfilebyname (lua_State *L, FILE *f, const char *name) {
- pushfile(L, f);
- lua_setglobal(L, name);
- }
- #define setfile(L,f,inout) (setfilebyname(L,f,filenames[inout]))
- static int setreturn (lua_State *L, FILE *f, int inout) {
- if (f == NULL)
- return pushresult(L, 0);
- else {
- if (inout != NOFILE)
- setfile(L, f, inout);
- pushfile(L, f);
- return 1;
- }
- }
- static int closefile (lua_State *L, FILE *f) {
- if (f == stdin || f == stdout || f == stderr)
- return 1;
- else {
- lua_pushuserdata(L, f);
- lua_settag(L, lua_type2tag(L, "ClosedFileHandle"));
- return (CLOSEFILE(L, f) == 0);
- }
- }
- static int io_close (lua_State *L) {
- FILE *f = (FILE *)luaL_check_userdata(L, 1, FILEHANDLE);
- return pushresult(L, closefile(L, f));
- }
- static int file_collect (lua_State *L) {
- FILE *f = (FILE *)luaL_check_userdata(L, 1, FILEHANDLE);
- if (f != stdin && f != stdout && f != stderr)
- CLOSEFILE(L, f);
- return 0;
- }
- static int io_open (lua_State *L) {
- FILE *f = fopen(luaL_check_string(L, 1), luaL_check_string(L, 2));
- return setreturn(L, f, NOFILE);
- }
- static int io_tmpfile (lua_State *L) {
- return setreturn(L, tmpfile(), NOFILE);
- }
- static int io_fromto (lua_State *L, int inout, const char *mode) {
- FILE *current;
- if (lua_isnull(L, 1)) {
- closefile(L, getopthandle(L, inout));
- current = (inout == 0) ? stdin : stdout;
- }
- else if (checkfile(L, 1)) /* deprecated option */
- current = (FILE *)lua_touserdata(L, 1);
- else {
- const char *s = luaL_check_string(L, 1);
- current = (*s == '|') ? popen(s+1, mode) : fopen(s, mode);
- }
- return setreturn(L, current, inout);
- }
- static int io_readfrom (lua_State *L) {
- return io_fromto(L, INFILE, "r");
- }
- static int io_writeto (lua_State *L) {
- return io_fromto(L, OUTFILE, "w");
- }
- static int io_appendto (lua_State *L) {
- FILE *current = fopen(luaL_check_string(L, 1), "a");
- return setreturn(L, current, OUTFILE);
- }
- /*
- ** {======================================================
- ** READ
- ** =======================================================
- */
- static int read_number (lua_State *L, FILE *f) {
- double d;
- if (fscanf(f, "%lf", &d) == 1) {
- lua_pushnumber(L, d);
- return 1;
- }
- else return 0; /* read fails */
- }
- static int read_word (lua_State *L, FILE *f) {
- int c;
- luaL_Buffer b;
- luaL_buffinit(L, &b);
- do { c = fgetc(f); } while (isspace(c)); /* skip spaces */
- while (c != EOF && !isspace(c)) {
- luaL_putchar(&b, c);
- c = fgetc(f);
- }
- ungetc(c, f);
- luaL_pushresult(&b); /* close buffer */
- return (lua_strlen(L, -1) > 0);
- }
- static int read_line (lua_State *L, FILE *f) {
- int n = 0;
- luaL_Buffer b;
- luaL_buffinit(L, &b);
- for (;;) {
- char *p = luaL_prepbuffer(&b);
- if (!fgets(p, LUAL_BUFFERSIZE, f)) /* read fails? */
- break;
- n = strlen(p);
- if (p[n-1] != '\n')
- luaL_addsize(&b, n);
- else {
- luaL_addsize(&b, n-1); /* do not add the `\n' */
- break;
- }
- }
- luaL_pushresult(&b); /* close buffer */
- return (n > 0); /* read something? */
- }
- static void read_file (lua_State *L, FILE *f) {
- size_t len = 0;
- size_t size = LUAL_BUFFERSIZE;
- size_t oldsize = 0;
- char *buffer = NULL;
- for (;;) {
- char *newbuffer = (char *)l_realloc(buffer, oldsize, size);
- if (newbuffer == NULL) {
- l_free(buffer, oldsize);
- lua_error(L, "not enough memory to read a file");
- }
- buffer = newbuffer;
- len += fread(buffer+len, sizeof(char), size-len, f);
- if (len < size) break; /* did not read all it could */
- oldsize = size;
- size *= 2;
- }
- lua_pushlstring(L, buffer, len);
- l_free(buffer, size);
- }
- static int read_chars (lua_State *L, FILE *f, size_t n) {
- if (n == 0) { /* test eof? */
- int c = fgetc(f);
- ungetc(c, f);
- lua_pushlstring(L, NULL, 0);
- return (c != EOF);
- }
- else {
- char *buffer;
- size_t n1;
- char statbuff[LUAL_BUFFERSIZE];
- if (n <= LUAL_BUFFERSIZE)
- buffer = statbuff;
- else {
- buffer = (char *)l_malloc(n);
- if (buffer == NULL)
- lua_error(L, "not enough memory to read a file");
- }
- n1 = fread(buffer, sizeof(char), n, f);
- lua_pushlstring(L, buffer, n1);
- if (buffer != statbuff) l_free(buffer, n);
- return (n1 > 0 || n == 0);
- }
- }
- static int io_read (lua_State *L) {
- FILE *f = getopthandle(L, INFILE);
- int nargs = lua_gettop(L)-1;
- int success;
- int n;
- if (nargs == 0) { /* no arguments? */
- success = read_line(L, f);
- n = 2; /* will return n-1 results */
- }
- else { /* ensure stack space for all results and for auxlib's buffer */
- luaL_checkstack(L, nargs+LUA_MINSTACK, "too many arguments");
- success = 1;
- for (n = 1; n<=nargs && success; n++) {
- if (lua_type(L, n) == LUA_TNUMBER)
- success = read_chars(L, f, (size_t)lua_tonumber(L, n));
- 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_line(L, f);
- break;
- case 'a': /* file */
- read_file(L, f);
- success = 1; /* always success */
- break;
- case 'w': /* word */
- success = read_word(L, f);
- 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 */
- }
- return n - 1;
- }
- /* }====================================================== */
- static int io_write (lua_State *L) {
- FILE *f = getopthandle(L, OUTFILE);
- int nargs = lua_gettop(L)-1;
- int arg;
- int status = 1;
- for (arg=1; arg<=nargs; arg++) {
- if (lua_type(L, arg) == LUA_TNUMBER) { /* LUA_NUMBER */
- /* optimization: could be done exactly as for strings */
- status = status && fprintf(f, "%.16g", lua_tonumber(L, arg)) > 0;
- }
- else {
- size_t l;
- const char *s = luaL_check_lstr(L, arg, &l);
- status = status && (fwrite(s, sizeof(char), l, f) == l);
- }
- }
- pushresult(L, status);
- return 1;
- }
- static int io_seek (lua_State *L) {
- static const int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END};
- static const char *const modenames[] = {"set", "cur", "end", NULL};
- FILE *f = (FILE *)luaL_check_userdata(L, 1, FILEHANDLE);
- int op = luaL_findstring(luaL_opt_string(L, 2, "cur"), modenames);
- long offset = luaL_opt_long(L, 3, 0);
- luaL_arg_check(L, op != -1, 2, "invalid mode");
- op = fseek(f, offset, mode[op]);
- if (op)
- return pushresult(L, 0); /* error */
- else {
- lua_pushnumber(L, ftell(f));
- return 1;
- }
- }
- static int io_flush (lua_State *L) {
- FILE *f = getopthandle(L, NOFILE);
- luaL_arg_check(L, f || lua_isnull(L, 1), 1, "invalid file handle");
- return pushresult(L, fflush(f) == 0);
- }
- /* }====================================================== */
- /*
- ** {======================================================
- ** Other O.S. Operations
- ** =======================================================
- */
- static int io_execute (lua_State *L) {
- lua_pushnumber(L, system(luaL_check_string(L, 1)));
- return 1;
- }
- static int io_remove (lua_State *L) {
- return pushresult(L, remove(luaL_check_string(L, 1)) == 0);
- }
- static int io_rename (lua_State *L) {
- return pushresult(L, rename(luaL_check_string(L, 1),
- luaL_check_string(L, 2)) == 0);
- }
- static int io_tmpname (lua_State *L) {
- char buff[L_tmpnam];
- if (tmpnam(buff) != buff)
- lua_error(L, "unable to generate a unique filename");
- lua_pushstring(L, buff);
- return 1;
- }
- static int io_getenv (lua_State *L) {
- lua_pushstring(L, getenv(luaL_check_string(L, 1))); /* if NULL push nil */
- return 1;
- }
- static int io_clock (lua_State *L) {
- lua_pushnumber(L, ((lua_Number)clock())/(lua_Number)CLOCKS_PER_SEC);
- return 1;
- }
- /*
- ** {======================================================
- ** 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) {
- lua_pushstring(L, key);
- lua_pushnumber(L, value);
- lua_rawset(L, -3);
- }
- static int getfield (lua_State *L, const char *key, int d) {
- int res;
- lua_pushstring(L, key);
- lua_rawget(L, -2);
- if (lua_isnumber(L, -1))
- res = (int)lua_tonumber(L, -1);
- else {
- if (d == -2)
- luaL_verror(L, "field `%.20s' missing in date table", key);
- res = d;
- }
- lua_pop(L, 1);
- return res;
- }
- static int io_date (lua_State *L) {
- const char *s = luaL_opt_string(L, 1, "%c");
- time_t t = (time_t)luaL_opt_number(L, 2, -1);
- struct tm *stm;
- if (t == (time_t)-1) /* no time given? */
- t = time(NULL); /* use current time */
- if (*s == '!') { /* UTC? */
- stm = gmtime(&t);
- s++; /* skip `!' */
- }
- else
- stm = localtime(&t);
- if (stm == NULL) /* invalid date? */
- lua_pushnil(L);
- else if (strcmp(s, "*t") == 0) {
- 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);
- }
- else {
- char b[256];
- if (strftime(b, sizeof(b), s, stm))
- lua_pushstring(L, b);
- else
- lua_error(L, "invalid `date' format");
- }
- return 1;
- }
- static int io_time (lua_State *L) {
- if (lua_isnull(L, 1)) /* called without args? */
- lua_pushnumber(L, time(NULL)); /* return current time */
- else {
- time_t t;
- struct tm ts;
- luaL_checktype(L, 1, LUA_TTABLE);
- lua_settop(L, 1); /* make sure table is at the top */
- 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);
- t = mktime(&ts);
- if (t == (time_t)-1)
- lua_pushnil(L);
- else
- lua_pushnumber(L, t);
- }
- return 1;
- }
- static int io_difftime (lua_State *L) {
- lua_pushnumber(L, difftime((time_t)luaL_check_number(L, 1),
- (time_t)luaL_opt_number(L, 2, 0)));
- return 1;
- }
- /* }====================================================== */
- static int io_setloc (lua_State *L) {
- 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)));
- return 1;
- }
- static int io_exit (lua_State *L) {
- exit(luaL_opt_int(L, 1, EXIT_SUCCESS));
- return 0; /* to avoid warnings */
- }
- /* }====================================================== */
- 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)
- return 0;
- lua_dostring(L, buffer);
- lua_settop(L, 0); /* remove eventual returns */
- }
- }
- #define LEVELS1 12 /* size of the first part of the stack */
- #define LEVELS2 10 /* size of the second part of the stack */
- static int errorfb (lua_State *L) {
- int level = 1; /* skip level 0 (it's this function) */
- int firstpart = 1; /* still before eventual `...' */
- 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");
- while (lua_getstack(L, level++, &ar)) {
- char buff[120]; /* enough to fit following `sprintf's */
- if (level == 2)
- luaL_addstring(&b, "stack traceback:\n");
- else if (level > LEVELS1 && firstpart) {
- /* 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++;
- }
- firstpart = 0;
- continue;
- }
- sprintf(buff, "%4d: ", level-1);
- luaL_addstring(&b, buff);
- lua_getinfo(L, "Snl", &ar);
- 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);
- else
- sprintf(buff, "function <%d:%.70s>", ar.linedefined, ar.short_src);
- ar.source = NULL; /* do not print source again */
- }
- }
- luaL_addstring(&b, buff);
- if (ar.currentline > 0) {
- sprintf(buff, " at line %d", ar.currentline);
- luaL_addstring(&b, buff);
- }
- if (ar.source) {
- sprintf(buff, " [%.70s]", ar.short_src);
- luaL_addstring(&b, buff);
- }
- luaL_addstring(&b, "\n");
- }
- luaL_pushresult(&b);
- lua_getglobal(L, LUA_ALERT);
- if (lua_isfunction(L, -1)) { /* avoid loop if _ALERT is not defined */
- lua_pushvalue(L, -2); /* error message */
- lua_rawcall(L, 1, 0);
- }
- return 0;
- }
- 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}
- };
- LUALIB_API void lua_iolibopen (lua_State *L) {
- int iotag = lua_newtype(L, FILEHANDLE, LUA_TUSERDATA);
- lua_newtype(L, "ClosedFileHandle", LUA_TUSERDATA);
- luaL_openl(L, iolib);
- /* predefined file handles */
- setfile(L, stdin, INFILE);
- setfile(L, stdout, OUTFILE);
- setfilebyname(L, stdin, "_STDIN");
- setfilebyname(L, stdout, "_STDOUT");
- setfilebyname(L, stderr, "_STDERR");
- /* close files when collected */
- lua_pushcfunction(L, file_collect);
- lua_settagmethod(L, iotag, "gc");
- }
|