Source code for jsonargparse.util

"""Collection of general functions and classes."""

import inspect
import logging
import os
import re
import stat
import sys
import textwrap
import warnings
from argparse import ArgumentError
from collections import Counter, namedtuple
from contextlib import contextmanager
from contextvars import ContextVar
from dataclasses import dataclass
from functools import wraps
from importlib import import_module
from io import StringIO
from types import BuiltinFunctionType, FunctionType, ModuleType
from typing import (
    IO,
    Any,
    Callable,
    Iterator,
    List,
    Optional,
    Tuple,
    Type,
    TypeVar,
    Union,
)

from ._common import parser_capture, parser_context
from .deprecated import PathDeprecations
from .loaders_dumpers import json_dump, load_value
from .optionals import (
    fsspec_support,
    get_config_read_mode,
    import_fsspec,
    import_reconplogger,
    import_requests,
    reconplogger_support,
    url_support,
)
from .type_checking import ArgumentParser

__all__ = [
    'capture_parser',
    'class_from_function',
    'LoggerProperty',
    'null_logger',
    'Path',
    'register_unresolvable_import_paths',
]


logging_levels = {'CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG'}
null_logger = logging.getLogger('jsonargparse_null_logger')
null_logger.addHandler(logging.NullHandler())
null_logger.parent = None


NoneType = type(None)


default_config_option_help = 'Path to a configuration file.'


@dataclass
class UrlData:
    scheme: str
    url_path: str


def argument_error(message: str) -> ArgumentError:
    return ArgumentError(None, message)


class JsonargparseWarning(UserWarning):
    pass


def warning(message, category=JsonargparseWarning, stacklevel=1):
    warnings.warn(
        re.sub('\n\n+', '\n\n', re.sub('\n +', '\n  ', message)),
        category=category,
        stacklevel=stacklevel+1,
    )


class CaptureParserException(Exception):
    def __init__(self, parser: Optional[ArgumentParser]):
        self.parser = parser
        super().__init__('' if parser else 'No parse_args call to capture the parser.')


