mirror of https://github.com/rusefi/lua.git
details
This commit is contained in:
parent
abcc124df0
commit
dae850e0ee
19
liolib.c
19
liolib.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: liolib.c,v 2.75 2006/09/18 14:03:18 roberto Exp roberto $
|
** $Id: liolib.c,v 2.76 2007/04/19 20:22:32 roberto Exp roberto $
|
||||||
** Standard I/O (and system) library
|
** Standard I/O (and system) library
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -51,15 +51,14 @@ static void fileerror (lua_State *L, int arg, const char *filename) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define topfile(L) ((FILE **)luaL_checkudata(L, 1, LUA_FILEHANDLE))
|
#define tofilep(L) ((FILE **)luaL_checkudata(L, 1, LUA_FILEHANDLE))
|
||||||
|
|
||||||
|
|
||||||
static int io_type (lua_State *L) {
|
static int io_type (lua_State *L) {
|
||||||
void *ud;
|
void *ud;
|
||||||
luaL_checkany(L, 1);
|
luaL_checkany(L, 1);
|
||||||
ud = lua_touserdata(L, 1);
|
ud = luaL_testudata(L, 1, LUA_FILEHANDLE);
|
||||||
lua_getfield(L, LUA_REGISTRYINDEX, LUA_FILEHANDLE);
|
if (ud == NULL)
|
||||||
if (ud == NULL || !lua_getmetatable(L, 1) || !lua_rawequal(L, -2, -1))
|
|
||||||
lua_pushnil(L); /* not a file */
|
lua_pushnil(L); /* not a file */
|
||||||
else if (*((FILE **)ud) == NULL)
|
else if (*((FILE **)ud) == NULL)
|
||||||
lua_pushliteral(L, "closed file");
|
lua_pushliteral(L, "closed file");
|
||||||
|
@ -70,7 +69,7 @@ static int io_type (lua_State *L) {
|
||||||
|
|
||||||
|
|
||||||
static FILE *tofile (lua_State *L) {
|
static FILE *tofile (lua_State *L) {
|
||||||
FILE **f = topfile(L);
|
FILE **f = tofilep(L);
|
||||||
if (*f == NULL)
|
if (*f == NULL)
|
||||||
luaL_error(L, "attempt to use a closed file");
|
luaL_error(L, "attempt to use a closed file");
|
||||||
return *f;
|
return *f;
|
||||||
|
@ -106,7 +105,7 @@ static int io_noclose (lua_State *L) {
|
||||||
** function to close 'popen' files
|
** function to close 'popen' files
|
||||||
*/
|
*/
|
||||||
static int io_pclose (lua_State *L) {
|
static int io_pclose (lua_State *L) {
|
||||||
FILE **p = topfile(L);
|
FILE **p = tofilep(L);
|
||||||
int ok = lua_pclose(L, *p);
|
int ok = lua_pclose(L, *p);
|
||||||
*p = NULL;
|
*p = NULL;
|
||||||
return pushresult(L, ok, NULL);
|
return pushresult(L, ok, NULL);
|
||||||
|
@ -117,7 +116,7 @@ static int io_pclose (lua_State *L) {
|
||||||
** function to close regular files
|
** function to close regular files
|
||||||
*/
|
*/
|
||||||
static int io_fclose (lua_State *L) {
|
static int io_fclose (lua_State *L) {
|
||||||
FILE **p = topfile(L);
|
FILE **p = tofilep(L);
|
||||||
int ok = (fclose(*p) == 0);
|
int ok = (fclose(*p) == 0);
|
||||||
*p = NULL;
|
*p = NULL;
|
||||||
return pushresult(L, ok, NULL);
|
return pushresult(L, ok, NULL);
|
||||||
|
@ -140,7 +139,7 @@ static int io_close (lua_State *L) {
|
||||||
|
|
||||||
|
|
||||||
static int io_gc (lua_State *L) {
|
static int io_gc (lua_State *L) {
|
||||||
FILE *f = *topfile(L);
|
FILE *f = *tofilep(L);
|
||||||
/* ignore closed files */
|
/* ignore closed files */
|
||||||
if (f != NULL)
|
if (f != NULL)
|
||||||
aux_close(L);
|
aux_close(L);
|
||||||
|
@ -149,7 +148,7 @@ static int io_gc (lua_State *L) {
|
||||||
|
|
||||||
|
|
||||||
static int io_tostring (lua_State *L) {
|
static int io_tostring (lua_State *L) {
|
||||||
FILE *f = *topfile(L);
|
FILE *f = *tofilep(L);
|
||||||
if (f == NULL)
|
if (f == NULL)
|
||||||
lua_pushliteral(L, "file (closed)");
|
lua_pushliteral(L, "file (closed)");
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue