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
|
--!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, TBOOX Open Source Group.
--
-- @author Arthapz, ruki
-- @file common.lua
--
-- imports
import("core.base.json")
import("core.base.hashset")
import("core.project.config")
import("core.tool.compiler")
import("core.cache.memcache", {alias = "_memcache"})
import("core.project.project")
import("lib.detect.find_file")
-- get memcache
function memcache()
return _memcache.cache("rule.cxx.modules")
end
-- get stl modules cache directory
function stlmodules_cachedir(target)
local stlcachedir = path.join(target:autogendir(), "stlmodules", "cache")
if target:has_tool("cxx", "clang", "clangxx") then
stlcachedir = path.join(config.buildir(), "stlmodules", "cache")
end
if not os.isdir(stlcachedir) then
os.mkdir(stlcachedir)
end
return stlcachedir
end
-- get modules cache directory
function modules_cachedir(target)
local cachedir = path.join(target:autogendir(), "rules", "modules", "cache")
if not os.isdir(cachedir) then
os.mkdir(cachedir)
end
return cachedir
end
-- patch sourcebatch
function patch_sourcebatch(target, sourcebatch, opt)
local cachedir = modules_cachedir(target)
sourcebatch.sourcekind = "cxx"
sourcebatch.objectfiles = sourcebatch.objectfiles or {}
sourcebatch.dependfiles = sourcebatch.dependfiles or {}
for _, sourcefile in ipairs(sourcebatch.sourcefiles) do
local objectfile = target:objectfile(sourcefile)
local dependfile = target:dependfile(objectfile)
table.insert(sourcebatch.objectfiles, objectfile)
table.insert(sourcebatch.dependfiles, dependfile)
end
end
-- get modules support
function modules_support(target)
local cachekey = tostring(target)
local module_builder = memcache():get2("modules_support", cachekey)
if module_builder == nil then
if target:has_tool("cxx", "clang", "clangxx") then
module_builder = import("clang", {anonymous = true})
elseif target:has_tool("cxx", "gcc", "gxx") then
module_builder = import("gcc", {anonymous = true})
elseif target:has_tool("cxx", "cl") then
module_builder = import("msvc", {anonymous = true})
else
local _, toolname = target:tool("cxx")
raise("compiler(%s): does not support c++ module!", toolname)
end
memcache():set2("modules_support", cachekey, module_builder)
end
return module_builder
end
-- get bmi extension
function bmi_extension(target)
return modules_support(target).bmi_extension()
end
-- this target contains module files?
function contains_modules(target)
local target_with_modules = target:sourcebatches()["c++.build.modules"] and true or false
if not target_with_modules then
for _, dep in ipairs(target:orderdeps()) do
local sourcebatches = dep:sourcebatches()
if sourcebatches and sourcebatches["c++.build.modules"] then
target_with_modules = true
break
end
end
end
return target_with_modules
end
-- load module infos
function load(target, sourcebatch, opt)
local moduleinfos
for _, sourcefile in ipairs(sourcebatch.sourcefiles) do
local dependfile = target:dependfile(sourcefile)
if os.isfile(dependfile) then
local data = io.load(dependfile)
if data then
moduleinfos = moduleinfos or {}
local moduleinfo = json.decode(data.moduleinfo)
moduleinfo.sourcefile = sourcefile
if moduleinfo then
table.append(moduleinfos, moduleinfo)
end
end
end
end
return moduleinfos
end
-- parse module dependency data
function parse_dependency_data(target, moduleinfos, opt)
local modules
local cachedir = modules_cachedir(target)
for _, moduleinfo in ipairs(moduleinfos) do
assert(moduleinfo.version <= 1)
for _, rule in ipairs(moduleinfo.rules) do
modules = modules or {}
local m = {}
for _, provide in ipairs(rule.provides) do
m.provides = m.provides or {}
assert(provide["logical-name"])
if provide["compiled-module-path"] then
if not path.is_absolute(provide["compiled-module-path"]) then
m.provides[provide["logical-name"]] = path.absolute(path.translate(provide["compiled-module-path"]))
else
m.provides[provide["logical-name"]] = path.translate(provide["compiled-module-path"])
end
else
-- assume path with name
local name = provide["logical-name"] .. bmi_extension(target)
name:replace(":", "-")
m.provides[provide["logical-name"]] = {
bmi = path.join(cachedir, name),
sourcefile = moduleinfo.sourcefile
}
end
end
assert(rule["primary-output"])
modules[path.translate(rule["primary-output"])] = m
end
end
for _, moduleinfo in ipairs(moduleinfos) do
for _, rule in ipairs(moduleinfo.rules) do
local m = modules[path.translate(rule["primary-output"])]
for _, r in ipairs(rule.requires) do
m.requires = m.requires or {}
local p = r["source-path"]
if not p then
for _, dependency in pairs(modules) do
if dependency.provides and dependency.provides[r["logical-name"]] then
p = dependency.provides[r["logical-name"]].bmi
break
end
end
end
m.requires[r["logical-name"]] = {
method = r["lookup-method"] or "by-name",
path = p and path.translate(p) or nil,
unique = r["unique-on-source-path"] or false
}
end
end
end
return modules
end
function _topological_sort_visit(node, nodes, modules, output)
if node.marked then
return
end
assert(not node.tempmarked)
node.tempmarked = true
local m1 = modules[node.objectfile]
assert(m1.provides)
for _, n in ipairs(nodes) do
if not n.tempmarked then
local m2 = modules[n.objectfile]
for name, provide in pairs(m1.provides) do
if m2.requires and m2.requires[name] then
_topological_sort_visit(n, nodes, modules, output)
end
end
end
end
node.tempmarked = false
node.marked = true
table.insert(output, 1, node.objectfile)
end
function _topological_sort_has_node_without_mark(nodes)
for _, node in ipairs(nodes) do
if not node.marked then
return true
end
end
return false
end
function _topological_sort_get_first_unmarked_node(nodes)
for _, node in ipairs(nodes) do
if not node.marked and not node.tempmarked then
return node
end
end
end
function sort_modules_by_dependencies(objectfiles, modules)
local output = {}
local nodes = {}
for _, objectfile in ipairs(objectfiles) do
local m = modules[objectfile]
if m.provides then
table.append(nodes, { marked = false, tempmarked = false, objectfile = objectfile })
end
end
while _topological_sort_has_node_without_mark(nodes) do
local node = _topological_sort_get_first_unmarked_node(nodes)
_topological_sort_visit(node, nodes, modules, output)
end
return output
end
function find_quote_header_file(target, sourcefile, file)
local p = path.join(path.directory(path.absolute(sourcefile, project.directory())), file)
assert(os.isfile(p))
return p
end
function find_angle_header_file(target, file)
-- check if the header is in subtarget
local headerpaths = modules_support(target).toolchain_include_directories(target)
for _, dep in ipairs(target:orderdeps()) do
table.append(headerpaths, dep:scriptdir())
end
if project.required_packages then
for _, name in ipairs(target:get("packages")) do
local package = project.required_package(name)
table.join2(headerpaths, package:get("sysincludedirs"))
end
end
table.join2(headerpaths, target:get("includedirs"))
local p = find_file(file, headerpaths)
assert(p)
assert(os.isfile(p))
return p
end
function fallback_generate_dependencies(target, jsonfile, sourcefile)
local output = {
version = 0,
revision = 0,
rules = {}
}
local rule = {
outputs = {
jsonfile
}
}
rule["primary-output"] = target:objectfile(sourcefile)
local module_name
local module_deps = {}
local sourcecode = io.readfile(sourcefile)
sourcecode = sourcecode:gsub("//.-\n", "\n")
sourcecode = sourcecode:gsub("/%*.-%*/", "")
for _, line in ipairs(sourcecode:split("\n", {plain = true})) do
if not module_name then
module_name = line:match("export%s+module%s+(.+)%s*;")
end
local module_depname = line:match("import%s+(.+)%s*;")
if module_depname then
local module_dep = {}
-- partition? import :xxx;
if module_depname:startswith(":") then
module_depname = module_name .. module_depname
elseif module_depname:startswith("\"") then
module_depname = module_depname:sub(2, -2)
module_dep["lookup-method"] = "include-quote"
module_dep["unique-on-source-path"] = true
module_dep["source-path"] = find_quote_header_file(target, sourcefile, module_depname)
elseif module_depname:startswith("<") then
module_depname = module_depname:sub(2, -2)
module_dep["lookup-method"] = "include-angle"
module_dep["unique-on-source-path"] = true
module_dep["source-path"] = find_angle_header_file(target, module_depname)
end
module_dep["logical-name"] = module_depname
table.insert(module_deps, module_dep)
end
end
if module_name then
table.append(rule.outputs, module_name .. bmi_extension(target))
local provide = {}
provide["logical-name"] = module_name
provide["source-path"] = path.absolute(sourcefile, project.directory())
rule.provides = {}
table.append(rule.provides, provide)
end
rule.requires = module_deps
table.append(output.rules, rule)
local jsondata = json.encode(output)
io.writefile(jsonfile, jsondata)
end
|