Skip to content

Commit ffebbc1

Browse files
authored
Merge pull request #467 from fortran-lang/gnikit/issue464
Linter include dirs cache out of date
2 parents c2febbf + e7028c3 commit ffebbc1

File tree

5 files changed

+33
-2
lines changed

5 files changed

+33
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111

1212
### Added
1313

14+
- Added ability to rescan for linting include files.
1415
- Added GitHub Actions support for pre-Release builds
1516
([#459](https://github.com/fortran-lang/vscode-fortran-support/issues/459))
1617
- Added unittest for `fortls` spawning and integration, checks for initialization values
@@ -63,6 +64,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6364

6465
### Fixed
6566

67+
- Fixed issue with linter cache containing outdated folders
68+
([#464](https://github.com/fortran-lang/vscode-fortran-support/issues/464))
6669
- Fixed slow performance of very long lines by using a different solution for
6770
([#207](https://github.com/fortran-lang/vscode-fortran-support/issues/207))
6871
([#309](https://github.com/fortran-lang/vscode-fortran-support/issues/309))

package.json

+11
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,11 @@
346346
"category": "Fortran",
347347
"command": "fortran.analysis.restartLanguageServer",
348348
"title": "Restart the Fortran Language Server"
349+
},
350+
{
351+
"category": "Fortran",
352+
"command": "fortran.analysis.rescanLinter",
353+
"title": "Rescan Linter paths"
349354
}
350355
],
351356
"menus": {
@@ -355,6 +360,12 @@
355360
"command": "fortran.analysis.restartLanguageServer",
356361
"title": "Restart the Fortran Language Server",
357362
"when": "!virtualWorkspace && shellExecutionSupported"
363+
},
364+
{
365+
"category": "Fortran",
366+
"command": "fortran.analysis.rescanLinter",
367+
"title": "Rescan Linter paths",
368+
"when": "!virtualWorkspace && shellExecutionSupported"
358369
}
359370
]
360371
}

src/features/commands.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
// Module to hold all command names
44

55
export const RestartLS = 'fortran.analysis.restartLanguageServer';
6+
export const RescanLint = 'fortran.analysis.rescanLinter';

src/features/linter-provider.ts

+17-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { FortranDocumentSelector, resolveVariables } from '../lib/tools';
99
import * as fg from 'fast-glob';
1010
import { glob } from 'glob';
1111
import { arraysEqual } from '../lib/helper';
12+
import { RescanLint } from './commands';
1213

1314
export class FortranLintingProvider {
1415
constructor(private logger: LoggingService = new LoggingService()) {}
@@ -28,6 +29,10 @@ export class FortranLintingProvider {
2829
}
2930

3031
public async activate(subscriptions: vscode.Disposable[]) {
32+
// Register Linter commands
33+
subscriptions.push(vscode.commands.registerCommand(RescanLint, this.rescanLinter, this));
34+
35+
// Register the Linter provider
3136
this.diagnosticCollection = vscode.languages.createDiagnosticCollection('Fortran');
3237

3338
vscode.workspace.onDidOpenTextDocument(this.doModernFortranLint, this, subscriptions);
@@ -48,7 +53,6 @@ export class FortranLintingProvider {
4853
public dispose(): void {
4954
this.diagnosticCollection.clear();
5055
this.diagnosticCollection.dispose();
51-
// this.command.dispose();
5256
}
5357

5458
private doModernFortranLint(textDocument: vscode.TextDocument) {
@@ -166,6 +170,10 @@ export class FortranLintingProvider {
166170

167171
// Check if we can use the cached results for the include directories no
168172
// need to evaluate the glob patterns everytime we call the linter
173+
// TODO: register command that forces re-linting
174+
// Not sure what the best approach for this one is?
175+
// Should I add a watcher to all the files under globIncPaths?
176+
// Should I add a watcher on the files under the workspace?
169177
if (arraysEqual(includePaths, this.cache['includePaths'])) {
170178
return this.cache['globIncPaths'];
171179
}
@@ -446,4 +454,12 @@ export class FortranLintingProvider {
446454
break;
447455
}
448456
}
457+
458+
/**
459+
* Regenerate the cache for the include files paths of the linter
460+
*/
461+
private rescanLinter() {
462+
this.cache['includePaths'] = [];
463+
this.getIncludePaths();
464+
}
449465
}

src/lib/helper.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,6 @@ export function arraysEqual(a: any[], b: any[]) {
116116
if (a === b) return true;
117117
if (a == null || b == null) return false;
118118
if (a.length !== b.length) return false;
119-
if (a.every((e, i) => e !== b[i])) return false;
119+
if (!a.every((e, i) => e === b[i])) return false;
120120
return true;
121121
}

0 commit comments

Comments
 (0)