123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- # -*- coding: utf-8 -*-
- """Deprecation utilities."""
- import warnings
- from typing import Any, Callable, Optional
- from vine.utils import wraps
- from celery.exceptions import CPendingDeprecationWarning, CDeprecationWarning
- __all__ = ['Callable', 'Property', 'warn']
- PENDING_DEPRECATION_FMT = """
- {description} is scheduled for deprecation in \
- version {deprecation} and removal in version v{removal}. \
- {alternative}
- """
- DEPRECATION_FMT = """
- {description} is deprecated and scheduled for removal in
- version {removal}. {alternative}
- """
- def warn(description: Optional[str]=None,
- deprecation: Optional[str]=None,
- removal: Optional[str]=None,
- alternative: Optional[str]=None,
- stacklevel: int=2) -> None:
- """Warn of (pending) deprecation."""
- ctx = {'description': description,
- 'deprecation': deprecation, 'removal': removal,
- 'alternative': alternative}
- if deprecation is not None:
- w = CPendingDeprecationWarning(PENDING_DEPRECATION_FMT.format(**ctx))
- else:
- w = CDeprecationWarning(DEPRECATION_FMT.format(**ctx))
- warnings.warn(w, stacklevel=stacklevel)
- def Callable(deprecation: Optional[str]=None,
- removal: Optional[str]=None,
- alternative: Optional[str]=None,
- description: Optional[str]=None) -> Callable:
- """Decorator for deprecated functions.
- A deprecation warning will be emitted when the function is called.
- Arguments:
- deprecation (str): Version that marks first deprecation, if this
- argument isn't set a ``PendingDeprecationWarning`` will be
- emitted instead.
- removal (str): Future version when this feature will be removed.
- alternative (str): Instructions for an alternative solution (if any).
- description (str): Description of what's being deprecated.
- """
- def _inner(fun):
- @wraps(fun)
- def __inner(*args, **kwargs):
- from .imports import qualname
- warn(description=description or qualname(fun),
- deprecation=deprecation,
- removal=removal,
- alternative=alternative,
- stacklevel=3)
- return fun(*args, **kwargs)
- return __inner
- return _inner
- def Property(deprecation: Optional[str]=None,
- removal: Optional[str]=None,
- alternative: Optional[str]=None,
- description: Optional[str]=None) -> Callable:
- def _inner(fun: Callable) -> Any:
- """Decorator for deprecated properties."""
- return _deprecated_property(
- fun, deprecation=deprecation, removal=removal,
- alternative=alternative, description=description or fun.__name__)
- return _inner
- class _deprecated_property:
- def __init__(self,
- fget: Optional[Callable]=None,
- fset: Optional[Callable]=None,
- fdel: Optional[Callable]=None,
- doc: Optional[str]=None,
- **depreinfo) -> None:
- self.__get = fget
- self.__set = fset
- self.__del = fdel
- self.__name__, self.__module__, self.__doc__ = (
- fget.__name__, fget.__module__, fget.__doc__,
- )
- self.depreinfo = depreinfo
- self.depreinfo.setdefault('stacklevel', 3)
- def __get__(self, obj: Any, type: Optional[Any]=None) -> Any:
- if obj is None:
- return self
- warn(**self.depreinfo)
- return self.__get(obj)
- def __set__(self, obj: Any, value: Any) -> Any:
- if obj is None:
- return self
- if self.__set is None:
- raise AttributeError('cannot set attribute')
- warn(**self.depreinfo)
- self.__set(obj, value)
- def __delete__(self, obj: Any) -> Any:
- if obj is None:
- return self
- if self.__del is None:
- raise AttributeError('cannot delete attribute')
- warn(**self.depreinfo)
- self.__del(obj)
- def setter(self, fset: Callable) -> Any:
- return self.__class__(self.__get, fset, self.__del, **self.depreinfo)
- def deleter(self, fdel: Callable) -> Any:
- return self.__class__(self.__get, self.__set, fdel, **self.depreinfo)
|