147 lines
6.1 KiB
TypeScript
147 lines
6.1 KiB
TypeScript
import * as vscode from "vscode";
|
|
import * as fs from 'fs';
|
|
|
|
import { LspOutput, ReportType, opeParam } from "../../../global";
|
|
import { Path } from "../../../../resources/hdlParser";
|
|
import { hdlFile, hdlPath } from "../../../hdlFs";
|
|
import { easyExec } from "../../../global/util";
|
|
import { BaseLinter } from "./base";
|
|
import { HdlLangID } from "../../../global/enum";
|
|
|
|
class ModelsimLinter implements BaseLinter {
|
|
diagnostic: vscode.DiagnosticCollection;
|
|
executableFileMap: Map<HdlLangID, string | undefined> = new Map<HdlLangID, string>();
|
|
executableInvokeNameMap: Map<HdlLangID, string | undefined> = new Map<HdlLangID, string>();
|
|
linterArgsMap: Map<HdlLangID, string[]> = new Map<HdlLangID, string[]>();
|
|
|
|
constructor() {
|
|
this.diagnostic = vscode.languages.createDiagnosticCollection();
|
|
|
|
// configure map for executable file name
|
|
this.executableFileMap.set(HdlLangID.Verilog, 'xvlog');
|
|
this.executableFileMap.set(HdlLangID.Vhdl, 'xvhdl');
|
|
this.executableFileMap.set(HdlLangID.SystemVerilog, 'xvlog');
|
|
this.executableFileMap.set(HdlLangID.Unknown, undefined);
|
|
|
|
// configure map for argruments when lintering
|
|
this.linterArgsMap.set(HdlLangID.Verilog, ['--nolog']);
|
|
this.linterArgsMap.set(HdlLangID.Vhdl, ['--nolog']);
|
|
this.linterArgsMap.set(HdlLangID.SystemVerilog, ['--sv', '--nolog']);
|
|
this.linterArgsMap.set(HdlLangID.Unknown, []);
|
|
|
|
this.initialise(HdlLangID.Verilog);
|
|
this.initialise(HdlLangID.Vhdl);
|
|
this.initialise(HdlLangID.SystemVerilog);
|
|
}
|
|
|
|
|
|
async lint(document: vscode.TextDocument) {
|
|
const filePath = hdlPath.toSlash(document.fileName);
|
|
const langID = hdlFile.getLanguageId(filePath);
|
|
|
|
// acquire install path
|
|
const args = [hdlPath.toSlash(filePath), ...this.linterArgsMap];
|
|
const executor = this.executableInvokeNameMap.get(langID);
|
|
if (executor !== undefined) {
|
|
const { stdout, stderr } = await easyExec(executor, args);
|
|
if (stdout.length > 0) {
|
|
const diagnostics = this.provideDiagnostics(document, stdout);
|
|
this.diagnostic.set(document.uri, diagnostics);
|
|
}
|
|
} else {
|
|
LspOutput.report('linter is not available, please check prj.vivado.install.path in your setting', ReportType.Error);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param document
|
|
* @param stdout stdout from xvlog
|
|
* @returns { vscode.Diagnostic[] } linter info
|
|
*/
|
|
private provideDiagnostics(document: vscode.TextDocument, stdout: string): vscode.Diagnostic[] {
|
|
const diagnostics = [];
|
|
for (const line of stdout.split('\n')) {
|
|
const tokens = line.split(/:?\s*(?:\[|\])\s*/);
|
|
const headerInfo = tokens[0];
|
|
// const standardInfo = tokens[1];
|
|
const syntaxInfo = tokens[2];
|
|
const parsedPath = tokens[3];
|
|
if (headerInfo === 'ERROR') {
|
|
const errorInfos = parsedPath.split(':');
|
|
const errorLine = parseInt(errorInfos[errorInfos.length - 1]);
|
|
const range = this.makeCorrectRange(document, errorLine);
|
|
const diag = new vscode.Diagnostic(range, syntaxInfo, vscode.DiagnosticSeverity.Error);
|
|
diagnostics.push(diag);
|
|
}
|
|
}
|
|
return diagnostics;
|
|
}
|
|
|
|
private makeCorrectRange(document: vscode.TextDocument, line: number): vscode.Range {
|
|
const startPosition = new vscode.Position(line, 0);
|
|
const wordRange = document.getWordRangeAtPosition(startPosition, /[`_0-9a-zA-Z]+/);
|
|
if (wordRange) {
|
|
return wordRange;
|
|
} else {
|
|
return new vscode.Range(startPosition, startPosition);
|
|
}
|
|
}
|
|
|
|
private getExecutableFilePath(langID: HdlLangID): string | Path | undefined {
|
|
// vivado install path stored in prj.vivado.install.path
|
|
const vivadoConfig = vscode.workspace.getConfiguration('prj.vivado');
|
|
const vivadoInstallPath = vivadoConfig.get('install.path', '');
|
|
const executorName = this.executableFileMap.get(langID);
|
|
if (executorName === undefined) {
|
|
return undefined;
|
|
}
|
|
|
|
// e.g. xvlog.bat in windows, xvlog in linux
|
|
const fullExecutorName = opeParam.os === 'win32' ? executorName + '.bat' : executorName;
|
|
|
|
if (vivadoInstallPath.trim() === '' || !fs.existsSync(vivadoInstallPath)) {
|
|
LspOutput.report(`User's Vivado Install Path ${vivadoInstallPath}, which is invalid. Use ${executorName} in default.`, ReportType.Warn);
|
|
LspOutput.report('If you have doubts, check prj.vivado.install.path in setting', ReportType.Warn);
|
|
return executorName;
|
|
} else {
|
|
LspOutput.report(`User's Vivado Install Path ${vivadoInstallPath}, which is invalid`);
|
|
|
|
const executorPath = hdlPath.join(
|
|
hdlPath.toSlash(vivadoInstallPath),
|
|
fullExecutorName
|
|
);
|
|
// prevent path like C://stupid name/xxx/xxx/bin
|
|
// blank space
|
|
const safeExecutorPath = '"' + executorPath + '"';
|
|
return safeExecutorPath;
|
|
}
|
|
}
|
|
|
|
|
|
public async setExecutableFilePath(executorPath: string | Path | undefined, langID: HdlLangID): Promise<boolean> {
|
|
if (executorPath === undefined) {
|
|
return false;
|
|
}
|
|
const { stdout, stderr } = await easyExec(executorPath, []);
|
|
if (stderr.length === 0) {
|
|
this.executableInvokeNameMap.set(langID, undefined);
|
|
LspOutput.report(`fail to execute ${executorPath}! Reason: ${stderr}`, ReportType.Error);
|
|
return false;
|
|
} else {
|
|
this.executableInvokeNameMap.set(langID, executorPath);
|
|
LspOutput.report(`success to verify ${executorPath}, linter from vivado is ready to go!`, ReportType.Launch);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public initialise(langID: HdlLangID) {
|
|
const executorPath = this.getExecutableFilePath(langID);
|
|
this.setExecutableFilePath(executorPath, langID);
|
|
}
|
|
}
|
|
|
|
|
|
export {
|
|
ModelsimLinter
|
|
};
|