mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 07:22:57 +02:00
lua_filehelpers.cpp: Add lua script function 'touch()'
- Set Lua api version to 1.50
Origin commit data
------------------
Commit: ab322416dc
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2016-09-04 (Sun, 04 Sep 2016)
This commit is contained in:
@@ -4,4 +4,4 @@
|
|||||||
* to luainstance.h changes
|
* to luainstance.h changes
|
||||||
*/
|
*/
|
||||||
#define LUA_API_VERSION_MAJOR 1
|
#define LUA_API_VERSION_MAJOR 1
|
||||||
#define LUA_API_VERSION_MINOR 49
|
#define LUA_API_VERSION_MINOR 50
|
||||||
|
@@ -24,6 +24,7 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <utime.h>
|
||||||
|
|
||||||
#include <global.h>
|
#include <global.h>
|
||||||
#include <system/debug.h>
|
#include <system/debug.h>
|
||||||
@@ -53,6 +54,7 @@ void CLuaInstFileHelpers::LuaFileHelpersRegister(lua_State *L)
|
|||||||
{ "new", CLuaInstFileHelpers::FileHelpersNew },
|
{ "new", CLuaInstFileHelpers::FileHelpersNew },
|
||||||
{ "cp", CLuaInstFileHelpers::FileHelpersCp },
|
{ "cp", CLuaInstFileHelpers::FileHelpersCp },
|
||||||
{ "chmod", CLuaInstFileHelpers::FileHelpersChmod },
|
{ "chmod", CLuaInstFileHelpers::FileHelpersChmod },
|
||||||
|
{ "touch", CLuaInstFileHelpers::FileHelpersTouch },
|
||||||
{ "__gc", CLuaInstFileHelpers::FileHelpersDelete },
|
{ "__gc", CLuaInstFileHelpers::FileHelpersDelete },
|
||||||
{ NULL, NULL }
|
{ NULL, NULL }
|
||||||
};
|
};
|
||||||
@@ -161,6 +163,68 @@ int CLuaInstFileHelpers::FileHelpersChmod(lua_State *L)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int CLuaInstFileHelpers::FileHelpersTouch(lua_State *L)
|
||||||
|
{
|
||||||
|
CLuaFileHelpers *D = FileHelpersCheckData(L, 1);
|
||||||
|
if (!D) return 0;
|
||||||
|
|
||||||
|
int numargs = lua_gettop(L) - 1;
|
||||||
|
int min_numargs = 1;
|
||||||
|
if (numargs < min_numargs) {
|
||||||
|
printf("luascript touch: not enough arguments (%d, expected %d)\n", numargs, min_numargs);
|
||||||
|
lua_pushboolean(L, false);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
const char *file = "";
|
||||||
|
file = luaL_checkstring(L, 2);
|
||||||
|
|
||||||
|
bool ret = true;
|
||||||
|
lua_Debug ar;
|
||||||
|
|
||||||
|
if (!file_exists(file)) {
|
||||||
|
FILE *f = fopen(file, "w");
|
||||||
|
if (f == NULL) {
|
||||||
|
ret = false;
|
||||||
|
lua_getstack(L, 1, &ar);
|
||||||
|
lua_getinfo(L, "Sl", &ar);
|
||||||
|
const char* s = strerror(errno);
|
||||||
|
printf(">>> Lua script error [%s:%d] %s\n (error from neutrino: [%s:%d])\n",
|
||||||
|
ar.short_src, ar.currentline, s, __path_file__, __LINE__);
|
||||||
|
lua_pushboolean(L, ret);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
fclose(f);
|
||||||
|
if (numargs == min_numargs) {
|
||||||
|
lua_pushboolean(L, ret);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
time_t modTime;
|
||||||
|
if (numargs == min_numargs)
|
||||||
|
/* current time */
|
||||||
|
modTime = time(NULL);
|
||||||
|
else
|
||||||
|
/* new time */
|
||||||
|
modTime = (time_t)luaL_checkint(L, 3);
|
||||||
|
|
||||||
|
utimbuf utb;
|
||||||
|
utb.actime = modTime;
|
||||||
|
utb.modtime = modTime;
|
||||||
|
if (utime(file, &utb) != 0) {
|
||||||
|
ret = false;
|
||||||
|
lua_getstack(L, 1, &ar);
|
||||||
|
lua_getinfo(L, "Sl", &ar);
|
||||||
|
const char* s = strerror(errno);
|
||||||
|
printf(">>> Lua script error [%s:%d] %s\n (error from neutrino: [%s:%d])\n",
|
||||||
|
ar.short_src, ar.currentline, s, __path_file__, __LINE__);
|
||||||
|
}
|
||||||
|
|
||||||
|
lua_pushboolean(L, ret);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -41,6 +41,7 @@ class CLuaInstFileHelpers
|
|||||||
static int FileHelpersNew(lua_State *L);
|
static int FileHelpersNew(lua_State *L);
|
||||||
static int FileHelpersCp(lua_State *L);
|
static int FileHelpersCp(lua_State *L);
|
||||||
static int FileHelpersChmod(lua_State *L);
|
static int FileHelpersChmod(lua_State *L);
|
||||||
|
static int FileHelpersTouch(lua_State *L);
|
||||||
static int FileHelpersDelete(lua_State *L);
|
static int FileHelpersDelete(lua_State *L);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user