mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-12-12 14:17:47 +00:00
This commit is contained in:
parent
75bcea5fde
commit
f16ecc024b
6
lsyncd-conf.lua
Normal file
6
lsyncd-conf.lua
Normal file
@ -0,0 +1,6 @@
|
||||
settings = {
|
||||
nodaemon = true,
|
||||
}
|
||||
|
||||
attend_dir("s", "d")
|
||||
|
151
lsyncd.c
151
lsyncd.c
@ -7,11 +7,20 @@
|
||||
# include "inotify-nosys.h"
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include <dirent.h>
|
||||
#include <errno.h>
|
||||
#include <limits.h>
|
||||
#include <signal.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
||||
#include <lua.h>
|
||||
#include <lualib.h>
|
||||
#include <lauxlib.h>
|
||||
@ -21,26 +30,140 @@
|
||||
*/
|
||||
static int inotify_fd;
|
||||
|
||||
/**
|
||||
* Set to TERM or HUP in signal handler, when lsyncd should end or reset ASAP.
|
||||
*/
|
||||
volatile sig_atomic_t reset = 0;
|
||||
|
||||
/* the Lua interpreter */
|
||||
lua_State* L;
|
||||
|
||||
/**
|
||||
* Adds a directory to be watched.
|
||||
* Dumps the LUA stack. For debugging purposes.
|
||||
*/
|
||||
static int attend_dir (lua_State *L) {
|
||||
//lua_pushnumber(L, sin(luaL_checknumber(L, 1)));
|
||||
printf("ATTEND_DIR\n");
|
||||
int stackdump(lua_State* l)
|
||||
{
|
||||
int i;
|
||||
int top = lua_gettop(l);
|
||||
printf("total in stack %d\n",top);
|
||||
for (i = 1; i <= top; i++) {
|
||||
int t = lua_type(l, i);
|
||||
switch (t) {
|
||||
case LUA_TSTRING:
|
||||
printf("%d string: '%s'\n", i, lua_tostring(l, i));
|
||||
break;
|
||||
case LUA_TBOOLEAN:
|
||||
printf("%d boolean %s\n", i, lua_toboolean(l, i) ? "true" : "false");
|
||||
break;
|
||||
case LUA_TNUMBER:
|
||||
printf("%d number: %g\n", i, lua_tonumber(l, i));
|
||||
break;
|
||||
default: /* other values */
|
||||
printf("%d %s\n", i, lua_typename(l, t));
|
||||
break;
|
||||
}
|
||||
}
|
||||
printf("\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* The lsyncd-lua interface
|
||||
* Converts a relative directory path to an absolute.
|
||||
*
|
||||
* @param dir a relative path to directory
|
||||
* @return absolute path of directory
|
||||
*/
|
||||
static const luaL_reg lsyncd_lib[] = {
|
||||
{"attend_dir", attend_dir},
|
||||
{NULL, NULL},
|
||||
};
|
||||
static int real_dir(lua_State *L) {
|
||||
luaL_Buffer b;
|
||||
char *cbuf;
|
||||
const char *rdir = luaL_checkstring(L, 1);
|
||||
|
||||
/* use c-library to get absolute path */
|
||||
cbuf = realpath(rdir, NULL);
|
||||
if (cbuf == NULL) {
|
||||
printf("failure getting absolute path of \"%s\"\n", rdir);
|
||||
return 0;
|
||||
}
|
||||
{
|
||||
/* makes sure its a directory */
|
||||
struct stat st;
|
||||
stat(cbuf, &st);
|
||||
if (!S_ISDIR(st.st_mode)) {
|
||||
printf("failure in real_dir \"%s\" is not a directory\n", rdir);
|
||||
free(cbuf);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* returns absolute path with a concated '/' */
|
||||
luaL_buffinit(L, &b);
|
||||
luaL_addstring(&b, cbuf);
|
||||
luaL_addchar(&b, '/');
|
||||
luaL_pushresult(&b);
|
||||
free(cbuf);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Reads the directories sub directories.
|
||||
*
|
||||
* @param absolute path to directory.
|
||||
* @return a table of directory names.
|
||||
*/
|
||||
static int sub_dirs (lua_State *L) {
|
||||
const char * dirname = luaL_checkstring(L, 1);
|
||||
DIR *d;
|
||||
int idx = 1;
|
||||
|
||||
d = opendir(dirname);
|
||||
if (d == NULL) {
|
||||
printf("cannot open dir %s.\n", dirname);
|
||||
return 0;
|
||||
}
|
||||
|
||||
lua_newtable(L);
|
||||
|
||||
while (!reset) {
|
||||
struct dirent *de = readdir(d);
|
||||
bool isdir;
|
||||
if (de == NULL) {
|
||||
/* finished */
|
||||
break;
|
||||
}
|
||||
if (de->d_type == DT_UNKNOWN) {
|
||||
/* must call stat on some systems :-/ */
|
||||
char *subdir = malloc(strlen(dirname) + strlen(de->d_name) + 2);
|
||||
if (subdir == NULL) {
|
||||
printf("Out of memory. Cannot determine type of %s/%s\n", dirname, de->d_name);
|
||||
/* otherwise not so dramatic */
|
||||
continue;
|
||||
}
|
||||
struct stat st;
|
||||
strcpy(subdir, dirname);
|
||||
strcat(subdir, "/");
|
||||
strcat(subdir, de->d_name);
|
||||
stat(subdir, &st);
|
||||
isdir = S_ISDIR(st.st_mode);
|
||||
free(subdir);
|
||||
} else {
|
||||
/* we can trust readdir */
|
||||
isdir = de->d_type == DT_DIR;
|
||||
}
|
||||
if (!isdir || !strcmp(de->d_name, ".") || !strcmp(de->d_name, "..")) {
|
||||
/* ignore non directories and . and .. */
|
||||
continue;
|
||||
}
|
||||
|
||||
/* add this to the LUA table */
|
||||
lua_pushnumber(L, idx++);
|
||||
lua_pushstring(L, de->d_name);
|
||||
lua_settable(L, -3);
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
int main (int argc, char *argv[])
|
||||
@ -48,13 +171,21 @@ int main (int argc, char *argv[])
|
||||
/* load Lua */
|
||||
L = lua_open();
|
||||
luaL_openlibs(L);
|
||||
luaL_register(L, "lsyncd", lsyncd_lib);
|
||||
lua_register(L, "stackdump", stackdump);
|
||||
lua_register(L, "real_dir", real_dir);
|
||||
lua_register(L, "sub_dirs", sub_dirs);
|
||||
|
||||
luaL_loadfile(L, "lsyncd.lua");
|
||||
if (lua_pcall(L, 0, LUA_MULTRET, 0)) {
|
||||
printf("error loading lsyncd.lua: %s\n", lua_tostring(L, -1));
|
||||
return -1; // ERRNO
|
||||
}
|
||||
|
||||
luaL_loadfile(L, "lsyncd-conf.lua");
|
||||
if (lua_pcall(L, 0, LUA_MULTRET, 0)) {
|
||||
printf("error loading lsyncd-conf.lua: %s\n", lua_tostring(L, -1));
|
||||
return -1; // ERRNO
|
||||
}
|
||||
|
||||
/* open inotify */
|
||||
inotify_fd = inotify_init();
|
||||
|
43
lsyncd.lua
43
lsyncd.lua
@ -1,5 +1,42 @@
|
||||
print("Hello")
|
||||
lsyncd:attend_dir()
|
||||
print("Bye")
|
||||
------------------------------------------------------------------------------
|
||||
-- lsyncd library functions implemented in C
|
||||
------------------------------------------------------------------------------
|
||||
----
|
||||
-- real_dir(dir)
|
||||
--
|
||||
-- Converts a relative directory path to an absolute.
|
||||
--
|
||||
-- @param dir a relative path to directory
|
||||
-- @return absolute path of directory
|
||||
--
|
||||
----
|
||||
--
|
||||
-- sub_dirs(dir)
|
||||
--
|
||||
-- Reads the directories sub directories.
|
||||
--
|
||||
-- @param dir absolute path to directory.
|
||||
-- @return a table of directory names.
|
||||
--
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
-- lsyncd library functions implemented in LUA
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
----
|
||||
-- Adds watches for a directory including all subdirectories.
|
||||
--
|
||||
-- @param src
|
||||
-- @param dst
|
||||
-- @param ...
|
||||
function attend_dir(src, dst, ...)
|
||||
src = real_dir(src);
|
||||
print("attending dir", src, "->", dst);
|
||||
|
||||
local sd = sub_dirs(src);
|
||||
for k, v in ipairs(sd) do
|
||||
print("havesub", v);
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user