mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-04 01:08:47 +00:00
132 lines
4.5 KiB
TypeScript
132 lines
4.5 KiB
TypeScript
import * as cp from 'child_process';
|
|
import * as os from 'os';
|
|
import * as path from 'path';
|
|
import * as readline from 'readline';
|
|
import { OutputChannel } from 'vscode';
|
|
import { isValidExecutable } from './util';
|
|
|
|
interface CompilationArtifact {
|
|
fileName: string;
|
|
name: string;
|
|
kind: string;
|
|
isTest: boolean;
|
|
}
|
|
|
|
export class Cargo {
|
|
constructor(readonly rootFolder: string, readonly output: OutputChannel) { }
|
|
|
|
private async artifactsFromArgs(cargoArgs: string[]): Promise<CompilationArtifact[]> {
|
|
const artifacts: CompilationArtifact[] = [];
|
|
|
|
try {
|
|
await this.runCargo(cargoArgs,
|
|
message => {
|
|
if (message.reason === 'compiler-artifact' && message.executable) {
|
|
const isBinary = message.target.crate_types.includes('bin');
|
|
const isBuildScript = message.target.kind.includes('custom-build');
|
|
if ((isBinary && !isBuildScript) || message.profile.test) {
|
|
artifacts.push({
|
|
fileName: message.executable,
|
|
name: message.target.name,
|
|
kind: message.target.kind[0],
|
|
isTest: message.profile.test
|
|
});
|
|
}
|
|
} else if (message.reason === 'compiler-message') {
|
|
this.output.append(message.message.rendered);
|
|
}
|
|
},
|
|
stderr => this.output.append(stderr),
|
|
);
|
|
} catch (err) {
|
|
this.output.show(true);
|
|
throw new Error(`Cargo invocation has failed: ${err}`);
|
|
}
|
|
|
|
return artifacts;
|
|
}
|
|
|
|
async executableFromArgs(args: readonly string[]): Promise<string> {
|
|
const cargoArgs = [...args, "--message-format=json"];
|
|
if (cargoArgs[0] === "run") {
|
|
// a runnable from the quick pick.
|
|
cargoArgs[0] = "build";
|
|
}
|
|
|
|
let artifacts = await this.artifactsFromArgs(cargoArgs);
|
|
if (cargoArgs[0] === "test") {
|
|
// for instance, `crates\rust-analyzer\tests\heavy_tests\main.rs` tests
|
|
// produce 2 artifacts: {"kind": "bin"} and {"kind": "test"}
|
|
artifacts = artifacts.filter(a => a.isTest);
|
|
}
|
|
|
|
if (artifacts.length === 0) {
|
|
throw new Error('No compilation artifacts');
|
|
} else if (artifacts.length > 1) {
|
|
throw new Error('Multiple compilation artifacts are not supported.');
|
|
}
|
|
|
|
return artifacts[0].fileName;
|
|
}
|
|
|
|
private runCargo(
|
|
cargoArgs: string[],
|
|
onStdoutJson: (obj: any) => void,
|
|
onStderrString: (data: string) => void
|
|
): Promise<number> {
|
|
return new Promise((resolve, reject) => {
|
|
let cargoPath;
|
|
try {
|
|
cargoPath = getCargoPathOrFail();
|
|
} catch (err) {
|
|
return reject(err);
|
|
}
|
|
|
|
const cargo = cp.spawn(cargoPath, cargoArgs, {
|
|
stdio: ['ignore', 'pipe', 'pipe'],
|
|
cwd: this.rootFolder
|
|
});
|
|
|
|
cargo.on('error', err => reject(new Error(`could not launch cargo: ${err}`)));
|
|
|
|
cargo.stderr.on('data', chunk => onStderrString(chunk.toString()));
|
|
|
|
const rl = readline.createInterface({ input: cargo.stdout });
|
|
rl.on('line', line => {
|
|
const message = JSON.parse(line);
|
|
onStdoutJson(message);
|
|
});
|
|
|
|
cargo.on('exit', (exitCode, _) => {
|
|
if (exitCode === 0)
|
|
resolve(exitCode);
|
|
else
|
|
reject(new Error(`exit code: ${exitCode}.`));
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
// Mirrors `ra_env::get_path_for_executable` implementation
|
|
function getCargoPathOrFail(): string {
|
|
const envVar = process.env.CARGO;
|
|
const executableName = "cargo";
|
|
|
|
if (envVar) {
|
|
if (isValidExecutable(envVar)) return envVar;
|
|
|
|
throw new Error(`\`${envVar}\` environment variable points to something that's not a valid executable`);
|
|
}
|
|
|
|
if (isValidExecutable(executableName)) return executableName;
|
|
|
|
const standardLocation = path.join(os.homedir(), '.cargo', 'bin', executableName);
|
|
|
|
if (isValidExecutable(standardLocation)) return standardLocation;
|
|
|
|
throw new Error(
|
|
`Failed to find \`${executableName}\` executable. ` +
|
|
`Make sure \`${executableName}\` is in \`$PATH\`, ` +
|
|
`or set \`${envVar}\` to point to a valid executable.`
|
|
);
|
|
}
|