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
|
--!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 configfiles.lua
--
-- imports
import("core.base.option")
import("core.base.semver")
import("core.project.config")
import("core.project.depend")
import("core.project.project")
import("core.platform.platform")
import("lib.detect.find_tool")
-- get all configuration files
function _get_configfiles()
local configfiles = {}
for _, target in table.orderpairs(project.targets()) do
if target:is_enabled() then
-- get configuration files for target
local srcfiles, dstfiles, fileinfos = target:configfiles()
for idx, srcfile in ipairs(srcfiles) do
-- get destinate file and file info
local dstfile = dstfiles[idx]
local fileinfo = fileinfos[idx]
-- get source info
local srcinfo = configfiles[dstfile]
if not srcinfo then
srcinfo = {}
configfiles[dstfile] = srcinfo
end
-- save source file
if srcinfo.srcfile then
assert(path.absolute(srcinfo.srcfile) == path.absolute(srcfile), "file(%s) and file(%s) are writing a same file(%s)", srcfile, srcinfo.srcfile, dstfile)
else
srcinfo.srcfile = srcfile
srcinfo.fileinfo = fileinfo
end
-- we use first target to get dependfile path
-- @see https://github.com/xmake-io/xmake/issues/3321
if not srcinfo.dependfile then
srcinfo.dependfile = target:dependfile(srcfile)
end
-- always update?
local always_update = target:policy("build.always_update_configfiles")
if always_update == nil then
always_update = project.policy("build.always_update_configfiles")
end
srcinfo.always_update = always_update
-- save targets
srcinfo.targets = srcinfo.targets or {}
table.insert(srcinfo.targets, target)
-- save preprocessors
local preprocessor = fileinfo and fileinfo.preprocessor
if preprocessor then
srcinfo.preprocessors = srcinfo.preprocessors or {}
table.insert(srcinfo.preprocessors, preprocessor)
end
end
end
end
return configfiles
end
-- get the builtin variables
function _get_builtinvars_target(target)
-- get version variables
local builtinvars = {}
local version, version_build = target:version()
if version then
builtinvars.VERSION = version
try {function ()
local v = semver.new(version)
if v then
builtinvars.VERSION_MAJOR = v:major()
builtinvars.VERSION_MINOR = v:minor()
builtinvars.VERSION_ALTER = v:patch()
end
end}
if version_build then
builtinvars.VERSION_BUILD = version_build
end
end
return builtinvars
end
-- get the git builtin variables
function _get_builtinvars_git(builtinvars)
local cmds =
{
GIT_TAG = {"describe", "--tags"},
GIT_TAG_LONG = {"describe", "--tags", "--long"},
GIT_BRANCH = {"rev-parse", "--abbrev-ref", "HEAD"},
GIT_COMMIT = {"rev-parse", "--short", "HEAD"},
GIT_COMMIT_LONG = {"rev-parse", "HEAD"},
GIT_COMMIT_DATE = {"log", "-1", "--date=format:%Y%m%d%H%M%S", "--format=%ad"}
}
for name, argv in pairs(cmds) do
builtinvars[name] = function ()
local result
local git = find_tool("git")
if git then
result = try {function ()
return os.iorunv(git.program, argv)
end}
end
if not result then
result = "none"
end
return result:trim()
end
end
end
-- get the global builtin variables
function _get_builtinvars_global()
local builtinvars = _g.builtinvars_global
if builtinvars == nil then
builtinvars =
{
arch = config.get("arch") or os.arch()
, plat = config.get("plat") or os.host()
, host = os.host()
, mode = config.get("mode") or "release"
, debug = is_mode("debug") and 1 or 0
, os = platform.os()
}
local builtinvars_upper = {}
for name, value in pairs(builtinvars) do
builtinvars_upper[name:upper()] = type(value) == "string" and value:upper() or value
end
table.join2(builtinvars, builtinvars_upper)
_get_builtinvars_git(builtinvars)
_g.builtinvars_global = builtinvars
end
return builtinvars
end
function _preprocess_define_value(name, value, opt)
opt = opt or {}
local extraconf = opt.extraconf
if value == nil then
value = ("/* #undef %s */"):format(name)
elseif type(value) == "boolean" then
if value then
value = ("#define %s 1"):format(name)
else
value = ("/* #define %s 0 */"):format(name)
end
elseif type(value) == "number" then
value = ("#define %s %d"):format(name, value)
elseif type(value) == "string" then
local quote = true
local escape = false
if extraconf then
-- disable to wrap quote, @see https://github.com/xmake-io/xmake/issues/1694
if extraconf.quote == false then
quote = false
end
-- escape path separator when with quote, @see https://github.com/xmake-io/xmake/issues/1872
if quote and extraconf.escape then
escape = true
end
end
if quote then
if escape then
value = value:gsub("\\", "\\\\")
end
value = ("#define %s \"%s\""):format(name, value)
else
value = ("#define %s %s"):format(name, value)
end
else
raise("unknown variable(%s) type: %s", name, type(value))
end
return value
end
function _preprocess_default_value(name, value, opt)
opt = opt or {}
local default = table.unpack(opt.argv or {})
assert(default ~= nil, "please set default value for variable(%s)", variable)
if value == nil then
value = default
else
value = tostring(value)
end
return value
end
function _preprocess_define_export_value(name, value, opt)
value = ([[#ifdef %s_STATIC
# define %s_EXPORT
#else
# if defined(_WIN32)
# define %s_EXPORT __declspec(dllexport)
# elif defined(__GNUC__) && ((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3))
# define %s_EXPORT __attribute__((visibility("default")))
# else
# define %s_EXPORT
# endif
#endif
]]):format(name, name, name, name, name)
return value
end
-- get variable value
function _get_variable_value(variables, name, opt)
opt = opt or {}
local preprocessor_name = opt.preprocessor_name
local preprocessor_argv = opt.preprocessor_argv
local configfile = opt.configfile
local value = variables[name]
local extraconf = variables["__extraconf_" .. name]
if preprocessor_name then
local preprocessed = false
if opt.preprocessors then
for _, preprocessor in ipairs(opt.preprocessors) do
value = preprocessor(preprocessor_name, name, value, {argv = preprocessor_argv, extraconf = extraconf})
if value ~= nil then
preprocessed = true
break
end
end
end
if not preprocessed then
local preprocessors = _g._preprocessors
if preprocessors == nil then
preprocessors = {
define = _preprocess_define_value,
default = _preprocess_default_value,
define_export = _preprocess_define_export_value
}
_g._preprocessors = preprocessors
end
local preprocessor = preprocessors[preprocessor_name]
if preprocessor == nil then
raise("unknown variable keyword, ${%s %s}", preprocessor_name, name)
end
value = preprocessor(name, value, {argv = preprocessor_argv, extraconf = extraconf})
end
assert(value ~= nil, "cannot get variable(%s %s) in %s.", preprocessor_name, name, configfile)
else
assert(value ~= nil, "cannot get variable(%s) in %s.", name, configfile)
end
dprint(" > replace %s -> %s", name, value)
if type(value) == "table" then
dprint("invalid variable value", value)
end
return value
end
-- generate the configuration file
function _generate_configfile(srcfile, dstfile, fileinfo, targets, preprocessors)
-- trace
if option.get("verbose") then
cprint("${dim}generating %s to %s ..", srcfile, dstfile)
end
-- only copy it?
if fileinfo.onlycopy then
if os.mtime(srcfile) > os.mtime(dstfile) then
os.cp(srcfile, dstfile)
end
else
-- generate to the temporary file first
local dstfile_tmp = os.tmpfile(srcfile)
os.tryrm(dstfile_tmp)
os.cp(srcfile, dstfile_tmp)
-- get all variables
local variables = fileinfo.variables or {}
for _, target in ipairs(targets) do
-- get variables from the target
for name, value in pairs(target:get("configvar")) do
local value = value
if variables[name] == nil then
value = table.unwrap(value)
variables[name] = value
variables["__extraconf_" .. name] = target:extraconf("configvar." .. name, value)
end
end
-- get variables from the target.options
for _, opt in ipairs(target:orderopts()) do
for name, value in pairs(opt:get("configvar")) do
if variables[name] == nil then
variables[name] = table.unwrap(value)
variables["__extraconf_" .. name] = opt:extraconf("configvar." .. name, value)
end
end
end
-- get the builtin variables from the target
for name, value in pairs(_get_builtinvars_target(target)) do
local value = value
if type(value) == "function" then
value = value()
end
if variables[name] == nil then
variables[name] = value
end
end
end
-- get the global builtin variables
for name, value in pairs(_get_builtinvars_global()) do
local value = value
if type(value) == "function" then
value = value()
end
if variables[name] == nil then
variables[name] = value
end
end
-- replace all variables
local pattern = fileinfo.pattern or "%${([^\n]-)}"
io.gsub(dstfile_tmp, "(" .. pattern .. ")", function(_, variable)
variable = variable:trim()
local preprocessor_argv
local preprocessor_name
local parts = variable:split("%s")
if #parts > 1 then
preprocessor_name = parts[1]
variable = parts[2]
preprocessor_argv = table.slice(parts, 3)
end
return _get_variable_value(variables, variable, {preprocessor_name = preprocessor_name,
preprocessor_argv = preprocessor_argv, configfile = srcfile, preprocessors = preprocessors})
end)
-- update file if the content is changed
if os.isfile(dstfile_tmp) then
os.cp(dstfile_tmp, dstfile, {copy_if_different = true})
end
end
-- trace
cprint("generating %s ... ${color.success}${text.success}", srcfile)
end
-- the main entry function
function main(opt)
-- enter project directory
opt = opt or {}
local oldir = os.cd(project.directory())
-- generate all configuration files
local configfiles = _get_configfiles()
for dstfile, srcinfo in pairs(configfiles) do
depend.on_changed(function ()
_generate_configfile(srcinfo.srcfile, dstfile, srcinfo.fileinfo, srcinfo.targets, srcinfo.preprocessors)
end, {files = srcinfo.srcfile,
lastmtime = os.mtime(dstfile),
dependfile = srcinfo.dependfile,
changed = opt.force or srcinfo.always_update})
end
-- leave project directory
os.cd(oldir)
end
|