| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | """Module for deprecation abstractions.""" |
| | from __future__ import absolute_import |
| |
|
| | import logging |
| | import warnings |
| |
|
| | logger = logging.getLogger(__name__) |
| |
|
| | V2_URL = "https://sagemaker.readthedocs.io/en/stable/v2.html" |
| |
|
| |
|
| | def _warn(msg, sdk_version=None): |
| | """Generic warning raiser referencing V2 |
| | |
| | Args: |
| | phrase: The phrase to include in the warning. |
| | sdk_version: the sdk version of removal of support. |
| | """ |
| | _sdk_version = sdk_version if sdk_version is not None else "2" |
| | full_msg = f"{msg} in sagemaker>={_sdk_version}.\nSee: {V2_URL} for details." |
| | warnings.warn(full_msg, DeprecationWarning, stacklevel=2) |
| | logger.warning(full_msg) |
| |
|
| |
|
| | def removed_warning(phrase, sdk_version=None): |
| | """Raise a warning for a no-op in sagemaker>=2 |
| | |
| | Args: |
| | phrase: the prefix phrase of the warning message. |
| | sdk_version: the sdk version of removal of support. |
| | """ |
| | _warn(f"{phrase} is a no-op", sdk_version) |
| |
|
| |
|
| | def renamed_warning(phrase): |
| | """Raise a warning for a rename in sagemaker>=2 |
| | |
| | Args: |
| | phrase: the prefix phrase of the warning message. |
| | """ |
| | _warn(f"{phrase} has been renamed") |
| |
|
| |
|
| | def deprecation_warn(name, date, msg=None): |
| | """Raise a warning for soon to be deprecated feature in sagemaker>=2 |
| | |
| | Args: |
| | name (str): Name of the feature |
| | date (str): the date when the feature will be deprecated |
| | msg (str): the prefix phrase of the warning message. |
| | """ |
| | _warn(f"{name} will be deprecated on {date}.{msg}") |
| |
|
| |
|
| | def deprecation_warning(date, msg=None): |
| | """Decorator for raising deprecation warning for a feature in sagemaker>=2 |
| | |
| | Args: |
| | date (str): the date when the feature will be deprecated |
| | msg (str): the prefix phrase of the warning message. |
| | |
| | Usage: |
| | @deprecation_warning(msg="message", date="date") |
| | def sample_function(): |
| | print("xxxx....") |
| | |
| | @deprecation_warning(msg="message", date="date") |
| | class SampleClass(): |
| | def __init__(self): |
| | print("xxxx....") |
| | |
| | """ |
| |
|
| | def deprecate(obj): |
| | def wrapper(*args, **kwargs): |
| | deprecation_warn(obj.__name__, date, msg) |
| | return obj(*args, **kwargs) |
| |
|
| | return wrapper |
| |
|
| | return deprecate |
| |
|
| |
|
| | def renamed_kwargs(old_name, new_name, value, kwargs): |
| | """Checks if the deprecated argument is in kwargs |
| | |
| | Raises warning, if present. |
| | |
| | Args: |
| | old_name: name of deprecated argument |
| | new_name: name of the new argument |
| | value: value associated with new name, if supplied |
| | kwargs: keyword arguments dict |
| | |
| | Returns: |
| | value of the keyword argument, if present |
| | """ |
| | if old_name in kwargs: |
| | value = kwargs.get(old_name, value) |
| | kwargs[new_name] = value |
| | renamed_warning(old_name) |
| | return value |
| |
|
| |
|
| | def removed_arg(name, arg): |
| | """Checks if the deprecated argument is populated. |
| | |
| | Raises warning, if not None. |
| | |
| | Args: |
| | name: name of deprecated argument |
| | arg: the argument to check |
| | """ |
| | if arg is not None: |
| | removed_warning(name) |
| |
|
| |
|
| | def removed_kwargs(name, kwargs): |
| | """Checks if the deprecated argument is in kwargs |
| | |
| | Raises warning, if present. |
| | |
| | Args: |
| | name: name of deprecated argument |
| | kwargs: keyword arguments dict |
| | """ |
| | if name in kwargs: |
| | removed_warning(name) |
| |
|
| |
|
| | def removed_function(name): |
| | """A no-op deprecated function factory.""" |
| |
|
| | def func(*args, **kwargs): |
| | removed_warning(f"The function {name}") |
| |
|
| | return func |
| |
|
| |
|
| | def deprecated(sdk_version=None): |
| | """Decorator for raising deprecated warning for a feature in sagemaker>=2 |
| | |
| | Args: |
| | sdk_version (str): the sdk version of removal of support. |
| | |
| | Usage: |
| | @deprecated() |
| | def sample_function(): |
| | print("xxxx....") |
| | |
| | @deprecated(sdk_version="2.66") |
| | class SampleClass(): |
| | def __init__(self): |
| | print("xxxx....") |
| | |
| | """ |
| |
|
| | def deprecate(obj): |
| | def wrapper(*args, **kwargs): |
| | removed_warning(obj.__name__, sdk_version) |
| | return obj(*args, **kwargs) |
| |
|
| | return wrapper |
| |
|
| | return deprecate |
| |
|
| |
|
| | def deprecated_function(func, name): |
| | """Wrap a function with a deprecation warning. |
| | |
| | Args: |
| | func: Function to wrap in a deprecation warning. |
| | name: The name that has been deprecated. |
| | |
| | Returns: |
| | The modified function |
| | """ |
| |
|
| | def deprecate(*args, **kwargs): |
| | renamed_warning(f"The {name}") |
| | return func(*args, **kwargs) |
| |
|
| | return deprecate |
| |
|
| |
|
| | def deprecated_serialize(instance, name): |
| | """Modifies a serializer instance serialize method. |
| | |
| | Args: |
| | instance: Instance to modify serialize method. |
| | name: The name that has been deprecated. |
| | |
| | Returns: |
| | The modified instance |
| | """ |
| | instance.serialize = deprecated_function(instance.serialize, name) |
| | return instance |
| |
|
| |
|
| | def deprecated_deserialize(instance, name): |
| | """Modifies a deserializer instance deserialize method. |
| | |
| | Args: |
| | instance: Instance to modify deserialize method. |
| | name: The name that has been deprecated. |
| | |
| | Returns: |
| | The modified instance |
| | """ |
| | instance.deserialize = deprecated_function(instance.deserialize, name) |
| | return instance |
| |
|
| |
|
| | def deprecated_class(cls, name): |
| | """Returns a class based on super class with a deprecation warning. |
| | |
| | Args: |
| | cls: The class to derive with a deprecation warning on __init__ |
| | name: The name of the class. |
| | |
| | Returns: |
| | The modified class. |
| | """ |
| |
|
| | class DeprecatedClass(cls): |
| | """Provides a warning for the class name.""" |
| |
|
| | def __init__(self, *args, **kwargs): |
| | """Provides a warning for the class name.""" |
| | renamed_warning(f"The class {name}") |
| | super(DeprecatedClass, self).__init__(*args, **kwargs) |
| |
|
| | return DeprecatedClass |
| |
|