2009-12-08 18:46:35 +00:00
|
|
|
/*
|
|
|
|
** I/O library.
|
2010-01-09 13:28:11 +00:00
|
|
|
** Copyright (C) 2005-2010 Mike Pall. See Copyright Notice in luajit.h
|
2009-12-08 18:46:35 +00:00
|
|
|
**
|
|
|
|
** Major portions taken verbatim or adapted from the Lua interpreter.
|
|
|
|
** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define lib_io_c
|
|
|
|
#define LUA_LIB
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lauxlib.h"
|
|
|
|
#include "lualib.h"
|
|
|
|
|
|
|
|
#include "lj_obj.h"
|
|
|
|
#include "lj_gc.h"
|
2009-12-08 19:35:29 +00:00
|
|
|
#include "lj_err.h"
|
|
|
|
#include "lj_str.h"
|
2009-12-08 18:46:35 +00:00
|
|
|
#include "lj_ff.h"
|
2009-12-08 19:35:29 +00:00
|
|
|
#include "lj_trace.h"
|
2009-12-08 18:46:35 +00:00
|
|
|
#include "lj_lib.h"
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
/* Userdata payload for I/O file. */
|
|
|
|
typedef struct IOFileUD {
|
|
|
|
FILE *fp; /* File handle. */
|
|
|
|
uint32_t type; /* File type. */
|
|
|
|
} IOFileUD;
|
|
|
|
|
|
|
|
#define IOFILE_TYPE_FILE 0 /* Regular file. */
|
|
|
|
#define IOFILE_TYPE_PIPE 1 /* Pipe. */
|
|
|
|
#define IOFILE_TYPE_STDF 2 /* Standard file handle. */
|
|
|
|
#define IOFILE_TYPE_MASK 3
|
|
|
|
|
|
|
|
#define IOFILE_FLAG_CLOSE 4 /* Close after io.lines() iterator. */
|
|
|
|
|
|
|
|
#define IOSTDF_UD(L, id) (&gcref(G(L)->gcroot[(id)])->ud)
|
|
|
|
#define IOSTDF_IOF(L, id) ((IOFileUD *)uddata(IOSTDF_UD(L, (id))))
|
2009-12-08 18:46:35 +00:00
|
|
|
|
|
|
|
/* -- Error handling ------------------------------------------------------ */
|
|
|
|
|
|
|
|
static int io_pushresult(lua_State *L, int ok, const char *fname)
|
|
|
|
{
|
|
|
|
if (ok) {
|
|
|
|
setboolV(L->top++, 1);
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
int en = errno; /* Lua API calls may change this value. */
|
2009-12-08 19:35:29 +00:00
|
|
|
setnilV(L->top++);
|
2009-12-08 18:46:35 +00:00
|
|
|
if (fname)
|
|
|
|
lua_pushfstring(L, "%s: %s", fname, strerror(en));
|
|
|
|
else
|
|
|
|
lua_pushfstring(L, "%s", strerror(en));
|
2009-12-08 19:35:29 +00:00
|
|
|
setintV(L->top++, en);
|
|
|
|
lj_trace_abort(G(L));
|
2009-12-08 18:46:35 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
/* -- Open/close helpers -------------------------------------------------- */
|
|
|
|
|
|
|
|
static IOFileUD *io_tofilep(lua_State *L)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
if (!(L->base < L->top && tvisudata(L->base) &&
|
|
|
|
udataV(L->base)->udtype == UDTYPE_IO_FILE))
|
|
|
|
lj_err_argtype(L, 1, "FILE*");
|
|
|
|
return (IOFileUD *)uddata(udataV(L->base));
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
static IOFileUD *io_tofile(lua_State *L)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
IOFileUD *iof = io_tofilep(L);
|
|
|
|
if (iof->fp == NULL)
|
2009-12-08 18:46:35 +00:00
|
|
|
lj_err_caller(L, LJ_ERR_IOCLFL);
|
2009-12-08 19:35:29 +00:00
|
|
|
return iof;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
static FILE *io_stdfile(lua_State *L, ptrdiff_t id)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
IOFileUD *iof = IOSTDF_IOF(L, id);
|
|
|
|
if (iof->fp == NULL)
|
|
|
|
lj_err_caller(L, LJ_ERR_IOSTDCL);
|
|
|
|
return iof->fp;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
static IOFileUD *io_file_new(lua_State *L)
|
|
|
|
{
|
|
|
|
IOFileUD *iof = (IOFileUD *)lua_newuserdata(L, sizeof(IOFileUD));
|
|
|
|
GCudata *ud = udataV(L->top-1);
|
|
|
|
ud->udtype = UDTYPE_IO_FILE;
|
|
|
|
/* NOBARRIER: The GCudata is new (marked white). */
|
|
|
|
setgcrefr(ud->metatable, curr_func(L)->c.env);
|
|
|
|
iof->fp = NULL;
|
|
|
|
iof->type = IOFILE_TYPE_FILE;
|
|
|
|
return iof;
|
|
|
|
}
|
2009-12-08 18:46:35 +00:00
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
static IOFileUD *io_file_open(lua_State *L, const char *mode)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
const char *fname = strdata(lj_lib_checkstr(L, 1));
|
|
|
|
IOFileUD *iof = io_file_new(L);
|
|
|
|
iof->fp = fopen(fname, mode);
|
|
|
|
if (iof->fp == NULL)
|
|
|
|
luaL_argerror(L, 1, lj_str_pushf(L, "%s: %s", fname, strerror(errno)));
|
|
|
|
return iof;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
static int io_file_close(lua_State *L, IOFileUD *iof)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
int ok;
|
|
|
|
if ((iof->type & IOFILE_TYPE_MASK) == IOFILE_TYPE_FILE) {
|
|
|
|
ok = (fclose(iof->fp) == 0);
|
|
|
|
} else if ((iof->type & IOFILE_TYPE_MASK) == IOFILE_TYPE_PIPE) {
|
2009-12-08 18:46:35 +00:00
|
|
|
#if defined(LUA_USE_POSIX)
|
2009-12-08 19:35:29 +00:00
|
|
|
ok = (pclose(iof->fp) != -1);
|
2009-12-08 18:46:35 +00:00
|
|
|
#elif defined(LUA_USE_WIN)
|
2009-12-08 19:35:29 +00:00
|
|
|
ok = (_pclose(iof->fp) != -1);
|
2009-12-08 18:46:35 +00:00
|
|
|
#else
|
2009-12-08 19:35:29 +00:00
|
|
|
ok = 0;
|
2009-12-08 18:46:35 +00:00
|
|
|
#endif
|
2009-12-08 19:35:29 +00:00
|
|
|
} else {
|
|
|
|
lua_assert((iof->type & IOFILE_TYPE_MASK) == IOFILE_TYPE_STDF);
|
|
|
|
setnilV(L->top++);
|
|
|
|
lua_pushliteral(L, "cannot close standard file");
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
iof->fp = NULL;
|
2009-12-08 18:46:35 +00:00
|
|
|
return io_pushresult(L, ok, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- Read/write helpers -------------------------------------------------- */
|
|
|
|
|
|
|
|
static int io_file_readnum(lua_State *L, FILE *fp)
|
|
|
|
{
|
|
|
|
lua_Number d;
|
|
|
|
if (fscanf(fp, LUA_NUMBER_SCAN, &d) == 1) {
|
2009-12-08 19:35:29 +00:00
|
|
|
setnumV(L->top++, d);
|
2009-12-08 18:46:35 +00:00
|
|
|
return 1;
|
|
|
|
} else {
|
2010-05-15 16:10:41 +00:00
|
|
|
setnilV(L->top++);
|
2009-12-08 19:35:29 +00:00
|
|
|
return 0;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
static int io_file_testeof(lua_State *L, FILE *fp)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
|
|
|
int c = getc(fp);
|
|
|
|
ungetc(c, fp);
|
|
|
|
lua_pushlstring(L, NULL, 0);
|
|
|
|
return (c != EOF);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int io_file_readline(lua_State *L, FILE *fp)
|
|
|
|
{
|
|
|
|
luaL_Buffer b;
|
|
|
|
luaL_buffinit(L, &b);
|
|
|
|
for (;;) {
|
|
|
|
size_t len;
|
|
|
|
char *p = luaL_prepbuffer(&b);
|
|
|
|
if (fgets(p, LUAL_BUFFERSIZE, fp) == NULL) { /* EOF? */
|
|
|
|
luaL_pushresult(&b);
|
|
|
|
return (strV(L->top-1)->len > 0); /* Anything read? */
|
|
|
|
}
|
|
|
|
len = strlen(p);
|
|
|
|
if (len == 0 || p[len-1] != '\n') { /* Partial line? */
|
|
|
|
luaL_addsize(&b, len);
|
|
|
|
} else {
|
|
|
|
luaL_addsize(&b, len - 1); /* Don't include EOL. */
|
|
|
|
luaL_pushresult(&b);
|
|
|
|
return 1; /* Got at least an EOL. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int io_file_readchars(lua_State *L, FILE *fp, size_t n)
|
|
|
|
{
|
|
|
|
size_t rlen; /* how much to read */
|
|
|
|
size_t nr; /* number of chars actually read */
|
|
|
|
luaL_Buffer b;
|
|
|
|
luaL_buffinit(L, &b);
|
|
|
|
rlen = LUAL_BUFFERSIZE; /* try to read that much each time */
|
|
|
|
do {
|
|
|
|
char *p = luaL_prepbuffer(&b);
|
|
|
|
if (rlen > n) rlen = n; /* cannot read more than asked */
|
|
|
|
nr = fread(p, 1, rlen, fp);
|
|
|
|
luaL_addsize(&b, nr);
|
|
|
|
n -= nr; /* still have to read `n' chars */
|
|
|
|
} while (n > 0 && nr == rlen); /* until end of count or eof */
|
|
|
|
luaL_pushresult(&b); /* close buffer */
|
2009-12-08 19:35:29 +00:00
|
|
|
return (n == 0 || strV(L->top-1)->len > 0);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int io_file_read(lua_State *L, FILE *fp, int start)
|
|
|
|
{
|
2009-12-29 19:19:54 +00:00
|
|
|
int ok, n, nargs = cast_int(L->top - L->base) - start;
|
2009-12-08 18:46:35 +00:00
|
|
|
clearerr(fp);
|
|
|
|
if (nargs == 0) {
|
|
|
|
ok = io_file_readline(L, fp);
|
|
|
|
n = start+1; /* Return 1 result. */
|
|
|
|
} else {
|
|
|
|
/* The results plus the buffers go on top of the args. */
|
|
|
|
luaL_checkstack(L, nargs+LUA_MINSTACK, "too many arguments");
|
|
|
|
ok = 1;
|
|
|
|
for (n = start; nargs-- && ok; n++) {
|
|
|
|
if (tvisstr(L->base+n)) {
|
|
|
|
const char *p = strVdata(L->base+n);
|
|
|
|
if (p[0] != '*')
|
|
|
|
lj_err_arg(L, n+1, LJ_ERR_INVOPT);
|
|
|
|
if (p[1] == 'n')
|
|
|
|
ok = io_file_readnum(L, fp);
|
|
|
|
else if (p[1] == 'l')
|
|
|
|
ok = io_file_readline(L, fp);
|
|
|
|
else if (p[1] == 'a')
|
|
|
|
io_file_readchars(L, fp, ~((size_t)0));
|
|
|
|
else
|
|
|
|
lj_err_arg(L, n+1, LJ_ERR_INVFMT);
|
|
|
|
} else if (tvisnum(L->base+n)) {
|
|
|
|
size_t len = (size_t)lj_lib_checkint(L, n+1);
|
2009-12-08 19:35:29 +00:00
|
|
|
ok = len ? io_file_readchars(L, fp, len) : io_file_testeof(L, fp);
|
2009-12-08 18:46:35 +00:00
|
|
|
} else {
|
|
|
|
lj_err_arg(L, n+1, LJ_ERR_INVOPT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ferror(fp))
|
|
|
|
return io_pushresult(L, 0, NULL);
|
|
|
|
if (!ok)
|
|
|
|
setnilV(L->top-1); /* Replace last result with nil. */
|
|
|
|
return n - start;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int io_file_write(lua_State *L, FILE *fp, int start)
|
|
|
|
{
|
|
|
|
cTValue *tv;
|
|
|
|
int status = 1;
|
|
|
|
for (tv = L->base+start; tv < L->top; tv++) {
|
|
|
|
if (tvisstr(tv)) {
|
|
|
|
MSize len = strV(tv)->len;
|
|
|
|
status = status && (fwrite(strVdata(tv), 1, len, fp) == len);
|
|
|
|
} else if (tvisnum(tv)) {
|
|
|
|
status = status && (fprintf(fp, LUA_NUMBER_FMT, numV(tv)) > 0);
|
|
|
|
} else {
|
2009-12-29 19:19:54 +00:00
|
|
|
lj_err_argt(L, cast_int(tv - L->base) + 1, LUA_TSTRING);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return io_pushresult(L, status, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- I/O file methods ---------------------------------------------------- */
|
|
|
|
|
|
|
|
#define LJLIB_MODULE_io_method
|
|
|
|
|
|
|
|
LJLIB_CF(io_method_close)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
IOFileUD *iof = L->base < L->top ? io_tofile(L) :
|
|
|
|
IOSTDF_IOF(L, GCROOT_IO_OUTPUT);
|
|
|
|
return io_file_close(L, iof);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_method_read)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_file_read(L, io_tofile(L)->fp, 1);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_CF(io_method_write) LJLIB_REC(io_write 0)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_file_write(L, io_tofile(L)->fp, 1);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_CF(io_method_flush) LJLIB_REC(io_flush 0)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_pushresult(L, fflush(io_tofile(L)->fp) == 0, NULL);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_method_seek)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
FILE *fp = io_tofile(L)->fp;
|
2009-12-08 18:46:35 +00:00
|
|
|
int opt = lj_lib_checkopt(L, 2, 1, "\3set\3cur\3end");
|
|
|
|
lua_Number ofs;
|
|
|
|
int res;
|
|
|
|
if (opt == 0) opt = SEEK_SET;
|
|
|
|
else if (opt == 1) opt = SEEK_CUR;
|
|
|
|
else if (opt == 2) opt = SEEK_END;
|
|
|
|
lj_lib_opt(L, 3,
|
|
|
|
ofs = lj_lib_checknum(L, 3);
|
|
|
|
,
|
|
|
|
ofs = 0;
|
|
|
|
)
|
|
|
|
#if defined(LUA_USE_POSIX)
|
|
|
|
res = fseeko(fp, (int64_t)ofs, opt);
|
|
|
|
#elif _MSC_VER >= 1400
|
|
|
|
res = _fseeki64(fp, (int64_t)ofs, opt);
|
|
|
|
#elif defined(__MINGW32__)
|
|
|
|
res = fseeko64(fp, (int64_t)ofs, opt);
|
|
|
|
#else
|
|
|
|
res = fseek(fp, (long)ofs, opt);
|
|
|
|
#endif
|
|
|
|
if (res)
|
|
|
|
return io_pushresult(L, 0, NULL);
|
|
|
|
#if defined(LUA_USE_POSIX)
|
|
|
|
ofs = cast_num(ftello(fp));
|
|
|
|
#elif _MSC_VER >= 1400
|
|
|
|
ofs = cast_num(_ftelli64(fp));
|
|
|
|
#elif defined(__MINGW32__)
|
|
|
|
ofs = cast_num(ftello64(fp));
|
|
|
|
#else
|
|
|
|
ofs = cast_num(ftell(fp));
|
|
|
|
#endif
|
|
|
|
setnumV(L->top-1, ofs);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_method_setvbuf)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
FILE *fp = io_tofile(L)->fp;
|
2009-12-08 18:46:35 +00:00
|
|
|
int opt = lj_lib_checkopt(L, 2, -1, "\4full\4line\2no");
|
|
|
|
size_t sz = (size_t)lj_lib_optint(L, 3, LUAL_BUFFERSIZE);
|
|
|
|
if (opt == 0) opt = _IOFBF;
|
|
|
|
else if (opt == 1) opt = _IOLBF;
|
|
|
|
else if (opt == 2) opt = _IONBF;
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_pushresult(L, setvbuf(fp, NULL, opt, sz) == 0, NULL);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_PUSH(top-2) /* io_lines_iter */
|
2009-12-08 18:46:35 +00:00
|
|
|
LJLIB_CF(io_method_lines)
|
|
|
|
{
|
|
|
|
io_tofile(L);
|
2009-12-08 19:35:29 +00:00
|
|
|
setfuncV(L, L->top, funcV(lj_lib_upvalue(L, 1)));
|
|
|
|
setudataV(L, L->top+1, udataV(L->base));
|
|
|
|
L->top += 2;
|
|
|
|
return 2;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_method___gc)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
IOFileUD *iof = io_tofilep(L);
|
|
|
|
if (iof->fp != NULL)
|
|
|
|
io_file_close(L, iof);
|
2009-12-08 18:46:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_method___tostring)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
IOFileUD *iof = io_tofilep(L);
|
|
|
|
if (iof->fp != NULL)
|
|
|
|
lua_pushfstring(L, "file (%p)", iof->fp);
|
2009-12-08 18:46:35 +00:00
|
|
|
else
|
2009-12-08 19:35:29 +00:00
|
|
|
lua_pushliteral(L, "file (closed)");
|
2009-12-08 18:46:35 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_PUSH(top-1) LJLIB_SET(__index)
|
|
|
|
|
|
|
|
#include "lj_libdef.h"
|
|
|
|
|
|
|
|
/* -- I/O library functions ----------------------------------------------- */
|
|
|
|
|
|
|
|
#define LJLIB_MODULE_io
|
|
|
|
|
|
|
|
LJLIB_PUSH(top-2) LJLIB_SET(!) /* Set environment. */
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_CF(io_open)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
const char *fname = strdata(lj_lib_checkstr(L, 1));
|
|
|
|
GCstr *s = lj_lib_optstr(L, 2);
|
|
|
|
const char *mode = s ? strdata(s) : "r";
|
|
|
|
IOFileUD *iof = io_file_new(L);
|
|
|
|
iof->fp = fopen(fname, mode);
|
|
|
|
return iof->fp != NULL ? 1 : io_pushresult(L, 0, fname);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_CF(io_popen)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
#if defined(LUA_USE_POSIX) || defined(LUA_USE_WIN)
|
|
|
|
const char *fname = strdata(lj_lib_checkstr(L, 1));
|
|
|
|
GCstr *s = lj_lib_optstr(L, 2);
|
|
|
|
const char *mode = s ? strdata(s) : "r";
|
|
|
|
IOFileUD *iof = io_file_new(L);
|
|
|
|
iof->type = IOFILE_TYPE_PIPE;
|
|
|
|
#ifdef LUA_USE_POSIX
|
|
|
|
fflush(NULL);
|
|
|
|
iof->fp = popen(fname, mode);
|
|
|
|
#else
|
|
|
|
iof->fp = _popen(fname, mode);
|
|
|
|
#endif
|
|
|
|
return iof->fp != NULL ? 1 : io_pushresult(L, 0, fname);
|
|
|
|
#else
|
|
|
|
luaL_error(L, LUA_QL("popen") " not supported");
|
|
|
|
#endif
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_tmpfile)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
IOFileUD *iof = io_file_new(L);
|
|
|
|
iof->fp = tmpfile();
|
|
|
|
return iof->fp != NULL ? 1 : io_pushresult(L, 0, NULL);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_close)
|
|
|
|
{
|
|
|
|
return lj_cf_io_method_close(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_read)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_file_read(L, io_stdfile(L, GCROOT_IO_INPUT), 0);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_CF(io_write) LJLIB_REC(io_write GCROOT_IO_OUTPUT)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_file_write(L, io_stdfile(L, GCROOT_IO_OUTPUT), 0);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_CF(io_flush) LJLIB_REC(io_flush GCROOT_IO_OUTPUT)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_pushresult(L, fflush(io_stdfile(L, GCROOT_IO_OUTPUT)) == 0, NULL);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
static int io_std_getset(lua_State *L, ptrdiff_t id, const char *mode)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
if (L->base < L->top && !tvisnil(L->base)) {
|
|
|
|
if (tvisudata(L->base)) {
|
|
|
|
io_tofile(L);
|
|
|
|
L->top = L->base+1;
|
2009-12-08 18:46:35 +00:00
|
|
|
} else {
|
2009-12-08 19:35:29 +00:00
|
|
|
io_file_open(L, mode);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
2009-12-08 19:35:29 +00:00
|
|
|
/* NOBARRIER: The standard I/O handles are GC roots. */
|
|
|
|
setgcref(G(L)->gcroot[id], gcV(L->top-1));
|
|
|
|
} else {
|
|
|
|
setudataV(L, L->top++, IOSTDF_UD(L, id));
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_input)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_std_getset(L, GCROOT_IO_INPUT, "r");
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(io_output)
|
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
return io_std_getset(L, GCROOT_IO_OUTPUT, "w");
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_NOREG LJLIB_CF(io_lines_iter)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
IOFileUD *iof = io_tofile(L);
|
|
|
|
int ok = io_file_readline(L, iof->fp);
|
|
|
|
if (ferror(iof->fp))
|
|
|
|
lj_err_callermsg(L, strerror(errno));
|
|
|
|
if (!ok && (iof->type & IOFILE_FLAG_CLOSE))
|
|
|
|
io_file_close(L, iof); /* Return values are ignored (ok is 0). */
|
|
|
|
return ok;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_PUSH(top-3) /* io_lines_iter */
|
|
|
|
LJLIB_CF(io_lines)
|
|
|
|
{
|
|
|
|
if (L->base < L->top && !tvisnil(L->base)) { /* io.lines(fname) */
|
|
|
|
IOFileUD *iof = io_file_open(L, "r");
|
|
|
|
iof->type = IOFILE_TYPE_FILE|IOFILE_FLAG_CLOSE;
|
|
|
|
setfuncV(L, L->top-2, funcV(lj_lib_upvalue(L, 1)));
|
|
|
|
} else { /* io.lines() iterates over stdin. */
|
|
|
|
setfuncV(L, L->top, funcV(lj_lib_upvalue(L, 1)));
|
|
|
|
setudataV(L, L->top+1, IOSTDF_UD(L, GCROOT_IO_INPUT));
|
|
|
|
L->top += 2;
|
|
|
|
}
|
|
|
|
return 2;
|
|
|
|
}
|
2009-12-08 18:46:35 +00:00
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
LJLIB_CF(io_type)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
cTValue *o = lj_lib_checkany(L, 1);
|
|
|
|
if (!(tvisudata(o) && udataV(o)->udtype == UDTYPE_IO_FILE))
|
|
|
|
setnilV(L->top++);
|
|
|
|
else if (((IOFileUD *)uddata(udataV(o)))->fp != NULL)
|
|
|
|
lua_pushliteral(L, "file");
|
|
|
|
else
|
|
|
|
lua_pushliteral(L, "closed file");
|
|
|
|
return 1;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "lj_libdef.h"
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
2009-12-08 19:35:29 +00:00
|
|
|
static GCobj *io_std_new(lua_State *L, FILE *fp, const char *name)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2009-12-08 19:35:29 +00:00
|
|
|
IOFileUD *iof = (IOFileUD *)lua_newuserdata(L, sizeof(IOFileUD));
|
2009-12-08 18:46:35 +00:00
|
|
|
GCudata *ud = udataV(L->top-1);
|
2009-12-08 19:35:29 +00:00
|
|
|
ud->udtype = UDTYPE_IO_FILE;
|
|
|
|
/* NOBARRIER: The GCudata is new (marked white). */
|
|
|
|
setgcref(ud->metatable, gcV(L->top-3));
|
|
|
|
iof->fp = fp;
|
|
|
|
iof->type = IOFILE_TYPE_STDF;
|
|
|
|
lua_setfield(L, -2, name);
|
|
|
|
return obj2gco(ud);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LUALIB_API int luaopen_io(lua_State *L)
|
|
|
|
{
|
2010-02-13 03:51:56 +00:00
|
|
|
lj_lib_pushcf(L, lj_cf_io_lines_iter, FF_io_lines_iter);
|
2009-12-08 19:35:29 +00:00
|
|
|
LJ_LIB_REG_(L, NULL, io_method);
|
|
|
|
copyTV(L, L->top, L->top-1); L->top++;
|
|
|
|
lua_setfield(L, LUA_REGISTRYINDEX, LUA_FILEHANDLE);
|
2009-12-08 18:46:35 +00:00
|
|
|
LJ_LIB_REG(L, io);
|
2009-12-08 19:35:29 +00:00
|
|
|
setgcref(G(L)->gcroot[GCROOT_IO_INPUT], io_std_new(L, stdin, "stdin"));
|
|
|
|
setgcref(G(L)->gcroot[GCROOT_IO_OUTPUT], io_std_new(L, stdout, "stdout"));
|
|
|
|
io_std_new(L, stderr, "stderr");
|
2009-12-08 18:46:35 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|