efl/src/lib/elua/cache.c

213 lines
4.8 KiB
C
Raw Normal View History

2014-12-12 05:39:57 -08:00
#include "Elua.h"
#include "elua_private.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <unistd.h>
/* bytecode caching */
2014-05-28 05:36:52 -07:00
static Eina_File *
check_bc(Eina_File *of, const char *fname, Eina_Bool *bc)
2014-05-28 05:36:52 -07:00
{
if (of)
{
struct stat bc_stat, sc_stat;
/* original file doesn't exist, only bytecode does, use bytecode */
if (stat(fname, &sc_stat) < 0)
return of;
2014-06-11 03:12:27 -07:00
if (stat(eina_file_filename_get(of), &bc_stat) < 0)
{
/* what? */
eina_file_close(of);
goto generate;
}
/* bytecode is newer than original file, use bytecode */
if (bc_stat.st_mtime > sc_stat.st_mtime)
return of;
/* bytecode is not new enough; trigger regeneration */
eina_file_close(of);
}
2014-06-11 03:12:27 -07:00
generate:
*bc = EINA_TRUE;
return eina_file_open(fname, EINA_FALSE);
}
static Eina_File *
open_src(const char *fname, Eina_Bool *bc)
{
Eina_File *f = NULL;
const char *ext = strstr(fname, ".lua");
if (ext && !ext[4])
2014-05-28 05:36:52 -07:00
{
char buf[PATH_MAX];
snprintf(buf, sizeof(buf), "%sc", fname);
f = check_bc(eina_file_open(buf, EINA_FALSE), fname, bc);
2014-05-28 05:36:52 -07:00
}
if (!f) f = eina_file_open(fname, EINA_FALSE);
return f;
}
2014-05-28 05:36:52 -07:00
static int
writef(lua_State *L EINA_UNUSED, const void *p, size_t size, void *ud)
{
FILE *f = ud;
return ferror(f) || (fwrite(p, 1, size, f) != size);
}
static FILE *
bc_tmp_open(const char *fname, char *buf, size_t buflen)
{
int fd;
#ifndef _WIN32
mode_t old_umask;
#endif
char *fs = strrchr(fname, '/'), *bs = strrchr(fname, '\\');
if (!fs && !bs)
snprintf(buf, buflen, "./XXXXXX");
else
{
char *ss = (fs > bs) ? fs : bs;
snprintf(buf, buflen, "%.*sXXXXXX", (int)(ss - fname + 1), fname);
}
#ifndef _WIN32
old_umask = umask(S_IRWXG|S_IRWXO);
#endif
fd = mkstemp(buf);
#ifndef _WIN32
umask(old_umask);
#endif
if (fd < 0)
return NULL;
return fdopen(fd, "w");
}
2014-05-28 05:36:52 -07:00
static void
write_bc(lua_State *L, const char *fname)
{
FILE *f;
char buf[PATH_MAX];
if ((f = bc_tmp_open(fname, buf, sizeof(buf))))
2014-05-28 05:36:52 -07:00
{
char buf2[PATH_MAX];
2014-05-28 05:36:52 -07:00
if (lua_dump(L, writef, f))
{
fclose(f);
2014-06-11 03:12:27 -07:00
/* there really is nothing to handle here */
(void)!!remove(buf);
2014-05-28 05:36:52 -07:00
}
else fclose(f);
snprintf(buf2, sizeof(buf2), "%sc", fname);
if (rename(buf, buf2))
{
/* a futile attempt at cleanup */
(void)!!remove(buf);
(void)!!remove(buf2);
}
2014-05-28 05:36:52 -07:00
}
}
2014-05-28 05:36:52 -07:00
static const char *
getf(lua_State *L EINA_UNUSED, void *ud, size_t *size)
{
char *buff = *((char**)ud);
if (feof(stdin)) return NULL;
*size = fread(buff, 1, LUAL_BUFFERSIZE, stdin);
return (*size > 0) ? buff : NULL;
}
2014-05-28 05:36:52 -07:00
static int
elua_loadstdin(lua_State *L)
2014-05-28 05:36:52 -07:00
{
char buff[LUAL_BUFFERSIZE];
int status = lua_load(L, getf, &buff, "=stdin");
2014-05-28 05:36:52 -07:00
if (ferror(stdin))
{
lua_pop(L, 1);
2014-04-04 02:56:20 -07:00
lua_pushfstring(L, "cannot read stdin: %s", strerror(errno));
return LUA_ERRFILE;
2014-05-28 05:36:52 -07:00
}
return status;
}
2014-05-28 05:36:52 -07:00
typedef struct Map_Stream
{
char *fmap;
size_t flen;
} Map_Stream;
2014-05-28 05:36:52 -07:00
static const char *
getf_map(lua_State *L EINA_UNUSED, void *ud, size_t *size)
{
Map_Stream *s = ud;
const char *fmap = s->fmap;
*size = s->flen;
/* gotta null it - tell luajit to terminate reading */
s->fmap = NULL;
return fmap;
}
2014-12-12 05:39:57 -08:00
EAPI int
elua_io_loadfile(lua_State *L, const char *fname)
2014-05-28 05:36:52 -07:00
{
Map_Stream s;
int status;
Eina_File *f;
const char *chname;
Eina_Bool bcache = EINA_FALSE;
if (!fname)
{
return elua_loadstdin(L);
2014-05-28 05:36:52 -07:00
}
if (!(f = open_src(fname, &bcache)))
2014-05-28 05:36:52 -07:00
{
lua_pushfstring(L, "cannot open %s: %s", fname, strerror(errno));
return LUA_ERRFILE;
2014-05-28 05:36:52 -07:00
}
chname = lua_pushfstring(L, "@%s", fname);
s.flen = eina_file_size_get(f);
if (!(s.fmap = eina_file_map_all(f, EINA_FILE_RANDOM)))
{
lua_pushfstring(L, "cannot read %s: %s", chname + 1, strerror(errno));
lua_remove(L, -2);
return LUA_ERRFILE;
2014-05-28 05:36:52 -07:00
}
status = lua_load(L, getf_map, &s, chname);
2014-05-28 05:36:52 -07:00
eina_file_map_free(f, s.fmap);
eina_file_close(f);
if (!status && bcache) write_bc(L, fname);
lua_remove(L, -2);
return status;
}
/* lua function */
2014-05-28 05:36:52 -07:00
static int
loadfile(lua_State *L)
{
const char *fname = luaL_optstring(L, 1, NULL);
2014-12-12 05:39:57 -08:00
int status = elua_io_loadfile(L, fname),
2014-05-28 05:36:52 -07:00
hasenv = (lua_gettop(L) >= 3);
if (!status)
{
if (hasenv)
{
lua_pushvalue(L, 3);
lua_setfenv(L, -2);
}
return 1;
2014-05-28 05:36:52 -07:00
}
lua_pushnil(L);
lua_insert(L, -2);
return 2;
}
2014-12-12 05:39:57 -08:00
EAPI void
elua_io_register(lua_State *L)
2014-05-28 05:36:52 -07:00
{
lua_pushcfunction(L, loadfile);
lua_setglobal(L, "loadfile");
}