Skip to content

Commit c235923

Browse files
committed
support for system ruff executable
1 parent 790e76c commit c235923

File tree

1 file changed

+33
-19
lines changed

1 file changed

+33
-19
lines changed

pylsp_ruff/plugin.py

+33-19
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
import enum
2+
import importlib.util
23
import json
34
import logging
45
import re
6+
import shutil
57
import sys
8+
from functools import lru_cache
69
from pathlib import PurePath
710
from subprocess import PIPE, Popen
811
from typing import Dict, Generator, List, Optional
@@ -116,7 +119,6 @@ def pylsp_format_document(workspace: Workspace, document: Document) -> Generator
116119
Document to apply ruff on.
117120
118121
"""
119-
120122
log.debug(f"textDocument/formatting: {document}")
121123
outcome = yield
122124
result = outcome.get_result()
@@ -178,7 +180,6 @@ def pylsp_lint(workspace: Workspace, document: Document) -> List[Dict]:
178180
List of dicts containing the diagnostics.
179181
180182
"""
181-
182183
with workspace.report_progress("lint: ruff"):
183184
settings = load_settings(workspace, document.path)
184185
checks = run_ruff_check(document=document, settings=settings)
@@ -487,6 +488,31 @@ def run_ruff_format(
487488
)
488489

489490

491+
@lru_cache
492+
def find_executable(executable):
493+
cmd = None
494+
# use the explicit executable configuration
495+
if executable is not None:
496+
exe_path = shutil.which(executable)
497+
if exe_path is not None:
498+
cmd = [exe_path]
499+
else:
500+
raise RuntimeError(f"configured ruff executable not found: {executable!r}")
501+
502+
# try the python module
503+
if cmd is None:
504+
if importlib.util.find_spec("ruff") is not None:
505+
cmd = [sys.executable, "-m", "ruff"]
506+
507+
# try system's ruff executable
508+
if cmd is None:
509+
system_exe = shutil.which("ruff")
510+
if system_exe is not None:
511+
cmd = [system_exe]
512+
513+
return cmd
514+
515+
490516
def run_ruff(
491517
settings: PluginSettings,
492518
document_path: str,
@@ -522,23 +548,11 @@ def run_ruff(
522548

523549
arguments = subcommand.build_args(document_path, settings, fix, extra_arguments)
524550

525-
p = None
526-
if executable is not None:
527-
log.debug(f"Calling {executable} with args: {arguments} on '{document_path}'")
528-
try:
529-
cmd = [executable, str(subcommand)]
530-
cmd.extend(arguments)
531-
p = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE)
532-
except Exception:
533-
log.error(f"Can't execute ruff with given executable '{executable}'.")
534-
if p is None:
535-
log.debug(
536-
f"Calling ruff via '{sys.executable} -m ruff'"
537-
f" with args: {arguments} on '{document_path}'"
538-
)
539-
cmd = [sys.executable, "-m", "ruff", str(subcommand)]
540-
cmd.extend(arguments)
541-
p = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE)
551+
cmd = [*find_executable(executable), str(subcommand)]
552+
cmd.extend(arguments)
553+
554+
log.debug(f"Calling {cmd} on '{document_path}'")
555+
p = Popen(cmd, stdin=PIPE, stdout=PIPE)
542556
(stdout, stderr) = p.communicate(document_source.encode())
543557

544558
if p.returncode != 0:

0 commit comments

Comments
 (0)