summaryrefslogtreecommitdiff
path: root/server-beta/src/await.lua
blob: 37cade792533c47fc0e29132bd93622fff73f41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
local timer  = require 'timer'

---@class await
local m = {}
m.type = 'await'

m.coTracker = setmetatable({}, { __mode = 'k' })
m.delayQueue = {}
m.delayQueueIndex = 1

--- 设置错误处理器
---@param errHandle function {comment = '当有错误发生时,会以错误堆栈为参数调用该函数'}
function m.setErrorHandle(errHandle)
    m.errorHandle = errHandle
end

function m.checkResult(co, ...)
    local suc, err = ...
    if not suc and m.errorHandle then
        m.errorHandle(debug.traceback(co, err))
    end
    return ...
end

--- 创建一个任务
function m.create(callback, ...)
    local co = coroutine.create(callback)
    m.coTracker[co] = true
    return m.checkResult(co, coroutine.resume(co, ...))
end

--- 休眠一段时间
---@param time number
function m.sleep(time, ...)
    local co, main = coroutine.running()
    if main then
        if m.errorHandle then
            m.errorHandle(debug.traceback('Cant sleep in main thread'))
        end
        return
    end
    timer.wait(time, function ()
        return m.checkResult(co, coroutine.resume(co))
    end)
    return coroutine.yield(...)
end

--- 等待直到唤醒
---@param callback function
function m.wait(callback, ...)
    local co, main = coroutine.running()
    if main then
        if m.errorHandle then
            m.errorHandle(debug.traceback('Cant wait in main thread'))
        end
        return
    end
    callback(function (...)
        return m.checkResult(co, coroutine.resume(co, ...))
    end)
    return coroutine.yield(...)
end

--- 延迟
function m.delay(...)
    local co, main = coroutine.running()
    if main then
        if m.errorHandle then
            m.errorHandle(debug.traceback('Cant wait in main thread'))
        end
        return
    end
    m.delayQueue[#m.delayQueue+1] = function (...)
        return m.checkResult(co, coroutine.resume(co, ...))
    end
    return coroutine.yield(...)
end

--- 步进
function m.step()
    local waker = m.delayQueue[m.delayQueueIndex]
    if waker then
        m.delayQueueIndex = m.delayQueueIndex + 1
        waker()
        return true
    else
        for i = 1, #m.delayQueue do
            m.delayQueue[i] = nil
        end
        return false
    end
end

return m