Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 5x 5x 5x 5x 5x 5x 5x 5x 5x 2x 2x | import * as vscode from 'vscode';
import { container } from 'tsyringe';
import { VocabularyRepository } from '@faubulous/mentor-rdf';
import { IToken } from '@faubulous/mentor-rdf-parsers';
import { ServiceToken } from '@src/services/tokens';
import { IWorkspaceIndexerService } from '@src/services/core';
import { IDocumentContextService } from '@src/services/document';
import { IDocumentFactory } from '@src/services/document/document-factory.interface';
import { IDocumentContext } from '@src/services/document/document-context.interface';
import { TurtleDocument } from '@src/languages/turtle/turtle-document';
import { getIriFromToken, getTokenPosition } from '@src/utilities';
import { getConfig } from '@src/utilities/vscode/config';
/**
* Provides additional diagnostics for RDF documents that require access
* to the mentor in-memory triple store.
*
* This service supplements the LSP-based diagnostics from the language
* servers with diagnostics that require knowledge of the workspace RDF data,
* such as validating that referenced IRIs exist in the triple store.
*/
export class DocumentLintingService implements vscode.Disposable {
/**
* The diagnostic collection for document linting.
*/
private readonly _diagnosticCollection: vscode.DiagnosticCollection;
/**
* Disposables for event subscriptions.
*/
private readonly _disposables: vscode.Disposable[] = [];
/**
* Cached linting enabled state (kill switch).
*/
private _lintingEnabled: boolean = false;
private get _vocabulary() {
return container.resolve<VocabularyRepository>(ServiceToken.VocabularyRepository);
}
private get _documentFactory() {
return container.resolve<IDocumentFactory>(ServiceToken.DocumentFactory);
}
private get _workspaceIndexerService() {
return container.resolve<IWorkspaceIndexerService>(ServiceToken.WorkspaceIndexerService);
}
private get _contextService() {
return container.resolve<IDocumentContextService>(ServiceToken.DocumentContextService);
}
constructor() {
this._diagnosticCollection = vscode.languages.createDiagnosticCollection('mentor-linting');
this._loadLintingEnabledState();
// Self-register with the extension context for automatic disposal
const context = container.resolve<vscode.ExtensionContext>(ServiceToken.ExtensionContext);
context.subscriptions.push(this);
// Wait for workspace indexing to complete before starting validation
this._workspaceIndexerService.waitForIndexed().then(() => {
// Subscribe to change events
this._subscribeChangeEvents();
// Validate all currently open documents and notebooks
this._validateAllOpenDocuments();
this._validateAllOpenNotebooks();
});
}
/**
* Refresh the cached linting enabled state.
*/
private _loadLintingEnabledState(): void {
this._lintingEnabled = !!getConfig().get<boolean>('linting.enabled', false);
}
/**
* Dispose the provider and clean up resources.
*/
dispose(): void {
this._diagnosticCollection.dispose();
for (const disposable of this._disposables) {
disposable.dispose();
}
}
/**
* Check if the document is a supported RDF language.
*/
private _isSupportedLanguage(languageId: string): boolean {
return this._documentFactory.supportedLanguages.has(languageId);
}
private _subscribeChangeEvents() {
// Subscribe to text document events
this._disposables.push(vscode.workspace.onDidOpenTextDocument((doc) => this._onDocumentOpened(doc)));
this._disposables.push(vscode.workspace.onDidCloseTextDocument((doc) => this._onDocumentClosed(doc)));
this._disposables.push(vscode.workspace.onDidChangeTextDocument((e) => this._onDocumentChanged(e)));
// Subscribe to notebook document events
this._disposables.push(vscode.workspace.onDidOpenNotebookDocument((notebook) => this._onNotebookOpened(notebook)));
this._disposables.push(vscode.workspace.onDidCloseNotebookDocument((notebook) => this._onNotebookClosed(notebook)));
this._disposables.push(vscode.workspace.onDidChangeNotebookDocument((e) => this._onNotebookChanged(e)));
// Subscribe to configuration change events
this._disposables.push(vscode.workspace.onDidChangeConfiguration((e) => {
if (e.affectsConfiguration('mentor.linting.unresolvedReferenceSeverity')) {
this._diagnosticCollection.clear();
this._validateAllOpenDocuments();
}
if (e.affectsConfiguration('mentor.linting.enabled')) {
this._loadLintingEnabledState();
// Kill switch: if linting is disabled, clear all diagnostics and stop.
if (!this._lintingEnabled) {
this._diagnosticCollection.clear();
return;
}
// If it was enabled, validate everything again.
this._validateAllOpenDocuments();
this._validateAllOpenNotebooks();
}
}));
}
/**
* Handle document change events.
*/
private _onDocumentChanged(e: vscode.TextDocumentChangeEvent): void {
if (!this._lintingEnabled) {
return;
}
if (this._isSupportedLanguage(e.document.languageId)) {
this._validateDocument(e.document);
}
}
/**
* Handle document open events.
*/
private _onDocumentOpened(document: vscode.TextDocument): void {
if (!this._lintingEnabled) {
return;
}
if (this._isSupportedLanguage(document.languageId)) {
this._validateDocument(document);
}
}
/**
* Handle document close events.
*/
private _onDocumentClosed(document: vscode.TextDocument): void {
if (this._isSupportedLanguage(document.languageId)) {
this._diagnosticCollection.delete(document.uri);
}
}
/**
* Handle notebook open events.
*/
private _onNotebookOpened(notebook: vscode.NotebookDocument): void {
if (!this._lintingEnabled) {
return;
}
this._validateNotebook(notebook);
}
/**
* Handle notebook close events.
*/
private _onNotebookClosed(notebook: vscode.NotebookDocument): void {
// Clear diagnostics for all cells in the notebook
for (const cell of notebook.getCells()) {
if (this._isSupportedLanguage(cell.document.languageId)) {
this._diagnosticCollection.delete(cell.document.uri);
}
}
}
/**
* Handle notebook change events.
*/
private _onNotebookChanged(e: vscode.NotebookDocumentChangeEvent): void {
if (!this._lintingEnabled) {
return;
}
// Validate cells that had content changes
for (const cellChange of e.cellChanges) {
if (cellChange.document && this._isSupportedLanguage(cellChange.cell.document.languageId)) {
this._validateDocument(cellChange.cell.document);
}
}
// Validate newly added cells
for (const contentChange of e.contentChanges) {
for (const cell of contentChange.addedCells) {
if (this._isSupportedLanguage(cell.document.languageId)) {
this._validateDocument(cell.document);
}
}
// Clear diagnostics for removed cells
for (const cell of contentChange.removedCells) {
if (this._isSupportedLanguage(cell.document.languageId)) {
this._diagnosticCollection.delete(cell.document.uri);
}
}
}
}
/**
* Validate all currently open RDF documents.
*/
private _validateAllOpenDocuments(): void {
if (!this._lintingEnabled) {
return;
}
for (const document of vscode.workspace.textDocuments) {
if (this._isSupportedLanguage(document.languageId)) {
this._validateDocument(document);
}
}
}
/**
* Validate all currently open notebooks.
*/
private _validateAllOpenNotebooks(): void {
if (!this._lintingEnabled) {
return;
}
for (const notebook of vscode.workspace.notebookDocuments) {
this._validateNotebook(notebook);
}
}
/**
* Validate all supported cells in a notebook.
*/
private _validateNotebook(notebook: vscode.NotebookDocument): void {
if (!this._lintingEnabled) {
return;
}
for (const cell of notebook.getCells()) {
if (this._isSupportedLanguage(cell.document.languageId)) {
this._validateDocument(cell.document);
}
}
}
/**
* Validate a document and update diagnostics.
* @param document The document to validate.
*/
private async _validateDocument(document: vscode.TextDocument): Promise<void> {
if (!this._lintingEnabled) {
this._diagnosticCollection.delete(document.uri);
return;
}
const context = this._contextService.getDocumentContextFromUri(document.uri.toString());
if (!context) {
return;
}
const diagnostics: vscode.Diagnostic[] = [
...await this._getUndefinedIriDiagnostics(document, context),
];
this._diagnosticCollection.set(document.uri, diagnostics);
}
/**
* Get diagnostics for undefined IRI references.
* Only works for token-based documents (Turtle, TriG, SPARQL).
*/
private async _getUndefinedIriDiagnostics(document: vscode.TextDocument, context: IDocumentContext): Promise<vscode.Diagnostic[]> {
// Only token-based documents support IRI validation
if (!(context instanceof TurtleDocument)) {
return [];
}
const severity = this._getSeverityLevel('linting.unresolvedReferenceSeverity', 'Warning');
if (severity === null) {
return [];
}
const diagnostics: vscode.Diagnostic[] = [];
const graphs = this._getGraphsExcept(context.graphs);
// Cache the resolution status of IRIs for quick lookup of recurring references.
const cache = new Map<string, boolean>();
for (let i = 1; i < context.tokens.length; i++) {
const previousToken = context.tokens[i - 1];
if (previousToken.tokenType?.name === 'PNAME_NS') {
// Do not check IRI references for prefix definitions. Wrong prefixes
// will be detected by non-resolvable IRIs in the document.
continue;
}
const currentToken = context.tokens[i];
if (currentToken.tokenType?.name !== 'PNAME_LN' &&
currentToken.tokenType?.name !== 'IRIREF') {
continue
}
const iri = getIriFromToken(context.namespaces, currentToken);
if (!iri) {
continue;
}
let resolved = cache.get(iri);
if (resolved === undefined) {
resolved = this._vocabulary.hasSubject(graphs, iri) || this._vocabulary.store.hasGraph(iri);
cache.set(iri, resolved);
}
if (resolved === false) {
const message = `Unresolved IRI reference.`;
diagnostics.push(this._createDiagnosticForToken(currentToken, message, severity));
}
}
return diagnostics;
}
private _getSeverityLevel(setting: string, defaultValue: string): vscode.DiagnosticSeverity | null {
const value = getConfig().get(setting, defaultValue);
switch (value) {
case 'Error':
return vscode.DiagnosticSeverity.Error;
case 'Warning':
return vscode.DiagnosticSeverity.Warning;
case 'Information':
return vscode.DiagnosticSeverity.Information;
case 'Hint':
return vscode.DiagnosticSeverity.Hint;
default:
return null;
}
}
private _getGraphsExcept(excludedGraphs: string[]): string[] {
const excluded = new Set<string>(excludedGraphs);;
return this._vocabulary.store.getGraphs().filter(g => !excluded.has(g));
}
private _createDiagnosticForToken(token: IToken, message: string, severity: vscode.DiagnosticSeverity = vscode.DiagnosticSeverity.Error): vscode.Diagnostic {
const position = getTokenPosition(token);
const start = new vscode.Position(position.start.line, position.start.character);
const end = new vscode.Position(position.end.line, position.end.character);
return new vscode.Diagnostic(new vscode.Range(start, end), message, severity);
}
}
|