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
|
--!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 jobgraph.lua
--
-- imports
import("core.base.object")
import("core.base.list")
import("core.base.graph")
import("core.base.hashset")
-- define module
local jobqueue = jobqueue or object {_init = {"_jobgraph", "_dag"}}
local jobgraph = jobgraph or object {_init = {"_name", "_jobs", "_size", "_dag", "_groups", "_bridge_nodes", "_bridge_from", "_bridge_to"}}
-- attach a job to existing bridge nodes of its group (if any)
function jobgraph:_attach_job_to_bridges(job, group_name)
local outbound = self._bridge_from[group_name]
local inbound = self._bridge_to[group_name]
if not outbound and not inbound then
return
end
if outbound then
for _, bridge in ipairs(outbound) do
self._dag:add_edge(job, bridge)
end
end
if inbound then
for _, bridge in ipairs(inbound) do
self._dag:add_edge(bridge, job)
end
end
end
-- ensure a reusable bridge node exists between two groups
function jobgraph:_ensure_bridge(from_group, to_group)
local key = from_group .. "->" .. to_group
local bridge = self._bridge_nodes[key]
if bridge then
return bridge
end
bridge = {from_group = from_group, to_group = to_group}
self._bridge_nodes[key] = bridge
self._dag:add_vertex(bridge)
local from_members = self._groups[from_group] or {}
for _, member in ipairs(from_members) do
self._dag:add_edge(member, bridge)
end
local to_members = self._groups[to_group] or {}
for _, member in ipairs(to_members) do
self._dag:add_edge(bridge, member)
end
self._bridge_from[from_group] = self._bridge_from[from_group] or {}
table.insert(self._bridge_from[from_group], bridge)
self._bridge_to[to_group] = self._bridge_to[to_group] or {}
table.insert(self._bridge_to[to_group], bridge)
return bridge
end
-- remove the finished job
function jobqueue:remove(job)
local dag = self._dag
dag:partial_topo_sort_remove(job)
end
-- get a free job from the job queue
function jobqueue:getfree()
local dag = self._dag
::continue::
local freejob, has_cycle = dag:partial_topo_sort_next()
if has_cycle then
local names = {}
local cycle = dag:find_cycle()
if cycle then
for _, job in ipairs(cycle) do
table.insert(names, job.name)
end
table.insert(names, names[1])
end
raise("%s: circular job dependency detected!\n%s", self._jobgraph, table.concat(names, "\n -> "))
end
-- if it's a fake job, we need to skip it and continue to get the next job
if freejob and not freejob.run then
dag:partial_topo_sort_remove(freejob)
goto continue
end
return freejob
end
-- add a job to the jobgraph
--
-- e.g.
-- jobgraph:add("xxx", function (index, total, opt)
-- end)
--
-- @param name the job name
-- @param run the job run command/script
-- @param opt the job options, e.g. {groups = {"xxx"}}
--
function jobgraph:add(name, run, opt)
opt = opt or {}
local dag = self._dag
local jobs = self._jobs
if not jobs[name] then
local job = {name = name, run = run, distcc = opt.distcc}
jobs[name] = job
dag:add_vertex(job)
self._size = self._size + 1
if self._current_groups or opt.groups then
local seen
local job_groups
local function add_group(group_name)
if not group_name then
return
end
seen = seen or {}
if seen[group_name] then
return
end
seen[group_name] = true
job_groups = job_groups or {}
table.insert(job_groups, group_name)
local groups = self._groups[group_name]
if not groups then
groups = {}
self._groups[group_name] = groups
end
table.insert(groups, job)
-- ensure bridges (if any) are updated for new members
self:_attach_job_to_bridges(job, group_name)
end
for _, group_name in ipairs(self._current_groups or {}) do
add_group(group_name)
end
if opt.groups then
for _, group_name in ipairs(opt.groups) do
add_group(group_name)
end
end
job._groups = job_groups
end
else
wprint("job(%s): has already been added!", name)
end
end
-- remove a given job
function jobgraph:remove(name)
local dag = self._dag
local jobs = self._jobs
local job = jobs[name]
if job then
assert(self._size > 0)
jobs[name] = nil
dag:remove_vertex(job)
if job._groups then
for _, group_name in ipairs(job._groups) do
local members = self._groups[group_name]
if members then
table.remove_if(members, function (_, item) return item == job end)
if #members == 0 then
self._groups[group_name] = nil
end
end
end
end
self._size = self._size - 1
end
end
-- has the given job or group?
function jobgraph:has(name)
return (self._jobs[name] or self._groups[name]) ~= nil
end
-- enter group to add jobs
--
-- e.g.
-- jobgraph:group("foo", function ()
-- jobgraph:add("job1", function (index, total, opt)
-- TODO
-- end)
-- jobgraph:add("job2", function (index, total, opt)
-- TODO
-- end)
-- end)
function jobgraph:group(name, callback)
local current_groups = self._current_groups
if current_groups == nil then
current_groups = {}
self._current_groups = current_groups
end
table.insert(current_groups, name)
callback()
table.remove(current_groups)
end
-- add job orders, e.g. add_orders(a, b, c, ...): a -> b -> c, ...
--
-- and it supports nil, e.g add_orders("foo", nil, "bar", ...)
-- and it also supports to add orders list, e.g. add_orders(orders)
--
function jobgraph:add_orders(...)
local prev
local prev_is_group
local prev_name
local dag = self._dag
local jobs = self._jobs
local groups = self._groups
local orders = table.pack(...)
local count = orders.n
if count == 1 and type(orders[1]) == "table" then
orders = orders[1]
count = #orders
end
for i = 1, count do
local name = orders[i]
if name then
local curr_is_group = false
local curr = jobs[name]
if not curr then
curr = groups[name]
curr_is_group = true
end
assert(curr, "job(%s) not found in jobgraph(%s)", name, self)
if prev then
if prev_is_group and curr_is_group then
-- we use (and reuse) a bridge job as a node to bridge the two groups.
self:_ensure_bridge(prev_name, name)
elseif curr_is_group then
for _, job in ipairs(curr) do
dag:add_edge(prev, job)
end
elseif prev_is_group then
for _, job in ipairs(prev) do
dag:add_edge(job, curr)
end
else
dag:add_edge(prev, curr)
end
end
prev = curr
prev_is_group = curr_is_group
prev_name = name
end
end
end
-- build a job queue
function jobgraph:build()
local dag = self._dag
dag:partial_topo_sort_reset()
return jobqueue {self, dag}
end
-- get jobs
function jobgraph:jobs()
return self._jobs
end
-- get jobgraph name
function jobgraph:name()
return self._name
end
-- get job size
function jobgraph:size()
return self._size
end
-- is empty?
function jobgraph:empty()
return self:size() == 0
end
-- dump jobgraph
function jobgraph:dump()
print("================================ %s ================================", self)
for _, node in ipairs(self._dag:vertices()) do
debug.setmetatable(node, {__tostring = function (v)
if v.from_group and v.to_group then
return string.format("${dim}bridge<%s, %s>${clear}", v.from_group, v.to_group)
end
return string.format("${color.dump.string_quote}%s${clear}", v.name)
end})
end
self._dag:dump()
print("")
print("groups:")
for name, jobs in pairs(self._groups) do
print(" group(%s):", name)
for _, job in ipairs(jobs) do
cprint(" %s", job)
end
end
print("")
end
-- tostring
function jobgraph:__tostring()
return string.format("<jobgraph:%s/%d>", self:name() or "anonymous", self:size())
end
-- new a jobgraph
function new(name)
return jobgraph {name, {}, 0, graph.new(true), {}, {}, {}, {}}
end
|