lsyncd/lsyncd.lua

813 lines
19 KiB
Lua
Raw Normal View History

2010-10-25 17:38:57 +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-25 17:38:57 +00:00
--============================================================================
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-25 14:55:40 +00:00
--
2010-10-26 11:26:57 +00:00
if lsyncd_version then
2010-10-22 08:37:15 +00:00
-- checks if the runner is being loaded twice
2010-10-27 19:34:56 +00:00
io.stderr:write(
"You cannot use the lsyncd runner as configuration file!\n")
2010-10-19 21:56:00 +00:00
os.exit(-1)
end
2010-10-27 11:31:18 +00:00
lsyncd_version = "2.0beta1"
2010-10-18 17:09:59 +00:00
2010-10-21 12:37:27 +00:00
----
-- Shortcuts (which user is supposed to be able to use them as well)
2010-10-22 12:58:57 +00:00
--
2010-10-22 10:35:26 +00:00
log = lsyncd.log
exec = lsyncd.exec
2010-10-27 19:34:56 +00:00
terminate = lsyncd.terminate
2010-10-20 18:33:17 +00:00
2010-10-25 17:38:57 +00:00
--============================================================================
-- Coding checks, ensure termination on some easy to do coding errors.
--============================================================================
2010-10-25 14:55:40 +00:00
2010-10-25 17:38:57 +00:00
-----
2010-11-02 13:18:34 +00:00
-- The array objects are tables that error if accessed with a non-number.
2010-10-25 14:55:40 +00:00
--
2010-11-02 13:18:34 +00:00
local Array = (function()
-- Metatable
local mt = {}
-- on accessing a nil index.
mt.__index = function(t, k)
2010-10-25 17:38:57 +00:00
if type(k) ~= "number" then
2010-11-02 13:18:34 +00:00
error("Key '"..k.."' invalid for Array", 2)
2010-10-25 14:55:40 +00:00
end
2010-10-25 17:38:57 +00:00
return rawget(t, k)
2010-11-02 13:18:34 +00:00
end
-- on assigning a new index.
mt.__newindex = function(t, k, v)
2010-10-25 17:38:57 +00:00
if type(k) ~= "number" then
2010-11-02 13:18:34 +00:00
error("Key '"..k.."' invalid for Array", 2)
2010-10-25 17:38:57 +00:00
end
rawset(t, k, v)
2010-10-25 14:55:40 +00:00
end
2010-11-02 13:18:34 +00:00
-- creates a new object
2010-11-02 17:07:42 +00:00
local function new()
2010-11-02 13:18:34 +00:00
local o = {}
setmetatable(o, mt)
return o
end
-- objects public interface
return {new = new}
end)()
2010-10-25 14:55:40 +00:00
2010-10-25 17:38:57 +00:00
-----
2010-11-02 13:18:34 +00:00
-- The count array objects are tables that error if accessed with a non-number.
-- Additionally they maintain their length as "size" attribute.
2010-10-25 17:38:57 +00:00
-- Lua's # operator does not work on tables which key values are not
-- strictly linear.
--
2010-11-02 13:18:34 +00:00
local CountArray = (function()
-- Metatable
local mt = {}
-- key to native table
local k_nt = {}
-- on accessing a nil index.
mt.__index = function(t, k)
2010-10-25 17:38:57 +00:00
if type(k) ~= "number" then
2010-11-02 13:18:34 +00:00
error("Key '"..k.."' invalid for CountArray", 2)
2010-10-25 17:38:57 +00:00
end
2010-11-02 13:18:34 +00:00
return t[k_nt][k]
end
2010-10-25 17:38:57 +00:00
2010-11-02 13:18:34 +00:00
-- on assigning a new index.
mt.__newindex = function(t, k, v)
2010-10-25 17:38:57 +00:00
if type(k) ~= "number" then
2010-11-02 13:18:34 +00:00
error("Key '"..k.."' invalid for CountArray", 2)
2010-10-25 17:38:57 +00:00
end
2010-11-02 13:18:34 +00:00
-- value before
local vb = t[k_nt][k]
2010-10-25 17:38:57 +00:00
if v and not vb then
2010-11-01 16:38:39 +00:00
t.size = t.size + 1
2010-10-25 17:38:57 +00:00
elseif not v and vb then
2010-11-01 16:38:39 +00:00
t.size = t.size - 1
2010-10-25 17:38:57 +00:00
end
2010-11-02 13:18:34 +00:00
t[k_nt][k] = v
end
-- TODO
2010-11-02 17:07:42 +00:00
local function iwalk(self)
2010-11-02 13:18:34 +00:00
return ipairs(self[k_nt])
end
-- creates a new count array
2010-11-02 17:07:42 +00:00
local function new()
2010-11-02 13:18:34 +00:00
-- k_nt is native table, private for this object.
local o = {size = 0, iwalk = iwalk, [k_nt] = {} }
setmetatable(o, mt)
return o
2010-10-25 14:55:40 +00:00
end
2010-11-02 13:18:34 +00:00
-- objects public interface
return {new = new}
end)()
2010-10-25 14:55:40 +00:00
2010-10-25 17:38:57 +00:00
-----
-- Metatable to limit keys to those only presented in their prototype
--
local meta_check_prototype = {
__index = function(t, k)
if not t.prototype[k] then
2010-10-27 19:34:56 +00:00
error("tables prototype doesn't have key '"..k.."'.", 2)
2010-10-25 17:38:57 +00:00
end
return rawget(t, k)
end,
__newindex = function(t, k, v)
if not t.prototype[k] then
2010-10-27 19:34:56 +00:00
error("tables prototype doesn't have key '"..k.."'.", 2)
2010-10-25 14:55:40 +00:00
end
rawset(t, k, v)
end
2010-10-25 17:38:57 +00:00
}
-----
-- Sets the prototype of a table limiting its keys to a defined list.
--
local function set_prototype(t, prototype)
t.prototype = prototype
for k, _ in pairs(t) do
if not t.prototype[k] and k ~= "prototype" then
2010-10-27 19:34:56 +00:00
error("Cannot set prototype, conflicting key: '"..k.."'.", 2)
2010-10-25 17:38:57 +00:00
end
end
2010-10-31 22:25:34 +00:00
setmetatable(t, meta_check_prototype)
2010-10-25 17:38:57 +00:00
end
2010-10-31 22:25:34 +00:00
----
2010-11-01 16:38:39 +00:00
-- Locks globals,
-- no more globals can be created
--
2010-11-01 17:54:09 +00:00
local function globals_lock()
2010-11-01 16:38:39 +00:00
local t = _G
2010-10-31 22:25:34 +00:00
local mt = getmetatable(t) or {}
2010-11-01 19:57:53 +00:00
mt.__index = function(t, k)
if (k~="_" and string.sub(k, 1, 2) ~= "__") then
error("Access of non-existing global.", 2)
else
rawget(t, k)
end
end
2010-11-01 16:38:39 +00:00
mt.__newindex = function(t, k, v)
if (k~="_" and string.sub(k, 1, 2) ~= "__") then
error("Lsyncd does not allow GLOBALS to be created on the fly." ..
"Declare '" ..k.."' local or declare global on load.", 2)
else
rawset(t, k, v)
end
end
2010-10-31 22:25:34 +00:00
setmetatable(t, mt)
end
2010-11-02 14:11:26 +00:00
-----
-- Holds information about a delayed event for one origin/target.
--
local Delay = (function()
-----
-- Creates a new delay.
--
-- @param TODO
2010-11-02 17:07:42 +00:00
local function new(ename, pathname, alarm)
2010-11-02 14:11:26 +00:00
local o = {
ename = ename,
alarm = alarm,
pathname = pathname,
}
return o
end
2010-10-31 22:25:34 +00:00
2010-11-02 14:11:26 +00:00
return {new = new}
end)()
-----
-- TODO
--
local Origin = (function()
----
-- TODO
--
2010-11-02 17:07:42 +00:00
local function new(source, targetident, config)
2010-11-02 14:11:26 +00:00
local o = {
config = config,
delays = CountArray.new(),
delayname = {},
source = source,
targetident = targetident,
processes = CountArray.new(),
}
return o
end
-- public interface
return {new = new}
end)()
-----
-- Puts an action on the delay stack.
--
function Origin.delay(origin, ename, time, pathname, pathname2)
2010-11-02 17:07:42 +00:00
log(DEBUG, "delay ", ename, " ", pathname)
2010-11-02 14:11:26 +00:00
local o = origin
local delays = o.delays
local delayname = o.delayname
if ename == "Move" and not o.config.move then
-- if there is no move action defined, split a move as delete/create
log(DEBUG, "splitting Move into Delete & Create")
delay(o, "Delete", time, pathname, nil)
delay(o, "Create", time, pathname2, nil)
return
end
-- creates the new action
local alarm
-- TODO scope
if time and o.config.delay then
alarm = lsyncd.addto_clock(time, o.config.delay)
else
alarm = lsyncd.now()
end
local newd = Delay.new(ename, pathname, alarm)
local oldd = delayname[pathname]
if oldd then
-- if there is already a delay on this pathname.
-- decide what should happen with multiple delays.
if newd.ename == "MoveFrom" or newd.ename == "MoveTo" or
oldd.ename == "MoveFrom" or oldd.ename == "MoveTo" then
-- do not collapse moves
2010-11-02 17:07:42 +00:00
log(NORMAL, "Not collapsing events with moves on ", pathname)
2010-11-02 14:11:26 +00:00
-- TODO stackinfo
return
else
local col = o.config.collapse_table[oldd.ename][newd.ename]
if col == -1 then
-- events cancel each other
2010-11-02 17:07:42 +00:00
log(NORMAL, "Nullfication: ", newd.ename, " after ",
oldd.ename, " on ", pathname)
2010-11-02 14:13:45 +00:00
oldd.ename = "None"
2010-11-02 14:11:26 +00:00
return
elseif col == 0 then
-- events tack
2010-11-02 17:07:42 +00:00
log(NORMAL, "Stacking ", newd.ename, " after ",
oldd.ename, " on ", pathname)
2010-11-02 14:11:26 +00:00
-- TODO Stack pointer
else
2010-11-02 17:07:42 +00:00
log(NORMAL, "Collapsing ", newd.ename, " upon ",
oldd.ename, " to ", col, " on ", pathname)
2010-11-02 14:11:26 +00:00
oldd.ename = col
return
end
end
table.insert(delays, newd)
else
delayname[pathname] = newd
table.insert(delays, newd)
end
end
2010-10-25 17:38:57 +00:00
2010-11-02 14:11:26 +00:00
-----
-- Origins - a singleton
--
-- It maintains all configured directories to be synced.
--
local Origins = (function()
-- the list of all origins
local list = Array.new()
-- adds a configuration
2010-11-02 17:07:42 +00:00
local function add(source, targetident, config)
2010-11-02 14:11:26 +00:00
-- absolute path of source
local real_src = lsyncd.real_dir(source)
if not real_src then
2010-11-02 17:07:42 +00:00
log(Error, "Cannot resolve source path: ", source)
2010-11-02 14:11:26 +00:00
terminate(-1) -- ERRNO
end
config.max_processes =
config.max_processes or
settings.max_processes or
defaults.max_processes
config.collapse_table =
config.collapse_table or
settings.collapse_table or
defaults.collapse_table
config.max_actions = config.max_actions or 1
local o = Origin.new(real_src, targetident, config)
table.insert(list, o)
end
-- allows to walk through all origins
2010-11-02 17:07:42 +00:00
local function iwalk()
2010-11-02 14:11:26 +00:00
return ipairs(list)
end
-- returns the number of origins
local size = function()
return #list
end
-- public interface
return {add = add, iwalk = iwalk, size = size}
end)()
2010-10-25 17:38:57 +00:00
2010-10-17 15:24:55 +00:00
-----
2010-11-01 18:08:03 +00:00
-- inotifies
2010-10-28 17:56:33 +00:00
--
-- contains all inotify watches.
2010-10-21 12:37:27 +00:00
--
2010-11-01 18:08:03 +00:00
-- structure:
-- a list indexed by watch descriptor
-- [wd]
-- of a numeric list of all origins watching this dir.
-- [#]
-- of inotify {
2010-10-22 12:58:57 +00:00
-- .origin .. link to origin
-- .path .. relative path of dir
-- }
2010-10-21 12:37:27 +00:00
-- }
--
2010-11-02 13:18:34 +00:00
local inotifies = CountArray.new()
2010-11-01 18:08:03 +00:00
local proto_inotify = {origin=true, path=true}
2010-10-17 15:24:55 +00:00
2010-10-22 13:12:13 +00:00
-----
-- A list of names of the event types the core sends.
2010-11-01 19:57:53 +00:00
-- (Also makes sure the strings are not collected)
--
local valid_events = {
Attrib = true,
Modify = true,
Create = true,
Delete = true,
Move = true,
MoveFrom = true,
MoveTo = true,
2010-10-22 13:12:13 +00:00
}
2010-10-22 08:34:41 +00:00
2010-10-25 17:38:57 +00:00
--============================================================================
2010-10-25 14:55:40 +00:00
-- The lsyncd runner
2010-10-25 17:38:57 +00:00
--============================================================================
2010-10-25 14:55:40 +00:00
2010-10-22 08:34:41 +00:00
2010-10-16 18:21:01 +00:00
----
-- Adds watches for a directory including all subdirectories.
--
2010-10-22 12:58:57 +00:00
-- @param origin link to origins[] entry
-- @param path relative path of this dir to origin
2010-10-21 12:37:27 +00:00
-- @param parent link to parent directory in watches[]
2010-10-18 09:02:51 +00:00
--
2010-11-01 19:57:53 +00:00
local function inotify_watch_dir(origin, path)
2010-10-22 12:58:57 +00:00
local op = origin.source .. 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-11-02 17:07:42 +00:00
log(ERROR, "Failure adding watch ", op, " -> ignored ")
2010-10-17 15:24:55 +00:00
return
end
2010-11-01 18:08:03 +00:00
local ilist = inotifies[wd]
if not ilist then
2010-11-02 13:18:34 +00:00
ilist = Array.new()
2010-11-01 18:08:03 +00:00
inotifies[wd] = ilist
2010-10-17 15:24:55 +00:00
end
2010-11-01 18:08:03 +00:00
local inotify = { origin = origin, path = path }
set_prototype(inotify, proto_inotify)
table.insert(ilist, inotify)
2010-10-22 12:58:57 +00:00
2010-11-01 19:57:53 +00:00
-- on a warmstart add a Create for the directory
if not origin.config.startup then
2010-11-02 14:11:26 +00:00
-- TODO BROKEN
origin:delay("Create", sync, nil, nil, nil)
2010-10-22 12:58:57 +00:00
end
2010-10-16 18:21:01 +00:00
2010-10-23 17:01:56 +00:00
-- registers and adds watches for all subdirectories
2010-11-01 18:08:03 +00:00
local subdirs = lsyncd.sub_dirs(op)
2010-10-25 14:55:40 +00:00
for _, dirname in ipairs(subdirs) do
2010-11-01 19:57:53 +00:00
inotify_watch_dir(origin, path..dirname.."/")
2010-10-16 18:21:01 +00:00
end
end
2010-10-16 10:26:48 +00:00
2010-10-23 17:01:56 +00:00
-----
-- Called from code whenever a child process finished and
-- zombie process was collected by core.
--
2010-10-24 13:52:28 +00:00
function lsyncd_collect_process(pid, exitcode)
2010-11-01 17:54:09 +00:00
local delay = nil
local origin = nil
2010-11-02 14:11:26 +00:00
for _, o in Origins.iwalk() do
2010-11-01 17:54:09 +00:00
delay = o.processes[pid]
if delay then
origin = o
break
end
end
if not delay then
2010-10-23 17:01:56 +00:00
return
end
2010-11-02 17:07:42 +00:00
log(DEBUG, "collected ", pid, ": ",
delay.ename, " of ", origin.source, delay.pathname,
" = ", exitcode)
2010-10-31 22:25:34 +00:00
origin.processes[pid] = nil
2010-10-23 17:01:56 +00:00
end
2010-10-23 12:36:55 +00:00
2010-11-01 14:16:35 +00:00
------
2010-11-01 16:38:39 +00:00
-- Hidden key for lsyncd.lua internal variables not ment for
-- the user to see
2010-11-01 14:16:35 +00:00
--
2010-11-01 16:38:39 +00:00
local hk = {}
2010-11-01 14:16:35 +00:00
2010-11-01 16:38:39 +00:00
------
--- TODO
2010-11-01 17:54:09 +00:00
local inlet = {
2010-11-01 16:38:39 +00:00
[hk] = {
2010-11-01 19:57:53 +00:00
origin = true,
delay = true,
2010-11-01 16:38:39 +00:00
},
2010-11-01 19:57:53 +00:00
config = function(self)
return self[hk].origin.config
end,
2010-11-01 16:38:39 +00:00
nextevent = function(self)
local h = self[hk]
2010-11-01 14:16:35 +00:00
return {
2010-11-01 19:57:53 +00:00
spath = h.origin.source .. h.delay.pathname,
tpath = h.origin.targetident .. h.delay.pathname,
ename = h.delay.ename
2010-11-01 14:16:35 +00:00
}
end,
}
2010-10-23 12:36:55 +00:00
-----
-- TODO
--
--
2010-10-31 22:25:34 +00:00
local function invoke_action(origin, delay)
local o = origin
2010-11-01 19:57:53 +00:00
local config = o.config
if delay.ename == "None" then
2010-10-26 11:26:57 +00:00
-- a removed action
return
2010-10-23 12:36:55 +00:00
end
2010-11-01 19:57:53 +00:00
inlet[hk].origin = origin
inlet[hk].delay = delay
local pid = config.action(inlet)
if pid and pid > 0 then
o.processes[pid] = delay
2010-10-23 12:36:55 +00:00
end
end
2010-10-28 17:56:33 +00:00
----
-- Called from core to get a status report written into a file descriptor
--
function lsyncd_status_report(fd)
local w = lsyncd.writefd
2010-11-02 17:07:42 +00:00
w(fd, "Lsyncd status report at ", os.date(), "\n\n")
w(fd, "Watching ", inotifies.size, " directories\n")
2010-11-02 13:18:34 +00:00
for wd, v in inotifies:iwalk() do
2010-11-02 17:07:42 +00:00
w(fd, " ", wd, ": ")
2010-11-01 19:57:53 +00:00
for _, inotify in ipairs(v) do
2010-11-02 17:07:42 +00:00
w(fd, "(", inotify.origin.source, "/", (inotify.path) or ")")
2010-10-28 17:56:33 +00:00
end
w(fd, "\n")
end
end
2010-10-22 23:14:11 +00:00
----
2010-10-23 12:36:55 +00:00
-- Called from core everytime at the latest of an
-- expired alarm (or more often)
--
2010-10-24 16:41:58 +00:00
-- @param now the time now
2010-10-23 12:36:55 +00:00
--
function lsyncd_alarm(now)
2010-10-24 13:52:28 +00:00
-- goes through all targets and spawns more actions
-- if possible
2010-11-02 14:11:26 +00:00
for _, o in Origins.iwalk() do
2010-11-01 19:57:53 +00:00
if o.processes.size < o.config.max_processes then
2010-10-24 13:52:28 +00:00
local delays = o.delays
2010-10-26 11:26:57 +00:00
local d = delays[1]
if d and lsyncd.before_eq(d.alarm, now) then
2010-10-31 22:25:34 +00:00
invoke_action(o, d)
2010-10-24 13:52:28 +00:00
table.remove(delays, 1)
2010-10-31 22:25:34 +00:00
o.delayname[d.pathname] = nil -- TODO grab from stack
2010-10-24 13:52:28 +00:00
end
2010-10-23 12:36:55 +00:00
end
end
2010-10-22 23:14:11 +00:00
end
2010-10-27 09:06:13 +00:00
-----
-- Called by core before anything is "-help" or "--help" is in
-- the arguments.
--
function lsyncd_help()
2010-10-27 19:34:56 +00:00
io.stdout:write(
2010-10-27 09:06:13 +00:00
[[TODO this is a multiline
help
]])
os.exit(-1) -- ERRNO
end
2010-10-17 15:24:55 +00:00
----
-- Called from core on init or restart after user configuration.
--
2010-10-25 21:41:45 +00:00
function lsyncd_initialize(args)
2010-10-27 19:34:56 +00:00
-- creates settings if user didnt
settings = settings or {}
2010-10-25 14:55:40 +00:00
-- From this point on, no globals may be created anymore
2010-11-01 17:54:09 +00:00
globals_lock()
2010-10-25 14:55:40 +00:00
2010-10-27 19:34:56 +00:00
-- parses all arguments
2010-10-27 09:06:13 +00:00
for i = 1, #args do
local a = args[i]
if a:sub(1, 1) ~= "-" then
2010-11-02 17:07:42 +00:00
log(ERROR, "Unknown option ", a,
2010-10-27 19:34:56 +00:00
". Options must start with '-' or '--'.")
2010-10-27 09:06:13 +00:00
os.exit(-1) -- ERRNO
end
if a:sub(1, 2) == "--" then
a = a:sub(3)
else
a = a:sub(2)
end
2010-11-01 16:38:39 +00:00
--TODO
2010-10-27 19:34:56 +00:00
end
-- all valid settings, first value is 1 if it needs a parameter
local configure_settings = {
loglevel = {1,
function(param)
if not (param == DEBUG or param == NORMAL or
param == VERBOSE or param == ERROR) then
2010-11-02 17:07:42 +00:00
log(ERROR, "unknown settings.loglevel '", param, "'")
2010-10-27 19:34:56 +00:00
terminate(-1); -- ERRNO
end
end},
2010-10-28 17:56:33 +00:00
statusfile = {1, nil},
2010-10-27 19:34:56 +00:00
}
-- check all entries in the settings table
for c, p in pairs(settings) do
local cs = configure_settings[c]
if not cs then
2010-11-02 17:07:42 +00:00
log(ERROR, "unknown setting '", c, "'")
2010-10-27 19:34:56 +00:00
terminate(-1) -- ERRNO
end
if cs[1] == 1 and not p then
2010-11-02 17:07:42 +00:00
log(ERROR, "setting '", c, "' needs a parameter")
2010-10-27 19:34:56 +00:00
end
-- calls the check function if its not nil
if cs[2] then
cs[2](p)
end
lsyncd.configure(c, p)
2010-10-27 09:06:13 +00:00
end
2010-10-25 21:41:45 +00:00
2010-10-21 12:37:27 +00:00
-- makes sure the user gave lsyncd anything to do
2010-11-02 14:11:26 +00:00
if Origins.size() == 0 then
2010-10-27 19:34:56 +00:00
log(ERROR, "Nothing to watch!")
log(ERROR, "Use sync(SOURCE, TARGET, BEHAVIOR) in your config file.");
terminate(-1) -- ERRNO
2010-10-21 12:37:27 +00:00
end
2010-10-22 12:58:57 +00:00
-- set to true if at least one origin has a startup function
local have_startup = false
2010-10-21 12:37:27 +00:00
-- runs through the origins table filled by user calling directory()
2010-11-02 14:11:26 +00:00
for _, o in Origins.iwalk() do
2010-10-18 09:02:51 +00:00
-- resolves source to be an absolute path
2010-10-26 11:26:57 +00:00
local asrc = lsyncd.real_dir(o.source)
2010-11-01 19:57:53 +00:00
local config = o.config
2010-10-26 11:26:57 +00:00
if not asrc then
2010-11-02 17:07:42 +00:00
log(Error, "Cannot resolve source path: ", o.source)
2010-10-27 19:34:56 +00:00
terminate(-1) -- ERRNO
2010-10-18 09:02:51 +00:00
end
2010-10-26 11:26:57 +00:00
o.source = asrc
2010-11-02 13:18:34 +00:00
o.delays = CountArray.new()
2010-10-31 22:25:34 +00:00
o.delayname = {}
2010-11-02 13:18:34 +00:00
o.processes = CountArray.new()
2010-10-26 11:26:57 +00:00
2010-11-01 19:57:53 +00:00
config.max_processes =
config.max_processes or
2010-10-26 11:26:57 +00:00
settings.max_processes or
defaults.max_processes
2010-11-01 19:57:53 +00:00
config.collapse_table =
config.collapse_table or
2010-10-26 11:26:57 +00:00
settings.collapse_table or
defaults.collapse_table
2010-11-01 19:57:53 +00:00
if config.startup then
2010-10-22 12:58:57 +00:00
have_startup = true
end
2010-11-01 18:08:03 +00:00
-- adds the dir watch inclusively all subdirs
2010-11-01 19:57:53 +00:00
inotify_watch_dir(o, "")
2010-10-17 15:24:55 +00:00
end
2010-11-01 18:08:03 +00:00
-- from this point on use logging facilities as configured.
lsyncd.configure("running");
2010-10-22 10:35:26 +00:00
2010-10-22 12:58:57 +00:00
if have_startup then
log(NORMAL, "--- startup ---")
local pids = { }
2010-11-02 14:11:26 +00:00
for _, o in Origins.iwalk() do
2010-10-22 12:58:57 +00:00
local pid
2010-11-01 19:57:53 +00:00
if o.config.startup then
local pid = o.config.startup(o.source, o.targetident)
2010-10-22 12:58:57 +00:00
table.insert(pids, pid)
end
2010-10-22 10:35:26 +00:00
end
2010-10-22 12:58:57 +00:00
lsyncd.wait_pids(pids, "startup_collector")
2010-11-02 17:07:42 +00:00
log(NORMAL, "- Entering normal operation with ",
inotifies.size, " monitored directories -")
2010-10-22 12:58:57 +00:00
else
2010-11-02 17:07:42 +00:00
log(NORMAL, "- Warmstart into normal operation with ",
inotifies.size, " monitored directories -")
2010-10-22 10:35:26 +00:00
end
2010-10-17 15:24:55 +00:00
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.
2010-10-24 16:41:58 +00:00
-- boolean false ... no alarm, core can in untimed sleep
-- true ... alarm time specified.
2010-10-19 10:12:11 +00:00
-- times ... the alarm time (only read if number is 1)
function lsyncd_get_alarm()
2010-10-24 16:41:58 +00:00
local have_alarm = false
local alarm = 0
2010-11-02 14:11:26 +00:00
for _, o in Origins.iwalk() do
2010-10-26 11:26:57 +00:00
if o.delays[1] and
2010-11-01 19:57:53 +00:00
o.processes.size < o.config.max_processes then
2010-10-24 16:41:58 +00:00
if have_alarm then
alarm = lsyncd.earlier(alarm, o.delays[1].alarm)
else
alarm = o.delays[1].alarm
have_alarm = true
end
end
end
return have_alarm, alarm
2010-10-19 10:12:11 +00:00
end
2010-10-17 15:24:55 +00:00
2010-10-20 10:25:34 +00:00
-----
-- Called by core on inotify event
--
2010-11-01 19:57:53 +00:00
-- @param ename "Attrib", "Mofify", "Create", "Delete", "Move")
2010-10-20 13:01:26 +00:00
-- @param wd watch descriptor (matches lsyncd.add_watch())
2010-10-24 16:41:58 +00:00
-- @param time time of event
2010-10-20 13:01:26 +00:00
-- @param filename string filename without path
-- @param filename2
2010-10-20 10:25:34 +00:00
--
2010-11-02 14:13:45 +00:00
function lsyncd_inotify_event(ename, wd, isdir, time, filename, filename2)
2010-10-22 08:34:41 +00:00
local ftype;
if isdir then
ftype = "directory"
else
ftype = "file"
end
2010-10-26 11:26:57 +00:00
if filename2 then
2010-11-02 17:07:42 +00:00
log(DEBUG, "got event ", ename, " of ", ftype, " ", filename,
" to ", filename2)
2010-10-26 11:26:57 +00:00
else
2010-11-02 17:07:42 +00:00
log(DEBUG, "got event ", ename, " of ", ftype, " ", filename)
2010-10-21 12:37:27 +00:00
end
-- looks up the watch descriptor id
2010-11-01 19:57:53 +00:00
local ilist = inotifies[wd]
if not ilist then
2010-10-21 12:37:27 +00:00
log(NORMAL, "event belongs to unknown or deleted watch descriptor.")
return
end
-- works through all possible source->target pairs
2010-11-01 19:57:53 +00:00
for _, inotify in ipairs(ilist) do
local pathname2
if filename2 then
pathname2 = inotify.path..filename2
end
2010-11-02 14:11:26 +00:00
Origin.delay(inotify.origin, ename, time,
2010-11-01 19:57:53 +00:00
inotify.path..filename, pathname2)
2010-10-22 13:12:13 +00:00
-- add subdirs for new directories
2010-10-23 10:58:43 +00:00
if isdir then
2010-11-01 19:57:53 +00:00
if ename == "Create" then
inotify_watch_dir(inotify.origin,
inotify.path .. filename .. "/")
2010-10-23 10:58:43 +00:00
end
2010-10-22 08:34:41 +00:00
end
2010-10-21 12:37:27 +00:00
end
end
-----
2010-10-24 13:52:28 +00:00
-- Collector for every child process that finished in startup phase
2010-10-21 12:37:27 +00:00
--
-- 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.
--
2010-10-22 10:40:59 +00:00
function startup_collector(pid, exitcode)
2010-10-21 12:37:27 +00:00
if exitcode ~= 0 then
log(ERROR, "Startup process", pid, " failed")
2010-10-27 19:34:56 +00:00
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-25 17:38:57 +00:00
--============================================================================
2010-10-17 15:24:55 +00:00
-- lsyncd user interface
2010-10-25 17:38:57 +00:00
--============================================================================
2010-10-17 15:24:55 +00:00
2010-11-02 14:11:26 +00:00
sync = Origins.add
2010-10-17 15:24:55 +00:00
2010-10-19 16:40:49 +00:00
----
-- Called by core when an overflow happened.
2010-10-27 11:31:18 +00:00
--
2010-10-19 16:40:49 +00:00
function default_overflow()
2010-10-20 18:33:17 +00:00
log(ERROR, "--- OVERFLOW on inotify event queue ---")
2010-10-27 19:34:56 +00:00
terminate(-1) -- TODO reset instead.
2010-10-19 16:40:49 +00:00
end
overflow = default_overflow
2010-10-27 11:31:18 +00:00
-----
-- Spawns a child process using bash.
--
function shell(command, ...)
return exec("/bin/sh", "-c", command, "/bin/sh", ...)
end
2010-10-26 11:26:57 +00:00
--============================================================================
-- lsyncd default settings
--============================================================================
2010-10-27 19:34:56 +00:00
-----
-- lsyncd classic - sync with rsync
--
local default_rsync = {
----
-- Called for every sync/target pair on startup
startup = function(source, target)
2010-11-02 17:07:42 +00:00
log(NORMAL, "startup recursive rsync: ", source, " -> ", target)
2010-10-27 19:34:56 +00:00
return exec("/usr/bin/rsync", "-ltrs",
source, target)
end,
default = function(source, target, path)
return exec("/usr/bin/rsync", "--delete", "-ltds",
2010-11-02 17:07:42 +00:00
source.."/"..path, target.."/"..path)
2010-10-27 19:34:56 +00:00
end
}
-----
-- The defaults table for the user to access
--
2010-10-26 11:26:57 +00:00
defaults = {
-----
-- TODO
--
max_processes = 1,
2010-10-27 19:34:56 +00:00
2010-10-26 11:26:57 +00:00
------
-- TODO
--
collapse_table = {
2010-11-01 19:57:53 +00:00
Attrib = { Attrib = "Attrib", Modify = "Modify", Create = "Create", Delete = "Delete" },
Modify = { Attrib = "Modify", Modify = "Modify", Create = "Create", Delete = "Delete" },
Create = { Attrib = "Create", Modify = "Create", Create = "Create", Delete = -1 },
Delete = { Attrib = "Delete", Modify = "Delete", Create = "Modify", Delete = "Delete" },
2010-10-27 19:34:56 +00:00
},
rsync = default_rsync
2010-10-26 11:26:57 +00:00
}
2010-10-25 14:55:40 +00:00