Source code for spack.util.path

# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

"""Utilities for managing paths in Spack.

TODO: this is really part of spack.config. Consolidate it.
"""

import contextlib
import getpass
import os
import pathlib
import re
import subprocess
import sys
import tempfile
from datetime import date
from typing import Optional, Union

import spack.llnl.util.tty as tty
import spack.util.spack_yaml as syaml
from spack.llnl.util.lang import memoized

__all__ = ["substitute_config_variables", "substitute_path_variables", "canonicalize_path"]


def architecture():
    # break circular import
    import spack.platforms
    import spack.spec

    host_platform = spack.platforms.host()
    host_os = host_platform.default_operating_system()
    host_target = host_platform.default_target()

    return spack.spec.ArchSpec((str(host_platform), str(host_os), str(host_target)))


[docs] def get_user(): # User pwd where available because it accounts for effective uids when using ksu and similar try: # user pwd for unix systems import pwd return pwd.getpwuid(os.geteuid()).pw_name except ImportError: # fallback on getpass return getpass.getuser()
# return value for replacements with no match NOMATCH = object() # Substitutions to perform def replacements(): # break circular imports import spack import spack.environment as ev import spack.paths arch = architecture() return { "spack": lambda: spack.paths.prefix, "user": lambda: get_user(), "tempdir": lambda: tempfile.gettempdir(), "user_cache_path": lambda: spack.paths.user_cache_path, "spack_instance_id": lambda: spack.paths.spack_instance_id, "architecture": lambda: arch, "arch": lambda: arch, "platform": lambda: arch.platform, "operating_system": lambda: arch.os, "os": lambda: arch.os, "target": lambda: arch.target, "target_family": lambda: arch.target.family, "date": lambda: date.today().strftime("%Y-%m-%d"), "env": lambda: ev.active_environment().path if ev.active_environment() else NOMATCH, "spack_short_version": lambda: spack.get_short_version(), } # This is intended to be longer than the part of the install path # spack generates from the root path we give it. Included in the # estimate: # # os-arch -> 30 # compiler -> 30 # package name -> 50 (longest is currently 47 characters) # version -> 20 # hash -> 32 # buffer -> 138 # --------------------- # total -> 300 SPACK_MAX_INSTALL_PATH_LENGTH = 300 #: Padded paths comprise directories with this name (or some prefix of it). : #: It starts with two underscores to make it unlikely that prefix matches would #: include some other component of the installation path. SPACK_PATH_PADDING_CHARS = "__spack_path_placeholder__" #: Bytes equivalent of SPACK_PATH_PADDING_CHARS. SPACK_PATH_PADDING_BYTES = SPACK_PATH_PADDING_CHARS.encode("ascii") #: Special padding char if the padded string would otherwise end with a path #: separator (since the path separator would otherwise get collapsed out, #: causing inconsistent padding). SPACK_PATH_PADDING_EXTRA_CHAR = "_" def win_exe_ext(): return r"(?:\.bat|\.exe)" def sanitize_filename(filename: str) -> str: """ Replaces unsupported characters (for the host) in a filename with underscores. Criteria for legal files based on https://en.wikipedia.org/wiki/Filename#Comparison_of_filename_limitations Args: filename: string containing filename to be created on the host filesystem Return: filename that can be created on the host filesystem """ if sys.platform != "win32": # Only disallow null bytes and directory separators. return re.sub("[\0/]", "_", filename) # On Windows, things are more involved. # NOTE: this is incomplete, missing reserved names return re.sub(r'[\x00-\x1F\x7F"*/:<>?\\|]', "_", filename) @memoized def get_system_path_max(): # Choose a conservative default sys_max_path_length = 256 if sys.platform == "win32": sys_max_path_length = 260 else: try: path_max_proc = subprocess.Popen( ["getconf", "PATH_MAX", "/"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT ) proc_output = str(path_max_proc.communicate()[0].decode()) sys_max_path_length = int(proc_output) except (ValueError, subprocess.CalledProcessError, OSError): tty.msg( "Unable to find system max path length, using: {0}".format(sys_max_path_length) ) return sys_max_path_length
[docs] def substitute_config_variables(path): """Substitute placeholders into paths. Spack allows paths in configs to have some placeholders, as follows: - $env The active Spack environment. - $spack The Spack instance's prefix - $tempdir Default temporary directory returned by tempfile.gettempdir() - $user The current user's username - $user_cache_path The user cache directory (~/.spack, unless overridden) - $spack_instance_id Hash that distinguishes Spack instances on the filesystem - $architecture The spack architecture triple for the current system - $arch The spack architecture triple for the current system - $platform The spack platform for the current system - $os The OS of the current system - $operating_system The OS of the current system - $target The ISA target detected for the system - $target_family The family of the target detected for the system - $date The current date (YYYY-MM-DD) - $spack_short_version The spack short version These are substituted case-insensitively into the path, and users can use either ``$var`` or ``${var}`` syntax for the variables. $env is only replaced if there is an active environment, and should only be used in environment yaml files. """ _replacements = replacements() # Look up replacements def repl(match): m = match.group(0) key = m.strip("${}").lower() repl = _replacements.get(key, lambda: m)() return m if repl is NOMATCH else str(repl) # Replace $var or ${var}. return re.sub(r"(\$\w+\b|\$\{\w+\})", repl, path)
[docs] def substitute_path_variables(path): """Substitute config vars, expand environment vars, expand user home.""" path = substitute_config_variables(path) path = os.path.expandvars(path) path = os.path.expanduser(path) return path
def _get_padding_string(length): spack_path_padding_size = len(SPACK_PATH_PADDING_CHARS) num_reps = int(length / (spack_path_padding_size + 1)) extra_chars = length % (spack_path_padding_size + 1) reps_list = [SPACK_PATH_PADDING_CHARS for i in range(num_reps)] reps_list.append(SPACK_PATH_PADDING_CHARS[:extra_chars]) padding = os.path.sep.join(reps_list) if padding.endswith(os.path.sep): padding = padding[: len(padding) - 1] + SPACK_PATH_PADDING_EXTRA_CHAR return padding def add_padding(path, length): """Add padding subdirectories to path until total is length characters Returns the padded path. If path is length - 1 or more characters long, returns path. If path is length - 1 characters, warns that it is not padding to length Assumes path does not have a trailing path separator""" padding_length = length - len(path) if padding_length == 1: # The only 1 character addition we can make to a path is `/` # Spack internally runs normpath, so `foo/` will be reduced to `foo` # Even if we removed this behavior from Spack, the user could normalize # the path, removing the additional `/`. # Because we can't expect one character of padding to show up in the # resulting binaries, we warn the user and do not pad by a single char tty.warn("Cannot pad path by exactly one character.") if padding_length <= 0: return path # we subtract 1 from the padding_length to account for the path separator # coming from os.path.join below padding = _get_padding_string(padding_length - 1) return os.path.join(path, padding)
[docs] def canonicalize_path(path: str, default_wd: Optional[str] = None) -> str: """Same as substitute_path_variables, but also take absolute path. If the string is a yaml object with file annotations, make absolute paths relative to that file's directory. Otherwise, use ``default_wd`` if specified, otherwise ``os.getcwd()`` Arguments: path: path being converted as needed default_wd: optional working directory/root for non-yaml string paths Returns: An absolute path or non-file URL with path variable substitution """ import urllib.parse import urllib.request # Get file in which path was written in case we need to make it absolute # relative to that path. filename = None if isinstance(path, syaml.syaml_str): filename = os.path.dirname(path._start_mark.name) # type: ignore[attr-defined] assert path._start_mark.name == path._end_mark.name # type: ignore[attr-defined] path = substitute_path_variables(path) # Ensure properly process a Windows path win_path = pathlib.PureWindowsPath(path) if win_path.drive: # Assume only absolute paths are supported with a Windows drive # (though DOS does allow drive-relative paths). return os.path.normpath(str(win_path)) # Now process linux-like paths and remote URLs url = urllib.parse.urlparse(path) url_path = urllib.request.url2pathname(url.path) if url.scheme: if url.scheme != "file": # Have a remote URL so simply return it with substitutions return path # Drop the URL scheme from the local path path = url_path if os.path.isabs(path): return os.path.normpath(path) # Have a relative path so prepend the appropriate dir to make it absolute if filename: # Prepend the directory of the syaml path return os.path.normpath(os.path.join(filename, path)) # Prepend the default, if provided, or current working directory. base = default_wd or os.getcwd() tty.debug(f"Using working directory {base} as base for abspath") return os.path.normpath(os.path.join(base, path))
def longest_prefix_re(string, capture=True): """Return a regular expression that matches a the longest possible prefix of string. i.e., if the input string is ``the_quick_brown_fox``, then:: m = re.compile(longest_prefix('the_quick_brown_fox')) m.match('the_').group(1) == 'the_' m.match('the_quick').group(1) == 'the_quick' m.match('the_quick_brown_fox').group(1) == 'the_quick_brown_fox' m.match('the_xquick_brown_fox').group(1) == 'the_' m.match('the_quickx_brown_fox').group(1) == 'the_quick' """ if len(string) < 2: return string return "(%s%s%s?)" % ( "" if capture else "?:", string[0], longest_prefix_re(string[1:], capture=False), ) def _build_padding_re(as_bytes: bool = False): """Build and return a compiled regex for filtering path padding placeholders.""" pad = re.escape(SPACK_PATH_PADDING_CHARS) extra = SPACK_PATH_PADDING_EXTRA_CHAR longest_prefix = longest_prefix_re(SPACK_PATH_PADDING_CHARS, capture=False) regex = ( r"((?:/[^/\s]*)*?)" # zero or more leading non-whitespace path components r"(?:/{pad})+" # the padding string repeated one or more times # trailing prefix of padding as path component r"(?:/{longest_prefix}|/{longest_prefix}{extra})?(?=/)" ) regex = regex.replace("/", re.escape(os.sep)) regex = regex.format(pad=pad, extra=extra, longest_prefix=longest_prefix) if as_bytes: return re.compile(regex.encode("ascii")) else: return re.compile(regex) class _PaddingFilter: """Callable that filters path-padding placeholders from a string or bytes buffer. This turns paths like this: /foo/bar/__spack_path_placeholder__/__spack_path_placeholder__/... Into paths like this: /foo/bar/[padded-to-512-chars]/... Where ``padded-to-512-chars`` indicates that the prefix was padded with placeholders until it hit 512 characters. The actual value of this number depends on what the ``install_tree``'s ``padded_length`` is configured to. For a path to match and be filtered, the placeholder must appear in its entirety at least one time. e.g., "/spack/" would not be filtered, but "/__spack_path_placeholder__/spack/" would be. Note that only the first padded path in the string is filtered. """ __slots__ = ("_re", "_needle", "_fmt") def __init__(self, as_bytes: bool = False) -> None: self._re = _build_padding_re(as_bytes=as_bytes) if as_bytes: self._needle: Union[str, bytes] = SPACK_PATH_PADDING_BYTES self._fmt: Union[str, bytes] = b"%b" + os.sep.encode("ascii") + b"[padded-to-%d-chars]" else: self._needle = SPACK_PATH_PADDING_CHARS self._fmt = "%s" + os.sep + "[padded-to-%d-chars]" def _replace(self, match): return self._fmt % (match.group(1), len(match.group(0))) def __call__(self, data): if self._needle not in data: return data return self._re.sub(self._replace, data) #: Callable that filters path-padding placeholders from strings padding_filter = _PaddingFilter(as_bytes=False) #: Callable that filters path-padding placeholders from bytes buffers padding_filter_bytes = _PaddingFilter(as_bytes=True) @contextlib.contextmanager def filter_padding(): """Context manager to safely disable path padding in all Spack output. This is needed because Spack's debug output gets extremely long when we use a long padded installation path. """ # circular import import spack.config padding = spack.config.get("config:install_tree:padded_length", None) if padding: # filter out all padding from the install command output with tty.output_filter(padding_filter): yield else: yield # no-op: don't filter unless padding is actually enabled def debug_padded_filter(string, level=1): """ Return string, path padding filtered if debug level and not windows Args: string (str): string containing path level (int): maximum debug level value for filtering (e.g., 1 means filter path padding if the current debug level is 0 or 1 but return the original string if it is 2 or more) Returns (str): filtered string if current debug level does not exceed level and not windows; otherwise, unfiltered string """ if sys.platform == "win32": return string return padding_filter(string) if tty.debug_level() <= level else string