1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2002-08-06 22:01:50 +04:00
|
|
|
** $Id: liolib.c,v 2.14 2002/07/17 16:25:13 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Standard I/O (and system) library
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-02-09 01:39:56 +03:00
|
|
|
#include <errno.h>
|
|
|
|
#include <locale.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"
|
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
|
|
|
|
2001-02-06 19:01:29 +03:00
|
|
|
|
2002-03-20 15:54:08 +03:00
|
|
|
/*
|
|
|
|
** {======================================================
|
|
|
|
** FILE Operations
|
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
1997-11-27 18:59:44 +03:00
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
#ifndef POPEN
|
|
|
|
#define pclose(f) (-1)
|
1995-10-04 16:53:10 +03:00
|
|
|
#endif
|
|
|
|
|
1995-11-03 18:43:50 +03:00
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
#define FILEHANDLE "FileHandle"
|
|
|
|
#define CLOSEDFILEHANDLE "ClosedFileHandle"
|
2000-03-20 22:13:45 +03:00
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
#define IO_INPUT "_input"
|
|
|
|
#define IO_OUTPUT "_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) {
|
2002-04-05 00:24:56 +04:00
|
|
|
lua_pushboolean(L, 1);
|
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);
|
2001-01-25 19:45:36 +03:00
|
|
|
return 3;
|
1995-10-04 16:53:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static FILE *tofile (lua_State *L, int findex) {
|
2002-04-05 22:54:31 +04:00
|
|
|
FILE **f = (FILE **)lua_touserdata(L, findex);
|
2002-04-05 00:24:56 +04:00
|
|
|
if (f && lua_getmetatable(L, findex) &&
|
2002-07-12 22:54:53 +04:00
|
|
|
lua_rawequal(L, -1, lua_upvalueindex(1))) {
|
2002-04-05 00:24:56 +04:00
|
|
|
lua_pop(L, 1);
|
2002-04-05 22:54:31 +04:00
|
|
|
return *f;
|
2001-01-25 19:45:36 +03:00
|
|
|
}
|
2002-06-05 20:59:37 +04:00
|
|
|
if (findex > 0)
|
|
|
|
luaL_argerror(L, findex, "bad file");
|
|
|
|
return NULL;
|
1999-03-16 23:07:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-06 22:00:19 +04:00
|
|
|
static void newfile (lua_State *L, FILE *f) {
|
2002-07-17 20:25:13 +04:00
|
|
|
lua_boxpointer(L, f);
|
2002-02-07 20:25:36 +03:00
|
|
|
lua_pushliteral(L, FILEHANDLE);
|
|
|
|
lua_rawget(L, LUA_REGISTRYINDEX);
|
2002-01-30 20:26:44 +03:00
|
|
|
lua_setmetatable(L, -2);
|
1997-10-30 23:29:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static void registerfile (lua_State *L, FILE *f, const char *name,
|
|
|
|
const char *impname) {
|
2002-03-20 15:54:08 +03:00
|
|
|
lua_pushstring(L, name);
|
2001-06-06 22:00:19 +04:00
|
|
|
newfile(L, f);
|
2002-04-05 00:24:56 +04:00
|
|
|
if (impname) {
|
|
|
|
lua_pushstring(L, impname);
|
|
|
|
lua_pushvalue(L, -2);
|
|
|
|
lua_settable(L, -6);
|
|
|
|
}
|
2002-03-20 15:54:08 +03:00
|
|
|
lua_settable(L, -3);
|
1998-11-20 18:41:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static int setnewfile (lua_State *L, FILE *f) {
|
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 {
|
2001-06-06 22:00:19 +04:00
|
|
|
newfile(L, f);
|
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-08-28 21:57:04 +04:00
|
|
|
static int io_close (lua_State *L) {
|
2002-06-05 21:42:03 +04:00
|
|
|
FILE *f;
|
2002-06-06 16:43:08 +04:00
|
|
|
int status = 1;
|
2002-06-05 21:42:03 +04:00
|
|
|
if (lua_isnone(L, 1)) {
|
|
|
|
lua_pushstring(L, IO_OUTPUT);
|
|
|
|
lua_rawget(L, lua_upvalueindex(1));
|
|
|
|
}
|
|
|
|
f = tofile(L, 1);
|
2001-06-08 20:48:32 +04:00
|
|
|
if (f != stdin && f != stdout && f != stderr) {
|
|
|
|
lua_settop(L, 1); /* make sure file is on top */
|
2002-02-07 20:25:36 +03:00
|
|
|
lua_pushliteral(L, CLOSEDFILEHANDLE);
|
|
|
|
lua_rawget(L, LUA_REGISTRYINDEX);
|
2002-01-30 20:26:44 +03:00
|
|
|
lua_setmetatable(L, 1);
|
2002-04-05 00:24:56 +04:00
|
|
|
status = (pclose(f) != -1) || (fclose(f) == 0);
|
2001-06-06 22:00:19 +04:00
|
|
|
}
|
|
|
|
return pushresult(L, status);
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static int io_open (lua_State *L) {
|
|
|
|
FILE *f = fopen(luaL_check_string(L, 1), luaL_opt_string(L, 2, "r"));
|
|
|
|
return setnewfile(L, f);
|
2000-05-30 22:55:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static int io_popen (lua_State *L) {
|
|
|
|
#ifndef POPEN
|
2002-06-18 19:16:18 +04:00
|
|
|
luaL_error(L, "`popen' not supported");
|
2002-04-05 00:24:56 +04:00
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
FILE *f = popen(luaL_check_string(L, 1), luaL_opt_string(L, 2, "r"));
|
|
|
|
return setnewfile(L, f);
|
|
|
|
#endif
|
2000-11-23 16:49:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_tmpfile (lua_State *L) {
|
2002-04-05 00:24:56 +04:00
|
|
|
return setnewfile(L, tmpfile());
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
|
|
|
|
1996-11-01 20:03:36 +03:00
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static FILE *getiofile (lua_State *L, const char *name) {
|
2002-06-05 20:59:37 +04:00
|
|
|
FILE *f;
|
2002-04-05 00:24:56 +04:00
|
|
|
lua_pushstring(L, name);
|
|
|
|
lua_rawget(L, lua_upvalueindex(1));
|
2002-06-05 20:59:37 +04:00
|
|
|
f = tofile(L, -1);
|
|
|
|
if (f == NULL)
|
2002-06-18 19:16:18 +04:00
|
|
|
luaL_error(L, "%s is closed", name);
|
2002-06-05 20:59:37 +04:00
|
|
|
return f;
|
2002-04-05 00:24:56 +04:00
|
|
|
}
|
2000-03-20 22:13:45 +03:00
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
|
|
|
|
static int g_iofile (lua_State *L, const char *name, const char *mode) {
|
2002-06-05 20:59:37 +04:00
|
|
|
if (lua_isnoneornil(L, 1)) {
|
2002-04-05 00:24:56 +04:00
|
|
|
lua_pushstring(L, name);
|
|
|
|
lua_rawget(L, lua_upvalueindex(1));
|
|
|
|
return 1;
|
1997-06-27 00:39:10 +04:00
|
|
|
}
|
1996-11-01 20:03:36 +03:00
|
|
|
else {
|
2002-04-05 00:24:56 +04:00
|
|
|
const char *filename = lua_tostring(L, 1);
|
|
|
|
lua_pushstring(L, name);
|
|
|
|
if (filename) {
|
|
|
|
FILE *f = fopen(filename, mode);
|
|
|
|
luaL_arg_check(L, f, 1, strerror(errno));
|
|
|
|
newfile(L, f);
|
|
|
|
}
|
|
|
|
else {
|
2002-06-05 20:59:37 +04:00
|
|
|
tofile(L, 1); /* check that it's a valid file handle */
|
2002-04-05 00:24:56 +04:00
|
|
|
lua_pushvalue(L, 1);
|
|
|
|
}
|
|
|
|
lua_rawset(L, lua_upvalueindex(1));
|
|
|
|
return 0;
|
1996-11-01 20:03:36 +03:00
|
|
|
}
|
2000-03-20 22:13:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static int io_input (lua_State *L) {
|
|
|
|
return g_iofile(L, IO_INPUT, "r");
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static int io_output (lua_State *L) {
|
|
|
|
return g_iofile(L, IO_OUTPUT, "w");
|
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
|
|
|
|
2001-06-22 17:49:42 +04:00
|
|
|
static int read_number (lua_State *L, FILE *f) {
|
2001-10-26 21:33:30 +04:00
|
|
|
lua_Number d;
|
2001-11-28 23:13:13 +03:00
|
|
|
if (fscanf(f, LUA_NUMBER_SCAN, &d) == 1) {
|
2001-06-22 17:49:42 +04:00
|
|
|
lua_pushnumber(L, d);
|
|
|
|
return 1;
|
2000-05-24 17:54:49 +04:00
|
|
|
}
|
2001-06-22 17:49:42 +04:00
|
|
|
else return 0; /* read fails */
|
1998-12-27 23:21:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-22 17:49:42 +04:00
|
|
|
static int test_eof (lua_State *L, FILE *f) {
|
2001-11-28 23:13:13 +03:00
|
|
|
int c = getc(f);
|
2001-06-22 17:49:42 +04:00
|
|
|
ungetc(c, f);
|
|
|
|
lua_pushlstring(L, NULL, 0);
|
|
|
|
return (c != EOF);
|
1998-12-27 23:21:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-12 23:56:25 +04:00
|
|
|
static int read_line (lua_State *L, FILE *f) {
|
|
|
|
luaL_Buffer b;
|
|
|
|
luaL_buffinit(L, &b);
|
|
|
|
for (;;) {
|
|
|
|
size_t l;
|
|
|
|
char *p = luaL_prepbuffer(&b);
|
|
|
|
if (fgets(p, LUAL_BUFFERSIZE, f) == NULL) { /* eof? */
|
|
|
|
luaL_pushresult(&b); /* close buffer */
|
|
|
|
return (lua_strlen(L, -1) > 0); /* check whether read something */
|
|
|
|
}
|
|
|
|
l = strlen(p);
|
|
|
|
if (p[l-1] != '\n')
|
|
|
|
luaL_addsize(&b, l);
|
|
|
|
else {
|
|
|
|
luaL_addsize(&b, l - 1); /* do not include `eol' */
|
|
|
|
luaL_pushresult(&b); /* close buffer */
|
|
|
|
return 1; /* read at least an `eol' */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-24 17:54:49 +04:00
|
|
|
static int read_chars (lua_State *L, FILE *f, size_t n) {
|
2001-07-12 18:59:14 +04:00
|
|
|
size_t rlen; /* how much to read */
|
|
|
|
size_t nr; /* number of chars actually read */
|
2001-06-22 17:49:42 +04:00
|
|
|
luaL_Buffer b;
|
|
|
|
luaL_buffinit(L, &b);
|
2001-07-12 18:59:14 +04:00
|
|
|
rlen = LUAL_BUFFERSIZE; /* try to read that much each time */
|
2001-06-22 17:49:42 +04:00
|
|
|
do {
|
2001-11-28 23:13:13 +03:00
|
|
|
char *p = luaL_prepbuffer(&b);
|
2001-07-12 18:59:14 +04:00
|
|
|
if (rlen > n) rlen = n; /* cannot read more than asked */
|
2001-11-28 23:13:13 +03:00
|
|
|
nr = fread(p, sizeof(char), rlen, f);
|
2001-07-12 18:59:14 +04:00
|
|
|
luaL_addsize(&b, nr);
|
|
|
|
n -= nr; /* still have to read `n' chars */
|
|
|
|
} while (n > 0 && nr == rlen); /* until end of count or eof */
|
2001-06-22 17:49:42 +04:00
|
|
|
luaL_pushresult(&b); /* close buffer */
|
|
|
|
return (n == 0 || lua_strlen(L, -1) > 0);
|
1999-10-07 23:18:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static int g_read (lua_State *L, FILE *f, int first) {
|
2001-06-22 17:49:42 +04:00
|
|
|
int nargs = lua_gettop(L) - 1;
|
2000-12-22 20:32:28 +03:00
|
|
|
int success;
|
2000-08-29 18:33:31 +04:00
|
|
|
int n;
|
2001-01-25 19:45:36 +03:00
|
|
|
if (nargs == 0) { /* no arguments? */
|
2002-04-12 23:56:25 +04:00
|
|
|
success = read_line(L, f);
|
2002-04-05 00:24:56 +04:00
|
|
|
n = first+1; /* to return 1 result */
|
2000-08-29 18:33:31 +04:00
|
|
|
}
|
2001-01-25 19:45:36 +03:00
|
|
|
else { /* ensure stack space for all results and for auxlib's buffer */
|
2001-11-28 23:13:13 +03:00
|
|
|
luaL_check_stack(L, nargs+LUA_MINSTACK, "too many arguments");
|
2001-01-25 19:45:36 +03:00
|
|
|
success = 1;
|
2002-04-05 00:24:56 +04:00
|
|
|
for (n = first; nargs-- && success; n++) {
|
2001-12-05 23:15:18 +03:00
|
|
|
if (lua_type(L, n) == LUA_TNUMBER) {
|
2001-06-22 17:49:42 +04:00
|
|
|
size_t l = (size_t)lua_tonumber(L, n);
|
|
|
|
success = (l == 0) ? test_eof(L, f) : read_chars(L, f, l);
|
|
|
|
}
|
1999-10-07 23:18:36 +04:00
|
|
|
else {
|
2001-11-28 23:13:13 +03:00
|
|
|
const char *p = lua_tostring(L, n);
|
|
|
|
if (!p || p[0] != '*')
|
2002-06-18 19:16:18 +04:00
|
|
|
return luaL_error(L, "invalid `read' option");
|
1999-10-07 23:18:36 +04:00
|
|
|
switch (p[1]) {
|
2001-11-28 23:13:13 +03:00
|
|
|
case 'n': /* number */
|
2000-12-22 20:32:28 +03:00
|
|
|
success = read_number(L, f);
|
|
|
|
break;
|
2001-11-28 23:13:13 +03:00
|
|
|
case 'l': /* line */
|
2002-04-12 23:56:25 +04:00
|
|
|
success = read_line(L, f);
|
1999-10-07 23:18:36 +04:00
|
|
|
break;
|
2001-11-28 23:13:13 +03:00
|
|
|
case 'a': /* file */
|
2001-06-22 17:49:42 +04:00
|
|
|
read_chars(L, f, ~((size_t)0)); /* read MAX_SIZE_T chars */
|
1999-10-07 23:18:36 +04:00
|
|
|
success = 1; /* always success */
|
|
|
|
break;
|
2001-11-28 23:13:13 +03:00
|
|
|
case 'w': /* word */
|
2002-06-18 19:16:18 +04:00
|
|
|
return luaL_error(L, "obsolete option `*w'");
|
1999-10-07 23:18:36 +04:00
|
|
|
default:
|
2002-05-06 23:05:10 +04:00
|
|
|
return luaL_argerror(L, n, "invalid format");
|
1999-10-07 23:18:36 +04:00
|
|
|
}
|
|
|
|
}
|
1998-12-27 23:21:28 +03:00
|
|
|
}
|
2000-12-22 20:32:28 +03:00
|
|
|
}
|
|
|
|
if (!success) {
|
|
|
|
lua_pop(L, 1); /* remove last result */
|
|
|
|
lua_pushnil(L); /* push nil instead */
|
|
|
|
}
|
2002-04-05 00:24:56 +04:00
|
|
|
return n - first;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_read (lua_State *L) {
|
|
|
|
return g_read(L, getiofile(L, IO_INPUT), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int f_read (lua_State *L) {
|
|
|
|
return g_read(L, tofile(L, 1), 2);
|
1995-11-10 20:55:48 +03:00
|
|
|
}
|
|
|
|
|
1999-01-04 15:41:12 +03:00
|
|
|
/* }====================================================== */
|
|
|
|
|
1995-11-10 20:55:48 +03:00
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static int g_write (lua_State *L, FILE *f, int arg) {
|
|
|
|
int nargs = lua_gettop(L) - 1;
|
1996-11-01 20:03:36 +03:00
|
|
|
int status = 1;
|
2002-04-05 00:24:56 +04:00
|
|
|
for (; nargs--; arg++) {
|
2001-12-05 23:15:18 +03:00
|
|
|
if (lua_type(L, arg) == LUA_TNUMBER) {
|
1999-12-28 14:52:49 +03:00
|
|
|
/* optimization: could be done exactly as for strings */
|
2001-03-26 18:31:49 +04:00
|
|
|
status = status &&
|
2001-11-28 23:13:13 +03:00
|
|
|
fprintf(f, LUA_NUMBER_FMT, 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;
|
2001-11-28 23:13:13 +03:00
|
|
|
const char *s = luaL_check_lstr(L, arg, &l);
|
|
|
|
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
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
static int io_write (lua_State *L) {
|
|
|
|
return g_write(L, getiofile(L, IO_OUTPUT), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int f_write (lua_State *L) {
|
|
|
|
return g_write(L, tofile(L, 1), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int f_seek (lua_State *L) {
|
1999-08-17 00:52:00 +04:00
|
|
|
static const int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END};
|
2001-11-28 23:13:13 +03:00
|
|
|
static const char *const modenames[] = {"set", "cur", "end", NULL};
|
2002-04-05 00:24:56 +04:00
|
|
|
FILE *f = tofile(L, 1);
|
2001-11-28 23:13:13 +03:00
|
|
|
int op = luaL_findstring(luaL_opt_string(L, 2, "cur"), modenames);
|
2001-01-25 19:45:36 +03:00
|
|
|
long offset = luaL_opt_long(L, 3, 0);
|
2001-11-28 23:13:13 +03:00
|
|
|
luaL_arg_check(L, op != -1, 2, "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) {
|
2002-04-05 00:24:56 +04:00
|
|
|
return pushresult(L, fflush(getiofile(L, IO_OUTPUT)) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int f_flush (lua_State *L) {
|
|
|
|
return pushresult(L, fflush(tofile(L, 1)) == 0);
|
1998-08-25 00:14:56 +04:00
|
|
|
}
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
|
2002-03-20 15:54:08 +03:00
|
|
|
static const luaL_reg iolib[] = {
|
2002-04-05 00:24:56 +04:00
|
|
|
{"input", io_input},
|
|
|
|
{"output", io_output},
|
2002-03-20 15:54:08 +03:00
|
|
|
{"close", io_close},
|
2002-04-05 00:24:56 +04:00
|
|
|
{"flush", io_flush},
|
|
|
|
{"open", io_open},
|
|
|
|
{"popen", io_popen},
|
|
|
|
{"read", io_read},
|
|
|
|
{"tmpfile", io_tmpfile},
|
|
|
|
{"write", io_write},
|
2002-03-20 15:54:08 +03:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
2002-04-05 00:24:56 +04:00
|
|
|
|
|
|
|
static const luaL_reg flib[] = {
|
|
|
|
{"flush", f_flush},
|
|
|
|
{"read", f_read},
|
|
|
|
{"seek", f_seek},
|
|
|
|
{"write", f_write},
|
2002-06-05 21:42:03 +04:00
|
|
|
{"close", io_close},
|
2002-04-05 00:24:56 +04:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void createmeta (lua_State *L) {
|
|
|
|
lua_pushliteral(L, FILEHANDLE); /* S: FH */
|
|
|
|
lua_newtable(L); /* S: mt FH */
|
|
|
|
/* close files when collected */
|
|
|
|
lua_pushliteral(L, "__gc"); /* S: `gc' mt FH */
|
|
|
|
lua_pushvalue(L, -2); /* S: mt `gc' mt FH */
|
|
|
|
lua_pushcclosure(L, io_close, 1); /* S: close `gc' mt FH */
|
|
|
|
lua_rawset(L, -3); /* S: mt FH */
|
|
|
|
/* file methods */
|
|
|
|
lua_pushliteral(L, "__gettable"); /* S: `gettable' mt FH */
|
|
|
|
lua_pushvalue(L, -2); /* S: mt `gettable' mt FH */
|
|
|
|
lua_rawset(L, -3); /* S: mt FH */
|
|
|
|
lua_pushvalue(L, -1); /* S: mt mt FH */
|
|
|
|
luaL_openlib(L, flib, 1); /* S: mt FH */
|
|
|
|
/* put new metatable into registry */
|
|
|
|
lua_rawset(L, LUA_REGISTRYINDEX); /* S: empty */
|
|
|
|
/* meta table for CLOSEDFILEHANDLE */
|
|
|
|
lua_pushliteral(L, CLOSEDFILEHANDLE);
|
|
|
|
lua_newtable(L);
|
|
|
|
lua_rawset(L, LUA_REGISTRYINDEX);
|
|
|
|
}
|
|
|
|
|
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) {
|
2001-11-28 23:13:13 +03:00
|
|
|
char buff[L_tmpnam];
|
2000-11-23 16:49:35 +03:00
|
|
|
if (tmpnam(buff) != buff)
|
2002-06-18 19:16:18 +04:00
|
|
|
return luaL_error(L, "unable to generate a unique filename");
|
2000-11-23 16:49:35 +03:00
|
|
|
lua_pushstring(L, buff);
|
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
|
|
|
|
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) {
|
2000-12-04 21:33:40 +03:00
|
|
|
lua_pushnumber(L, ((lua_Number)clock())/(lua_Number)CLOCKS_PER_SEC);
|
2000-08-28 21:57:04 +04:00
|
|
|
return 1;
|
1998-05-21 02:21:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-18 16:42:19 +03:00
|
|
|
/*
|
|
|
|
** {======================================================
|
|
|
|
** Time/Date operations
|
|
|
|
** { year=%Y, month=%m, day=%d, hour=%H, min=%M, sec=%S,
|
|
|
|
** wday=%w+1, yday=%j, isdst=? }
|
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
static void setfield (lua_State *L, const char *key, int value) {
|
2002-02-07 20:25:36 +03:00
|
|
|
lua_pushstring(L, key);
|
2000-12-18 16:42:19 +03:00
|
|
|
lua_pushnumber(L, value);
|
2002-02-07 20:25:36 +03:00
|
|
|
lua_rawset(L, -3);
|
2000-12-18 16:42:19 +03:00
|
|
|
}
|
|
|
|
|
2002-07-12 22:54:53 +04:00
|
|
|
static void setboolfield (lua_State *L, const char *key, int value) {
|
|
|
|
lua_pushstring(L, key);
|
|
|
|
lua_pushboolean(L, value);
|
|
|
|
lua_rawset(L, -3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int getboolfield (lua_State *L, const char *key) {
|
|
|
|
int res;
|
|
|
|
lua_pushstring(L, key);
|
|
|
|
lua_gettable(L, -2);
|
|
|
|
res = lua_toboolean(L, -1);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2000-12-18 16:42:19 +03:00
|
|
|
|
2001-11-28 23:13:13 +03:00
|
|
|
static int getfield (lua_State *L, const char *key, int d) {
|
2000-12-18 16:42:19 +03:00
|
|
|
int res;
|
2002-02-07 20:25:36 +03:00
|
|
|
lua_pushstring(L, key);
|
|
|
|
lua_gettable(L, -2);
|
2000-12-18 16:42:19 +03:00
|
|
|
if (lua_isnumber(L, -1))
|
2001-08-31 23:46:07 +04:00
|
|
|
res = (int)(lua_tonumber(L, -1));
|
2000-12-18 16:42:19 +03:00
|
|
|
else {
|
|
|
|
if (d == -2)
|
2002-06-18 19:16:18 +04:00
|
|
|
return luaL_error(L, "field `%s' missing in date table", key);
|
2000-12-18 16:42:19 +03:00
|
|
|
res = d;
|
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-28 21:57:04 +04:00
|
|
|
static int io_date (lua_State *L) {
|
2001-11-28 23:13:13 +03:00
|
|
|
const char *s = luaL_opt_string(L, 1, "%c");
|
2001-08-31 23:46:07 +04:00
|
|
|
time_t t = (time_t)(luaL_opt_number(L, 2, -1));
|
2000-02-08 19:39:42 +03:00
|
|
|
struct tm *stm;
|
2001-08-31 23:46:07 +04:00
|
|
|
if (t == (time_t)(-1)) /* no time given? */
|
2000-12-18 16:42:19 +03:00
|
|
|
t = time(NULL); /* use current time */
|
2001-11-28 23:13:13 +03:00
|
|
|
if (*s == '!') { /* UTC? */
|
2000-12-18 16:42:19 +03:00
|
|
|
stm = gmtime(&t);
|
|
|
|
s++; /* skip `!' */
|
|
|
|
}
|
1996-11-01 20:03:36 +03:00
|
|
|
else
|
2000-12-18 16:42:19 +03:00
|
|
|
stm = localtime(&t);
|
|
|
|
if (stm == NULL) /* invalid date? */
|
|
|
|
lua_pushnil(L);
|
2001-11-28 23:13:13 +03:00
|
|
|
else if (strcmp(s, "*t") == 0) {
|
2000-12-18 16:42:19 +03:00
|
|
|
lua_newtable(L);
|
2001-11-28 23:13:13 +03:00
|
|
|
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);
|
2002-07-12 22:54:53 +04:00
|
|
|
setboolfield(L, "isdst", stm->tm_isdst);
|
2000-12-18 16:42:19 +03:00
|
|
|
}
|
|
|
|
else {
|
2001-11-28 23:13:13 +03:00
|
|
|
char b[256];
|
2000-12-18 16:42:19 +03:00
|
|
|
if (strftime(b, sizeof(b), s, stm))
|
|
|
|
lua_pushstring(L, b);
|
|
|
|
else
|
2002-06-26 20:37:23 +04:00
|
|
|
return luaL_error(L, "`date' format too long");
|
2000-12-18 16:42:19 +03:00
|
|
|
}
|
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-12-18 16:42:19 +03:00
|
|
|
static int io_time (lua_State *L) {
|
2002-03-27 18:30:41 +03:00
|
|
|
if (lua_isnoneornil(L, 1)) /* called without args? */
|
2000-12-18 16:42:19 +03:00
|
|
|
lua_pushnumber(L, time(NULL)); /* return current time */
|
|
|
|
else {
|
|
|
|
time_t t;
|
|
|
|
struct tm ts;
|
2001-12-05 23:15:18 +03:00
|
|
|
luaL_check_type(L, 1, LUA_TTABLE);
|
2000-12-18 16:42:19 +03:00
|
|
|
lua_settop(L, 1); /* make sure table is at the top */
|
2001-11-28 23:13:13 +03:00
|
|
|
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);
|
2002-07-12 22:54:53 +04:00
|
|
|
ts.tm_mon = getfield(L, "month", -2) - 1;
|
|
|
|
ts.tm_year = getfield(L, "year", -2) - 1900;
|
|
|
|
ts.tm_isdst = getboolfield(L, "isdst");
|
2000-12-18 16:42:19 +03:00
|
|
|
t = mktime(&ts);
|
2001-08-31 23:46:07 +04:00
|
|
|
if (t == (time_t)(-1))
|
2000-12-18 16:42:19 +03:00
|
|
|
lua_pushnil(L);
|
2000-12-22 19:57:13 +03:00
|
|
|
else
|
2000-12-18 16:42:19 +03:00
|
|
|
lua_pushnumber(L, t);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_difftime (lua_State *L) {
|
2001-08-31 23:46:07 +04:00
|
|
|
lua_pushnumber(L, difftime((time_t)(luaL_check_number(L, 1)),
|
|
|
|
(time_t)(luaL_opt_number(L, 2, 0))));
|
2000-12-18 16:42:19 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }====================================================== */
|
|
|
|
|
|
|
|
|
2000-11-23 16:49:35 +03:00
|
|
|
static int io_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};
|
2001-11-28 23:13:13 +03:00
|
|
|
static const char *const catnames[] = {"all", "collate", "ctype", "monetary",
|
|
|
|
"numeric", "time", NULL};
|
2002-02-09 01:39:56 +03:00
|
|
|
const char *l = lua_tostring(L, 1);
|
2001-11-28 23:13:13 +03:00
|
|
|
int op = luaL_findstring(luaL_opt_string(L, 2, "all"), catnames);
|
2002-03-27 18:30:41 +03:00
|
|
|
luaL_arg_check(L, l || lua_isnoneornil(L, 1), 1, "string expected");
|
2001-11-28 23:13:13 +03:00
|
|
|
luaL_arg_check(L, op != -1, 2, "invalid option");
|
2002-02-09 01:39:56 +03:00
|
|
|
lua_pushstring(L, setlocale(cat[op], l));
|
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
|
|
|
}
|
|
|
|
|
2002-03-20 15:54:08 +03:00
|
|
|
static const luaL_reg syslib[] = {
|
2001-11-28 23:13:13 +03:00
|
|
|
{"clock", io_clock},
|
|
|
|
{"date", io_date},
|
|
|
|
{"difftime", io_difftime},
|
|
|
|
{"execute", io_execute},
|
|
|
|
{"exit", io_exit},
|
|
|
|
{"getenv", io_getenv},
|
|
|
|
{"remove", io_remove},
|
|
|
|
{"rename", io_rename},
|
|
|
|
{"setlocale", io_setloc},
|
|
|
|
{"time", io_time},
|
|
|
|
{"tmpname", io_tmpname},
|
2002-03-20 15:54:08 +03:00
|
|
|
{NULL, NULL}
|
1997-11-28 15:40:37 +03:00
|
|
|
};
|
|
|
|
|
2002-03-20 15:54:08 +03:00
|
|
|
/* }====================================================== */
|
|
|
|
|
|
|
|
|
1999-03-16 23:07:54 +03:00
|
|
|
|
2001-03-06 23:09:38 +03:00
|
|
|
LUALIB_API int lua_iolibopen (lua_State *L) {
|
2002-04-05 00:24:56 +04:00
|
|
|
createmeta(L);
|
2002-06-05 21:24:04 +04:00
|
|
|
luaL_opennamedlib(L, LUA_OSLIBNAME, syslib, 0);
|
2002-04-05 00:24:56 +04:00
|
|
|
lua_pushliteral(L, FILEHANDLE); /* S: FH */
|
|
|
|
lua_rawget(L, LUA_REGISTRYINDEX); /* S: mt */
|
|
|
|
lua_pushvalue(L, -1); /* S: mt mt */
|
2002-06-05 21:24:04 +04:00
|
|
|
luaL_opennamedlib(L, LUA_IOLIBNAME, iolib, 1); /* S: mt */
|
|
|
|
lua_pushliteral(L, LUA_IOLIBNAME); /* S: `io' mt */
|
2002-04-05 00:24:56 +04:00
|
|
|
lua_gettable(L, LUA_GLOBALSINDEX); /* S: io mt */
|
|
|
|
/* put predefined file handles into `io' table */
|
|
|
|
registerfile(L, stdin, "stdin", IO_INPUT);
|
|
|
|
registerfile(L, stdout, "stdout", IO_OUTPUT);
|
|
|
|
registerfile(L, stderr, "stderr", NULL);
|
|
|
|
lua_pop(L, 2); /* S: empty */
|
2001-03-06 23:09:38 +03:00
|
|
|
return 0;
|
1993-07-28 17:18:00 +04:00
|
|
|
}
|
1998-12-27 23:21:28 +03:00
|
|
|
|