| |
| |
| """Utilities for finding executables and `conda-*` commands.""" |
|
|
| import os |
| import re |
| import sys |
| import sysconfig |
| from functools import cache |
| from os.path import basename, expanduser, isfile, join |
|
|
| from ..common.compat import on_win |
|
|
|
|
| def find_executable(executable, include_others=True): |
| |
| global dir_paths |
|
|
| if include_others: |
| from ..utils import sys_prefix_unfollowed |
|
|
| prefixes = [sys_prefix_unfollowed()] |
| if sys.prefix != prefixes[0]: |
| prefixes.append(sys.prefix) |
| dir_paths = [join(p, basename(sysconfig.get_path("scripts"))) for p in prefixes] |
| |
| if on_win: |
| dir_paths.append("C:\\cygwin\\bin") |
| else: |
| dir_paths = [] |
|
|
| dir_paths.extend(os.environ.get("PATH", "").split(os.pathsep)) |
|
|
| for dir_path in dir_paths: |
| if on_win: |
| for ext in (".exe", ".bat", ""): |
| path = join(dir_path, executable + ext) |
| if isfile(path): |
| return path |
| else: |
| path = join(dir_path, executable) |
| if isfile(expanduser(path)): |
| return expanduser(path) |
| return None |
|
|
|
|
| @cache |
| def find_commands(include_others=True): |
| if include_others: |
| from ..utils import sys_prefix_unfollowed |
|
|
| prefixes = [sys_prefix_unfollowed()] |
| if sys.prefix != prefixes[0]: |
| prefixes.append(sys.prefix) |
| dir_paths = [join(p, basename(sysconfig.get_path("scripts"))) for p in prefixes] |
| |
| if on_win: |
| dir_paths.append("C:\\cygwin\\bin") |
| else: |
| dir_paths = [] |
|
|
| dir_paths.extend(os.environ.get("PATH", "").split(os.pathsep)) |
|
|
| if on_win: |
| pat = re.compile(r"conda-([\w\-]+)(\.(exe|bat))?$") |
| else: |
| pat = re.compile(r"conda-([\w\-]+)$") |
|
|
| res = set() |
| for dir_path in dir_paths: |
| try: |
| for entry in os.scandir(dir_path): |
| m = pat.match(entry.name) |
| if m and entry.is_file(): |
| res.add(m.group(1)) |
| except (FileNotFoundError, NotADirectoryError, PermissionError, OSError): |
| |
| |
| |
| |
| |
| continue |
| return tuple(sorted(res)) |
|
|