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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
|
--!The Make-like Build Utility based on Lua
--
-- XMake is free software; you can redistribute it and/or modify
-- it under the terms of the GNU Lesser General Public License as published by
-- the Free Software Foundation; either version 2.1 of the License, or
-- (at your option) any later version.
--
-- XMake is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU Lesser General Public License for more details.
--
-- You should have received a copy of the GNU Lesser General Public License
-- along with XMake;
-- If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a>
--
-- Copyright (C) 2015 - 2016, ruki All rights reserved.
--
-- @author ruki
-- @file option.lua
--
-- define module: option
local option = option or {}
-- load modules
local table = require("base/table")
local colors = require("base/colors")
-- ifelse, a? b : c
function option._ifelse(a, b, c)
if a then return b else return c end
end
-- translate the menu
function option._translate(menu)
-- translate the menus if exists function
local submenus_all = {}
for k, submenu in pairs(menu) do
if type(submenu) == "function" then
local _submenus = submenu()
if _submenus then
for k, m in pairs(_submenus) do
submenus_all[k] = m
end
end
else
submenus_all[k] = submenu
end
end
table.copy2(menu, submenus_all)
-- save menu
option._MENU = menu
end
-- get the task menu
function option._taskmenu(task)
-- check
assert(option._MENU)
-- the current task
task = task or option.taskname() or "main"
-- get the task menu
local taskmenu = option._MENU[task]
if type(taskmenu) == "function" then
-- load this task menu
taskmenu = taskmenu()
-- save this task menu
option._MENU[task] = taskmenu
end
-- get it
return taskmenu
end
-- get the top context
function option._context()
-- the contexts
local contexts = option._CONTEXTS
assert(contexts)
-- get it
return contexts[#contexts]
end
-- get longname
function option._longname(name)
-- the long name and bindings
--
-- .e.g test:xxx1,xxx2,xxx3
--
-- longname: test
-- bindings: xxx1 xxx2 xxx3
--
if name ~= nil then
return name:split(':')[1]
end
end
-- get bindings
function option._bindings(name)
-- the long name and bindings
--
-- .e.g test:xxx1,xxx2,xxx3
--
-- longname: test
-- bindings: xxx1 xxx2 xxx3
--
if name ~= nil then
local names = name:split(':')
if names then
if names[2] then
return names[2]:split(',')
end
end
end
end
-- save context
function option.save(taskname)
-- init contexts
option._CONTEXTS = option._CONTEXTS or {}
-- new a context
local context = {options = {}, defaults = {}, taskname = taskname}
-- init defaults
if taskname then
context.defaults = option.defaults(taskname) or context.defaults
end
-- push this new context to the top stack
table.insert(option._CONTEXTS, context)
-- ok
return context
end
-- restore context
function option.restore()
-- pop it
if option._CONTEXTS then
table.remove(option._CONTEXTS)
end
end
-- the command line
function option.cmdline()
-- make command
local line = "xmake"
local argv = xmake._ARGV
for _, arg in ipairs(argv) do
if arg:find("%s") then
arg = "\"" .. arg .. "\""
end
line = line .. " " .. arg
end
-- ok?
return line
end
-- init the option
function option.init(menu)
-- check
assert(menu)
-- translate menu
option._translate(menu)
-- the main menu
local main = option._taskmenu("main")
assert(main)
-- new top context
local context = option.save()
assert(context)
-- parse _ARGV
local argv = xmake._ARGV
local argkv_end = false
local _iter, _s, _k = ipairs(argv)
while true do
-- the idx and arg
local idx, arg = _iter(_s, _k)
-- end?
_k = idx
if idx == nil then break end
-- parse key and value
local key, value
local i = arg:find("=", 1, true)
-- key=value?
if i and not argkv_end then
key = arg:sub(1, i - 1)
value = arg:sub(i + 1)
-- only key?
else
key = arg
value = true
end
-- --key?
local prefix = 0
if not argkv_end and key:startswith("--") then
key = key:sub(3)
prefix = 2
-- -k?
elseif not argkv_end and key:startswith("-") then
key = key:sub(2)
prefix = 1
end
-- check key
if prefix and #key == 0 then
-- print menu
option.show_menu(context.taskname)
-- invalid option
print(colors("\n${bright red}error: ${default red}invalid option: " .. arg))
-- failed
return false
end
-- --key=value or -k value or -k?
if prefix ~= 0 then
-- find this option
local opt = nil
local longname = nil
for _, o in ipairs(option._taskmenu().options) do
-- check
assert(o)
-- the short name
local shortname = o[1]
-- the long name and bindings
--
-- .e.g test:xxx1,xxx2,xxx3
--
-- longname: test
-- bindings: xxx1 xxx2 xxx3
--
longname = option._longname(o[2])
-- --key?
if prefix == 2 and key == longname then
opt = o
break
-- k?
elseif prefix == 1 and key == shortname then
opt = o
break
end
end
-- not found?
if not opt then
-- print menu
option.show_menu(context.taskname)
-- invalid option
print(colors("\n${bright red}error: ${default red}invalid option: " .. arg))
-- failed
return false
end
-- -k value? continue to get the value
if prefix == 1 and opt[3] == "kv" then
-- get the next idx and arg
idx, arg = _iter(_s, _k)
-- exists value?
_k = idx
if idx == nil or (arg:startswith("-") and not arg:find("%s")) then
-- print menu
option.show_menu(context.taskname)
-- invalid option
print(colors("\n${bright red}error: ${default red}invalid option: " .. option._ifelse(idx, arg, key)))
-- failed
return false
end
-- get value
value = arg
end
-- check mode
if (opt[3] == "k" and type(value) ~= "boolean") or (opt[3] == "kv" and type(value) ~= "string") then
-- print menu
option.show_menu(context.taskname)
-- invalid option
print(colors("\n${bright red}error: ${default red}invalid option: " .. arg))
-- failed
return false
end
-- value is "true" or "false", translate it
if type(value) == "string" then
if value == "true" or value == "yes" or value == "y" then value = true
elseif value == "false" or value == "no" or value == "n" then value = false
end
end
-- save option
context.options[longname] = value
-- save bindings
local bindings = option._bindings(opt[2])
if bindings then
for _, bindname in ipairs(bindings) do
if bindname:startswith("!") then
if type(value) == "boolean" then
context.options[bindname:sub(2, -1)] = not value
end
else
context.options[bindname] = value
end
end
end
-- task?
elseif idx == 1 then
-- find the current task
for taskname, taskinfo in pairs(main.tasks) do
-- ok?
if taskname == key or taskinfo.shortname == key then
-- save this task
context.taskname = taskname
break
end
end
-- not found?
if not context.taskname or not menu[context.taskname] then
-- print the main menu
option.show_main()
-- invalid task
print(colors("\n${bright red}error: ${default red}invalid task: " .. key))
-- failed
return false
end
-- value?
else
-- stop to parse key-value arguments
argkv_end = true
-- find a value option with name
local opt = nil
for _, o in ipairs(option._taskmenu().options) do
-- the mode
local mode = o[3]
-- the name
local name = option._longname(o[2])
-- check
assert(o and ((mode ~= "v" and mode ~= "vs") or name))
-- is value and with name?
if mode == "v" and name and not context.options[name] then
opt = o
break
-- is values and with name?
elseif mode == "vs" and name then
opt = o
break
end
end
-- ok? save this value with name opt[2]
if opt then
-- the mode
local mode = opt[3]
-- the name
local name = option._longname(opt[2])
-- save value
if mode == "v" then
context.options[name] = key
elseif mode == "vs" then
-- the option
local o = context.options[name]
if not o then
context.options[name] = {}
o = context.options[name]
end
-- append value
table.insert(o, key)
end
else
-- print menu
option.show_menu(context.taskname)
-- invalid option
print(colors("\n${bright red}error: ${default red}invalid option: " .. arg))
-- failed
return false
end
end
end
-- init the default value
for _, o in ipairs(option._taskmenu().options) do
-- the long name
local longname = option._longname(o[2])
-- key=value?
if o[3] == "kv" then
-- the key
local key = longname or o[1]
assert(key)
-- save the default value
context.defaults[key] = o[4]
-- value with name?
elseif o[3] == "v" and longname then
-- save the default value
context.defaults[longname] = o[4]
end
end
-- ok
return true
end
-- find the value of a given name from the arguments
-- only for kv mode and need not check it using menu
--
function option.find(argv, name, shortname)
-- check
assert(argv and (name or shortname))
-- find it
local nextvalue = false
for _, arg in ipairs(argv) do
-- get this value
if nextvalue then return arg end
-- --name=value?
if name and arg:startswith("--" .. name) then
-- get value
local i = arg:find("=", 1, true)
if i then return arg:sub(i + 1) end
-- -shortname value?
elseif shortname and arg:startswith("-" .. shortname) then
-- get value
nextvalue = true
end
end
end
-- parse arguments with the given options
function option.parse(argv, options)
-- check
assert(argv and options)
-- parse arguments
local results = {}
local argkv_end = false
local _iter, _s, _k = ipairs(argv)
while true do
-- the idx and arg
local idx, arg = _iter(_s, _k)
-- end?
_k = idx
if idx == nil then break end
-- parse key and value
local key, value
local i = arg:find("=", 1, true)
-- key=value?
if i and not argkv_end then
key = arg:sub(1, i - 1)
value = arg:sub(i + 1)
-- only key?
else
key = arg
value = true
end
-- --key?
local prefix = 0
if not argkv_end and key:startswith("--") then
key = key:sub(3)
prefix = 2
-- -k?
elseif not argkv_end and key:startswith("-") then
key = key:sub(2)
prefix = 1
end
-- check key
if prefix and #key == 0 then
-- failed
return nil, "invalid option: " .. arg
end
-- --key=value or -k value or -k?
if prefix ~= 0 then
-- find this option
local opt = nil
local longname = nil
for _, o in ipairs(options) do
-- check
assert(o)
-- the short name
local shortname = o[1]
-- the long name and bindings
--
-- .e.g test:xxx1,xxx2,xxx3
--
-- longname: test
-- bindings: xxx1 xxx2 xxx3
--
longname = option._longname(o[2])
-- --key?
if prefix == 2 and key == longname then
opt = o
break
-- k?
elseif prefix == 1 and key == shortname then
opt = o
break
end
end
-- not found?
if not opt then
-- failed
return nil, "invalid option: " .. arg
end
-- -k value? continue to get the value
if prefix == 1 and opt[3] == "kv" then
-- get the next idx and arg
idx, arg = _iter(_s, _k)
-- exists value?
_k = idx
if idx == nil or (arg:startswith("-") and not arg:find("%s")) then
-- failed
return nil, "invalid option: " .. option._ifelse(idx, arg, key)
end
-- get value
value = arg
end
-- check mode
if (opt[3] == "k" and type(value) ~= "boolean") or (opt[3] == "kv" and type(value) ~= "string") then
-- failed
return nil, "invalid option: " .. arg
end
-- value is "true" or "false", translate it
if type(value) == "string" then
if value == "true" or value == "yes" or value == "y" then value = true
elseif value == "false" or value == "no" or value == "n" then value = false
end
end
-- save option
results[longname] = value
-- save bindings
local bindings = option._bindings(opt[2])
if bindings then
for _, bindname in ipairs(bindings) do
if bindname:startswith("!") then
if type(value) == "boolean" then
results[bindname:sub(2, -1)] = not value
end
else
results[bindname] = value
end
end
end
-- value?
else
-- stop to parse key-value arguments
argkv_end = true
-- find a value option with name
local opt = nil
for _, o in ipairs(options) do
-- the mode
local mode = o[3]
-- the name
local name = option._longname(o[2])
-- check
assert(o and ((mode ~= "v" and mode ~= "vs") or name))
-- is value and with name?
if mode == "v" and name and not results[name] then
opt = o
break
-- is values and with name?
elseif mode == "vs" and name then
opt = o
break
end
end
-- ok? save this value with name opt[2]
if opt then
-- the mode
local mode = opt[3]
-- the name
local name = option._longname(opt[2])
-- save value
if mode == "v" then
results[name] = key
elseif mode == "vs" then
-- the option
local o = results[name]
if not o then
results[name] = {}
o = results[name]
end
-- append value
table.insert(o, key)
end
else
-- failed
return nil, "invalid option: " .. arg
end
end
end
-- init the default value
for _, o in ipairs(options) do
-- the long name
local longname = option._longname(o[2])
-- key=value?
if o[3] == "kv" then
-- the key
local key = longname or o[1]
assert(key)
-- save the default value
if results[key] == nil then
results[key] = o[4]
end
-- value with name?
elseif o[3] == "v" and longname then
-- save the default value
if results[longname] == nil then
results[longname] = o[4]
end
end
end
-- ok
return results
end
-- get the current task name
function option.taskname()
-- get it
return option._context().taskname
end
-- get the given option value for the current task
function option.get(name)
-- check
assert(name)
-- the options
local options = option.options()
assert(options)
-- get it
return options[name] or option.default(name)
end
-- set the given option for the current task
function option.set(name, value)
-- check
assert(name)
-- cannot be the first context for menu
assert(#option._CONTEXTS > 1)
-- the options
local options = option.options()
assert(options)
-- set it
options[name] = value
end
-- get the given default option value for the current task
function option.default(name)
-- check
assert(name)
-- the defaults
local defaults = option.defaults()
assert(defaults)
-- get it
return defaults[name]
end
-- get the current options
function option.options()
-- get it
return option._context().options
end
-- get all default options for the current or given task
function option.defaults(task)
-- get the default options for the current task
if task == nil then
return option._context().defaults
end
-- the task menu
local taskmenu = option._taskmenu(task)
-- get the default options for the given task
local defaults = {}
if taskmenu then
for _, o in ipairs(taskmenu.options) do
-- the long name
local longname = option._longname(o[2])
-- key=value?
if o[3] == "kv" then
-- the key
local key = longname or o[1]
assert(key)
-- save the default value
defaults[key] = o[4]
-- value with name?
elseif o[3] == "v" and longname then
-- save the default value
defaults[longname] = o[4]
end
end
end
-- ok?
return defaults
end
-- show the menu
function option.show_menu(task)
-- no task? print main menu
if not task then
option.show_main()
return
end
-- the menu
local menu = option._MENU
assert(menu)
-- the task menu
local taskmenu = option._taskmenu(task)
assert(taskmenu)
-- print title
if menu.title then
print(menu.title)
end
-- print copyright
if menu.copyright then
print(colors(menu.copyright))
end
-- print usage
if taskmenu.usage then
print("")
print(colors("${bright}Usage: $${default cyan}" .. taskmenu.usage))
end
-- print description
if taskmenu.description then
print("")
print(taskmenu.description)
end
-- print options
if taskmenu.options then
option.show_options(taskmenu.options)
end
end
-- show the main menu
function option.show_main()
-- the menu
local menu = option._MENU
assert(menu)
-- the main menu
local main = option._taskmenu("main")
assert(main)
-- print title
if menu.title then
print(menu.title)
end
-- print copyright
if menu.copyright then
print(colors(menu.copyright))
end
-- print usage
if main.usage then
print("")
print(colors("${bright}Usage: $${default cyan}" .. main.usage))
end
-- print description
if main.description then
print("")
print(main.description)
end
-- print tasks
if main.tasks then
-- make task categories
local categories = {}
for taskname, taskinfo in pairs(main.tasks) do
-- the category name
local categoryname = taskinfo.category or "task"
if categoryname == "main" then
categoryname = "action"
end
-- the category task
local categorytask = categories[categoryname] or {}
categories[categoryname] = categorytask
-- add task to the category
categorytask[taskname] = taskinfo
end
-- sort categories
local categories_sorted = {}
for categoryname, categorytask in pairs(categories) do
if categoryname == "action" then
table.insert(categories_sorted, 1, {categoryname, categorytask})
else
table.insert(categories_sorted, {categoryname, categorytask})
end
end
-- dump tasks by categories
for _, categoryinfo in ipairs(categories_sorted) do
-- the category name and task
local categoryname = categoryinfo[1]
local categorytask = categoryinfo[2]
assert(categoryname and categorytask)
-- print category name
print("")
print(colors(string.format("${bright}%s%ss: ", string.sub(categoryname, 1, 1):upper(), string.sub(categoryname, 2))))
-- the padding spaces
local padding = 42
-- print tasks
for taskname, taskinfo in pairs(categorytask) do
-- init the task line
local taskline = " "
if taskinfo.shortname then
taskline = taskline .. taskinfo.shortname .. ", "
else
taskline = taskline .. " "
end
-- append the task name
taskline = taskline .. taskname
-- append color
taskline = "${magenta}" .. taskline .. "${clear}"
-- append spaces
for i = (#taskline), padding do
taskline = taskline .. " "
end
-- append the task description
if taskinfo.description then
taskline = taskline .. taskinfo.description
end
-- print task line
print(colors(taskline))
end
end
end
-- print options
if main.options then
option.show_options(main.options)
end
end
-- show the options menu
function option.show_options(options)
-- check
assert(options)
-- print header
print("")
print(colors("${bright}Options: "))
-- the padding spaces
local padding = 42
-- print options
for _, opt in ipairs(options) do
-- init the option info
local option_info = ""
-- append the shortname
local shortname = opt[1]
local name = option._longname(opt[2])
local mode = opt[3]
if shortname then
option_info = option_info .. " -" .. shortname
if mode == "kv" then
option_info = option_info .. " " .. option._ifelse(name, name:upper(), "XXX")
end
end
-- append the name
if name then
if mode == "v" then
option_info = option_info .. " " .. name
elseif mode == "vs" then
option_info = option_info .. " " .. name .. " ..."
else
option_info = option_info .. option._ifelse(shortname, ", --", " --") .. name
end
if mode == "kv" then
option_info = option_info .. "=" .. name:upper()
end
elseif mode == "v" or mode == "vs" then
option_info = option_info .. " ..."
end
-- append spaces
for i = (#option_info), padding do
option_info = option_info .. " "
end
-- append color
option_info = "${blue}" .. option_info .. "${clear}"
-- append the option description
local description = opt[5]
if description then
option_info = option_info .. description
end
-- append the default value
local default = opt[4]
if default then
option_info = option_info .. " (default: ${bright}" .. tostring(default) .. "${clear})"
end
-- print option info
print(colors(option_info))
-- print more description if exists
for i = 6, 64 do
-- the description, @note some option may be nil
local description = opt[i]
if not description then break end
-- is function? get results
if type(description) == "function" then
description = description()
end
-- the description is string?
if type(description) == "string" then
-- make spaces
local spaces = ""
for i = 0, padding do
spaces = spaces .. " "
end
-- print this description
print(spaces .. description)
-- the description is table?
elseif type(description) == "table" then
-- print all descriptions
for _, v in pairs(description) do
-- make spaces
local spaces = ""
for i = 0, padding do
spaces = spaces .. " "
end
-- print this description
print(spaces .. v)
end
end
end
end
end
-- return module: option
return option
|