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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-2020, TBOOX Open Source Group.
--
-- @author ruki
-- @file scheduler.lua
--
-- define module: scheduler
local scheduler = scheduler or {}
local _coroutine = _coroutine or {}
-- load modules
local table = require("base/table")
local option = require("base/option")
local string = require("base/string")
local poller = require("base/poller")
local timer = require("base/timer")
local coroutine = require("base/coroutine")
local bit = require("bit")
-- new a coroutine instance
function _coroutine.new(name, thread)
local instance = table.inherit(_coroutine)
instance._NAME = name
instance._THREAD = thread
setmetatable(instance, _coroutine)
return instance
end
-- get the coroutine name
function _coroutine:name()
return self._NAME or "none"
end
-- set the coroutine name
function _coroutine:name_set(name)
self._NAME = name
end
-- get the raw coroutine thread
function _coroutine:thread()
return self._THREAD
end
-- get the coroutine status
function _coroutine:status()
return coroutine.status(self:thread())
end
-- is dead?
function _coroutine:is_dead()
return self:status() == "dead"
end
-- is running?
function _coroutine:is_running()
return self:status() == "running"
end
-- is suspended?
function _coroutine:is_suspended()
return self:status() == "suspended"
end
-- get the current timer task
function _coroutine:_timer_task()
return self._TIMER_TASK
end
-- set the timer task
function _coroutine:_timer_task_set(task)
self._TIMER_TASK = task
end
-- tostring(socket)
function _coroutine:__tostring()
return string.format("<co: %s/%s>", self:thread(), self:name())
end
-- gc(coroutine)
function _coroutine:__gc()
self._THREAD = nil
end
-- get the timer of scheduler
function scheduler:_timer()
local t = self._TIMER
if t == nil then
t = timer:new()
self._TIMER = t
end
return t
end
-- get socket events
function scheduler:_sockevents(csock)
return self._SOCKEVENTS and self._SOCKEVENTS[csock] or 0
end
-- set socket events
function scheduler:_sockevents_set(csock, data)
local sockevents = self._SOCKEVENTS
if not sockevents then
sockevents = {}
self._SOCKEVENTS = sockevents
end
sockevents[csock] = data
end
-- the socket events callback
function scheduler:_sockevents_cb(sock, sockevents)
-- get the previous socket events
local events_prev = self:_sockevents(sock:csock())
local events_prev_wait = bit.band(events_prev, 0xffff)
local events_prev_save = bit.rshift(events_prev, 16)
-- is waiting?
local running = self:_co_sock_suspended(sock)
if running and running:is_suspended() then
-- eof for edge trigger?
if bit.band(sockevents, poller.EV_SOCK_EOF) ~= 0 then
-- cache this eof as next recv/send event
sockevents = bit.band(sockevents, bit.bnot(poller.EV_SOCK_EOF))
events_prev_save = bit.bor(events_prev_save, events_prev_wait)
self:_sockevents_set(sock:csock(), bit.bor(bit.lshift(events_prev_save, 16), events_prev_wait))
end
-- cancel timer task if exists
local timer_task = running:_timer_task()
if timer_task then
timer_task.cancel = true
end
-- the scheduler has been stopped? mark events as error to stop the coroutine
if not self._STARTED then
sockevents = poller.EV_SOCK_ERROR
end
-- resume this coroutine task
self:_co_sock_suspended_set(sock, nil)
self:co_resume(running, (bit.band(sockevents, poller.EV_SOCK_ERROR) ~= 0) and -1 or sockevents)
else
-- cache socket events
events_prev_save = events
self:_sockevents_set(sock:csock(), bit.bor(bit.lshift(events_prev_save, 16), events_prev_wait))
end
end
-- get the suspended coroutine task
function scheduler:_co_sock_suspended(sock)
return self._CO_SOCK_SUSPENDED_TASKS and self._CO_SOCK_SUSPENDED_TASKS[sock] or nil
end
-- set the suspended coroutine task
function scheduler:_co_sock_suspended_set(sock, co)
local co_sock_suspended_tasks = self._CO_SOCK_SUSPENDED_TASKS
if not co_sock_suspended_tasks then
co_sock_suspended_tasks = {}
self._CO_SOCK_SUSPENDED_TASKS = co_sock_suspended_tasks
end
co_sock_suspended_tasks[sock] = co
end
-- cancel and resume all suspended socket tasks after stopping scheduler
-- we cannot suspend them forever, all tasks will be exited directly and free all resources.
function scheduler:_co_sock_suspended_cancel_all()
local co_sock_suspended_tasks = self._CO_SOCK_SUSPENDED_TASKS
if co_sock_suspended_tasks then
for _, co in pairs(co_sock_suspended_tasks) do
local ok, errors = self:co_resume(co, -1)
if not ok then
return false, errors
end
end
end
end
-- start a new coroutine task
function scheduler:co_start(cotask, ...)
return self:co_start_named(nil, cotask, ...)
end
-- start a new named coroutine task
function scheduler:co_start_named(coname, cotask, ...)
local co
co = _coroutine.new(coname, coroutine.create(function(...)
cotask(...)
self:co_tasks()[co:thread()] = nil
if self:co_count() > 0 then
self._CO_COUNT = self:co_count() - 1
end
end))
self:co_tasks()[co:thread()] = co
self._CO_COUNT = self:co_count() + 1
if self._STARTED then
local ok, errors = self:co_resume(co, ...)
if not ok then
return nil, errors
end
else
self._CO_READY_TASKS = self._CO_READY_TASKS or {}
table.insert(self._CO_READY_TASKS, {co, table.pack(...)})
end
return co
end
-- resume the given coroutine
function scheduler:co_resume(co, ...)
return coroutine.resume(co:thread(), ...)
end
-- suspend the current coroutine
function scheduler:co_suspend(...)
return coroutine.yield(...)
end
-- get the current running coroutine
function scheduler:co_running()
local running = coroutine.running()
return running and self:co_tasks()[running] or nil
end
-- get all coroutine tasks
function scheduler:co_tasks()
local cotasks = self._CO_TASKS
if not cotasks then
cotasks = {}
self._CO_TASKS = cotasks
end
return cotasks
end
-- get all coroutine count
function scheduler:co_count()
return self._CO_COUNT or 0
end
-- wait socket events
function scheduler:sock_wait(sock, events, timeout)
-- get the running coroutine
local running = self:co_running()
if not running then
return -1, "we must call waitsock() in coroutine with scheduler!"
end
-- is stopped?
if not self._STARTED then
return -1, "the scheduler is stopped!"
end
-- enable edge-trigger mode if be supported
if self._SUPPORT_EV_SOCK_CLEAR then
events = bit.bor(events, poller.EV_SOCK_CLEAR)
end
-- get the previous socket events
local events_prev = self:_sockevents(sock:csock())
if events_prev ~= 0 then
local events_prev_wait = bit.band(events_prev, 0xffff)
local events_prev_save = bit.rshift(events_prev, 16)
-- return the cached events directly if the waiting events exists cache
if events_prev_save ~= 0 and bit.band(events_prev_wait, events) ~= 0 then
-- check error?
if bit.band(events_prev_save, poller.EV_SOCK_ERROR) ~= 0 then
self:_sockevents_set(sock:csock(), events_prev_wait)
return -1, string.format("%s: socket events error!", sock)
end
-- clear cache events
self:_sockevents_set(sock:csock(), bit.bor(bit.lshift(bit.band(events_prev_save, bit.bnot(events)), 16), events_prev_wait))
-- return the cached events
return bit.band(events_prev_save, events)
end
-- modify socket from poller for waiting events if the waiting events has been changed
if events_prev_wait ~= events then
-- modify socket events
local ok, errors = poller:modify(poller.OT_SOCK, sock, events, self._sockevents_cb)
if not ok then
return -1, errors
end
end
else
-- insert socket events
local ok, errors = poller:insert(poller.OT_SOCK, sock, events, self._sockevents_cb)
if not ok then
return -1, errors
end
end
-- register timeout task to timer
local timer_task = nil
if timeout > 0 then
timer_task = self:_timer():post(function (cancel)
if not cancel and running:is_suspended() then
self:_co_sock_suspended_set(sock, nil)
self:co_resume(running, 0)
end
end, timeout)
end
running:_timer_task_set(timer_task)
-- save the waiting events
self:_sockevents_set(sock:csock(), events)
-- save the suspended coroutine
self:_co_sock_suspended_set(sock, running)
-- wait
return self:co_suspend()
end
-- cancel socket events
function scheduler:sock_cancel(sock)
-- get the previous socket events
local events_prev = self:_sockevents(sock:csock())
if events_prev ~= 0 then
-- remove the waiting socket from the poller
local ok, errors = poller:remove(poller.OT_SOCK, sock)
if not ok then
return false, errors
end
self:_sockevents_set(sock:csock(), 0)
self:_co_sock_suspended_set(sock, nil)
end
return true
end
-- sleep some times (ms)
function scheduler:sleep(ms)
-- we need not do sleep
if ms == 0 then
return true
end
-- get the running coroutine
local running = self:co_running()
if not running then
return false, "we must call sleep() in coroutine with scheduler!"
end
-- is stopped?
if not self._STARTED then
return false, "the scheduler is stopped!"
end
-- register timeout task to timer
self:_timer():post(function (cancel)
if running:is_suspended() then
self:co_resume(running)
end
end, ms)
-- wait
self:co_suspend()
return true
end
-- stop the scheduler loop
function scheduler:stop()
-- mark scheduler status as stopped and spank the poller:wait()
self._STARTED = false
poller:spank()
return true
end
-- run loop, schedule coroutine with socket/io and sub-processes
function scheduler:runloop()
-- start loop
self._STARTED = true
-- ensure poller has been initialized first (for windows/iocp) and check edge-trigger mode (for epoll/kqueue)
if poller:support(poller.OT_SOCK, poller.EV_SOCK_CLEAR) then
self._SUPPORT_EV_SOCK_CLEAR = true
end
-- start all ready coroutine tasks
local co_ready_tasks = self._CO_READY_TASKS
if co_ready_tasks then
for _, task in pairs(co_ready_tasks) do
local co = task[1]
local argv = task[2]
local ok, errors = self:co_resume(co, table.unpack(argv))
if not ok then
return false, errors
end
end
end
self._CO_READY_TASKS = nil
-- run loop
opt = opt or {}
local ok = true
local errors = nil
local timeout = -1
while self._STARTED and self:co_count() > 0 do
-- get the next timeout
timeout = self:_timer():delay() or 1000
-- wait events
local count, events = poller:wait(timeout)
if count < 0 then
ok = false
errors = events
break
end
-- resume all suspended tasks with events
for _, e in ipairs(events) do
local otype = e[1]
if otype == poller.OT_SOCK then
local sock = e[2]
local sockevents = e[3]
local sockfunc = e[4]
if sockfunc then
sockfunc(self, sock, sockevents)
end
else
ok = false
errors = string.format("invalid poller object type(%d)", otype)
break
end
end
-- spank the timer and trigger all timeout tasks
self:_timer():next()
end
-- mark the loop as stopped first
self._STARTED = false
-- cancel all suspended tasks after stopping scheduler
self:_co_sock_suspended_cancel_all()
-- cancel all timeout tasks and trigger them
self:_timer():kill()
-- finished
return ok, errors
end
-- return module: scheduler
return scheduler
|