Source code for logilab.common.deprecation

# copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This file is part of logilab-common.
#
# logilab-common is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 2.1 of the License, or (at your option) any
# later version.
#
# logilab-common is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with logilab-common.  If not, see <http://www.gnu.org/licenses/>.
"""Deprecation utilities."""

__docformat__ = "restructuredtext en"

import os
import sys
import inspect
from enum import Enum
from warnings import warn
from functools import WRAPPER_ASSIGNMENTS, WRAPPER_UPDATES
from importlib import import_module

from typing import Any, Callable, Dict, Optional, Type
from typing_extensions import Protocol

if sys.version_info >= (3, 8):
    from importlib import metadata as importlib_metadata
else:
    import importlib_metadata


[docs]class FakeDistribution(importlib_metadata.Distribution): "see https://github.com/python/importlib_metadata/blob/main/CHANGES.rst#v600"
[docs] def locate_file(self): pass
[docs] def read_text(self): pass
def _unstack_all_deprecation_decorators(function): """ This is another super edge magic case which is needed because we uses lazy_wraps because of logilab.common.modutils.LazyObject and because __name__ has special behavior and doesn't work like a normal attribute and that __getattribute__ of lazy_wraps is bypassed. Therefor, to get the real callable name when several lazy_wrapped decorator are used we need to travers the __wrapped__ attributes chain. """ while hasattr(function, "__wrapped__"): function = function.__wrapped__ return function
[docs]def get_real__name__(some_callable: Callable) -> str: return _unstack_all_deprecation_decorators(some_callable).__name__
[docs]def get_real__module__(some_callable: Callable) -> str: return _unstack_all_deprecation_decorators(some_callable).__module__
[docs]def lazy_wraps(wrapped: Callable) -> Callable: """ This is the equivalent of the @wraps decorator of functools except it won't try to grabs attributes of the targeted function on decoration but on access. This is needed because of logilab.common.modutils.LazyObject. Indeed: if you try to decorate a LazyObject with @wraps, wraps will try to access attributes of LazyObject and this will trigger the attempt to import the module decorated by LazyObject which you don't want to do when you just want to mark this LazyObject has been a deprecated objet that you only wants to trigger if the user try to use it. Usage: like @wraps() >>> @lazy_wraps(function) >>> def wrapper(*args, **kwargs): ... """ def update_wrapper_attributes(wrapper: Callable) -> Callable: def __getattribute__(self, attribute: str) -> Any: if attribute in WRAPPER_ASSIGNMENTS: return getattr(wrapped, attribute) return super(self.__class__, self).__getattribute__(attribute) wrapper.__getattribute__ = __getattribute__ # type: ignore for attribute in WRAPPER_UPDATES: getattr(wrapper, attribute).update(getattr(wrapped, attribute, {})) wrapper.__wrapped__ = wrapped # type: ignore return wrapper return update_wrapper_attributes
[docs]class DeprecationWrapper: """proxy to print a warning on access to any attribute of the wrapped object""" def __init__( self, proxied: Any, msg: Optional[str] = None, version: Optional[str] = None ) -> None: self._proxied: Any = proxied self._msg: str = msg if msg else "" self.version: Optional[str] = version def __getattr__(self, attr: str) -> Any: send_warning( self._msg, deprecation_class=DeprecationWarning, deprecation_class_kwargs={}, stacklevel=3, version=self.version, ) return getattr(self._proxied, attr) def __setattr__(self, attr: str, value: Any) -> None: if attr in ("_proxied", "_msg"): self.__dict__[attr] = value else: send_warning( self._msg, deprecation_class=DeprecationWarning, deprecation_class_kwargs={}, stacklevel=3, version=self.version, ) setattr(self._proxied, attr, value)
def _get_module_name(number: int = 1) -> str: """ automagically try to determine the package name from which the warning has been triggered by loop other calling frames. If it fails to do so, return an empty string. """ frame = sys._getframe() for i in range(number + 1): if frame.f_back is None: break frame = frame.f_back if frame.f_globals["__package__"]: return frame.f_globals["__package__"] file_name = os.path.split(frame.f_globals["__file__"])[1] if file_name.endswith(".py"): file_name = file_name[: -len(".py")] return file_name _cached_path_to_package: Optional[Dict[str, Optional[str]]] = None def _get_package_name(python_object) -> Optional[str]: # only do this work if we are in a pytest session if "COLLECT_DEPRECATION_WARNINGS_PACKAGE_NAME" not in os.environ: return None global _cached_path_to_package if _cached_path_to_package is None: _cached_path_to_package = {} # mypy fails to understand the result of .discover(): Cannot # instantiate abstract class 'Distribution' with abstract attributes # 'locate_file' and 'read_text' for distribution in FakeDistribution().discover(): # type: ignore # sometime distribution has a "name" attribute, sometime not if distribution.files and hasattr(distribution, "name"): for file in distribution.files: _cached_path_to_package[str(distribution.locate_file(file))] = distribution.name continue if distribution.files and "name" in distribution.metadata: for file in distribution.files: _cached_path_to_package[str(distribution.locate_file(file))] = ( distribution.metadata["name"] ) try: return _cached_path_to_package.get( inspect.getfile(_unstack_all_deprecation_decorators(python_object)) ) except TypeError: return None
[docs]def send_warning( reason: str, deprecation_class: Type[DeprecationWarning], deprecation_class_kwargs: Dict[str, Any], version: Optional[str] = None, stacklevel: int = 2, module_name: Optional[str] = None, ) -> None: """Display a deprecation message only if the version is older than the compatible version. """ if module_name and version: reason = f"[{module_name} {version}] {reason}" elif module_name: reason = f"[{module_name}] {reason}" elif version: reason = f"[{version}] {reason}" warn( deprecation_class(reason, **deprecation_class_kwargs), stacklevel=stacklevel # type: ignore )
[docs]class DeprecationWarningKind(Enum): ARGUMENT = "argument" ATTRIBUTE = "attribute" CALLABLE = "callable" CLASS = "class" MODULE = "module"
[docs]class DeprecationWarningOperation(Enum): DEPRECATED = "deprecated" MOVED = "moved" REMOVED = "removed" RENAMED = "renamed"
[docs]class StructuredDeprecationWarning(DeprecationWarning): """ Base class for all structured DeprecationWarning Mostly used with isinstance """ def __init__(self, reason: str, package: str = None, version: str = None): self.reason: str = reason self.package = package self.version = version def __str__(self) -> str: return self.reason
[docs]class TargetRenamedDeprecationWarning(StructuredDeprecationWarning): def __init__( self, reason: str, kind: DeprecationWarningKind, old_name: str, new_name: str, package: str = None, version: str = None, ): super().__init__(reason, package=package, version=version) self.operation = DeprecationWarningOperation.RENAMED self.kind: DeprecationWarningKind = kind # callable, class, module, argument, attribute self.old_name: str = old_name self.new_name: str = new_name
[docs]class TargetDeprecatedDeprecationWarning(StructuredDeprecationWarning): def __init__( self, reason: str, kind: DeprecationWarningKind, package: str = None, version: str = None ): super().__init__(reason, package=package, version=version) self.operation = DeprecationWarningOperation.DEPRECATED self.kind: DeprecationWarningKind = kind # callable, class, module, argument, attribute
[docs]class TargetRemovedDeprecationWarning(StructuredDeprecationWarning): def __init__( self, reason: str, kind: DeprecationWarningKind, name: str, package: str = None, version: str = None, ): super().__init__(reason, package=package, version=version) self.operation = DeprecationWarningOperation.REMOVED self.kind: DeprecationWarningKind = kind # callable, class, module, argument, attribute self.name: str = name
[docs]class TargetMovedDeprecationWarning(StructuredDeprecationWarning): def __init__( self, reason: str, kind: DeprecationWarningKind, old_name: str, new_name: str, old_module: str, new_module: str, package: str = None, version: str = None, ): super().__init__(reason, package=package, version=version) self.operation = DeprecationWarningOperation.MOVED self.kind: DeprecationWarningKind = kind # callable, class, module, argument, attribute self.old_name: str = old_name self.new_name: str = new_name self.old_module: str = old_module self.new_module: str = new_module
[docs]def callable_renamed( old_name: str, new_function: Callable, version: Optional[str] = None ) -> Callable: """use to tell that a callable has been renamed. It returns a callable wrapper, so that when its called a warning is printed telling what is the object new name. >>> old_function = renamed('old_function', new_function) >>> old_function() sample.py:57: DeprecationWarning: old_function has been renamed and is deprecated, uses new_function instead old_function() >>> """ @lazy_wraps(new_function) def wrapped(*args, **kwargs): send_warning( ( f"{old_name} has been renamed and is deprecated, uses " f"{get_real__name__(new_function)} instead" ), TargetRenamedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.CALLABLE, "old_name": old_name, "new_name": get_real__name__(new_function), "version": version, "package": _get_package_name(new_function), }, stacklevel=3, version=version, module_name=get_real__module__(new_function), ) return new_function(*args, **kwargs) return wrapped
[docs]def argument_removed(old_argument_name: str, version: Optional[str] = None) -> Callable: """ callable decorator to allow getting backward compatibility for renamed keyword arguments. >>> @argument_removed("old") ... def some_function(new): ... return new >>> some_function(old=42) sample.py:15: DeprecationWarning: argument old of callable some_function has been renamed and is deprecated, use keyword argument new instead some_function(old=42) 42 """ def _wrap(func: Callable) -> Callable: @lazy_wraps(func) def check_kwargs(*args, **kwargs): if old_argument_name in kwargs: send_warning( f"argument {old_argument_name} of callable {get_real__name__(func)} has been " f"removed and is deprecated", deprecation_class=TargetRemovedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.ARGUMENT, "name": old_argument_name, "version": version, "package": _get_package_name(func), }, stacklevel=3, version=version, module_name=get_real__module__(func), ) del kwargs[old_argument_name] return func(*args, **kwargs) return check_kwargs return _wrap
[docs]def callable_deprecated( reason: Optional[str] = None, version: Optional[str] = None, stacklevel: int = 2 ) -> Callable: """Display a deprecation message only if the version is older than the compatible version. """ def decorator(func: Callable) -> Callable: @lazy_wraps(func) def wrapped(*args, **kwargs) -> Callable: message: str = reason or 'The function "%s" is deprecated' if "%s" in message: message %= get_real__name__(func) send_warning( message, deprecation_class=TargetDeprecatedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.CALLABLE, "version": version, "package": _get_package_name(func), }, version=version, stacklevel=stacklevel + 1, module_name=get_real__module__(func), ) return func(*args, **kwargs) return wrapped return decorator
[docs]class CallableDeprecatedCallable(Protocol): def __call__( self, reason: Optional[str] = None, version: Optional[str] = None, stacklevel: int = 2 ) -> Callable: ...
def _generate_class_deprecated(): class _class_deprecated(type): """metaclass to print a warning on instantiation of a deprecated class""" def __call__(cls, *args, **kwargs): message = getattr(cls, "__deprecation_warning__", "%(cls)s is deprecated") % { "cls": get_real__name__(cls) } send_warning( message, deprecation_class=getattr( cls, "__deprecation_warning_class__", TargetDeprecatedDeprecationWarning ), deprecation_class_kwargs=getattr( cls, "__deprecation_warning_class_kwargs__", { "kind": DeprecationWarningKind.CLASS, "package": _get_package_name(cls), "version": getattr(cls, "__deprecation_warning_version__", None), }, ), module_name=getattr( cls, "__deprecation_warning_module_name__", _get_module_name(1) ), stacklevel=getattr(cls, "__deprecation_warning_stacklevel__", 3), version=getattr(cls, "__deprecation_warning_version__", None), ) return type.__call__(cls, *args, **kwargs) return _class_deprecated class_deprecated = _generate_class_deprecated()
[docs]def attribute_renamed(old_name: str, new_name: str, version: Optional[str] = None) -> Callable: """ class decorator to allow getting backward compatibility for renamed attributes. >>> @attribute_renamed(old_name="old", new_name="new") ... class SomeClass: ... def __init__(self): ... self.new = 42 >>> some_class = SomeClass() >>> print(some_class.old) sample.py:15: DeprecationWarning: SomeClass.old has been renamed and is deprecated, use SomeClass.new instead print(some_class.old) 42 >>> some_class.old = 43 sample.py:16: DeprecationWarning: SomeClass.old has been renamed and is deprecated, use SomeClass.new instead some_class.old = 43 >>> some_class.old == some_class.new True """ def _class_wrap(klass: type) -> type: reason = ( f"{get_real__name__(klass)}.{old_name} has been renamed and is deprecated, use " f"{get_real__name__(klass)}.{new_name} instead" ) def _get_old(self) -> Any: send_warning( reason, deprecation_class=TargetRenamedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.ATTRIBUTE, "old_name": old_name, "new_name": new_name, "version": version, "package": _get_package_name(klass), }, stacklevel=3, version=version, module_name=get_real__module__(klass), ) return getattr(self, new_name) def _set_old(self, value) -> None: send_warning( reason, deprecation_class=TargetRenamedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.ATTRIBUTE, "old_name": old_name, "new_name": new_name, "version": version, "package": _get_package_name(klass), }, stacklevel=3, version=version, module_name=get_real__module__(klass), ) setattr(self, new_name, value) def _del_old(self): send_warning( reason, deprecation_class=TargetRenamedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.ATTRIBUTE, "old_name": old_name, "new_name": new_name, "version": version, "package": _get_package_name(klass), }, stacklevel=3, version=version, module_name=get_real__module__(klass), ) delattr(self, new_name) setattr(klass, old_name, property(_get_old, _set_old, _del_old)) return klass return _class_wrap
[docs]def argument_renamed(old_name: str, new_name: str, version: Optional[str] = None) -> Callable: """ callable decorator to allow getting backward compatibility for renamed keyword arguments. >>> @argument_renamed(old_name="old", new_name="new") ... def some_function(new): ... return new >>> some_function(old=42) sample.py:15: DeprecationWarning: argument old of callable some_function has been renamed and is deprecated, use keyword argument new instead some_function(old=42) 42 """ def _wrap(func: Callable) -> Callable: @lazy_wraps(func) def check_kwargs(*args, **kwargs) -> Callable: if old_name in kwargs and new_name in kwargs: raise ValueError( f"argument {old_name} of callable {get_real__name__(func)} has been " f"renamed to {new_name} but you are both using {old_name} and " f"{new_name} has keyword arguments, only uses {new_name}" ) if old_name in kwargs: send_warning( f"argument {old_name} of callable {get_real__name__(func)} has been renamed " f"and is deprecated, use keyword argument {new_name} instead", deprecation_class=TargetRenamedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.ARGUMENT, "old_name": old_name, "new_name": new_name, "version": version, "package": _get_package_name(func), }, stacklevel=3, version=version, module_name=get_real__module__(func), ) kwargs[new_name] = kwargs[old_name] del kwargs[old_name] return func(*args, **kwargs) return check_kwargs return _wrap
[docs]def callable_moved( module_name: str, object_name: str, version: Optional[str] = None, stacklevel: int = 2, new_name: Optional[str] = None, ) -> Callable: """use to tell that a callable has been moved to a new module. It returns a callable wrapper, so that when its called a warning is printed telling where the object can be found, import is done (and not before) and the actual object is called. NOTE: the usage is somewhat limited on classes since it will fail if the wrapper is use in a class ancestors list, use the `class_moved` function instead (which has no lazy import feature though). """ # in case the callable has been renamed new_name = new_name if new_name is not None else object_name old_module = _get_module_name(1) message = "object %s.%s has been moved to %s.%s" % ( old_module, object_name, module_name, object_name, ) def callnew(*args, **kwargs): m = import_module(module_name) send_warning( message, deprecation_class=TargetMovedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.CALLABLE, "old_name": object_name, "new_name": new_name, "old_module": old_module, "new_module": module_name, "version": version, "package": _get_package_name(getattr(m, object_name)), }, version=version, stacklevel=stacklevel + 1, module_name=old_module, ) return getattr(m, object_name)(*args, **kwargs) return callnew
[docs]def class_renamed( old_name: str, new_class: type, message: Optional[str] = None, version: Optional[str] = None, module_name: Optional[str] = None, deprecated_warning_class=TargetRenamedDeprecationWarning, deprecated_warning_kwargs=None, ) -> type: """automatically creates a class which fires a DeprecationWarning when instantiated. >>> Set = class_renamed('Set', set, 'Set is now replaced by set') >>> s = Set() sample.py:57: DeprecationWarning: Set is now replaced by set s = Set() >>> """ class_dict: Dict[str, Any] = {} if message is None: message = f"{old_name} is deprecated, use {get_real__name__(new_class)} instead" class_dict["__deprecation_warning__"] = message class_dict["__deprecation_warning_class__"] = deprecated_warning_class if deprecated_warning_kwargs is None: class_dict["__deprecation_warning_class_kwargs__"] = { "kind": DeprecationWarningKind.CLASS, "old_name": old_name, "new_name": get_real__name__(new_class), "version": version, "package": _get_package_name(new_class), } else: class_dict["__deprecation_warning_class_kwargs__"] = deprecated_warning_kwargs class_dict["__deprecation_warning_version__"] = version class_dict["__deprecation_warning_stacklevel__"] = 3 if module_name: class_dict["__deprecation_warning_module_name__"] = module_name else: class_dict["__deprecation_warning_module_name__"] = _get_module_name(1) try: return class_deprecated(old_name, (new_class,), class_dict) except (NameError, TypeError): # in case of conflicting metaclass situation # mypy can't handle dynamic base classes https://github.com/python/mypy/issues/2477 class DeprecatedClass(new_class): # type: ignore def __init__(self, *args, **kwargs): msg = class_dict.get( "__deprecation_warning__", f"{old_name} is deprecated, use {get_real__name__(new_class)} instead", ) send_warning( msg, deprecation_class=TargetRenamedDeprecationWarning, deprecation_class_kwargs={ "kind": DeprecationWarningKind.CLASS, "old_name": old_name, "new_name": get_real__name__(new_class), "version": version, "package": _get_package_name(new_class), }, stacklevel=class_dict.get("__deprecation_warning_stacklevel__", 3), version=class_dict.get("__deprecation_warning_version__", None), ) super(DeprecatedClass, self).__init__(*args, **kwargs) return DeprecatedClass
[docs]def class_moved( new_class: type, old_name: Optional[str] = None, message: Optional[str] = None, version: Optional[str] = None, ) -> type: """nice wrapper around class_renamed when a class has been moved into another module """ if old_name is None: old_name = get_real__name__(new_class) old_module = _get_module_name(1) if message is None: message = "class %s.%s is now available as %s.%s" % ( old_module, old_name, get_real__module__(new_class), get_real__name__(new_class), ) module_name = _get_module_name(1) return class_renamed( old_name, new_class, message=message, version=version, module_name=module_name, deprecated_warning_class=TargetMovedDeprecationWarning, deprecated_warning_kwargs={ "kind": DeprecationWarningKind.CLASS, "old_module": old_module, "new_module": get_real__module__(new_class), "old_name": old_name, "new_name": get_real__name__(new_class), "version": version, "package": _get_package_name(new_class), }, )