[docs]def capture_parser(function: Callable, *args, **kwargs) -> ArgumentParser: """Returns the parser object used within the execution of a function. The function execution is stopped on the start of the call to parse_args. No parsing is done or execution of instructions after the parse_args. Args: function: A callable that internally creates a parser and calls parse_args. *args: Positional arguments used to run the function. **kwargs: Keyword arguments used to run the function. Raises: CaptureParserException: If the function does not call parse_args. """ try: with parser_context(parser_capture=True): function(*args, **kwargs) except CaptureParserException as ex: return ex.parser # type: ignore raise CaptureParserException(None)
def return_parser_if_captured(parser: ArgumentParser): if parser_capture.get(): raise CaptureParserException(parser) def identity(value): return value NestedArg = namedtuple('NestedArg', 'key val') def parse_value_or_config(value: Any, enable_path: bool = True, simple_types: bool = False) -> Tuple[Any, Optional['Path']]: """Parses yaml/json config in a string or a path""" nested_arg: Union[bool, NestedArg] = False if isinstance(value, NestedArg): nested_arg = value value = nested_arg.val cfg_path = None if enable_path and type(value) is str: try: cfg_path = Path(value, mode=get_config_read_mode()) except TypeError: pass else: with cfg_path.relative_path_context(): value = load_value(cfg_path.get_content(), simple_types=simple_types) if type(value) is str and value.strip() != '': parsed_val = load_value(value, simple_types=simple_types) if type(parsed_val) is not str: value = parsed_val if isinstance(value, dict) and cfg_path is not None: value['__path__'] = cfg_path if nested_arg: value = NestedArg(key=nested_arg.key, val=value) # type: ignore return value, cfg_path class CachedStdin(StringIO): """Used to allow reading sys.stdin multiple times.""" def read_stdin() -> str: if not isinstance(sys.stdin, CachedStdin): sys.stdin = CachedStdin(sys.stdin.read()) value = sys.stdin.read() sys.stdin.seek(0) return value def is_subclass(cls, class_or_tuple): """Extension of issubclass that supports non-class arguments.""" try: return inspect.isclass(cls) and issubclass(cls, class_or_tuple) except TypeError: return False def import_object(name: str): """Returns an object in a module given its dot import path.""" if not isinstance(name, str) or '.' not in name: raise ValueError(f'Expected a dot import path string: {name}') if not all(x.isidentifier() for x in name.split('.')): raise ValueError(f'Unexpected import path format: {name}') name_module, name_object = name.rsplit('.', 1) try: parent = __import__(name_module, fromlist=[name_object]) except ModuleNotFoundError as ex: if '.' not in name_module: raise ex name_module, name_object1 = name_module.rsplit('.', 1) parent = getattr(__import__(name_module, fromlist=[name_object1]), name_object1) return getattr(parent, name_object) unresolvable_import_paths = {}
[docs]def register_unresolvable_import_paths(*modules: ModuleType): """Saves import paths of module objects for which its import path is unresolvable from the object alone. Objects with unresolvable import paths have the __module__ attribute set to None. """ for module in modules: for val in vars(module).values(): if getattr(val, '__module__', None) is None and \ getattr(val, '__name__', None) and \ type(val) in {BuiltinFunctionType, FunctionType, Type}: unresolvable_import_paths[val] = f'{module.__name__}.{val.__name__}'
def get_module_var_path(module_path: str, value: Any) -> Optional[str]: module = import_module(module_path) for name, var in vars(module).items(): if var is value: return module_path + '.' + name return None def get_import_path(value: Any) -> Optional[str]: """Returns the shortest dot import path for the given object.""" path = None module_path = getattr(value, '__module__', None) qualname = getattr(value, '__qualname__', '') if module_path is None: path = unresolvable_import_paths.get(value) if path: module_path, _ = path.rsplit('.', 1) elif ( (not qualname and not inspect.isclass(value)) or (inspect.ismethod(value) and not inspect.isclass(value.__self__)) ): path = get_module_var_path(module_path, value) elif qualname: path = module_path + '.' + qualname if not path: raise ValueError(f'Not possible to determine the import path for object {value}.') if qualname and module_path and '.' in module_path: module_parts = module_path.split('.') for num in range(len(module_parts)): module_path = '.'.join(module_parts[:num+1]) module = import_module(module_path) if '.' in qualname: obj_name, attr = qualname.rsplit('.', 1) obj = getattr(module, obj_name, None) if getattr(obj, attr, None) is value: path = module_path + '.' + qualname break elif getattr(module, qualname, None) is value: path = module_path + '.' + qualname break return path def object_path_serializer(value): try: path = get_import_path(value) reimported = import_object(path) if value is not reimported: raise ValueError return path except Exception as ex: raise ValueError(f'Only possible to serialize an importable object, given {value}: {ex}') from ex def get_typehint_origin(typehint): if not hasattr(typehint, '__origin__') and get_import_path(typehint.__class__) == 'types.UnionType': return Union return getattr(typehint, '__origin__', None) current_path_dir: ContextVar[Optional[str]] = ContextVar('current_path_dir', default=None) @contextmanager def change_to_path_dir(path: Optional['Path']) -> Iterator[Optional[str]]: """A context manager for running code in the directory of a path.""" path_dir = current_path_dir.get() chdir: Union[bool, str] = False if path is not None: if path._url_data and (path.is_url or path.is_fsspec): scheme = path._url_data.scheme path_dir = path._url_data.url_path else: scheme = '' path_dir = path.absolute chdir = True if 'd' not in path.mode: path_dir = os.path.dirname(path_dir) path_dir = scheme + path_dir token = current_path_dir.set(path_dir) if chdir and path_dir: chdir = os.getcwd() path_dir = os.path.abspath(path_dir) os.chdir(path_dir) try: yield path_dir finally: current_path_dir.reset(token) if chdir: os.chdir(chdir) def hash_item(item): try: if isinstance(item, (dict, list)): item_hash = hash(json_dump(item)) else: item_hash = hash(item) except Exception: item_hash = hash(repr(item)) return item_hash def unique(iterable): unique_items = [] seen = set() for item in iterable: key = hash_item(item) if key not in seen: unique_items.append(item) seen.add(key) return unique_items def iter_to_set_str(val, sep=','): val = unique(val) if len(val) == 1: return str(val[0]) return '{'+sep.join(str(x) for x in val)+'}' def indent_text(text: str) -> str: return textwrap.indent(text, ' ') def get_private_kwargs(data, **kwargs): extracted = [data.pop(name, default) for name, default in kwargs.items()] if data: raise ValueError(f'Unexpected keyword parameters: {set(data.keys())}') return extracted[0] if len(extracted) == 1 else extracted def known_to_fsspec(path: str) -> bool: import_fsspec('known_to_fsspec') from fsspec.registry import known_implementations for protocol in known_implementations: if path.startswith(protocol+'://') or path.startswith(protocol+'::'): return True return False class ClassFromFunctionBase: wrapped_function: Callable ClassType = TypeVar('ClassType')
[docs]def class_from_function(func: Callable[..., ClassType]) -> Type[ClassType]: """Creates a dynamic class which if instantiated is equivalent to calling func. Args: func: A function that returns an instance of a class. It must have a return type annotation. """ func_return = inspect.signature(func).return_annotation if isinstance(func_return, str): caller_frame = inspect.currentframe().f_back # type: ignore func_return = caller_frame.f_locals.get(func_return) or caller_frame.f_globals.get(func_return) # type: ignore if func_return is None: raise ValueError(f'Unable to dereference {func_return} the return type of {func}.') @wraps(func) def __new__(cls, *args, **kwargs): return func(*args, **kwargs) class ClassFromFunction(func_return, ClassFromFunctionBase): # type: ignore pass ClassFromFunction.wrapped_function = func ClassFromFunction.__new__ = __new__ # type: ignore ClassFromFunction.__doc__ = func.__doc__ ClassFromFunction.__name__ = func.__name__ return ClassFromFunction
def parse_url(url: str) -> Optional[UrlData]: index = url.rfind('://') if index <= 0: return None return UrlData( scheme=url[:index+3], url_path=url[index+3:], ) def is_absolute_path(path: str) -> bool: if path.find('://') > 0: return True return os.path.isabs(path) def resolve_relative_path(path: str) -> str: parts = path.split('/') resolved: List[str] = [] for part in parts: if part == '..': resolved.pop() elif part != '.': resolved.append(part) return '/'.join(resolved)
[docs]class Path(PathDeprecations): """Stores a (possibly relative) path and the corresponding absolute path. The absolute path can be obtained without having to remember the working directory (or parent remote path) from when the object was created. When a Path instance is created, it is checked that: the path exists, whether it is a file or directory and whether it has the required access permissions (f=file, d=directory, r=readable, w=writeable, x=executable, c=creatable, u=url, s=fsspec or in uppercase meaning not, i.e., F=not-file, D=not-directory, R=not-readable, W=not-writeable and X=not-executable). The creatable flag "c" can be given one or two times. If give once, the parent directory must exist and be writeable. If given twice, the parent directory does not have to exist, but should be allowed to create. """ _url_data: Optional[UrlData] _file_scheme = re.compile('^file:///?')
[docs] def __init__( self, path: Union[str, 'Path'], mode: str = 'fr', cwd: Optional[str] = None, **kwargs, ): """Initializer for Path instance. Args: path: The path to check and store. mode: The required type and access permissions among [fdrwxcuFDRWX]. cwd: Working directory for relative paths. If None, os.getcwd() is used. Raises: ValueError: If the provided mode is invalid. TypeError: If the path does not exist or does not agree with the mode. """ self._deprecated_kwargs(kwargs) self._check_mode(mode) is_url = False is_fsspec = False if isinstance(path, Path): is_url = path.is_url is_fsspec = path.is_fsspec url_data = path._url_data cwd = path.cwd abs_path = path._absolute path = path._relative elif isinstance(path, str): abs_path = os.path.expanduser(path) if self._file_scheme.match(abs_path): abs_path = self._file_scheme.sub('' if os.name == 'nt' else '/', abs_path) is_absolute = is_absolute_path(abs_path) url_data = parse_url(abs_path) cwd_url_data = parse_url(cwd or current_path_dir.get() or os.getcwd()) if ( ('u' in mode or 's' in mode) and (url_data or (cwd_url_data and not is_absolute)) ): if cwd_url_data and not is_absolute: abs_path = resolve_relative_path(cwd_url_data.url_path + '/' + path) abs_path = cwd_url_data.scheme + abs_path url_data = parse_url(abs_path) if cwd is None: cwd = current_path_dir.get() or os.getcwd() if 'u' in mode and url_support: is_url = True elif 's' in mode and fsspec_support and known_to_fsspec(abs_path): is_fsspec = True else: if cwd is None: cwd = os.getcwd() abs_path = abs_path if is_absolute else os.path.join(cwd, abs_path) url_data = None else: raise TypeError('Expected path to be a string or a Path object.') if not self._skip_check and is_url: if 'r' in mode: requests = import_requests('Path with URL support') try: requests.head(abs_path).raise_for_status() except requests.HTTPError as ex: raise TypeError(f'{abs_path} HEAD not accessible :: {ex}') from ex elif not self._skip_check and is_fsspec: fsspec_mode = ''.join(c for c in mode if c in {'r','w'}) if fsspec_mode: fsspec = import_fsspec('Path') try: handle = fsspec.open(abs_path, fsspec_mode) handle.open() handle.close() except (FileNotFoundError, KeyError) as ex: raise TypeError('Path does not exist: '+abs_path) from ex except PermissionError as ex: raise TypeError('Path exists but no permission to access: '+abs_path) from ex elif not self._skip_check: ptype = 'Directory' if 'd' in mode else 'File' if 'c' in mode: pdir = os.path.realpath(os.path.join(abs_path, '..')) if not os.path.isdir(pdir) and mode.count('c') == 2: ppdir = None while not os.path.isdir(pdir) and pdir != ppdir: ppdir = pdir pdir = os.path.realpath(os.path.join(pdir, '..')) if not os.path.isdir(pdir): raise TypeError(ptype+' is not creatable since parent directory does not exist: '+abs_path) if not os.access(pdir, os.W_OK): raise TypeError(ptype+' is not creatable since parent directory not writeable: '+abs_path) if 'd' in mode and os.access(abs_path, os.F_OK) and not os.path.isdir(abs_path): raise TypeError(ptype+' is not creatable since path already exists: '+abs_path) if 'f' in mode and os.access(abs_path, os.F_OK) and not os.path.isfile(abs_path): raise TypeError(ptype+' is not creatable since path already exists: '+abs_path) elif 'd' in mode or 'f' in mode: if not os.access(abs_path, os.F_OK): raise TypeError(ptype+' does not exist: '+abs_path) if 'd' in mode and not os.path.isdir(abs_path): raise TypeError('Path is not a directory: '+abs_path) if 'f' in mode and not (os.path.isfile(abs_path) or stat.S_ISFIFO(os.stat(abs_path).st_mode)): raise TypeError('Path is not a file: '+abs_path) if 'r' in mode and not os.access(abs_path, os.R_OK): raise TypeError(ptype+' is not readable: '+abs_path) if 'w' in mode and not os.access(abs_path, os.W_OK): raise TypeError(ptype+' is not writeable: '+abs_path) if 'x' in mode and not os.access(abs_path, os.X_OK): raise TypeError(ptype+' is not executable: '+abs_path) if 'D' in mode and os.path.isdir(abs_path): raise TypeError('Path is a directory: '+abs_path) if 'F' in mode and (os.path.isfile(abs_path) or stat.S_ISFIFO(os.stat(abs_path).st_mode)): raise TypeError('Path is a file: '+abs_path) if 'R' in mode and os.access(abs_path, os.R_OK): raise TypeError(ptype+' is readable: '+abs_path) if 'W' in mode and os.access(abs_path, os.W_OK): raise TypeError(ptype+' is writeable: '+abs_path) if 'X' in mode and os.access(abs_path, os.X_OK): raise TypeError(ptype+' is executable: '+abs_path) self._relative = path self._absolute = abs_path self._cwd = cwd self._mode = mode self._is_url = is_url self._is_fsspec = is_fsspec self._url_data = url_data
@property def relative(self) -> str: return self._relative @property def absolute(self) -> str: return self._absolute @property def mode(self) -> str: return self._mode @property def is_url(self) -> bool: return self._is_url @property def is_fsspec(self) -> bool: return self._is_fsspec def __str__(self): return self._relative def __repr__(self): name = 'Path_'+self._mode name = self._repr_skip_check(name) cwd = '' if self._relative != self._absolute: cwd = ', cwd='+self._cwd return f'{name}({self._relative}{cwd})' def __fspath__(self) -> str: return self._absolute def __eq__(self, other: Any) -> bool: if isinstance(other, Path): return self._absolute == other._absolute elif isinstance(other, str): return str(self) == other return False
[docs] def __call__(self, absolute: bool = True) -> str: """Returns the path as a string. Args: absolute: If false returns the original path given, otherwise the corresponding absolute path. """ return self._absolute if absolute else self._relative
[docs] def get_content(self, mode: str = 'r') -> str: """Returns the contents of the file or the remote path.""" if self._is_url: assert mode == 'r' requests = import_requests('Path.get_content') response = requests.get(self._absolute) response.raise_for_status() return response.text elif self._is_fsspec: fsspec = import_fsspec('Path.get_content') with fsspec.open(self._absolute, mode) as handle: with handle as input_file: return input_file.read() else: with open(self._absolute, mode) as input_file: return input_file.read()
[docs] @contextmanager def open(self, mode: str = 'r') -> Iterator[IO]: """Return an opened file object for the path.""" if self._is_url: yield StringIO(self.get_content()) elif self._is_fsspec: fsspec = import_fsspec('Path.open') with fsspec.open(self._absolute, mode) as handle: yield handle else: with open(self._absolute, mode) as handle: yield handle
[docs] @contextmanager def relative_path_context(self) -> Iterator[str]: """Context manager to use this path's parent (directory or URL) for relative paths defined within.""" with change_to_path_dir(self) as path_dir: assert isinstance(path_dir, str) yield path_dir
@staticmethod def _check_mode(mode: str): if not isinstance(mode, str): raise ValueError('Expected mode to be a string.') if len(set(mode)-set('fdrwxcusFDRWX')) > 0: raise ValueError('Expected mode to only include [fdrwxcusFDRWX] flags.') for flag, count in Counter(mode).items(): if count > (2 if flag == 'c' else 1): raise ValueError(f'Too many occurrences ({count}) for flag "{flag}".') if 'f' in mode and 'd' in mode: raise ValueError('Both modes "f" and "d" not possible.') if 'u' in mode and 'd' in mode: raise ValueError('Both modes "d" and "u" not possible.') if 's' in mode and 'd' in mode: raise ValueError('Both modes "d" and "s" not possible.')
def setup_default_logger(data, level, caller): name = caller if isinstance(data, str): name = data elif isinstance(data, dict) and 'name' in data: name = data['name'] logger = logging.getLogger(name) logger.parent = None if len(logger.handlers) == 0: handler = logging.StreamHandler() handler.setFormatter(logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')) logger.addHandler(handler) level = getattr(logging, level) for handler in logger.handlers: handler.setLevel(level) return logger def parse_logger(logger: Union[bool, str, dict, logging.Logger], caller): if not isinstance(logger, (bool, str, dict, logging.Logger)): raise ValueError(f'Expected logger to be an instance of (bool, str, dict, logging.Logger), but got {logger}.') if isinstance(logger, dict) and len(set(logger.keys())-{'name', 'level'}) > 0: value = {k: v for k, v in logger.items() if k not in {'name', 'level'}} raise ValueError(f'Unexpected data to configure logger: {value}.') if logger is False: return null_logger level = 'WARNING' if isinstance(logger, dict) and 'level' in logger: level = logger['level'] if level not in logging_levels: raise ValueError(f'Got logger level {level!r} but must be one of {logging_levels}.') if (logger is True or (isinstance(logger, dict) and 'name' not in logger)) and reconplogger_support: logger = import_reconplogger('parse_logger').logger_setup(level=level) if not isinstance(logger, logging.Logger): logger = setup_default_logger(logger, level, caller) return logger
[docs]class LoggerProperty: """Class designed to be inherited by other classes to add a logger property."""
[docs] def __init__(self, *args, logger: Union[bool, str, dict, logging.Logger] = False, **kwargs): """Initializer for LoggerProperty class.""" self.logger = logger # type: ignore super().__init__(*args, **kwargs)
@property def logger(self) -> logging.Logger: """The logger property for the class. :getter: Returns the current logger. :setter: Sets the given logging.Logger as logger or sets the default logger if given True/str(logger name)/dict(name, level), or disables logging if given False. Raises: ValueError: If an invalid logger value is given. """ return self._logger @logger.setter def logger(self, logger: Union[bool, str, dict, logging.Logger]): if logger is None: from .deprecated import deprecation_warning, logger_property_none_message deprecation_warning((LoggerProperty.logger, None), logger_property_none_message) logger = False if not logger and 'JSONARGPARSE_DEBUG' in os.environ: logger = {'level': 'DEBUG'} self._logger = parse_logger(logger, type(self).__name__)
if 'JSONARGPARSE_DEBUG' in os.environ: os.environ['LOGGER_LEVEL'] = 'DEBUG' # pragma: no cover