lsyncd/lsyncd.lua

242 lines
6.5 KiB
Lua
Raw Normal View History

2010-10-16 18:21:01 +00:00
------------------------------------------------------------------------------
2010-10-19 10:20:27 +00:00
-- lsyncd.lua Live (Mirror) Syncing Demon
--
-- License: GPLv2 (see COPYING) or any later version
--
-- Authors: Axel Kittenberger <axkibe@gmail.com>
--
-- This is the "runner" part of lsyncd. It containts all its high-level logic.
-- It works closely together with the lsyncd core in lsyncd.c. This means it
-- cannot be runned directly from the standard lua interpreter.
2010-10-16 18:21:01 +00:00
------------------------------------------------------------------------------
2010-10-18 17:09:59 +00:00
----
2010-10-19 10:20:27 +00:00
-- A security measurement.
2010-10-18 17:09:59 +00:00
-- Core will exit if version ids mismatch.
2010-10-19 21:56:00 +00:00
if lsyncd_version ~= nil then
2010-10-20 18:33:17 +00:00
print("You cannot use the lsyncd runner as configuration file!")
2010-10-19 21:56:00 +00:00
os.exit(-1)
end
2010-10-18 17:09:59 +00:00
lsyncd_version = "2.0b1"
2010-10-21 12:37:27 +00:00
----
-- Shortcuts (which user is supposed to be able to use them as well)
2010-10-20 18:33:17 +00:00
log = lsyncd.log
2010-10-17 15:24:55 +00:00
----
2010-10-21 12:37:27 +00:00
-- Table of all directories to watch,
-- filled and used only during initialization.
2010-10-18 17:09:59 +00:00
origins = {}
2010-10-17 15:24:55 +00:00
----
2010-10-21 12:37:27 +00:00
-- a array of all targets
--
-- structure:
-- [#] {
-- .targetident .. the identifier of target (like string "host:dir")
-- for lsyncd this passed competly opaquely to the action handlers
-- }
2010-10-18 17:09:59 +00:00
targets = {}
2010-10-17 15:24:55 +00:00
-----
-- all watches
2010-10-21 12:37:27 +00:00
--
-- structure:
-- [wd] = {
-- .wd .. the watch descriptor (TODO needed?)
-- .attends = [#] {
-- .odir .. origin source dir
-- .path .. path of dir
-- .target .. link to targets[#]
-- .parent .. link to parent directory in watches
-- or nil for origin
-- }
-- }
--
2010-10-18 17:09:59 +00:00
watches = {}
2010-10-17 15:24:55 +00:00
2010-10-16 18:21:01 +00:00
----
-- Adds watches for a directory including all subdirectories.
--
2010-10-21 12:37:27 +00:00
-- @param odir origin dir
-- @param path path in this dir
-- @param target link to target in [targets]
-- @param parent link to parent directory in watches[]
2010-10-18 09:02:51 +00:00
--
2010-10-21 12:37:27 +00:00
local function attend_dir(odir, path, target, parent)
2010-10-17 15:24:55 +00:00
-- actual dir = origin + path
2010-10-21 12:37:27 +00:00
local op = odir .. path
2010-10-17 15:24:55 +00:00
-- register watch and receive watch descriptor
local wd = lsyncd.add_watch(op);
if wd < 0 then
-- failed adding the watch
2010-10-21 12:37:27 +00:00
log(ERROR, "Failure adding watch " .. op .." -> ignored ")
2010-10-17 15:24:55 +00:00
-- TODO die?
return
end
2010-10-21 12:37:27 +00:00
local thiswatch = watches[wd]
if thiswatch == nil then
2010-10-17 15:24:55 +00:00
-- new watch
2010-10-21 12:37:27 +00:00
thiswatch = {wd = wd, attends = {} }
watches[wd] = thiswatch
2010-10-17 15:24:55 +00:00
end
2010-10-21 12:37:27 +00:00
table.insert(thiswatch.attends, { odir = odir, path = path, target = target, parent = parent })
2010-10-16 18:21:01 +00:00
2010-10-17 15:24:55 +00:00
-- register all subdirectories
2010-10-21 12:37:27 +00:00
local subdirs = lsyncd.sub_dirs(op);
for i, dirname in ipairs(subdirs) do
attend_dir(odir, path .. dirname .. "/", target, thiswatch)
2010-10-16 18:21:01 +00:00
end
end
2010-10-16 10:26:48 +00:00
2010-10-17 15:24:55 +00:00
----
-- Called from core on init or restart after user configuration.
--
function lsyncd_initialize()
2010-10-21 12:37:27 +00:00
-- makes sure the user gave lsyncd anything to do
if #origins == 0 then
log(ERROR, "nothing to watch. Use directory(SOURCEDIR, TARGET) in your config file.");
lsyncd.terminate(-1) -- ERRNO
end
-- runs through the origins table filled by user calling directory()
2010-10-18 09:02:51 +00:00
for i, o in ipairs(origins) do
-- resolves source to be an absolute path
2010-10-21 12:37:27 +00:00
local asrc = lsyncd.real_dir(o.source)
if asrc == nil then
print("Cannot resolve source path: ", o.source)
lsyncd.terminate(-1) -- ERRNO
2010-10-18 09:02:51 +00:00
end
-- appends the target on target lists
2010-10-21 12:37:27 +00:00
local target = { ident = o.targetident }
2010-10-17 15:24:55 +00:00
table.insert(targets, target)
2010-10-21 12:37:27 +00:00
o.target = target -- TODO needed?
2010-10-18 09:02:51 +00:00
-- and add the dir watch inclusively all subdirs
2010-10-21 12:37:27 +00:00
attend_dir(asrc, "", target)
2010-10-17 15:24:55 +00:00
end
end
2010-10-19 10:12:11 +00:00
----
2010-10-21 12:37:27 +00:00
-- Called by core to query soonest alarm.
2010-10-19 10:12:11 +00:00
--
-- @return two variables.
-- number -1 means ... alarm is in the past.
-- 0 means ... no alarm, core can in untimed sleep
-- 1 means ... alarm time specified.
-- times ... the alarm time (only read if number is 1)
function lsyncd_get_alarm()
return 0, 0
end
2010-10-17 15:24:55 +00:00
2010-10-20 13:01:26 +00:00
-----
2010-10-21 12:37:27 +00:00
-- A list of names of the event types the core sends.
2010-10-20 13:01:26 +00:00
--
local event_names = {
[ATTRIB] = "Attrib",
[MODIFY] = "Modify",
[CREATE] = "Create",
[DELETE] = "Delete",
[MOVE ] = "Move",
2010-10-20 10:25:34 +00:00
}
-----
-- Called by core on inotify event
--
2010-10-20 13:01:26 +00:00
-- @param etype enum (ATTRIB, MODIFY, CREATE, DELETE, MOVE)
-- @param wd watch descriptor (matches lsyncd.add_watch())
-- @param filename string filename without path
-- @param filename2
2010-10-20 10:25:34 +00:00
--
2010-10-20 13:01:26 +00:00
function lsyncd_event(etype, wd, filename, filename2)
if filename2 == nil then
2010-10-21 12:37:27 +00:00
log(DEBUG, "got event " .. event_names[etype] .. " of " .. filename)
2010-10-20 13:01:26 +00:00
else
2010-10-21 12:37:27 +00:00
log(DEBUG, "got event " .. event_names[etype] .. " of " .. filename .. " to " .. filename2)
end
-- looks up the watch descriptor id
local w = watches[wd]
if w == nil then
log(NORMAL, "event belongs to unknown or deleted watch descriptor.")
return
end
-- works through all possible source->target pairs
for i, a in ipairs(w.attends) do
log(DEBUG, "odir = " .. a.odir .. " path = " .. a.path)
end
end
-----
-- Called by the core for every child process that
-- finished in startup phase
--
-- Parameters are pid and exitcode of child process
--
-- Can return either a new pid if one other child process
-- has been spawned as replacement (e.g. retry) or 0 if
-- finished/ok.
--
local function startup_collector(pid, exitcode)
if exitcode ~= 0 then
log(ERROR, "Startup process", pid, " failed")
lsyncd.terminate(-1) -- ERRNO
2010-10-20 13:01:26 +00:00
end
2010-10-21 12:37:27 +00:00
return 0
2010-10-20 10:25:34 +00:00
end
2010-10-21 12:37:27 +00:00
2010-10-17 15:24:55 +00:00
------------------------------------------------------------------------------
-- lsyncd user interface
------------------------------------------------------------------------------
----
2010-10-18 09:02:51 +00:00
-- Adds one directory to be watched.
2010-10-21 12:37:27 +00:00
-- Users primary configuration device.
2010-10-18 09:02:51 +00:00
--
2010-10-21 12:37:27 +00:00
function directory(source_dir, target_identifier)
local o = { source = source_dir, targetident = target_identifier }
2010-10-18 09:02:51 +00:00
table.insert(origins, o)
2010-10-17 15:24:55 +00:00
return o
end
2010-10-19 16:40:49 +00:00
----
-- Called by core when an overflow happened.
function default_overflow()
2010-10-20 18:33:17 +00:00
log(ERROR, "--- OVERFLOW on inotify event queue ---")
2010-10-19 16:40:49 +00:00
lsyncd.terminate(-1) -- TODO reset instead.
end
overflow = default_overflow
2010-10-17 17:13:53 +00:00
-----
-- Called by core after initialization.
--
2010-10-19 20:14:55 +00:00
-- Default function will start an simultanous action for every
-- source -> destination pair. And waits for these processes to finish
2010-10-17 17:13:53 +00:00
--
2010-10-19 20:14:55 +00:00
-- The user can override this function by specifing his/her own
2010-10-17 17:13:53 +00:00
-- "startup". (and yet may still call default startup)
2010-10-18 09:02:51 +00:00
--
2010-10-17 17:13:53 +00:00
function default_startup()
2010-10-20 18:33:17 +00:00
log(NORMAL, "--- startup ---")
2010-10-17 17:13:53 +00:00
local pids = { }
2010-10-18 09:02:51 +00:00
for i, o in ipairs(origins) do
2010-10-21 12:37:27 +00:00
startup_action(o.source, o.targetident)
2010-10-17 17:13:53 +00:00
table.insert(pids, pid)
end
2010-10-19 20:14:55 +00:00
lsyncd.wait_pids(pids, "startup_collector")
2010-10-20 18:33:17 +00:00
log(NORMAL, "--- Entering normal operation with " .. #watches .. " monitored directories ---")
2010-10-17 17:13:53 +00:00
end
startup = default_startup
2010-10-19 20:21:38 +00:00
2010-10-18 17:09:59 +00:00
----
-- other functions the user might want to use
exec = lsyncd.exec