-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathxmake.ts
949 lines (774 loc) · 30.5 KB
/
xmake.ts
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
'use strict';
// imports
import * as vscode from 'vscode';
import * as fs from 'fs';
import * as path from 'path';
import * as os from 'os';
import {log} from './log';
import {config} from './config';
import {Terminal} from './terminal';
import {Status} from './status';
import {Option} from './option';
import {ProblemList} from './problem';
import {Debugger} from './debugger';
import {Completion} from './completion';
import * as process from './process';
import * as utils from './utils';
// the option arguments
export interface OptionArguments extends vscode.QuickPickItem {
args: Map<string, string>;
}
// the xmake plugin
export class XMake implements vscode.Disposable {
// the extension context
private _context: vscode.ExtensionContext;
// enable plugin?
private _enabled: boolean = false;
// option changed?
private _optionChanged: boolean = true;
// the problems
private _problems: ProblemList;
// the debugger
private _debugger: Debugger;
// the terminal
private _terminal: Terminal;
// the option
private _option: Option;
// the status
private _status: Status;
// the cache file watcher
private _fileSystemWatcher: vscode.FileSystemWatcher;
// the constructor
constructor(context: vscode.ExtensionContext) {
// save context
this._context = context;
// init log
log.initialize(context);
}
// dispose all objects
public async dispose() {
await this.stop();
this._terminal.dispose();
this._status.dispose();
this._option.dispose();
this._problems.dispose();
this._debugger.dispose();
this._fileSystemWatcher.dispose();
}
// load cache
async loadCache() {
// load config cache
let cacheJson = {}
let getConfigPathScript = path.join(__dirname, `../../assets/config.lua`);
if (fs.existsSync(getConfigPathScript)) {
let configs = (await process.iorunv("xmake", ["l", getConfigPathScript], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (configs) {
configs = configs.split('__end__')[0].trim();
cacheJson = JSON.parse(configs);
}
}
// init platform
const plat = ("plat" in cacheJson && cacheJson["plat"] != "")? cacheJson["plat"] : {win32: 'windows', darwin: 'macosx', linux: 'linux'}[os.platform()];
if (plat) {
this._option.set("plat", plat);
this._status.plat = plat;
}
// init architecture
const arch = ("arch" in cacheJson && cacheJson["arch"] != "")? cacheJson["arch"] : (plat == "windows"? "x86" : {x64: 'x86_64', x86: 'i386'}[os.arch()]);
if (arch) {
this._option.set("arch", arch);
this._status.arch = arch;
}
// init build mode
const mode = ("mode" in cacheJson && cacheJson["mode"] != "")? cacheJson["mode"] : "release";
this._option.set("mode", mode);
this._status.mode = mode;
}
// init watcher
async initWatcher() {
// init file system watcher
this._fileSystemWatcher = vscode.workspace.createFileSystemWatcher(path.join(config.workingDirectory, ".xmake", "*"));
this._fileSystemWatcher.onDidCreate(this.onFileCreate.bind(this));
this._fileSystemWatcher.onDidChange(this.onFileChange.bind(this));
this._fileSystemWatcher.onDidDelete(this.onFileDelete.bind(this));
}
// refresh folder
async refreshFolder() {
// wait some times
await utils.sleep(2000);
// refresh it
vscode.commands.executeCommand('workbench.files.action.refreshFilesExplorer');
}
// on File Create
async onFileCreate(affectedPath: vscode.Uri) {
// trace
log.verbose("onFileCreate: " + affectedPath.fsPath);
// wait some times
await utils.sleep(2000);
// update configure cache
let filePath = affectedPath.fsPath;
if (filePath.includes("xmake.conf")) {
this.loadCache();
// update problems
} else if (filePath.includes("vscode-build.log")) {
this._problems.diagnose(filePath);
}
}
// on File Change
async onFileChange(affectedPath: vscode.Uri) {
// trace
log.verbose("onFileChange: " + affectedPath.fsPath);
// wait some times
await utils.sleep(2000);
// update configure cache
let filePath = affectedPath.fsPath;
if (filePath.includes("xmake.conf")) {
this.loadCache();
// update problems
} else if (filePath.includes("vscode-build.log")) {
this._problems.diagnose(filePath);
}
}
// on File Delete
async onFileDelete(affectedPath: vscode.Uri) {
// trace
log.verbose("onFileDelete: " + affectedPath.fsPath);
// wait some times
await utils.sleep(2000);
// update configure cache
let filePath = affectedPath.fsPath;
if (filePath.includes("xmake.conf")) {
this.loadCache();
// clear problems
} else if (filePath.includes("vscode-build.log")) {
this._problems.clear();
}
}
// start plugin
async startPlugin() {
// has been enabled?
if (this._enabled) {
return ;
}
// init languages
vscode.languages.registerCompletionItemProvider("xmake", new Completion());
// init terminal
if (!this._terminal) {
this._terminal = new Terminal();
}
// init problems
this._problems = new ProblemList();
// init debugger
this._debugger = new Debugger();
// init status
this._status = new Status();
// init option
this._option = new Option();
// load cached configure
this.loadCache();
// init watcher
this.initWatcher();
// init project name
let projectName = path.basename(utils.getProjectRoot());
this._option.set("project", projectName);
this._status.project = projectName;
// enable this plugin
this._enabled = true;
}
// create project
async createProject() {
// select language
let getLanguagesScript = path.join(__dirname, `../../assets/languages.lua`);
let gettemplatesScript = path.join(__dirname, `../../assets/templates.lua`);
if (fs.existsSync(getLanguagesScript) && fs.existsSync(gettemplatesScript)) {
let result = (await process.iorunv("xmake", ["l", getLanguagesScript], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (result) {
let items: vscode.QuickPickItem[] = [];
result.split("\n").forEach(element => {
items.push({label: element.trim(), description: ""});
});
const chosen: vscode.QuickPickItem|undefined = await vscode.window.showQuickPick(items);
if (chosen) {
// select template
let result2 = (await process.iorunv("xmake", ["l", gettemplatesScript, chosen.label], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (result2) {
let items2: vscode.QuickPickItem[] = [];
result2.split("\n").forEach(element => {
items2.push({label: element.trim(), description: ""});
});
const chosen2: vscode.QuickPickItem|undefined = await vscode.window.showQuickPick(items2);
if (chosen2) {
// create project
if (!this._terminal) {
this._terminal = new Terminal();
}
await this._terminal.execute("create", `xmake create -t ${chosen2.label} -l ${chosen.label} -P ${config.workingDirectory}`);
// start plugin
this.startPlugin();
// refresh folder
await this.refreshFolder();
}
}
}
}
}
}
// start xmake plugin
async start(): Promise<void> {
// open project directory first!
if (!utils.getProjectRoot()) {
if (!!(await vscode.window.showErrorMessage('no opened folder!',
'Open a xmake project directory first!'))) {
vscode.commands.executeCommand('vscode.openFolder');
}
return;
}
// trace
log.verbose(`start in ${config.workingDirectory}`);
// check xmake
if (0 != (await process.runv("xmake", ["--version"], {"COLORTERM": "nocolor"}, config.workingDirectory)).retval) {
if (!!(await vscode.window.showErrorMessage('xmake not found!',
'Access https://xmake.io to download and install xmake first!'))) {
}
return;
}
// valid xmake project?
if (!fs.existsSync(path.join(config.workingDirectory, "xmake.lua"))) {
if (!!(await vscode.window.showErrorMessage('xmake.lua not found!',
'Create a new xmake project'))) {
await this.createProject();
}
return;
}
// start plugin
this.startPlugin();
}
// shutdown xmake plugin
async stop(): Promise<void> {
// trace
log.verbose('stop!');
// disable this plugin
this._enabled = false;
}
// on create project
async onCreateProject(target?: string) {
if (this._enabled) {
this.createProject();
}
}
// on new files
async onNewFiles(target?: string) {
if (!this._enabled) {
return ;
}
// select files
let getFilesListScript = path.join(__dirname, `../../assets/newfiles.lua`);
if (fs.existsSync(getFilesListScript) && fs.existsSync(getFilesListScript)) {
let result = (await process.iorunv("xmake", ["l", getFilesListScript], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (result) {
let items: vscode.QuickPickItem[] = [];
result.split("\n").forEach(element => {
items.push({label: element.trim(), description: ""});
});
const chosen: vscode.QuickPickItem|undefined = await vscode.window.showQuickPick(items);
if (chosen) {
let filesdir = path.join(__dirname, "..", "..", "assets", "newfiles", chosen.label);
if (fs.existsSync(filesdir)) {
// copy files
await process.runv("xmake", ["l", "os.cp", path.join(filesdir, "*"), config.workingDirectory], {"COLORTERM": "nocolor"}, config.workingDirectory);
// refresh folder
await this.refreshFolder();
}
}
}
}
}
// on configure project
async onConfigure(target?: string): Promise<boolean> {
// this plugin enabled?
if (!this._enabled) {
return false;
}
// option changed?
if (this._optionChanged) {
// get the target platform
let plat = this._option.get<string>("plat");
// get the target architecture
let arch = this._option.get<string>("arch");
// get the build mode
let mode = this._option.get<string>("mode");
// make command
let command = `xmake f -p ${plat} -a ${arch} -m ${mode}`;
if (this._option.get<string>("plat") == "android" && config.androidNDKDirectory != "") {
command += ` --ndk=\"${config.androidNDKDirectory}\"`;
}
if (config.QtDirectory != "") {
command += ` --qt=\"${config.QtDirectory}\"`;
}
if (config.WDKDirectory != "") {
command += ` --wdk=\"${config.WDKDirectory}\"`;
}
if (config.buildDirectory != "" && config.buildDirectory != path.join(utils.getProjectRoot(), "build")) {
command += ` -o \"${config.buildDirectory}\"`
}
if (config.additionalConfigArguments) {
command += ` ${config.additionalConfigArguments}`
}
// configure it
await this._terminal.execute("config", command);
// mark as not changed
this._optionChanged = false;
return true;
}
return false;
}
// on clean configure project
async onCleanConfigure(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// make command
let command = `xmake f -c`;
if (config.buildDirectory != "" && config.buildDirectory != path.join(utils.getProjectRoot(), "build")) {
command += ` -o \"${config.buildDirectory}\"`
}
if (config.additionalConfigArguments) {
command += ` ${config.additionalConfigArguments}`
}
// configure it
await this._terminal.execute("clean config", command);
// mark as not changed
this._optionChanged = false;
}
// on build project
async onBuild(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// add build level to command
const targetName = this._option.get<string>("target");
const buildLevel = config.get<string>("buildLevel");
let command = "xmake"
if (targetName && targetName != "default")
command += " build";
if (buildLevel == "verbose")
command += " -v";
else if (buildLevel == "warning")
command += " -w";
else if (buildLevel == "debug")
command += " -v --backtrace";
// add build target to command
if (targetName && targetName != "default")
command += ` ${targetName}`;
else if (targetName == "all")
command += " -a";
// configure and build it
await this.onConfigure(target);
await this._terminal.execute("build", command);
}
// on rebuild project
async onRebuild(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// add build level to command
const buildLevel = config.get<string>("buildLevel");
let command = "xmake -r"
if (buildLevel == "verbose")
command += " -v";
else if (buildLevel == "warning")
command += " -w";
else if (buildLevel == "debug")
command += " -v --backtrace";
// add build target to command
const targetName = this._option.get<string>("target");
if (targetName && targetName != "default")
command += ` ${targetName}`;
else if (targetName == "all")
command += " -a";
// configure and rebuild it
await this.onConfigure(target);
await this._terminal.execute("rebuild", command);
}
// on clean target files
async onClean(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// get target name
const targetName = this._option.get<string>("target");
// make command
let command = "xmake c";
if (targetName && targetName != "default")
command += ` ${targetName}`;
// configure and clean it
await this.onConfigure(target);
await this._terminal.execute("clean", command);
}
// on clean all target files
async onCleanAll(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// get target name
const targetName = this._option.get<string>("target");
// make command
let command = "xmake c -a";
if (targetName && targetName != "default")
command += ` ${targetName}`;
// configure and clean all
await this.onConfigure(target);
await this._terminal.execute("clean all", command);
}
// on run target
async onRun(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// get target name
let targetName = this._option.get<string>("target");
if (!targetName) {
let getDefaultTargetPathScript = path.join(__dirname, `../../assets/default_target.lua`);
if (fs.existsSync(getDefaultTargetPathScript)) {
let result = (await process.iorunv("xmake", ["l", getDefaultTargetPathScript], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (result) {
targetName = result.split('__end__')[0].trim();
}
}
}
// get target arguments
let args = [];
if (targetName && targetName in config.debuggingTargetsArguments)
args = config.debuggingTargetsArguments[targetName];
else if ("default" in config.debuggingTargetsArguments)
args = config.debuggingTargetsArguments["default"];
// make command line arguments string
let argstr = "";
if (args.length > 0) {
argstr = '"' + args.join('" "') + '"';
}
// make command
let command = "xmake r"
if (targetName && targetName != "default")
command += ` ${targetName} ${argstr}`;
else if (targetName == "all")
command += " -a";
else command += ` ${argstr}`;
// configure and run it
await this.onConfigure(target);
await this._terminal.execute("run", command);
}
// on package target
async onPackage(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// get target name
const targetName = this._option.get<string>("target");
// make command
let command = "xmake p"
if (targetName && targetName != "default")
command += ` ${targetName}`;
else if (targetName == "all")
command += " -a";
// configure and package it
await this.onConfigure(target);
await this._terminal.execute("package", command);
}
// on install target
async onInstall(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// get target name
const targetName = this._option.get<string>("target");
// make command
let command = "xmake install"
if (targetName && targetName != "default")
command += ` ${targetName}`;
else if (targetName == "all")
command += " -a";
if (config.installDirectory != "")
command += ` -o \"${config.installDirectory}\"`;
// configure and install it
await this.onConfigure(target);
await this._terminal.execute("install", command);
}
// on uninstall target
async onUninstall(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// get target name
const targetName = this._option.get<string>("target");
// make command
let command = "xmake uninstall"
if (targetName && targetName != "default")
command += ` ${targetName}`;
if (config.installDirectory != "")
command += ` --installdir=\"${config.installDirectory}\"`;
// configure and uninstall it
await this.onConfigure(target);
await this._terminal.execute("uninstall", command);
}
// on debug target
async onDebug(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return ;
}
/* cpptools or codelldb externsions not found?
*
* @see
* https://github.com/Microsoft/vscode-cpptools
* https://github.com/vadimcn/vscode-lldb
*/
var extension = null;
if (os.platform() == "darwin") {
extension = vscode.extensions.getExtension("vadimcn.vscode-lldb");
}
if (!extension) {
extension = vscode.extensions.getExtension("ms-vscode.cpptools");
}
if (!extension) {
// get target name
const targetName = this._option.get<string>("target");
// make command
let command = "xmake r -d";
if (targetName && targetName != "default")
command += ` ${targetName}`;
// configure and debug it
await this.onConfigure(target);
await this._terminal.execute("debug", command);
return ;
}
// active cpptools/codelldb externsions
if (!extension.isActive) {
extension.activate();
}
// option changed?
if (this._optionChanged) {
await vscode.window.showErrorMessage('Configuration have been changed, please rebuild program first!');
return ;
}
// get target name
var targetName = this._option.get<string>("target");
if (!targetName) targetName = "default";
// get target program
var targetProgram = null;
let getTargetPathScript = path.join(__dirname, `../../assets/targetpath.lua`);
if (fs.existsSync(getTargetPathScript)) {
targetProgram = (await process.iorunv("xmake", ["l", getTargetPathScript, targetName], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (targetProgram) {
targetProgram = targetProgram.split("__end__")[0].trim();
targetProgram = targetProgram.split('\n')[0].trim();
}
}
// get target run directory
var targetRunDir = null;
let getTargetRunDirScript = path.join(__dirname, `../../assets/target_rundir.lua`);
if (fs.existsSync(getTargetRunDirScript)) {
targetRunDir = (await process.iorunv("xmake", ["l", getTargetRunDirScript, targetName], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (targetRunDir) {
targetRunDir = targetRunDir.split("__end__")[0].trim();
targetRunDir = targetRunDir.split('\n')[0].trim();
}
}
// start debugging
if (targetProgram && fs.existsSync(targetProgram)) {
this._debugger.startDebugging(targetName, targetProgram, targetRunDir);
} else {
await vscode.window.showErrorMessage('The target program not found!');
}
}
// on macro begin
async onMacroBegin(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// begin marco
await this._terminal.execute("macro begin", "xmake m -b");
// update status: start to record
this._status.startRecord();
}
// on macro end
async onMacroEnd(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// end marco
await this._terminal.execute("macro end", "xmake m -e");
// update status: stop to record
this._status.stopRecord();
}
// on macro run
async onMacroRun(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// end marco
await this._terminal.execute("macro run", "xmake m .");
}
// on run last command
async onRunLastCommand(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// end marco
await this._terminal.execute("macro run last", "xmake m ..");
}
// set project root directory
async setProjectRoot(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// no projects?
if (!vscode.workspace.workspaceFolders || !vscode.workspace.workspaceFolders.length) {
return;
}
// select projects
let items: vscode.QuickPickItem[] = [];
vscode.workspace.workspaceFolders.forEach(workspaceFolder => {
items.push({label: workspaceFolder.name, description: workspaceFolder.uri.fsPath});
});
const chosen: vscode.QuickPickItem|undefined = await vscode.window.showQuickPick(items);
if (chosen && chosen.label !== this._option.get<string>("project")) {
// update project
this._option.set("project", chosen.label);
utils.setProjectRoot(chosen.description);
this._status.project = chosen.label;
this._optionChanged = true;
// reload cache in new project root
this.loadCache();
}
}
// set target platform
async setTargetPlat(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// select platform
let items: vscode.QuickPickItem[] = [];
items.push({label: "linux", description: "The Linux Platform"});
items.push({label: "macosx", description: "The MacOS Platform"});
items.push({label: "windows", description: "The Windows Platform"});
items.push({label: "android", description: "The Android Platform"});
items.push({label: "iphoneos", description: "The iPhoneOS Platform"});
items.push({label: "watchos", description: "The WatchOS Platform"});
items.push({label: "mingw", description: "The MingW Platform"});
items.push({label: "cross", description: "The Cross Platform"});
const chosen: vscode.QuickPickItem|undefined = await vscode.window.showQuickPick(items);
if (chosen && chosen.label !== this._option.get<string>("plat")) {
// update platform
this._option.set("plat", chosen.label);
this._status.plat = chosen.label;
this._optionChanged = true;
// update architecture
let plat = chosen.label;
let arch = "";
const host = {win32: 'windows', darwin: 'macosx', linux: 'linux'}[os.platform()];
if (plat == host) {
arch = (plat == "windows"? "x86" : {x64: 'x86_64', x86: 'i386'}[os.arch()]);
}
else {
arch = {windows: "x86", macosx: "x86_64", linux: "x86_64", mingw: "x86_64", iphoneos: "arm64", watchos: "armv7k", android: "arm64-v8a"}[plat];
}
if (arch && arch != "") {
this._option.set("arch", arch);
this._status.arch = arch;
}
}
}
// set target architecture
async setTargetArch(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// select architecture
let items: vscode.QuickPickItem[] = [];
let plat = this._option.get<string>("plat");
// select files
let getArchListScript = path.join(__dirname, `../../assets/archs.lua`);
if (fs.existsSync(getArchListScript) && fs.existsSync(getArchListScript)) {
let result = (await process.iorunv("xmake", ["l", getArchListScript, plat], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (result) {
let items: vscode.QuickPickItem[] = [];
result = result.split("__end__")[0].trim();
result.split("\n").forEach(element => {
items.push({label: element.trim(), description: "The " + element.trim() + " Architecture"});
});
const chosen: vscode.QuickPickItem|undefined = await vscode.window.showQuickPick(items);
if (chosen && chosen.label !== this._option.get<string>("arch")) {
this._option.set("arch", chosen.label);
this._status.arch = chosen.label;
this._optionChanged = true;
}
}
}
}
// set build mode
async setBuildMode(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// select mode
let items: vscode.QuickPickItem[] = [];
items.push({label: "debug", description: "The Debug Mode"});
items.push({label: "release", description: "The Release Mode"});
const chosen: vscode.QuickPickItem|undefined = await vscode.window.showQuickPick(items);
if (chosen && chosen.label !== this._option.get<string>("mode")) {
this._option.set("mode", chosen.label);
this._status.mode = chosen.label;
this._optionChanged = true;
}
}
// set default target
async setDefaultTarget(target?: string) {
// this plugin enabled?
if (!this._enabled) {
return
}
// get target names
let targets = "";
let getTargetsPathScript = path.join(__dirname, `../../assets/targets.lua`);
if (fs.existsSync(getTargetsPathScript)) {
targets = (await process.iorunv("xmake", ["l", getTargetsPathScript], {"COLORTERM": "nocolor"}, config.workingDirectory)).stdout.trim();
if (targets) {
targets = targets.split("__end__")[0].trim();
}
}
// select target
let items: vscode.QuickPickItem[] = [];
items.push({label: "default", description: "All Default Targets"});
items.push({label: "all", description: "All Targets"});
if (targets) {
targets.split('\n').forEach(element => {
element = element.trim();
if (element.length > 0)
items.push({label: element, description: "The Project Target: " + element});
});
}
const chosen: vscode.QuickPickItem|undefined = await vscode.window.showQuickPick(items);
if (chosen && chosen.label !== this._option.get<string>("target")) {
this._option.set("target", chosen.label);
this._status.target = chosen.label;
}
}
};