2014-07-07 17:48:35 +03:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
2015-09-01 19:12:01 -04:00
|
|
|
import six
|
|
|
|
|
2013-09-02 23:42:41 -04:00
|
|
|
|
|
|
|
class HookableMixin(object):
|
|
|
|
"""Mixin so classes can register and run hooks."""
|
|
|
|
_hooks_map = {}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def add_hook(cls, hook_type, hook_func):
|
|
|
|
if hook_type not in cls._hooks_map:
|
|
|
|
cls._hooks_map[hook_type] = []
|
|
|
|
|
|
|
|
cls._hooks_map[hook_type].append(hook_func)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def run_hooks(cls, hook_type, *args, **kwargs):
|
|
|
|
hook_funcs = cls._hooks_map.get(hook_type) or []
|
|
|
|
for hook_func in hook_funcs:
|
|
|
|
hook_func(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
def safe_issubclass(*args):
|
|
|
|
"""Like issubclass, but will just return False if not a class."""
|
|
|
|
|
|
|
|
try:
|
|
|
|
if issubclass(*args):
|
|
|
|
return True
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return False
|
2015-09-01 19:12:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
def get_function_name(func):
|
|
|
|
if six.PY2:
|
|
|
|
if hasattr(func, "im_class"):
|
|
|
|
return "%s.%s" % (func.im_class, func.__name__)
|
|
|
|
else:
|
|
|
|
return "%s.%s" % (func.__module__, func.__name__)
|
|
|
|
else:
|
|
|
|
return "%s.%s" % (func.__module__, func.__qualname__)
|