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
|
--!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-present, Xmake Open Source Community.
--
-- @author ruki
-- @file runjobs.lua
--
-- imports
import("core.base.scheduler")
import("utils.progress")
-- print back characters
function _print_backchars(backnum)
if backnum > 0 then
local str = ('\b'):rep(backnum) .. (' '):rep(backnum) .. ('\b'):rep(backnum)
if #str > 0 then
printf(str)
end
end
end
-- asynchronous run jobs
--
-- e.g.
-- runjobs("test", function (index) print("hello") end, {total = 100, comax = 6, timeout = 1000, on_timer = function (running_jobs_indices) end})
-- runjobs("test", function () os.sleep(10000) end, { progress = true })
-- runjobs("test", function () os.sleep(10000) end, { progress = { chars = {'/','\'} } }) -- see module utils.progress
--
-- local jobs = jobpool.new()
-- local root = jobs:addjob("job/root", function (index, total, opt)
-- print(index, total, opt.progress)
-- end)
-- for i = 1, 3 do
-- local job = jobs:addjob("job/" .. i, function (index, total, opt)
-- print(index, total, opt.progress)
-- end, {rootjob = root})
-- end
-- runjobs("test", jobs, {comax = 6, timeout = 1000, on_timer = function (running_jobs_indices) end})
--
-- distributed build:
-- runjobs("test", jobs, {comax = 6, distcc = distcc_build_client.singleton()}
--
function main(name, jobs, opt)
-- init options
opt = opt or {}
local total = opt.total or (type(jobs) == "table" and jobs:size()) or 1
local comax = opt.comax or math.min(total, 4)
local distcc = opt.distcc
local timeout = opt.timeout or 500
local group_name = name
local jobs_cb = type(jobs) == "function" and jobs or nil
assert(timeout < 60000, "runjobs: invalid timeout!")
-- build jobs queue
if type(jobs) == "table" and jobs.build then
jobs = jobs:build()
end
assert(jobs, "runjobs: no jobs!")
-- show waiting tips?
local showprogress = io.isatty() and (opt.progress or opt.showtips) -- we need to hide wait characters if is not a tty
local progress_helper
local backnum = 0
if showprogress then
local opt = nil
if type(showprogress) == 'table' then opt = showprogress end
progress_helper = progress.new(nil, opt)
end
-- isolate environments
local is_isolated = false
local co_running = scheduler.co_running()
if co_running and opt.isolate then
is_isolated = co_running:is_isolated()
co_running:isolate(true)
end
-- run timer
local stop = false
local running_jobs_indices = {}
local group_timer
if opt.on_timer then
group_timer = group_name .. "/timer"
scheduler.co_group_begin(group_timer, function (co_group)
scheduler.co_start_withopt({name = name .. "/timer", isolate = opt.isolate}, function ()
while not stop do
os.sleep(timeout)
if not stop then
local indices
if running_jobs_indices then
indices = table.keys(running_jobs_indices)
end
opt.on_timer(indices)
end
end
end)
end)
elseif showprogress then
group_timer = group_name .. "/timer"
scheduler.co_group_begin(group_timer, function (co_group)
scheduler.co_start_withopt({name = name .. "/tips", isolate = opt.isolate}, function ()
while not stop do
os.sleep(timeout)
if not stop then
-- show waitchars
local tips = nil
local waitobjs = scheduler.co_group_waitobjs(group_name)
if waitobjs:size() > 0 then
local names = {}
for _, obj in waitobjs:keys() do
if obj:otype() == scheduler.OT_PROC then
table.insert(names, obj:name())
elseif obj:otype() == scheduler.OT_SOCK then
table.insert(names, "sock")
elseif obj:otype() == scheduler.OT_PIPE then
table.insert(names, "pipe")
end
end
names = table.unique(names)
if #names > 0 then
names = table.concat(names, ",")
if #names > 16 then
names = names:sub(1, 16) .. ".."
end
tips = string.format("(%d/%s)", waitobjs:size(), names)
end
end
-- print back characters
progress_helper:clear()
_print_backchars(backnum)
if tips then
cprintf("${dim}%s${clear} ", tips)
backnum = #tips + 1
end
progress_helper:write()
end
end
end)
end)
end
-- run jobs
local index = 0
local count = 0
local abort = false
local abort_errors
local progress_wrapper = {}
local job_pending
local progress_factor = opt.progress_factor or 1.0
progress_wrapper.current = function ()
return count
end
progress_wrapper.total = function ()
return total
end
progress_wrapper.percent = function ()
if total and total > 0 then
return math.floor((count * progress_factor * 100) / total)
else
return 0
end
end
debug.setmetatable(progress_wrapper, {
__tostring = function ()
return string.format("%d%%", progress_wrapper.percent())
end
})
while index < total do
scheduler.co_group_begin(group_name, function (co_group)
local freemax = comax - #co_group
local local_max = math.min(index + freemax, total)
local total_max = local_max
if distcc then
total_max = math.min(index + freemax + distcc:freejobs(), total)
end
local jobfunc = jobs_cb
while index < total_max do
-- uses job pool?
local job
local jobname
local distccjob = false
if not jobs_cb then
-- get free job
job = job_pending and job_pending or jobs:getfree()
if not job then
break
end
-- we can only continue to run the job with distcc if local jobs are full
if distcc and index >= local_max then
if job.distcc then
distccjob = true
else
job_pending = job
break
end
end
-- get run function
jobfunc = job.run
jobname = job.name
job_pending = nil
else
jobname = tostring(index)
end
-- start this job
index = index + 1
scheduler.co_start_withopt({name = name .. '/' .. jobname, isolate = opt.isolate}, function(i)
try
{
function()
if stop then
return
end
if distcc then
local co_running = scheduler.co_running()
if co_running then
co_running:data_set("distcc.distccjob", distccjob)
end
end
running_jobs_indices[i] = i
if jobfunc then
if opt.curdir then
os.cd(opt.curdir)
end
count = count + 1
jobfunc(i, total, {progress = progress_wrapper})
end
running_jobs_indices[i] = nil
end,
catch
{
function (errors)
-- stop timer and disable show waitchars first
stop = true
-- remove wait charactor
if showprogress then
_print_backchars(backnum)
progress_helper:stop()
end
-- we need re-throw this errors outside scheduler
abort = true
if abort_errors == nil then
abort_errors = errors
end
-- kill all waited objects in this group
local waitobjs = scheduler.co_group_waitobjs(group_name)
if waitobjs:size() > 0 then
for _, obj in waitobjs:keys() do
-- TODO, kill pipe is not supported now
if obj.kill then
obj:kill()
end
end
end
end
},
finally
{
function ()
if job then
jobs:remove(job)
end
end
}
}
end, index)
end
end)
-- wait for free jobs
scheduler.co_group_wait(group_name, {limit = 1})
end
-- wait all jobs exited
scheduler.co_group_wait(group_name)
-- wait timer job exited
if group_timer then
stop = true
scheduler.co_group_wait(group_timer)
end
-- restore isolated environments
if co_running and opt.isolate then
co_running:isolate(is_isolated)
end
-- remove wait charactor
if showprogress then
_print_backchars(backnum)
progress_helper:stop()
end
-- do exit callback
if opt.on_exit then
opt.on_exit(abort_errors)
end
-- re-throw abort errors
--
-- @note we cannot throw it in coroutine,
-- because his causes a direct exit from the entire runloop and
-- a quick escape from nested try-catch blocks and coroutines groups.
-- so we can not catch runjobs errors, e.g. build fails
if abort then
raise(abort_errors)
end
end
|