forked from swiftlang/vscode-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities.ts
92 lines (87 loc) · 2.87 KB
/
utilities.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
//===----------------------------------------------------------------------===//
//
// This source file is part of the VS Code Swift open source project
//
// Copyright (c) 2025 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
//
//===----------------------------------------------------------------------===//
/* eslint-disable no-console */
import * as child_process from "child_process";
import { readFile } from "fs/promises";
import * as path from "path";
import * as semver from "semver";
/**
* Executes the provided main function for the script while logging any errors.
*
* If an error is caught then the process will exit with code 1.
*
* @param mainFn The main function of the script that will be run.
*/
export async function main(mainFn: () => Promise<void>): Promise<void> {
try {
await mainFn();
} catch (error) {
console.error(error);
process.exit(1);
}
}
/**
* Returns the root directory of the repository.
*/
export function getRootDirectory(): string {
return path.join(__dirname, "..", "..");
}
/**
* Retrieves the version number from the package.json.
*/
export async function getExtensionVersion(): Promise<semver.SemVer> {
const packageJSON = JSON.parse(
await readFile(path.join(getRootDirectory(), "package.json"), "utf-8")
);
if (typeof packageJSON.version !== "string") {
throw new Error("Version number in package.json is not a string");
}
const version = semver.parse(packageJSON.version);
if (version === null) {
throw new Error("Unable to parse version number in package.json");
}
return version;
}
/**
* Executes the given command, inheriting the current process' stdio.
*
* @param command The command to execute.
* @param args The arguments to provide to the command.
* @param options The options for executing the command.
*/
export async function exec(
command: string,
args: string[],
options: child_process.SpawnOptionsWithoutStdio = {}
): Promise<void> {
let logMessage = "> " + command;
if (args.length > 0) {
logMessage += " " + args.join(" ");
}
console.log(logMessage + "\n");
return new Promise<void>((resolve, reject) => {
const childProcess = child_process.spawn(command, args, { stdio: "inherit", ...options });
childProcess.once("error", reject);
childProcess.once("close", (code, signal) => {
if (signal !== null) {
reject(new Error(`Process exited due to signal '${signal}'`));
} else if (code !== 0) {
reject(new Error(`Process exited with code ${code}`));
} else {
resolve();
}
console.log("");
});
});
}