mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-11 07:40:55 +00:00
163 lines
2.7 KiB
Lua
163 lines
2.7 KiB
Lua
--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
-- delay.lua Live (Mirror) Syncing Demon
|
|
--
|
|
--
|
|
-- Holds the information about a delayed event for one Sync.
|
|
--
|
|
-- Valid stati of a delay are:
|
|
-- 'wait' ... the event is ready to be handled.
|
|
-- 'active' ... there is process running catering for this event.
|
|
-- 'blocked' ... this event waits for another to be handled first.
|
|
--
|
|
--
|
|
-- This code assumes your editor is at least 100 chars wide.
|
|
--
|
|
-- License: GPLv2 (see COPYING) or any later version
|
|
-- Authors: Axel Kittenberger <axkibe@gmail.com>
|
|
--
|
|
--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
if lsyncd_version
|
|
then
|
|
print( 'Error, Lsyncd mantle already loaded' )
|
|
os.exit( -1 )
|
|
end
|
|
|
|
|
|
--
|
|
-- Metatable.
|
|
--
|
|
local mt = { }
|
|
|
|
|
|
--
|
|
-- Secret key to native table
|
|
--
|
|
local k_nt = { }
|
|
|
|
|
|
local assignAble =
|
|
{
|
|
dpos = true,
|
|
etype = true,
|
|
path = true,
|
|
path2 = true,
|
|
status = true,
|
|
}
|
|
|
|
--
|
|
-- On accessing a nil index.
|
|
--
|
|
mt.__index = function
|
|
(
|
|
self,
|
|
k -- key value accessed
|
|
)
|
|
return self[ k_nt ][ k ]
|
|
end
|
|
|
|
--
|
|
-- On assigning a new index.
|
|
--
|
|
mt.__newindex = function
|
|
(
|
|
self,
|
|
k, -- key value to assign to
|
|
v -- value to assign
|
|
)
|
|
if not assignAble[ k ]
|
|
then
|
|
error( 'Cannot assign new key "' .. k .. '" to Delay' )
|
|
end
|
|
|
|
self[ k_nt ][ k ] = v
|
|
end
|
|
|
|
--
|
|
-- This delay is being blocked by another delay
|
|
--
|
|
local function blockedBy
|
|
(
|
|
self, -- this delay
|
|
delay -- the blocking delay
|
|
)
|
|
self[ k_nt ].status = 'block'
|
|
|
|
local blocks = delay[ k_nt ].blocks
|
|
|
|
if not blocks
|
|
then
|
|
blocks = { }
|
|
|
|
delay[ k_nt ].blocks = blocks
|
|
end
|
|
|
|
table.insert( blocks, self )
|
|
end
|
|
|
|
|
|
--
|
|
-- Sets the delay status to 'active'.
|
|
--
|
|
local function setActive
|
|
(
|
|
self
|
|
)
|
|
self[ k_nt ].status = 'active'
|
|
end
|
|
|
|
--
|
|
-- Sets the delay status to 'wait'
|
|
--
|
|
local function wait
|
|
(
|
|
self, -- this delay
|
|
alarm -- alarm for the delay
|
|
)
|
|
self[ k_nt ].status = 'wait'
|
|
|
|
self[ k_nt ].alarm = alarm
|
|
end
|
|
|
|
--
|
|
-- Creates a new delay.
|
|
--
|
|
local function new
|
|
(
|
|
etype, -- type of event.
|
|
-- 'Create', 'Modify', 'Attrib', 'Delete' or 'Move'
|
|
sync, -- the Sync this delay belongs to
|
|
alarm, -- latest point in time this should be catered for
|
|
path, -- path and file-/dirname of the delay relative
|
|
-- -- to the syncs root.
|
|
path2 -- used only in moves, path and file-/dirname of
|
|
-- move destination
|
|
)
|
|
local delay =
|
|
{
|
|
blockedBy = blockedBy,
|
|
setActive = setActive,
|
|
wait = wait,
|
|
[ k_nt ] =
|
|
{
|
|
etype = etype,
|
|
sync = sync,
|
|
alarm = alarm,
|
|
path = path,
|
|
path2 = path2,
|
|
status = 'wait'
|
|
},
|
|
}
|
|
|
|
setmetatable( delay, mt )
|
|
|
|
return delay
|
|
end
|
|
|
|
--
|
|
-- Exported interface
|
|
--
|
|
Delay = { new = new }
|
|
|