mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-12-12 22:27:50 +00:00
This commit is contained in:
parent
daa7aa22ee
commit
1a2b48871c
@ -7,7 +7,7 @@ settings = {
|
|||||||
-- logfile = "/tmp/lsyncd",
|
-- logfile = "/tmp/lsyncd",
|
||||||
-- nodaemon = true,
|
-- nodaemon = true,
|
||||||
statusfile = "/tmp/lsyncd.stat",
|
statusfile = "/tmp/lsyncd.stat",
|
||||||
statusintervall = 1,
|
statusintervall = 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
----
|
----
|
||||||
|
35
lsyncd.lua
35
lsyncd.lua
@ -554,6 +554,16 @@ local Sync = (function()
|
|||||||
|
|
||||||
local rc = self.config.collect(InletControl.d2e(delay), exitcode)
|
local rc = self.config.collect(InletControl.d2e(delay), exitcode)
|
||||||
-- TODO honor return codes of the collect
|
-- TODO honor return codes of the collect
|
||||||
|
|
||||||
|
-- set all delays blocked by this on wait.
|
||||||
|
if delay.blocks then
|
||||||
|
for i, vd in pairs(delay.blocks) do
|
||||||
|
if vd.status ~= "block" then
|
||||||
|
error("unblocking an non-blocked event!")
|
||||||
|
end
|
||||||
|
vd.status = "wait"
|
||||||
|
end
|
||||||
|
end
|
||||||
removeDelay(self, delay)
|
removeDelay(self, delay)
|
||||||
log("Delay","Finish of ",delay.etype," on ",
|
log("Delay","Finish of ",delay.etype," on ",
|
||||||
self.source,delay.path," = ",exitcode)
|
self.source,delay.path," = ",exitcode)
|
||||||
@ -752,6 +762,25 @@ local Sync = (function()
|
|||||||
table.insert(self.delays, newd)
|
table.insert(self.delays, newd)
|
||||||
return newd
|
return newd
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-----
|
||||||
|
-- Writes a status report about delays in this sync.
|
||||||
|
--
|
||||||
|
local function statusReport(self, f)
|
||||||
|
local spaces = " "
|
||||||
|
f:write(self.config.name," source=",self.source,"\n")
|
||||||
|
f:write("There are ",#self.delays, " delays\n")
|
||||||
|
for i, vd in ipairs(self.delays) do
|
||||||
|
local s = vd.status
|
||||||
|
f:write(string.sub(spaces, 1, 5 - #vd.status))
|
||||||
|
f:write(" ",vd.etype)
|
||||||
|
-- TODO spaces
|
||||||
|
f:write(vd.path)
|
||||||
|
if (vd.path2) then
|
||||||
|
f:write(" -> ",vd.path2)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-----
|
-----
|
||||||
-- Creates a new Sync
|
-- Creates a new Sync
|
||||||
@ -772,6 +801,7 @@ local Sync = (function()
|
|||||||
getNextDelay = getNextDelay,
|
getNextDelay = getNextDelay,
|
||||||
invokeActions = invokeActions,
|
invokeActions = invokeActions,
|
||||||
removeDelay = removeDelay,
|
removeDelay = removeDelay,
|
||||||
|
statusReport = statusReport,
|
||||||
}
|
}
|
||||||
-- provides a default name if needed
|
-- provides a default name if needed
|
||||||
if not config.name then
|
if not config.name then
|
||||||
@ -1146,6 +1176,11 @@ local StatusFile = (function()
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
f:write("Lsyncd status report at ", os.date(), "\n\n")
|
f:write("Lsyncd status report at ", os.date(), "\n\n")
|
||||||
|
for i, s in Syncs.iwalk() do
|
||||||
|
s:statusReport(f)
|
||||||
|
f:write("\n")
|
||||||
|
end
|
||||||
|
|
||||||
Inotifies.statusReport(f)
|
Inotifies.statusReport(f)
|
||||||
f:close()
|
f:close()
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user