| |
| |
| """Disk utility functions for modifying existing files or directories.""" |
|
|
| from __future__ import annotations |
|
|
| import os |
| import re |
| import tempfile |
| from contextlib import contextmanager |
| from errno import EINVAL, EPERM, EXDEV |
| from logging import getLogger |
| from os.path import basename, dirname, exists, isdir, join, split |
| from shutil import move |
| from subprocess import PIPE, Popen |
|
|
| from ...base.constants import DRY_RUN_PREFIX |
| from ...base.context import context |
| from ...common.compat import on_win |
| from ...common.constants import TRACE |
| from ...common.path import expand |
| from ...exceptions import NotWritableError |
| from . import exp_backoff_fn, mkdir_p, mkdir_p_sudo_safe |
| from .delete import rm_rf |
| from .link import lexists |
|
|
| log = getLogger(__name__) |
|
|
| SHEBANG_REGEX = re.compile(rb"^(#!((?:\\ |[^ \n\r])+)(.*))") |
|
|
|
|
| class CancelOperation(Exception): |
| pass |
|
|
|
|
| def update_file_in_place_as_binary(file_full_path, callback): |
| |
| |
| |
| fh = None |
| try: |
| fh = exp_backoff_fn(open, file_full_path, "rb+") |
| log.log(TRACE, "in-place update path locked for %s", file_full_path) |
| data = fh.read() |
| fh.seek(0) |
| try: |
| fh.write(callback(data)) |
| fh.truncate() |
| return True |
| except CancelOperation: |
| pass |
| finally: |
| if fh: |
| fh.close() |
| return False |
|
|
|
|
| def rename(source_path, destination_path, force=False): |
| if lexists(destination_path) and force: |
| rm_rf(destination_path) |
| if lexists(source_path): |
| log.log(TRACE, "renaming %s => %s", source_path, destination_path) |
| try: |
| os.rename(source_path, destination_path) |
| except OSError as e: |
| if ( |
| on_win |
| and dirname(source_path) == dirname(destination_path) |
| and os.path.isfile(source_path) |
| ): |
| condabin_dir = join(context.conda_prefix, "condabin") |
| rename_script = join(condabin_dir, "rename_tmp.bat") |
| if exists(rename_script): |
| _dirname, _src_fn = split(source_path) |
| _dest_fn = basename(destination_path) |
| p = Popen( |
| ["cmd.exe", "/C", rename_script, _dirname, _src_fn, _dest_fn], |
| stdout=PIPE, |
| stderr=PIPE, |
| ) |
| stdout, stderr = p.communicate() |
| else: |
| log.debug( |
| f"{rename_script} is missing. Conda was not installed correctly or has been " |
| "corrupted. Please file an issue on the conda github repo." |
| ) |
| elif e.errno in (EINVAL, EXDEV, EPERM): |
| |
| |
| log.log( |
| TRACE, |
| "Could not rename %s => %s due to errno [%s]. Falling back" |
| " to copy/unlink", |
| source_path, |
| destination_path, |
| e.errno, |
| ) |
| |
| |
| move(source_path, destination_path) |
| else: |
| raise |
| else: |
| log.log(TRACE, "cannot rename; source path does not exist '%s'", source_path) |
|
|
|
|
| @contextmanager |
| def rename_context(source: str, destination: str | None = None, dry_run: bool = False): |
| """ |
| Used for removing a directory when there are dependent actions (i.e. you need to ensure |
| other actions succeed before removing it). |
| |
| Example: |
| with rename_context(directory): |
| # Do dependent actions here |
| """ |
| if destination is None: |
| destination = tempfile.mkdtemp() |
|
|
| if dry_run: |
| print(f"{DRY_RUN_PREFIX} rename_context {source} > {destination}") |
| yield |
| return |
|
|
| try: |
| rename(source, destination, force=True) |
| yield |
| except Exception as exc: |
| |
| rename(destination, source, force=True) |
| raise exc |
|
|
|
|
| def backoff_rename(source_path, destination_path, force=False): |
| exp_backoff_fn(rename, source_path, destination_path, force) |
|
|
|
|
| def touch(path, mkdir=False, sudo_safe=False): |
| |
| |
| |
| |
| |
| try: |
| path = expand(path) |
| log.log(TRACE, "touching path %s", path) |
| if lexists(path): |
| os.utime(path, None) |
| return True |
| else: |
| dirpath = dirname(path) |
| if not isdir(dirpath) and mkdir: |
| if sudo_safe: |
| mkdir_p_sudo_safe(dirpath) |
| else: |
| mkdir_p(dirpath) |
| else: |
| if not isdir(dirname(path)): |
| raise OSError("Target path is not a directory.") |
| with open(path, "a"): |
| pass |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| return False |
| except OSError as e: |
| raise NotWritableError(path, e.errno, caused_by=e) |
|
|