-
Notifications
You must be signed in to change notification settings - Fork 46
/
server.py
executable file
·2028 lines (1707 loc) · 67 KB
/
server.py
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Implementation of the LSP server for Ruff."""
from __future__ import annotations
import asyncio
import enum
import json
import logging
import os
import re
import shutil
import sys
import sysconfig
from collections.abc import Iterable, Mapping
from dataclasses import dataclass
from pathlib import Path
from typing import Any, List, NamedTuple, Sequence, Union, cast
from lsprotocol.types import (
CODE_ACTION_RESOLVE,
INITIALIZE,
NOTEBOOK_DOCUMENT_DID_CHANGE,
NOTEBOOK_DOCUMENT_DID_CLOSE,
NOTEBOOK_DOCUMENT_DID_OPEN,
NOTEBOOK_DOCUMENT_DID_SAVE,
TEXT_DOCUMENT_CODE_ACTION,
TEXT_DOCUMENT_DID_CHANGE,
TEXT_DOCUMENT_DID_CLOSE,
TEXT_DOCUMENT_DID_OPEN,
TEXT_DOCUMENT_DID_SAVE,
TEXT_DOCUMENT_FORMATTING,
TEXT_DOCUMENT_HOVER,
TEXT_DOCUMENT_RANGE_FORMATTING,
AnnotatedTextEdit,
ClientCapabilities,
CodeAction,
CodeActionKind,
CodeActionOptions,
CodeActionParams,
CodeDescription,
Diagnostic,
DiagnosticSeverity,
DiagnosticTag,
DidChangeNotebookDocumentParams,
DidChangeTextDocumentParams,
DidCloseNotebookDocumentParams,
DidCloseTextDocumentParams,
DidOpenNotebookDocumentParams,
DidOpenTextDocumentParams,
DidSaveNotebookDocumentParams,
DidSaveTextDocumentParams,
DocumentFormattingParams,
DocumentRangeFormattingParams,
DocumentRangeFormattingRegistrationOptions,
Hover,
HoverParams,
InitializeParams,
MarkupContent,
MarkupKind,
MessageType,
NotebookCell,
NotebookCellKind,
NotebookDocument,
NotebookDocumentSyncOptions,
NotebookDocumentSyncOptionsNotebookSelectorType2,
NotebookDocumentSyncOptionsNotebookSelectorType2CellsType,
OptionalVersionedTextDocumentIdentifier,
Position,
PositionEncodingKind,
Range,
TextDocumentEdit,
TextDocumentFilter_Type1,
TextEdit,
WorkspaceEdit,
)
from packaging.specifiers import SpecifierSet, Version
from pygls import server, uris, workspace
from pygls.workspace.position_codec import PositionCodec
from typing_extensions import Literal, Self, TypedDict, assert_never
from ruff_lsp import __version__, utils
from ruff_lsp.settings import (
Run,
UserSettings,
WorkspaceSettings,
lint_args,
lint_enable,
lint_run,
)
from ruff_lsp.utils import RunResult
logger = logging.getLogger(__name__)
RUFF_LSP_DEBUG = bool(os.environ.get("RUFF_LSP_DEBUG", False))
if RUFF_LSP_DEBUG:
log_file = Path(__file__).parent.parent.joinpath("ruff-lsp.log")
logging.basicConfig(filename=log_file, filemode="w", level=logging.DEBUG)
logger.info("RUFF_LSP_DEBUG is active")
if sys.platform == "win32" and sys.version_info < (3, 8):
# The ProactorEventLoop is required for subprocesses on Windows.
# It's the default policy in Python 3.8, but not in Python 3.7.
asyncio.set_event_loop_policy(asyncio.WindowsProactorEventLoopPolicy())
GLOBAL_SETTINGS: UserSettings = {}
WORKSPACE_SETTINGS: dict[str, WorkspaceSettings] = {}
INTERPRETER_PATHS: dict[str, str] = {}
class VersionModified(NamedTuple):
version: Version
"""Last modified of the executable"""
modified: float
EXECUTABLE_VERSIONS: dict[str, VersionModified] = {}
CLIENT_CAPABILITIES: dict[str, bool] = {
CODE_ACTION_RESOLVE: True,
}
MAX_WORKERS = 5
LSP_SERVER = server.LanguageServer(
name="Ruff",
version=__version__,
max_workers=MAX_WORKERS,
notebook_document_sync=NotebookDocumentSyncOptions(
notebook_selector=[
NotebookDocumentSyncOptionsNotebookSelectorType2(
cells=[
NotebookDocumentSyncOptionsNotebookSelectorType2CellsType(
language="python"
)
]
)
],
save=True,
),
)
TOOL_MODULE = "ruff.exe" if sys.platform == "win32" else "ruff"
TOOL_DISPLAY = "Ruff"
# Require at least Ruff v0.0.291 for formatting, but allow older versions for linting.
VERSION_REQUIREMENT_FORMATTER = SpecifierSet(">=0.0.291")
VERSION_REQUIREMENT_LINTER = SpecifierSet(">=0.0.189")
VERSION_REQUIREMENT_RANGE_FORMATTING = SpecifierSet(">=0.2.1")
# Version requirement for use of the `--output-format` option
VERSION_REQUIREMENT_OUTPUT_FORMAT = SpecifierSet(">=0.0.291")
# Version requirement after which Ruff avoids writing empty output for excluded files.
VERSION_REQUIREMENT_EMPTY_OUTPUT = SpecifierSet(">=0.1.6")
# Arguments provided to every Ruff invocation.
CHECK_ARGS = [
"--force-exclude",
"--no-cache",
"--no-fix",
"--quiet",
"--output-format",
"json",
"-",
]
# Arguments that are not allowed to be passed to `ruff check`.
UNSUPPORTED_CHECK_ARGS = [
# Arguments that enforce required behavior. These can be ignored with a warning.
"--force-exclude",
"--no-cache",
"--no-fix",
"--quiet",
# Arguments that contradict the required behavior. These can be ignored with a
# warning.
"--diff",
"--exit-non-zero-on-fix",
"-e",
"--exit-zero",
"--fix",
"--fix-only",
"-h",
"--help",
"--no-force-exclude",
"--show-files",
"--show-fixes",
"--show-settings",
"--show-source",
"--silent",
"--statistics",
"--verbose",
"-w",
"--watch",
# Arguments that are not supported at all, and will error when provided.
# "--stdin-filename",
# "--output-format",
]
# Arguments that are not allowed to be passed to `ruff format`.
UNSUPPORTED_FORMAT_ARGS = [
# Arguments that enforce required behavior. These can be ignored with a warning.
"--force-exclude",
"--quiet",
# Arguments that contradict the required behavior. These can be ignored with a
# warning.
"-h",
"--help",
"--no-force-exclude",
"--silent",
"--verbose",
# Arguments that are not supported at all, and will error when provided.
# "--stdin-filename",
]
# Standard code action kinds, scoped to Ruff.
SOURCE_FIX_ALL_RUFF = f"{CodeActionKind.SourceFixAll.value}.ruff"
SOURCE_ORGANIZE_IMPORTS_RUFF = f"{CodeActionKind.SourceOrganizeImports.value}.ruff"
# Notebook code action kinds.
NOTEBOOK_SOURCE_FIX_ALL = f"notebook.{CodeActionKind.SourceFixAll.value}"
NOTEBOOK_SOURCE_ORGANIZE_IMPORTS = (
f"notebook.{CodeActionKind.SourceOrganizeImports.value}"
)
# Notebook code action kinds, scoped to Ruff.
NOTEBOOK_SOURCE_FIX_ALL_RUFF = f"notebook.{CodeActionKind.SourceFixAll.value}.ruff"
NOTEBOOK_SOURCE_ORGANIZE_IMPORTS_RUFF = (
f"notebook.{CodeActionKind.SourceOrganizeImports.value}.ruff"
)
###
# Document
###
def _uri_to_fs_path(uri: str) -> str:
"""Convert a URI to a file system path."""
path = uris.to_fs_path(uri)
if path is None:
# `pygls` raises a `Exception` as well in `workspace.TextDocument`.
raise ValueError(f"Unable to convert URI to file path: {uri}")
return path
@enum.unique
class DocumentKind(enum.Enum):
"""The kind of document."""
Text = enum.auto()
"""A Python file."""
Notebook = enum.auto()
"""A Notebook Document."""
Cell = enum.auto()
"""A cell in a Notebook Document."""
@dataclass(frozen=True)
class Document:
"""A document representing either a Python file, a Notebook cell, or a Notebook."""
uri: str
path: str
source: str
kind: DocumentKind
version: int | None
@classmethod
def from_text_document(cls, text_document: workspace.TextDocument) -> Self:
"""Create a `Document` from the given Text Document."""
return cls(
uri=text_document.uri,
path=text_document.path,
kind=DocumentKind.Text,
source=text_document.source,
version=text_document.version,
)
@classmethod
def from_notebook_document(cls, notebook_document: NotebookDocument) -> Self:
"""Create a `Document` from the given Notebook Document."""
return cls(
uri=notebook_document.uri,
path=_uri_to_fs_path(notebook_document.uri),
kind=DocumentKind.Notebook,
source=_create_notebook_json(notebook_document),
version=notebook_document.version,
)
@classmethod
def from_notebook_cell(cls, notebook_cell: NotebookCell) -> Self:
"""Create a `Document` from the given Notebook cell."""
return cls(
uri=notebook_cell.document,
path=_uri_to_fs_path(notebook_cell.document),
kind=DocumentKind.Cell,
source=_create_single_cell_notebook_json(
LSP_SERVER.workspace.get_text_document(notebook_cell.document).source
),
version=None,
)
@classmethod
def from_cell_or_text_uri(cls, uri: str) -> Self:
"""Create a `Document` representing either a Python file or a Notebook cell from
the given URI.
The function will try to get the Notebook cell first, and if there's no cell
with the given URI, it will fallback to the text document.
"""
notebook_document = LSP_SERVER.workspace.get_notebook_document(cell_uri=uri)
if notebook_document is not None:
notebook_cell = next(
(
notebook_cell
for notebook_cell in notebook_document.cells
if notebook_cell.document == uri
),
None,
)
if notebook_cell is not None:
return cls.from_notebook_cell(notebook_cell)
# Fall back to the Text Document representing a Python file.
text_document = LSP_SERVER.workspace.get_text_document(uri)
return cls.from_text_document(text_document)
@classmethod
def from_uri(cls, uri: str) -> Self:
"""Create a `Document` representing either a Python file or a Notebook from
the given URI.
The URI can be a file URI, a notebook URI, or a cell URI. The function will
try to get the notebook document first, and if there's no notebook document
with the given URI, it will fallback to the text document.
"""
# First, try to get the Notebook Document assuming the URI is a Cell URI.
notebook_document = LSP_SERVER.workspace.get_notebook_document(cell_uri=uri)
if notebook_document is None:
# If that fails, try to get the Notebook Document assuming the URI is a
# Notebook URI.
notebook_document = LSP_SERVER.workspace.get_notebook_document(
notebook_uri=uri
)
if notebook_document:
return cls.from_notebook_document(notebook_document)
# Fall back to the Text Document representing a Python file.
text_document = LSP_SERVER.workspace.get_text_document(uri)
return cls.from_text_document(text_document)
def is_stdlib_file(self) -> bool:
"""Return True if the document belongs to standard library."""
return utils.is_stdlib_file(self.path)
SourceValue = Union[str, List[str]]
class CodeCell(TypedDict):
"""A code cell in a Jupyter notebook."""
cell_type: Literal["code"]
metadata: Any
outputs: list[Any]
source: SourceValue
class MarkdownCell(TypedDict):
"""A markdown cell in a Jupyter notebook."""
cell_type: Literal["markdown"]
metadata: Any
source: SourceValue
class Notebook(TypedDict):
"""The JSON representation of a Notebook Document."""
metadata: Any
nbformat: int
nbformat_minor: int
cells: list[CodeCell | MarkdownCell]
def _create_notebook_json(notebook_document: NotebookDocument) -> str:
"""Create a JSON representation of the given Notebook Document."""
cells: list[CodeCell | MarkdownCell] = []
for notebook_cell in notebook_document.cells:
cell_document = LSP_SERVER.workspace.get_text_document(notebook_cell.document)
if notebook_cell.kind is NotebookCellKind.Code:
cells.append(
{
"cell_type": "code",
"metadata": None,
"outputs": [],
"source": cell_document.source,
}
)
else:
cells.append(
{
"cell_type": "markdown",
"metadata": None,
"source": cell_document.source,
}
)
return json.dumps(
{
"metadata": {},
"nbformat": 4,
"nbformat_minor": 5,
"cells": cells,
}
)
def _create_single_cell_notebook_json(source: str) -> str:
"""Create a JSON representation of a single cell Notebook Document containing
the given source."""
return json.dumps(
{
"metadata": {},
"nbformat": 4,
"nbformat_minor": 5,
"cells": [
{
"cell_type": "code",
"metadata": None,
"outputs": [],
"source": source,
}
],
}
)
###
# Linting.
###
@LSP_SERVER.feature(TEXT_DOCUMENT_DID_OPEN)
async def did_open(params: DidOpenTextDocumentParams) -> None:
"""LSP handler for textDocument/didOpen request."""
document = Document.from_text_document(
LSP_SERVER.workspace.get_text_document(params.text_document.uri)
)
settings = _get_settings_by_document(document.path)
if not lint_enable(settings):
return
diagnostics = await _lint_document_impl(document, settings)
LSP_SERVER.publish_diagnostics(document.uri, diagnostics)
@LSP_SERVER.feature(TEXT_DOCUMENT_DID_CLOSE)
def did_close(params: DidCloseTextDocumentParams) -> None:
"""LSP handler for textDocument/didClose request."""
text_document = LSP_SERVER.workspace.get_text_document(params.text_document.uri)
# Publishing empty diagnostics to clear the entries for this file.
LSP_SERVER.publish_diagnostics(text_document.uri, [])
@LSP_SERVER.feature(TEXT_DOCUMENT_DID_SAVE)
async def did_save(params: DidSaveTextDocumentParams) -> None:
"""LSP handler for textDocument/didSave request."""
text_document = LSP_SERVER.workspace.get_text_document(params.text_document.uri)
settings = _get_settings_by_document(text_document.path)
if not lint_enable(settings):
return
if lint_run(settings) in (
Run.OnType,
Run.OnSave,
):
document = Document.from_text_document(text_document)
diagnostics = await _lint_document_impl(document, settings)
LSP_SERVER.publish_diagnostics(document.uri, diagnostics)
@LSP_SERVER.feature(TEXT_DOCUMENT_DID_CHANGE)
async def did_change(params: DidChangeTextDocumentParams) -> None:
"""LSP handler for textDocument/didChange request."""
text_document = LSP_SERVER.workspace.get_text_document(params.text_document.uri)
settings = _get_settings_by_document(text_document.path)
if not lint_enable(settings):
return
if lint_run(settings) == Run.OnType:
document = Document.from_text_document(text_document)
diagnostics = await _lint_document_impl(document, settings)
LSP_SERVER.publish_diagnostics(document.uri, diagnostics)
@LSP_SERVER.feature(NOTEBOOK_DOCUMENT_DID_OPEN)
async def did_open_notebook(params: DidOpenNotebookDocumentParams) -> None:
"""LSP handler for notebookDocument/didOpen request."""
notebook_document = LSP_SERVER.workspace.get_notebook_document(
notebook_uri=params.notebook_document.uri
)
if notebook_document is None:
log_warning(f"No notebook document found for {params.notebook_document.uri!r}")
return
document = Document.from_notebook_document(notebook_document)
settings = _get_settings_by_document(document.path)
if not lint_enable(settings):
return
diagnostics = await _lint_document_impl(document, settings)
# Publish diagnostics for each cell.
for cell_idx, diagnostics in _group_diagnostics_by_cell(diagnostics).items():
LSP_SERVER.publish_diagnostics(
# The cell indices are 1-based in Ruff.
params.notebook_document.cells[cell_idx - 1].document,
diagnostics,
)
@LSP_SERVER.feature(NOTEBOOK_DOCUMENT_DID_CLOSE)
def did_close_notebook(params: DidCloseNotebookDocumentParams) -> None:
"""LSP handler for notebookDocument/didClose request."""
# Publishing empty diagnostics to clear the entries for all the cells in this
# Notebook Document.
for cell_text_document in params.cell_text_documents:
LSP_SERVER.publish_diagnostics(cell_text_document.uri, [])
@LSP_SERVER.feature(NOTEBOOK_DOCUMENT_DID_SAVE)
async def did_save_notebook(params: DidSaveNotebookDocumentParams) -> None:
"""LSP handler for notebookDocument/didSave request."""
await _did_change_or_save_notebook(
params.notebook_document.uri, run_types=[Run.OnSave, Run.OnType]
)
@LSP_SERVER.feature(NOTEBOOK_DOCUMENT_DID_CHANGE)
async def did_change_notebook(params: DidChangeNotebookDocumentParams) -> None:
"""LSP handler for notebookDocument/didChange request."""
await _did_change_or_save_notebook(
params.notebook_document.uri, run_types=[Run.OnType]
)
def _group_diagnostics_by_cell(
diagnostics: Iterable[Diagnostic],
) -> Mapping[int, list[Diagnostic]]:
"""Group diagnostics by cell index.
The function will return a mapping from cell number to a list of diagnostics for
that cell. The mapping will be empty if the diagnostic doesn't contain the cell
information.
"""
cell_diagnostics: dict[int, list[Diagnostic]] = {}
for diagnostic in diagnostics:
cell = cast(DiagnosticData, diagnostic.data).get("cell")
if cell is not None:
cell_diagnostics.setdefault(cell, []).append(diagnostic)
return cell_diagnostics
async def _did_change_or_save_notebook(
notebook_uri: str, *, run_types: Sequence[Run]
) -> None:
"""Handle notebookDocument/didChange and notebookDocument/didSave requests."""
notebook_document = LSP_SERVER.workspace.get_notebook_document(
notebook_uri=notebook_uri
)
if notebook_document is None:
log_warning(f"No notebook document found for {notebook_uri!r}")
return
document = Document.from_notebook_document(notebook_document)
settings = _get_settings_by_document(document.path)
if not lint_enable(settings):
return
if lint_run(settings) in run_types:
cell_diagnostics = _group_diagnostics_by_cell(
await _lint_document_impl(document, settings)
)
# Publish diagnostics for every code cell, replacing the previous diagnostics.
# This is required here because a cell containing diagnostics in the first run
# might not contain any diagnostics in the second run. In that case, we need to
# clear the diagnostics for that cell which is done by publishing empty
# diagnostics.
for cell_idx, cell in enumerate(notebook_document.cells):
if cell.kind is not NotebookCellKind.Code:
continue
LSP_SERVER.publish_diagnostics(
cell.document,
# The cell indices are 1-based in Ruff.
cell_diagnostics.get(cell_idx + 1, []),
)
async def _lint_document_impl(
document: Document, settings: WorkspaceSettings
) -> list[Diagnostic]:
result = await _run_check_on_document(document, settings)
if result is None:
return []
# For `ruff check`, 0 indicates successful completion with no remaining
# diagnostics, 1 indicates successful completion with remaining diagnostics,
# and 2 indicates an error.
if result.exit_code not in (0, 1):
if result.stderr:
show_error(f"Ruff: Lint failed ({result.stderr.decode('utf-8')})")
return []
return _parse_output(result.stdout) if result.stdout else []
def _parse_fix(content: Fix | LegacyFix | None) -> Fix | None:
"""Parse the fix from the Ruff output."""
if content is None:
return None
if content.get("edits") is None:
# Prior to v0.0.260, Ruff returned a single edit.
legacy_fix = cast(LegacyFix, content)
return {
"applicability": None,
"message": legacy_fix.get("message"),
"edits": [
{
"content": legacy_fix["content"],
"location": legacy_fix["location"],
"end_location": legacy_fix["end_location"],
}
],
}
else:
# Since v0.0.260, Ruff returns a list of edits.
fix = cast(Fix, content)
# Since v0.0.266, Ruff returns one based column indices
if fix.get("applicability") is not None:
for edit in fix["edits"]:
edit["location"]["column"] = edit["location"]["column"] - 1
edit["end_location"]["column"] = edit["end_location"]["column"] - 1
return fix
def _parse_output(content: bytes) -> list[Diagnostic]:
"""Parse Ruff's JSON output."""
diagnostics: list[Diagnostic] = []
# Ruff's output looks like:
# [
# {
# "cell": null,
# "code": "F841",
# "message": "Local variable `x` is assigned to but never used",
# "location": {
# "row": 2,
# "column": 5
# },
# "end_location": {
# "row": 2,
# "column": 6
# },
# "fix": {
# "applicability": "Unspecified",
# "message": "Remove assignment to unused variable `x`",
# "edits": [
# {
# "content": "",
# "location": {
# "row": 2,
# "column": 1
# },
# "end_location": {
# "row": 3,
# "column": 1
# }
# }
# ]
# },
# "filename": "/path/to/test.py",
# "noqa_row": 2
# },
# ...
# ]
#
# Input:
# ```python
# def a():
# x = 0
# print()
# ```
#
# Cell represents the cell number in a Notebook Document. It is null for normal
# Python files.
for check in json.loads(content):
start = Position(
line=max([int(check["location"]["row"]) - 1, 0]),
character=int(check["location"]["column"]) - 1,
)
end = Position(
line=max([int(check["end_location"]["row"]) - 1, 0]),
character=int(check["end_location"]["column"]) - 1,
)
diagnostic = Diagnostic(
range=Range(start=start, end=end),
message=check.get("message"),
code=check["code"],
code_description=_get_code_description(check.get("url")),
severity=_get_severity(check["code"]),
source=TOOL_DISPLAY,
data=DiagnosticData(
fix=_parse_fix(check.get("fix")),
# Available since Ruff v0.0.253.
noqa_row=check.get("noqa_row"),
# Available since Ruff v0.1.0.
cell=check.get("cell"),
),
tags=_get_tags(check["code"]),
)
diagnostics.append(diagnostic)
return diagnostics
def _get_code_description(url: str | None) -> CodeDescription | None:
if url is None:
return None
else:
return CodeDescription(href=url)
def _get_tags(code: str) -> list[DiagnosticTag] | None:
if code in {
"F401", # `module` imported but unused
"F841", # local variable `name` is assigned to but never used
}:
return [DiagnosticTag.Unnecessary]
return None
def _get_severity(code: str) -> DiagnosticSeverity:
if code in {
"F821", # undefined name `name`
"E902", # `IOError`
"E999", # `SyntaxError`
}:
return DiagnosticSeverity.Error
else:
return DiagnosticSeverity.Warning
NOQA_REGEX = re.compile(
r"(?i:# (?:(?:ruff|flake8): )?(?P<noqa>noqa))"
r"(?::\s?(?P<codes>([A-Z]+[0-9]+(?:[,\s]+)?)+))?"
)
CODE_REGEX = re.compile(r"[A-Z]+[0-9]+")
@LSP_SERVER.feature(TEXT_DOCUMENT_HOVER)
async def hover(params: HoverParams) -> Hover | None:
"""LSP handler for textDocument/hover request.
This works for both Python files and Notebook Documents. For Notebook Documents,
the hover works at the cell level.
"""
document = LSP_SERVER.workspace.get_text_document(params.text_document.uri)
match = NOQA_REGEX.search(document.lines[params.position.line])
if not match:
return None
codes = match.group("codes")
if not codes:
return None
codes_start = match.start("codes")
for match in CODE_REGEX.finditer(codes):
start, end = match.span()
start += codes_start
end += codes_start
if start <= params.position.character < end:
code = match.group()
result = await _run_subcommand_on_document(
document, VERSION_REQUIREMENT_LINTER, args=["--explain", code]
)
if result.stdout:
return Hover(
contents=MarkupContent(
kind=MarkupKind.Markdown,
value=result.stdout.decode("utf-8").strip(),
)
)
return None
###
# Code Actions.
###
class TextDocument(TypedDict):
uri: str
version: int
class Location(TypedDict):
row: int
column: int
class Edit(TypedDict):
content: str
location: Location
end_location: Location
class Fix(TypedDict):
"""A fix for a diagnostic, represented as a list of edits."""
applicability: str | None
message: str | None
edits: list[Edit]
class DiagnosticData(TypedDict, total=False):
fix: Fix | None
noqa_row: int | None
cell: int | None
class LegacyFix(TypedDict):
"""A fix for a diagnostic, represented as a single edit.
Matches Ruff's output prior to v0.0.260.
"""
message: str | None
content: str
location: Location
end_location: Location
@LSP_SERVER.feature(
TEXT_DOCUMENT_CODE_ACTION,
CodeActionOptions(
code_action_kinds=[
# Standard code action kinds.
CodeActionKind.QuickFix,
CodeActionKind.SourceFixAll,
CodeActionKind.SourceOrganizeImports,
# Standard code action kinds, scoped to Ruff.
SOURCE_FIX_ALL_RUFF,
SOURCE_ORGANIZE_IMPORTS_RUFF,
# Notebook code action kinds.
NOTEBOOK_SOURCE_FIX_ALL,
NOTEBOOK_SOURCE_ORGANIZE_IMPORTS,
# Notebook code action kinds, scoped to Ruff.
NOTEBOOK_SOURCE_FIX_ALL_RUFF,
NOTEBOOK_SOURCE_ORGANIZE_IMPORTS_RUFF,
],
resolve_provider=True,
),
)
async def code_action(params: CodeActionParams) -> list[CodeAction] | None:
"""LSP handler for textDocument/codeAction request.
Code actions work at a text document level which is either a Python file or a
cell in a Notebook document. The function will try to get the Notebook cell
first, and if there's no cell with the given URI, it will fallback to the text
document.
"""
def document_from_kind(uri: str, kind: str) -> Document:
if kind in (
# For `notebook`-scoped actions, use the Notebook Document instead of
# the cell, despite being passed the URI of the first cell.
# See: https://github.com/microsoft/vscode/issues/193120
NOTEBOOK_SOURCE_FIX_ALL,
NOTEBOOK_SOURCE_ORGANIZE_IMPORTS,
NOTEBOOK_SOURCE_FIX_ALL_RUFF,
NOTEBOOK_SOURCE_ORGANIZE_IMPORTS_RUFF,
):
return Document.from_uri(uri)
else:
return Document.from_cell_or_text_uri(uri)
document_path = _uri_to_fs_path(params.text_document.uri)
settings = _get_settings_by_document(document_path)
if settings.get("ignoreStandardLibrary", True) and utils.is_stdlib_file(
document_path
):
# Don't format standard library files.
# Publishing empty list clears the entry.
return None
if settings["organizeImports"]:
# Generate the "Ruff: Organize Imports" edit
for kind in (
CodeActionKind.SourceOrganizeImports,
SOURCE_ORGANIZE_IMPORTS_RUFF,
NOTEBOOK_SOURCE_ORGANIZE_IMPORTS,
NOTEBOOK_SOURCE_ORGANIZE_IMPORTS_RUFF,
):
if (
params.context.only
and len(params.context.only) == 1
and kind in params.context.only
):
workspace_edit = await _fix_document_impl(
document_from_kind(params.text_document.uri, kind),
settings,
only=["I001", "I002"],
)
if workspace_edit:
return [
CodeAction(
title="Ruff: Organize Imports",
kind=kind,
data=params.text_document.uri,
edit=workspace_edit,
diagnostics=[],
)
]
else:
return []
# If the linter is enabled, generate the "Ruff: Fix All" edit.
if lint_enable(settings) and settings["fixAll"]:
for kind in (
CodeActionKind.SourceFixAll,
SOURCE_FIX_ALL_RUFF,
NOTEBOOK_SOURCE_FIX_ALL,
NOTEBOOK_SOURCE_FIX_ALL_RUFF,
):
if (
params.context.only
and len(params.context.only) == 1
and kind in params.context.only
):
workspace_edit = await _fix_document_impl(
document_from_kind(params.text_document.uri, kind),
settings,
)
if workspace_edit:
return [
CodeAction(
title="Ruff: Fix All",
kind=kind,
data=params.text_document.uri,
edit=workspace_edit,
diagnostics=[
diagnostic
for diagnostic in params.context.diagnostics
if diagnostic.source == "Ruff"
and cast(DiagnosticData, diagnostic.data).get("fix")
is not None
],
),
]
else:
return []
actions: list[CodeAction] = []
# If the linter is enabled, add "Ruff: Autofix" for every fixable diagnostic.
if lint_enable(settings) and settings.get("codeAction", {}).get(
"fixViolation", {}
).get("enable", True):
if not params.context.only or CodeActionKind.QuickFix in params.context.only:
# This is a text document representing either a Python file or a
# Notebook cell.
text_document = LSP_SERVER.workspace.get_text_document(
params.text_document.uri
)
for diagnostic in params.context.diagnostics:
if diagnostic.source == "Ruff":
fix = cast(DiagnosticData, diagnostic.data).get("fix")
if fix is not None:
title: str
if fix.get("message"):
title = f"Ruff ({diagnostic.code}): {fix['message']}"
elif diagnostic.code:
title = f"Ruff: Fix {diagnostic.code}"
else:
title = "Ruff: Fix"
actions.append(
CodeAction(
title=title,
kind=CodeActionKind.QuickFix,
data=params.text_document.uri,
edit=_create_workspace_edit(
text_document.uri, text_document.version, fix