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
|
--!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 menuconf.lua
--
-- imports
import("core.base.option")
import("core.project.config")
import("core.project.project")
import("core.ui.log")
import("core.ui.rect")
import("core.ui.view")
import("core.ui.label")
import("core.ui.event")
import("core.ui.action")
import("core.ui.menuconf")
import("core.ui.mconfdialog")
import("core.ui.application")
import("private.detect.find_platform")
-- the app application
local app = application()
-- init app
function app:init()
-- init name
application.init(self, "app.config")
-- init background
self:background_set("blue")
-- insert menu config dialog
self:insert(self:mconfdialog())
-- load configs
self:load(not option.get("clean"))
end
-- get menu config dialog
function app:mconfdialog()
if not self._MCONFDIALOG then
local mconfdialog = mconfdialog:new("app.config.mconfdialog", rect{1, 1, self:width() - 1, self:height() - 1}, "menu config")
mconfdialog:action_set(action.ac_on_exit, function (v)
self:quit()
os.exit()
end)
mconfdialog:action_set(action.ac_on_save, function (v)
self:save()
self:quit()
end)
self._MCONFDIALOG = mconfdialog
end
return self._MCONFDIALOG
end
-- on resize
function app:on_resize()
self:mconfdialog():bounds_set(rect{1, 1, self:width() - 1, self:height() - 1})
application.on_resize(self)
end
-- filter option
function app:_filter_option(name)
local options =
{
target = true
, file = true
, root = true
, yes = true
, quiet = true
, confirm = true
, project = true
, verbose = true
, diagnosis = true
, require = true
, version = true
, help = true
, clean = true
, menu = true
, import = true
, export = true
, check = true
}
return not options[name] and not project.option(name)
end
-- get or make menu by category
function app:_menu_by_category(root, configs, menus, category)
-- is root?
if category == "." or category == "" then
return
end
-- attempt to get menu first
local menu = menus[category]
if not menu then
-- get config path
local parentdir = path.directory(category)
local config_path = path.join(root, parentdir == "." and "" or parentdir)
-- make a new menu
menu = menuconf.menu {name = category, path = config_path, description = path.basename(category), configs = {}}
menus[category] = menu
-- insert to the parent or root configs
local parent = self:_menu_by_category(root, configs, menus, parentdir)
table.insert(parent and parent.configs or configs, menu)
end
return menu
end
-- make configs by category
function app:_make_configs_by_category(root, options_by_category, cache, get_option_info)
-- make configs category
--
-- root category: "."
-- category path: "a", "a/b", "a/b/c" ...
--
local menus = {}
local configs = {}
local categories = table.orderkeys(options_by_category)
for _, category in ipairs(categories) do
-- get or make menu by category
local options = options_by_category[category]
local menu = self:_menu_by_category(root, configs, menus, category)
-- get sub-configs
local subconfigs = menu and menu.configs or configs
-- insert options to sub-configs
for _, opt in ipairs(options) do
-- get option info
local info = get_option_info(opt)
-- new value?
local newvalue = true
-- load value
local value = nil
if cache then
value = config.get(info.name)
if value ~= nil and info.kind == "choice" and info.values then
for idx, val in ipairs(info.values) do
if value == val then
value = idx
break
end
end
end
if value ~= nil then
newvalue = false
end
end
-- find the menu index in subconfigs
local menu_index = #subconfigs + 1
for idx, subconfig in ipairs(subconfigs) do
if subconfig.kind == "menu" then
menu_index = idx
break
end
end
-- get config path
local config_path = path.join(root, category == "." and "" or category)
-- insert config before all sub-menus
if info.kind == "string" then
table.insert(subconfigs, menu_index, menuconf.string {name = info.name, value = value, new = newvalue, default = info.default, path = config_path, description = info.description, sourceinfo = info.sourceinfo})
elseif info.kind == "boolean" then
table.insert(subconfigs, menu_index, menuconf.boolean {name = info.name, value = value, new = newvalue, default = info.default, path = config_path, description = info.description, sourceinfo = info.sourceinfo})
elseif info.kind == "choice" then
table.insert(subconfigs, menu_index, menuconf.choice {name = info.name, value = value, new = newvalue, default = info.default, path = config_path, values = info.values, description = info.description, sourceinfo = info.sourceinfo})
end
end
end
-- done
return configs
end
-- get basic configs
function app:_basic_configs(cache)
-- get configs from the cache first
local configs = self._BASIC_CONFIGS
if configs then
return configs
end
-- get config menu
local menu = option.taskmenu("config")
-- merge options by category
local category = "."
local options = menu and menu.options or {}
local options_by_category = {}
local keys = table.orderkeys(options)
for _, key in ipairs(keys) do
local opt = options[key]
local name = opt[2] or opt[1]
if name and self:_filter_option(name) then
options_by_category[category] = options_by_category[category] or {}
table.insert(options_by_category[category], opt)
elseif opt.category then
category = opt.category
end
end
-- make configs by category
self._BASIC_CONFIGS = self:_make_configs_by_category("Basic Configuration", options_by_category, cache, function (opt)
-- get option
local name = opt[2] or opt[1]
local default = opt[4]
local kind = (opt[3] == "k" or type(default) == "boolean") and "boolean" or "string"
-- get default values
if name == "plat" then
default = find_platform()
elseif name == "arch" then
_, default = find_platform()
elseif name == "mode" then
default = project.get("defaultmode")
if not default then
default = "release"
end
end
-- choice option?
local values = opt.values
if values then
if type(values) == "function" then
values = values(false, {menuconf = true})
end
values = table.wrap(values)
for idx, value in ipairs(values) do
if default == value then
default = idx
break
end
end
end
if values then
kind = "choice"
end
-- get description
local description = {}
for i = 5, 64 do
local desc = opt[i]
if type(desc) == "function" then
desc = desc()
end
if type(desc) == "string" then
table.insert(description, desc)
elseif type(desc) == "table" then
table.join2(description, desc)
else
break
end
end
-- make option info
return {name = name, kind = kind, default = default, values = values, description = description}
end)
return self._BASIC_CONFIGS
end
-- get project configs
function app:_project_configs(cache)
-- get configs from the cache first
local configs = self._PROJECT_CONFIGS
if configs then
return configs
end
-- merge options by category
local options = project.options()
local options_by_category = {}
local keys = table.orderkeys(options)
for _, key in ipairs(keys) do
local opt = options[key]
if opt:showmenu() ~= false then
local category = "."
if opt:get("category") then category = table.unwrap(opt:get("category")) end
options_by_category[category] = options_by_category[category] or {}
table.insert(options_by_category[category], opt)
end
end
-- make configs by category
self._PROJECT_CONFIGS = self:_make_configs_by_category("Project Configuration", options_by_category, cache, function (opt)
-- the default value
local default = "auto"
if opt:get("default") ~= nil then
default = opt:get("default")
end
-- get kind
local kind = (type(default) == "string") and "string" or "boolean"
-- get description
local description = opt:description()
-- get source info
local sourceinfo = (opt:get("__sourceinfo_description") or {})[type(description) == "table" and description[1] or description]
-- choice option?
local values = opt:get("values")
if values then
kind = "choice"
values = table.wrap(values)
for idx, value in ipairs(values) do
if default == value then
default = idx
break
end
end
end
return {name = opt:name(), kind = kind, default = default, values = values, description = description, sourceinfo = sourceinfo}
end)
return self._PROJECT_CONFIGS
end
-- save the given configs
function app:_save_configs(configs)
local options = option.options()
for _, conf in pairs(configs) do
if conf.kind == "menu" then
self:_save_configs(conf.configs)
elseif not conf.new and (conf.kind == "boolean" or conf.kind == "string") then
options[conf.name] = conf.value
elseif not conf.new and (conf.kind == "choice") then
options[conf.name] = conf.values[conf.value]
end
end
end
-- Have configs been changed?
function app:_configs_changed()
return self._CONFIGS_CHANGED
end
-- load configs from options
function app:load(cache)
-- merge configuration from the given import file or cache
local loaded = false
local importfile = option.get("import")
if importfile and os.isfile(importfile) then
loaded = config.load(importfile)
elseif cache then
loaded = config.load()
end
-- clear configs first
self._BASIC_CONFIGS = nil
self._PROJECT_CONFIGS = nil
-- load configs
local configs = {}
table.insert(configs, menuconf.menu {description = "Basic Configuration", configs = self:_basic_configs(cache)})
table.insert(configs, menuconf.menu {description = "Project Configuration", configs = self:_project_configs(cache)})
self:mconfdialog():load(configs)
-- the previous config is only for loading menuconf, so clear config now
if loaded then
config.clear()
end
end
-- save configs to options
function app:save()
self:_save_configs(self:_basic_configs())
self:_save_configs(self:_project_configs())
self._CONFIGS_CHANGED = true
end
-- main entry
function main(...)
app:run(...)
return app:_configs_changed()
end
|