-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathBackgroundCompilation.ts
94 lines (84 loc) · 3.33 KB
/
BackgroundCompilation.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
//===----------------------------------------------------------------------===//
//
// This source file is part of the VS Code Swift open source project
//
// Copyright (c) 2024 Apple Inc. and the VS Code Swift project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of VS Code Swift project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import * as vscode from "vscode";
import * as path from "path";
import { isPathInsidePath } from "./utilities/filesystem";
import { getBuildAllTask } from "./tasks/SwiftTaskProvider";
import configuration from "./configuration";
import { FolderContext } from "./FolderContext";
import { WorkspaceContext } from "./WorkspaceContext";
import { TaskOperation } from "./tasks/TaskQueue";
export class BackgroundCompilation {
private waitingToRun = false;
constructor(private folderContext: FolderContext) {}
/**
* Start onDidSave handler which will kick off compilation tasks
*
* The task works out which folder the saved file is in and then
* will call `runTask` on the background compilation attached to
* that folder.
* */
static start(workspaceContext: WorkspaceContext): vscode.Disposable {
const onDidSaveDocument = vscode.workspace.onDidSaveTextDocument(event => {
if (configuration.backgroundCompilation === false) {
return;
}
// is document a valid type for rebuild
const languages = ["swift", "c", "cpp", "objective-c", "objective-cpp"];
let foundLanguage = false;
languages.forEach(lang => {
if (event.languageId === lang) {
foundLanguage = true;
}
});
if (foundLanguage === false) {
return;
}
// is editor document in any of the current FolderContexts
const folderContext = workspaceContext.folders.find(context => {
return isPathInsidePath(event.uri.fsPath, context.folder.fsPath);
});
if (!folderContext) {
return;
}
// don't run auto-build if saving Package.swift as it clashes with the resolve
// that is run after the Package.swift is saved
if (path.join(folderContext.folder.fsPath, "Package.swift") === event.uri.fsPath) {
return;
}
// run background compilation task
folderContext.backgroundCompilation.runTask();
});
return { dispose: () => onDidSaveDocument.dispose() };
}
/**
* Run background compilation task
*
* If task is already running and nobody else is waiting for a build task
* then wait for the current build task to complete and then run another
* after. Otherwise just return
*/
async runTask() {
// create compile task and execute it
const backgroundTask = await getBuildAllTask(this.folderContext);
if (!backgroundTask) {
return;
}
try {
await this.folderContext.taskQueue.queueOperation(new TaskOperation(backgroundTask));
} catch {
// can ignore if running task fails
}
}
}