summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Garaud <damien.garaud@logilab.fr>2013-04-11 11:12:14 +0200
committerDamien Garaud <damien.garaud@logilab.fr>2013-04-11 11:12:14 +0200
commit55cf7e15457138fe04fd40ad0fd87b2a66953189 (patch)
tree31d6f259042184a37a7e261fb85857bafacf06f6
parent201edf589f93be9ed66916874b3e704a127f2007 (diff)
downloadlogilab-common-55cf7e15457138fe04fd40ad0fd87b2a66953189.tar.gz
Add version handling to the deprecation module (closes #108205).
Allow to refine the deprecation message handling. Messages are dropped for versions more recent than the 'compatible' version. Implement the `deprecated` decorator and `class_deprecated` metaclass in terms of this new manager.
-rw-r--r--ChangeLog2
-rw-r--r--deprecation.py103
-rw-r--r--test/unittest_deprecation.py61
3 files changed, 139 insertions, 27 deletions
diff --git a/ChangeLog b/ChangeLog
index a216b5b..036f785 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,8 @@ ChangeLog for logilab.common
* fix umessages test w/ python 3 and LC_ALL=C (closes #119967, report and
patch by Ian Delaney)
+--
+ * deprecation: new DeprecationManager class (closes #108205)
2013-01-21 -- 0.59.0
diff --git a/deprecation.py b/deprecation.py
index 5e2f813..8cd72b5 100644
--- a/deprecation.py
+++ b/deprecation.py
@@ -22,15 +22,7 @@ __docformat__ = "restructuredtext en"
import sys
from warnings import warn
-class class_deprecated(type):
- """metaclass to print a warning on instantiation of a deprecated class"""
-
- def __call__(cls, *args, **kwargs):
- msg = getattr(cls, "__deprecation_warning__",
- "%(cls)s is deprecated") % {'cls': cls.__name__}
- warn(msg, DeprecationWarning, stacklevel=2)
- return type.__call__(cls, *args, **kwargs)
-
+from logilab.common.changelog import Version
def class_renamed(old_name, new_class, message=None):
"""automatically creates a class which fires a DeprecationWarning
@@ -71,24 +63,6 @@ def class_moved(new_class, old_name=None, message=None):
old_name, new_class.__module__, new_class.__name__)
return class_renamed(old_name, new_class, message)
-def deprecated(reason=None, stacklevel=2, name=None, doc=None):
- """Decorator that raises a DeprecationWarning to print a message
- when the decorated function is called.
- """
- def deprecated_decorator(func):
- message = reason or 'The function "%s" is deprecated'
- if '%s' in message:
- message = message % func.func_name
- def wrapped(*args, **kwargs):
- warn(message, DeprecationWarning, stacklevel=stacklevel)
- return func(*args, **kwargs)
- try:
- wrapped.__name__ = name or func.__name__
- except TypeError: # readonly attribute in 2.3
- pass
- wrapped.__doc__ = doc or func.__doc__
- return wrapped
- return deprecated_decorator
def moved(modpath, objname):
"""use to tell that a callable has been moved to a new module.
@@ -128,3 +102,78 @@ class DeprecationWrapper(object):
else:
warn(self._msg, DeprecationWarning, stacklevel=2)
setattr(self._proxied, attr, value)
+
+
+class DeprecationManager(object):
+ """Manage the deprecation message handling. Messages are dropped for
+ versions more recent than the 'compatible' version. Example::
+
+ deprecator = deprecation.DeprecationManager("module_name")
+ deprecator.compatibility('1.3')
+
+ deprecator.warn('1.2', "message.")
+
+ @deprecator.deprecated('1.2', 'Message')
+ def any_func():
+ pass
+
+ class AnyClass(object):
+ __metaclass__ = deprecator.class_deprecated('1.2')
+ """
+ def __init__(self, module_name=None):
+ """
+ """
+ self.module_name = module_name
+ self.compatible_version = None
+
+ def compatibility(self, compatible_version):
+ """Set the compatible version.
+ """
+ self.compatible_version = Version(compatible_version)
+
+ def deprecated(self, version=None, reason=None, stacklevel=2, name=None, doc=None):
+ """Display a deprecation message only if the version is older than the
+ compatible version.
+ """
+ def decorator(func):
+ message = reason or 'The function "%s" is deprecated'
+ if '%s' in message:
+ message %= func.func_name
+ def wrapped(*args, **kwargs):
+ self.warn(version, message, stacklevel)
+ return func(*args, **kwargs)
+ return wrapped
+ return decorator
+
+ def class_deprecated(self, version=None):
+ class metaclass(type):
+ """metaclass to print a warning on instantiation of a deprecated class"""
+
+ def __call__(cls, *args, **kwargs):
+ msg = getattr(cls, "__deprecation_warning__",
+ "%(cls)s is deprecated") % {'cls': cls.__name__}
+ self.warn(version, msg)
+ return type.__call__(cls, *args, **kwargs)
+ return metaclass
+
+ def warn(self, version=None, reason="", stacklevel=2):
+ """Display a deprecation message only if the version is older than the
+ compatible version.
+ """
+ if (self.compatible_version is None
+ or version is None
+ or Version(version) < self.compatible_version):
+ if self.module_name and version:
+ reason = '[%s %s] %s' % (self.module_name, version, reason)
+ elif self.module_name:
+ reason = '[%s] %s' % (self.module_name, reason)
+ elif version:
+ reason = '[%s] %s' % (version, reason)
+ warn(reason, DeprecationWarning, stacklevel=stacklevel)
+
+_defaultdeprecator = DeprecationManager()
+
+def deprecated(reason=None, stacklevel=2, name=None, doc=None):
+ return _defaultdeprecator.deprecated(None, reason, stacklevel, name, doc)
+
+class_deprecated = _defaultdeprecator.class_deprecated()
diff --git a/test/unittest_deprecation.py b/test/unittest_deprecation.py
index 7596317..ad268e8 100644
--- a/test/unittest_deprecation.py
+++ b/test/unittest_deprecation.py
@@ -78,5 +78,66 @@ class RawInputTC(TestCase):
self.assertEqual(self.messages,
['object moving_target has been moved to module data.deprecation'])
+ def test_deprecated_manager(self):
+ deprecator = deprecation.DeprecationManager("module_name")
+ deprecator.compatibility('1.3')
+ # This warn should be printed.
+ deprecator.warn('1.1', "Major deprecation message.", 1)
+ deprecator.warn('1.1')
+
+ @deprecator.deprecated('1.2', 'Major deprecation message.')
+ def any_func():
+ pass
+ any_func()
+
+ @deprecator.deprecated('1.2')
+ def other_func():
+ pass
+ other_func()
+
+ self.assertListEqual(self.messages,
+ ['[module_name 1.1] Major deprecation message.',
+ '[module_name 1.1] ',
+ '[module_name 1.2] Major deprecation message.',
+ '[module_name 1.2] The function "other_func" is deprecated'])
+
+ def test_class_deprecated_manager(self):
+ deprecator = deprecation.DeprecationManager("module_name")
+ deprecator.compatibility('1.3')
+ class AnyClass:
+ __metaclass__ = deprecator.class_deprecated('1.2')
+ AnyClass()
+ self.assertEqual(self.messages,
+ ['[module_name 1.2] AnyClass is deprecated'])
+
+
+ def test_deprecated_manager_noprint(self):
+ deprecator = deprecation.DeprecationManager("module_name")
+ deprecator.compatibility('1.3')
+ # This warn should not be printed.
+ deprecator.warn('1.3', "Minor deprecation message.", 1)
+
+ @deprecator.deprecated('1.3', 'Minor deprecation message.')
+ def any_func():
+ pass
+ any_func()
+
+ @deprecator.deprecated('1.20')
+ def other_func():
+ pass
+ other_func()
+
+ @deprecator.deprecated('1.4')
+ def other_func():
+ pass
+ other_func()
+
+ class AnyClass(object):
+ __metaclass__ = deprecator.class_deprecated((1,5))
+ AnyClass()
+
+ self.assertFalse(self.messages)
+
+
if __name__ == '__main__':
unittest_main()