2009-06-28 14:55:16 +00:00
|
|
|
/*
|
2014-04-02 18:46:06 +00:00
|
|
|
** $Id: liolib.c,v 2.73.1.3 2008/01/18 17:47:43 roberto Exp $
|
2009-06-28 14:55:16 +00:00
|
|
|
** Standard I/O (and system) library
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define liolib_c
|
|
|
|
#define LUA_LIB
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
#include "lauxlib.h"
|
|
|
|
#include "lualib.h"
|
|
|
|
#include "rocklibc.h"
|
2018-10-29 06:54:35 +00:00
|
|
|
#include "rocklib.h"
|
2009-06-28 14:55:16 +00:00
|
|
|
|
2018-01-29 07:13:37 +00:00
|
|
|
#include "llimits.h"
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
#define IO_INPUT 1
|
|
|
|
#define IO_OUTPUT 2
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static const char *const fnames[] = {"input", "output"};
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int pushresult (lua_State *L, int i, const char *filename) {
|
|
|
|
int en = errno;
|
|
|
|
if (i) {
|
|
|
|
lua_pushboolean(L, 1);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lua_pushnil(L);
|
|
|
|
if (filename)
|
|
|
|
lua_pushfstring(L, "%s: %s", filename, strerror(en));
|
|
|
|
else
|
|
|
|
lua_pushfstring(L, "%s", strerror(en));
|
2018-11-08 16:32:45 +00:00
|
|
|
lua_pushinteger(L, en);
|
2014-04-02 18:46:06 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
}
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static void fileerror (lua_State *L, int arg, const char *filename) {
|
|
|
|
lua_pushfstring(L, "%s: %s", filename, strerror(errno));
|
|
|
|
luaL_argerror(L, arg, lua_tostring(L, -1));
|
|
|
|
}
|
2009-06-28 14:55:16 +00:00
|
|
|
|
2018-11-08 16:32:45 +00:00
|
|
|
#define tofilep(L) ((int*) luaL_checkudata(L, 1, LUA_FILEHANDLE))
|
2009-06-28 14:55:16 +00:00
|
|
|
|
|
|
|
static int io_type (lua_State *L) {
|
2014-04-02 18:46:06 +00:00
|
|
|
void *ud;
|
2009-06-28 14:55:16 +00:00
|
|
|
luaL_checkany(L, 1);
|
2014-04-02 18:46:06 +00:00
|
|
|
ud = lua_touserdata(L, 1);
|
|
|
|
lua_getfield(L, LUA_REGISTRYINDEX, LUA_FILEHANDLE);
|
|
|
|
if (ud == NULL || !lua_getmetatable(L, 1) || !lua_rawequal(L, -2, -1))
|
2009-06-28 14:55:16 +00:00
|
|
|
lua_pushnil(L); /* not a file */
|
2014-04-02 18:46:06 +00:00
|
|
|
else if (*((int *)ud) < 0)
|
2009-06-28 14:55:16 +00:00
|
|
|
lua_pushliteral(L, "closed file");
|
|
|
|
else
|
|
|
|
lua_pushliteral(L, "file");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int* tofile (lua_State *L) {
|
2018-11-08 16:32:45 +00:00
|
|
|
int *f = tofilep(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
if (*f < 0)
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
luaL_error(L, "attempt to use a closed file");
|
2014-04-02 18:46:06 +00:00
|
|
|
return f;
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 14:55:16 +00:00
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
|
2009-06-28 14:55:16 +00:00
|
|
|
/*
|
|
|
|
** When creating file handles, always creates a `closed' file handle
|
|
|
|
** before opening the actual file; so, if there is a memory error, the
|
|
|
|
** file is not left opened.
|
|
|
|
*/
|
2014-04-02 18:46:06 +00:00
|
|
|
static int* newfile (lua_State *L) {
|
|
|
|
int *pf = (int *)lua_newuserdata(L, sizeof(int));
|
|
|
|
*pf = -1; /* file handle is currently `closed' */
|
|
|
|
luaL_getmetatable(L, LUA_FILEHANDLE);
|
|
|
|
lua_setmetatable(L, -2);
|
|
|
|
return pf;
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
/*
|
|
|
|
** function to close regular files
|
|
|
|
*/
|
|
|
|
static int io_fclose (lua_State *L) {
|
|
|
|
int *p = tofile(L);
|
|
|
|
int ok = (rb->close(*p) == 0);
|
|
|
|
*p = -1;
|
|
|
|
return pushresult(L, ok, NULL);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static inline int aux_close (lua_State *L) {
|
|
|
|
return io_fclose(L);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int io_close (lua_State *L) {
|
|
|
|
if (lua_isnone(L, 1))
|
|
|
|
lua_rawgeti(L, LUA_ENVIRONINDEX, IO_OUTPUT);
|
|
|
|
tofile(L); /* make sure argument is a file */
|
|
|
|
return aux_close(L);
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int io_gc (lua_State *L) {
|
2018-11-08 16:32:45 +00:00
|
|
|
int *f = tofilep(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
/* ignore closed files */
|
2018-11-08 16:32:45 +00:00
|
|
|
if (*f >= 0)
|
2014-04-02 18:46:06 +00:00
|
|
|
aux_close(L);
|
|
|
|
return 0;
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int io_tostring (lua_State *L) {
|
2018-11-08 16:32:45 +00:00
|
|
|
int *f = tofilep(L);
|
|
|
|
if (*f < 0)
|
2014-04-02 18:46:06 +00:00
|
|
|
lua_pushliteral(L, "file (closed)");
|
|
|
|
else
|
2018-11-08 16:32:45 +00:00
|
|
|
lua_pushfstring(L, "file (%d)", *f);
|
2014-04-02 18:46:06 +00:00
|
|
|
return 1;
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_open (lua_State *L) {
|
|
|
|
const char *filename = luaL_checkstring(L, 1);
|
|
|
|
const char *mode = luaL_optstring(L, 2, "r");
|
2014-04-02 18:46:06 +00:00
|
|
|
int *pf = newfile(L);
|
2018-11-08 16:32:45 +00:00
|
|
|
int flags, wrmode;
|
|
|
|
|
|
|
|
switch(*mode) {
|
|
|
|
case 'r':
|
|
|
|
flags = O_RDONLY;
|
|
|
|
wrmode = 0;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
flags = O_WRONLY;
|
|
|
|
wrmode = O_CREAT | O_TRUNC;
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
flags = O_WRONLY;
|
|
|
|
wrmode = O_CREAT | O_APPEND;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
flags = 0;
|
|
|
|
wrmode = 0;
|
|
|
|
return luaL_error(L, "invalid option " LUA_QL("%c") " to "
|
|
|
|
LUA_QL("open"), *mode);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
2018-11-08 16:32:45 +00:00
|
|
|
|
|
|
|
if(*(mode+1) == '+')
|
|
|
|
flags = O_RDWR;
|
|
|
|
|
|
|
|
flags |= wrmode;
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
*pf = rb->open(filename, flags, 0666);
|
|
|
|
return (*pf < 0) ? pushresult(L, 0, filename) : 1;
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int* getiofile (lua_State *L, int findex) {
|
|
|
|
int *f;
|
|
|
|
lua_rawgeti(L, LUA_ENVIRONINDEX, findex);
|
|
|
|
f = (int *)lua_touserdata(L, -1);
|
|
|
|
if (f == NULL || *f < 0)
|
|
|
|
luaL_error(L, "standard %s file is closed", fnames[findex - 1]);
|
|
|
|
return f;
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int g_iofile (lua_State *L, int f, int flags) {
|
2009-06-28 14:55:16 +00:00
|
|
|
if (!lua_isnoneornil(L, 1)) {
|
|
|
|
const char *filename = lua_tostring(L, 1);
|
2014-04-02 18:46:06 +00:00
|
|
|
if (filename) {
|
|
|
|
int *pf = newfile(L);
|
|
|
|
*pf = rb->open(filename, flags);
|
|
|
|
if (*pf < 0)
|
|
|
|
fileerror(L, 1, filename);
|
|
|
|
}
|
2009-06-28 14:55:16 +00:00
|
|
|
else {
|
|
|
|
tofile(L); /* check that it's a valid file handle */
|
|
|
|
lua_pushvalue(L, 1);
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
lua_rawseti(L, LUA_ENVIRONINDEX, f);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
/* return current value */
|
2014-04-02 18:46:06 +00:00
|
|
|
lua_rawgeti(L, LUA_ENVIRONINDEX, f);
|
2009-06-28 14:55:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_input (lua_State *L) {
|
2014-04-02 18:46:06 +00:00
|
|
|
return g_iofile(L, IO_INPUT, O_RDONLY);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_output (lua_State *L) {
|
2014-04-02 18:46:06 +00:00
|
|
|
return g_iofile(L, IO_OUTPUT, O_WRONLY);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_readline (lua_State *L);
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static void aux_lines (lua_State *L, int idx, int toclose) {
|
|
|
|
lua_pushvalue(L, idx);
|
2009-06-28 14:55:16 +00:00
|
|
|
lua_pushboolean(L, toclose); /* close/not close file when finished */
|
2014-04-02 18:46:06 +00:00
|
|
|
lua_pushcclosure(L, io_readline, 2);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int f_lines (lua_State *L) {
|
|
|
|
tofile(L); /* check that it's a valid file handle */
|
2014-04-02 18:46:06 +00:00
|
|
|
aux_lines(L, 1, 0);
|
2009-06-28 14:55:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_lines (lua_State *L) {
|
2014-04-02 18:46:06 +00:00
|
|
|
if (lua_isnoneornil(L, 1)) { /* no arguments? */
|
|
|
|
/* will iterate over default input */
|
|
|
|
lua_rawgeti(L, LUA_ENVIRONINDEX, IO_INPUT);
|
|
|
|
return f_lines(L);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
else {
|
2009-06-28 14:55:16 +00:00
|
|
|
const char *filename = luaL_checkstring(L, 1);
|
2014-04-02 18:46:06 +00:00
|
|
|
int *pf = newfile(L);
|
|
|
|
*pf = rb->open(filename, O_RDONLY);
|
|
|
|
if (*pf < 0)
|
|
|
|
fileerror(L, 1, filename);
|
|
|
|
aux_lines(L, lua_gettop(L), 1);
|
|
|
|
return 1;
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** {======================================================
|
|
|
|
** READ
|
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int read_number (lua_State *L, int *f) {
|
2009-06-28 14:55:16 +00:00
|
|
|
lua_Number d;
|
2018-10-29 06:54:35 +00:00
|
|
|
if (filetol(*f, &d) == 1) { /* was fscanf(f, LUA_NUMBER_SCAN, &d)*/
|
2009-06-28 14:55:16 +00:00
|
|
|
lua_pushnumber(L, d);
|
|
|
|
return 1;
|
|
|
|
}
|
2018-11-08 16:32:45 +00:00
|
|
|
else {
|
|
|
|
lua_pushnil(L); /* "result" to be removed */
|
|
|
|
return 0; /* read fails */
|
|
|
|
}
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int test_eof (lua_State *L, int *f) {
|
2018-01-29 07:13:37 +00:00
|
|
|
off_t s = rb->lseek(*f, 0, SEEK_CUR);
|
2009-06-28 14:55:16 +00:00
|
|
|
lua_pushlstring(L, NULL, 0);
|
2018-01-29 07:13:37 +00:00
|
|
|
return s < rb->filesize(*f);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Rockbox already defines read_line() */
|
2014-04-02 18:46:06 +00:00
|
|
|
static int _read_line (lua_State *L, int *f) {
|
2009-06-28 14:55:16 +00:00
|
|
|
luaL_Buffer b;
|
|
|
|
luaL_buffinit(L, &b);
|
|
|
|
for (;;) {
|
|
|
|
size_t l;
|
|
|
|
char *p = luaL_prepbuffer(&b);
|
2018-11-02 18:13:27 +00:00
|
|
|
off_t r = rb->read_line(*f, p, LUAL_BUFFERSIZE); /* does not include `eol' */
|
|
|
|
if (r <= 0) { /* eof? */
|
2009-06-28 14:55:16 +00:00
|
|
|
luaL_pushresult(&b); /* close buffer */
|
2018-11-02 18:13:27 +00:00
|
|
|
return (lua_objlen(L, -1) > 0); /* check whether read something */
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
2018-11-02 18:13:27 +00:00
|
|
|
l = strlen(p);
|
|
|
|
luaL_addsize(&b, l);
|
|
|
|
if(r >= LUAL_BUFFERSIZE - 1)
|
|
|
|
continue; /* more to read */
|
|
|
|
|
|
|
|
luaL_pushresult(&b); /* close buffer */
|
|
|
|
return 1; /* we read at least 1 character */
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int read_chars (lua_State *L, int *f, size_t n) {
|
|
|
|
size_t rlen; /* how much to read */
|
2018-01-29 07:13:37 +00:00
|
|
|
ssize_t nr; /* number of chars actually read */
|
Update lua plugin to 5.2.3
Prior to this patch the Lua plugin used version 5.1.4. This change
reduces the number of modifications in the Lua source using some new
defines and because the upstream source is now more flexible.
Unless otherwise stated, l*.[ch] files are taken unmodified from the
upstream lua-5.2.3.
fscanf.c:
file descriptors in rockbox are just ints, they are hidden behind a
void* now so liolib requires less modifications. fscanf is updated to
use void* too.
getc.c: this is a new file required for getc implementation in lauxlib.c
lauxlib.c: LoadF replaced FILE* with int, the rockbox file
descriptor int are cast to FILE* (actually void* due to typedef).
getc uses the PREFIX version. stdin is not used, as per 5.1.4.
lbaselib.c: now uses strspn in the number parsing. print uses DEBUGF now
rather than being commented out.
lbitlib.c: use the built-in version from 5.2.3 rather than Reuben
Thomas's external library. Backwards compatible and adds some new bit
operations.
ldo.c: the LUAI_THROW/TRY defines are now in the core lua code, so have
been removed from rockconf.h
liolib.c: here the implementation has changed to use the LStream from
the original source, and cast the FILE* pointers to int. This has
reduced the number of modifications from the upstream version.
llex.c: the only change from upstream is to remove the locale include.
lmathlib.c: updated from the 5.2.3 version and re-applied the changes
that were made vs 5.1.4 for random numbers and to remove unsupported
float functions.
loadlib.c: upstream version, with the 5.1.4 changes for missing
functions.
lobject.c: upstream version, with ctype.h added and sprintf changed to
snprintf.
loslib.c: upstream version with locale.h removed and 5.1.4 changes for
unsupportable functions.
lstrlib.c: sprintf changed to snprintf.
ltable.c: upstream with the hashnum function from 5.1.4 to avoid frexp
in luai_hashnum.
luaconf.h: updated to 5.2.3 version, restored relevant parts from the
original 5.1.4 configuration. The COMPAT defines that are no longer
available are not included.
lundump.c: VERSION macro conflicts with the core Rockbox equivalent.
rocklib.c: luaL_reg is no longer available, replaced by luaL_Reg
equivalent. Moved checkboolean/optboolean functions to this file and out
of core lua files. luaL_getn is no longer available, replaced by
luaL_rawlen. luaL_register is deprecated, use the newlib/setfuncs
replacements. rli_init has to be called before setting up the newlib to
avoid overwriting the rb table.
rocklib_aux.pl: use rli_checkboolean from rocklib.c.
rocklua.c: new default bits library used, update the library loading
code with idiomatic 5.2 code.
strcspn.c: no longer needed, but strspn.c is required for strspn in
lbaselib.c
Change-Id: I0c7945c755f79083afe98ec117e1e8cf13de2651
Reviewed-on: http://gerrit.rockbox.org/774
Tested: Richard Quirk <richard.quirk@gmail.com>
Reviewed-by: Marcin Bukat <marcin.bukat@gmail.com>
2014-03-19 18:31:31 +00:00
|
|
|
luaL_Buffer b;
|
|
|
|
luaL_buffinit(L, &b);
|
2014-04-02 18:46:06 +00:00
|
|
|
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 = rb->read(*f, p, rlen);
|
2018-01-29 07:13:37 +00:00
|
|
|
if (nr < 0)
|
|
|
|
luaL_error(L, "error reading file");
|
2014-04-02 18:46:06 +00:00
|
|
|
luaL_addsize(&b, nr);
|
|
|
|
n -= nr; /* still have to read `n' chars */
|
2018-01-29 07:13:37 +00:00
|
|
|
} while (n > 0 && nr == (ssize_t) rlen); /* until end of count or eof */
|
2009-06-28 14:55:16 +00:00
|
|
|
luaL_pushresult(&b); /* close buffer */
|
2014-04-02 18:46:06 +00:00
|
|
|
return (n == 0 || lua_objlen(L, -1) > 0);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int g_read (lua_State *L, int *f, int first) {
|
2009-06-28 14:55:16 +00:00
|
|
|
int nargs = lua_gettop(L) - 1;
|
|
|
|
int success;
|
|
|
|
int n;
|
|
|
|
if (nargs == 0) { /* no arguments? */
|
2014-04-02 18:46:06 +00:00
|
|
|
success = _read_line(L, f);
|
2009-06-28 14:55:16 +00:00
|
|
|
n = first+1; /* to return 1 result */
|
|
|
|
}
|
|
|
|
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 = first; nargs-- && success; n++) {
|
|
|
|
if (lua_type(L, n) == LUA_TNUMBER) {
|
|
|
|
size_t l = (size_t)lua_tointeger(L, n);
|
|
|
|
success = (l == 0) ? test_eof(L, f) : read_chars(L, f, l);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const char *p = lua_tostring(L, n);
|
|
|
|
luaL_argcheck(L, p && p[0] == '*', n, "invalid option");
|
|
|
|
switch (p[1]) {
|
|
|
|
case 'n': /* number */
|
|
|
|
success = read_number(L, f);
|
|
|
|
break;
|
|
|
|
case 'l': /* line */
|
2014-04-02 18:46:06 +00:00
|
|
|
success = _read_line(L, f);
|
2009-06-28 14:55:16 +00:00
|
|
|
break;
|
|
|
|
case 'a': /* file */
|
2014-04-02 18:46:06 +00:00
|
|
|
read_chars(L, f, ~((size_t)0)); /* read MAX_SIZE_T chars */
|
2009-06-28 14:55:16 +00:00
|
|
|
success = 1; /* always success */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return luaL_argerror(L, n, "invalid format");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!success) {
|
|
|
|
lua_pop(L, 1); /* remove last result */
|
|
|
|
lua_pushnil(L); /* push nil instead */
|
|
|
|
}
|
|
|
|
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), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_readline (lua_State *L) {
|
2014-04-02 18:46:06 +00:00
|
|
|
int *f = (int *) lua_touserdata(L, lua_upvalueindex(1));
|
|
|
|
int sucess;
|
|
|
|
if (*f < 0) /* file is already closed? */
|
|
|
|
luaL_error(L, "file is already closed");
|
|
|
|
sucess = _read_line(L, f);
|
|
|
|
if (sucess) return 1;
|
|
|
|
else { /* EOF */
|
|
|
|
if (lua_toboolean(L, lua_upvalueindex(2))) { /* generator created file? */
|
2009-06-28 14:55:16 +00:00
|
|
|
lua_settop(L, 0);
|
|
|
|
lua_pushvalue(L, lua_upvalueindex(1));
|
|
|
|
aux_close(L); /* close it */
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }====================================================== */
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
static int g_write (lua_State *L, int *f, int arg) {
|
|
|
|
int nargs = lua_gettop(L) - 1;
|
2009-06-28 14:55:16 +00:00
|
|
|
int status = 1;
|
|
|
|
for (; nargs--; arg++) {
|
|
|
|
if (lua_type(L, arg) == LUA_TNUMBER) {
|
|
|
|
/* optimization: could be done exactly as for strings */
|
|
|
|
status = status &&
|
2014-04-02 18:46:06 +00:00
|
|
|
rb->fdprintf(*f, LUA_NUMBER_FMT, lua_tonumber(L, arg)) > 0;
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
size_t l;
|
|
|
|
const char *s = luaL_checklstring(L, arg, &l);
|
2014-04-02 18:46:06 +00:00
|
|
|
status = status && (rb->write(*f, s, l) == (ssize_t)l);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-02 18:46:06 +00:00
|
|
|
return pushresult(L, status, NULL);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int io_write (lua_State *L) {
|
|
|
|
return g_write(L, getiofile(L, IO_OUTPUT), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int f_write (lua_State *L) {
|
2014-04-02 18:46:06 +00:00
|
|
|
return g_write(L, tofile(L), 2);
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int f_seek (lua_State *L) {
|
|
|
|
static const int mode[] = {SEEK_SET, SEEK_CUR, SEEK_END};
|
|
|
|
static const char *const modenames[] = {"set", "cur", "end", NULL};
|
2018-11-08 16:32:45 +00:00
|
|
|
int *f = tofile(L);
|
2009-06-28 14:55:16 +00:00
|
|
|
int op = luaL_checkoption(L, 2, "cur", modenames);
|
2014-04-02 18:46:06 +00:00
|
|
|
long offset = luaL_optlong(L, 3, 0);
|
2018-11-08 16:32:45 +00:00
|
|
|
off_t size = rb->lseek(*f, offset, mode[op]);
|
2018-01-29 07:13:37 +00:00
|
|
|
if (size < 0 || size > MAX_INT) /* signed limit */
|
2014-04-02 18:46:06 +00:00
|
|
|
return pushresult(L, 0, NULL); /* error */
|
2009-06-28 14:55:16 +00:00
|
|
|
else {
|
2018-11-08 16:32:45 +00:00
|
|
|
lua_pushinteger(L, (LUA_INTEGER) size );
|
2009-06-28 14:55:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const luaL_Reg iolib[] = {
|
|
|
|
{"close", io_close},
|
|
|
|
{"input", io_input},
|
|
|
|
{"lines", io_lines},
|
|
|
|
{"open", io_open},
|
|
|
|
{"output", io_output},
|
|
|
|
{"read", io_read},
|
|
|
|
{"type", io_type},
|
|
|
|
{"write", io_write},
|
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const luaL_Reg flib[] = {
|
|
|
|
{"close", io_close},
|
|
|
|
{"lines", f_lines},
|
|
|
|
{"read", f_read},
|
|
|
|
{"seek", f_seek},
|
|
|
|
{"write", f_write},
|
2014-04-02 18:46:06 +00:00
|
|
|
{"__gc", io_gc},
|
|
|
|
{"__tostring", io_tostring},
|
2009-06-28 14:55:16 +00:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void createmeta (lua_State *L) {
|
|
|
|
luaL_newmetatable(L, LUA_FILEHANDLE); /* create metatable for file handles */
|
|
|
|
lua_pushvalue(L, -1); /* push metatable */
|
|
|
|
lua_setfield(L, -2, "__index"); /* metatable.__index = metatable */
|
2014-04-02 18:46:06 +00:00
|
|
|
luaL_register(L, NULL, flib); /* file methods */
|
2009-06-28 14:55:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-02 18:46:06 +00:00
|
|
|
LUALIB_API int luaopen_io (lua_State *L) {
|
2009-06-28 14:55:16 +00:00
|
|
|
createmeta(L);
|
2014-04-02 18:46:06 +00:00
|
|
|
lua_replace(L, LUA_ENVIRONINDEX);
|
|
|
|
/* open library */
|
|
|
|
luaL_register(L, LUA_IOLIBNAME, iolib);
|
2009-06-28 14:55:16 +00:00
|
|
|
/* create (and set) default files */
|
2014-04-02 18:46:06 +00:00
|
|
|
lua_pop(L, 1); /* pop environment for default files */
|
2009-06-28 14:55:16 +00:00
|
|
|
return 1;
|
2018-05-28 00:36:23 +00:00
|
|
|
}
|