opus/sys/apis/event.lua

241 lines
4.4 KiB
Lua
Raw Normal View History

2017-10-08 21:45:01 +00:00
local os = _G.os
2016-12-11 19:24:52 +00:00
local Event = {
2018-01-24 22:39:38 +00:00
uid = 1, -- unique id for handlers
routines = { }, -- coroutines
types = { }, -- event handlers
timers = { }, -- named timers
terminate = false,
2016-12-11 19:24:52 +00:00
}
2017-07-28 23:01:59 +00:00
local Routine = { }
2016-12-11 19:24:52 +00:00
2017-07-28 23:01:59 +00:00
function Routine:isDead()
2018-01-24 22:39:38 +00:00
if not self.co then
return true
end
return coroutine.status(self.co) == 'dead'
2016-12-11 19:24:52 +00:00
end
2017-07-28 23:01:59 +00:00
function Routine:terminate()
2018-01-24 22:39:38 +00:00
if self.co then
self:resume('terminate')
end
2016-12-11 19:24:52 +00:00
end
2017-07-28 23:01:59 +00:00
function Routine:resume(event, ...)
2018-01-24 22:39:38 +00:00
--if coroutine.status(self.co) == 'running' then
--return
--end
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
if not self.co then
error('Cannot resume a dead routine')
end
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
if not self.filter or self.filter == event or event == "terminate" then
local s, m = coroutine.resume(self.co, event, ...)
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
if coroutine.status(self.co) == 'dead' then
self.co = nil
self.filter = nil
Event.routines[self.uid] = nil
else
self.filter = m
end
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
if not s and event ~= 'terminate' then
error('\n' .. (m or 'Error processing event'))
end
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
return s, m
end
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
return true, self.filter
2016-12-11 19:24:52 +00:00
end
2017-07-28 23:01:59 +00:00
local function nextUID()
2018-01-24 22:39:38 +00:00
Event.uid = Event.uid + 1
return Event.uid - 1
2016-12-11 19:24:52 +00:00
end
function Event.on(events, fn)
2018-01-24 22:39:38 +00:00
events = type(events) == 'table' and events or { events }
2017-07-30 23:53:43 +00:00
2018-01-24 22:39:38 +00:00
local handler = setmetatable({
uid = nextUID(),
event = events,
fn = fn,
}, { __index = Routine })
2018-01-24 22:39:38 +00:00
for _,event in pairs(events) do
local handlers = Event.types[event]
if not handlers then
handlers = { }
Event.types[event] = handlers
end
2018-01-24 22:39:38 +00:00
handlers[handler.uid] = handler
end
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
return handler
2016-12-11 19:24:52 +00:00
end
2017-07-28 23:01:59 +00:00
function Event.off(h)
2018-01-24 22:39:38 +00:00
if h and h.event then
for _,event in pairs(h.event) do
Event.types[event][h.uid] = nil
end
end
2016-12-11 19:24:52 +00:00
end
2017-07-28 23:01:59 +00:00
local function addTimer(interval, recurring, fn)
2018-01-24 22:39:38 +00:00
local timerId = os.startTimer(interval)
local handler
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
handler = Event.on('timer', function(t, id)
if timerId == id then
fn(t, id)
if recurring then
timerId = os.startTimer(interval)
else
Event.off(handler)
end
end
end)
2017-08-02 13:52:41 +00:00
2018-01-24 22:39:38 +00:00
return handler
2017-07-28 23:01:59 +00:00
end
function Event.onInterval(interval, fn)
2018-01-24 22:39:38 +00:00
return addTimer(interval, true, fn)
2017-07-28 23:01:59 +00:00
end
2016-12-11 19:24:52 +00:00
2017-07-28 23:01:59 +00:00
function Event.onTimeout(timeout, fn)
2018-01-24 22:39:38 +00:00
return addTimer(timeout, false, fn)
2016-12-11 19:24:52 +00:00
end
2017-07-28 23:01:59 +00:00
function Event.addNamedTimer(name, interval, recurring, fn)
2018-01-24 22:39:38 +00:00
Event.cancelNamedTimer(name)
Event.timers[name] = addTimer(interval, recurring, fn)
2016-12-11 19:24:52 +00:00
end
2017-07-28 23:01:59 +00:00
function Event.cancelNamedTimer(name)
2018-01-24 22:39:38 +00:00
local timer = Event.timers[name]
if timer then
Event.off(timer)
end
2016-12-11 19:24:52 +00:00
end
2017-07-24 02:37:07 +00:00
function Event.waitForEvent(event, timeout)
2018-01-24 22:39:38 +00:00
local timerId = os.startTimer(timeout)
repeat
local e = { os.pullEvent() }
if e[1] == event then
return table.unpack(e)
end
until e[1] == 'timer' and e[2] == timerId
2016-12-11 19:24:52 +00:00
end
2018-10-15 20:05:43 +00:00
-- Set a handler for the terminate event. Within the function, return
-- true or false to indicate whether the event should be propagated to
-- all sub-threads
function Event.onTerminate(fn)
Event.termFn = fn
end
function Event.termFn()
Event.terminate = true
return true -- propagate
end
2017-07-28 23:01:59 +00:00
function Event.addRoutine(fn)
2018-01-24 22:39:38 +00:00
local r = setmetatable({
co = coroutine.create(fn),
uid = nextUID()
}, { __index = Routine })
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
Event.routines[r.uid] = r
r:resume()
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
return r
2016-12-11 19:24:52 +00:00
end
2017-07-24 02:37:07 +00:00
function Event.pullEvents(...)
2018-01-24 22:39:38 +00:00
for _, fn in ipairs({ ... }) do
Event.addRoutine(fn)
end
2017-07-24 02:37:07 +00:00
2018-01-24 22:39:38 +00:00
repeat
Event.pullEvent()
until Event.terminate
2018-01-20 12:18:13 +00:00
2018-01-24 22:39:38 +00:00
Event.terminate = false
2016-12-11 19:24:52 +00:00
end
2017-07-24 02:37:07 +00:00
function Event.exitPullEvents()
2018-01-24 22:39:38 +00:00
Event.terminate = true
os.sleep(0)
2016-12-27 03:26:43 +00:00
end
2017-07-30 23:53:43 +00:00
local function processHandlers(event)
2018-01-24 22:39:38 +00:00
local handlers = Event.types[event]
if handlers then
for _,h in pairs(handlers) do
if not h.co then
-- callbacks are single threaded (only 1 co per handler)
h.co = coroutine.create(h.fn)
Event.routines[h.uid] = h
end
end
end
2017-07-28 23:01:59 +00:00
end
2017-08-02 13:52:41 +00:00
local function tokeys(t)
2018-01-24 22:39:38 +00:00
local keys = { }
for k in pairs(t) do
keys[#keys+1] = k
end
return keys
2017-08-02 13:52:41 +00:00
end
2017-07-28 23:01:59 +00:00
local function processRoutines(...)
2018-01-24 22:39:38 +00:00
local keys = tokeys(Event.routines)
for _,key in ipairs(keys) do
local r = Event.routines[key]
if r then
r:resume(...)
end
end
2017-07-28 23:01:59 +00:00
end
2017-08-09 14:19:00 +00:00
function Event.processEvent(e)
2018-01-24 22:39:38 +00:00
processHandlers(e[1])
processRoutines(table.unpack(e))
2017-08-09 14:19:00 +00:00
end
2017-07-24 02:37:07 +00:00
function Event.pullEvent(eventType)
2018-01-24 22:39:38 +00:00
while true do
local e = { os.pullEventRaw() }
2018-10-15 20:05:43 +00:00
local propagate = true -- don't like this...
2017-07-28 23:01:59 +00:00
2018-10-15 20:05:43 +00:00
if e[1] == 'terminate' then
propagate = Event.termFn()
end
2018-01-20 12:18:13 +00:00
2018-10-15 20:05:43 +00:00
if propagate then
processHandlers(e[1])
processRoutines(table.unpack(e))
end
2017-07-28 23:01:59 +00:00
2018-01-24 22:39:38 +00:00
if Event.terminate then
return { 'terminate' }
end
2016-12-11 19:24:52 +00:00
2018-01-24 22:39:38 +00:00
if not eventType or e[1] == eventType then
return e
end
end
2016-12-11 19:24:52 +00:00
end
return Event