Source code for spinn_utilities.abstract_base
# Copyright (c) 2017 The University of Manchester
#
# 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
#
# https://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.
"""
A trimmed down version of standard Python Abstract Base classes.
"""
from typing import Any, Dict, Type, TypeVar, Tuple
#: :meta private:
T = TypeVar("T")
[docs]
def abstractmethod(funcobj: T) -> T:
"""
A decorator indicating abstract methods.
Requires that the metaclass is :py:class:`AbstractBase` or derived from
it. A class that has a metaclass derived from :py:class:`AbstractBase`
cannot be instantiated unless all of its abstract methods are overridden.
The abstract methods can be called using any of the normal
'super' call mechanisms.
Usage::
class C(object, metaclass=AbstractBase):
@abstractmethod
def my_abstract_method(self, ...):
...
"""
funcobj.__isabstractmethod__ = True # type: ignore[attr-defined]
return funcobj
[docs]
class AbstractBase(type):
"""
Metaclass for defining Abstract Base Classes (AbstractBases).
Use this metaclass to create an AbstractBase. An AbstractBase can be
subclassed directly, and then acts as a mix-in class.
This is a trimmed down version of ABC.
Unlike ABC you can not register unrelated concrete classes.
Usage::
class C(object, metaclass=AbstractBase):
@abstractmethod
def my_abstract_method(self, ...):
...
"""
def __new__(mcs, name: str, bases: Tuple[Type, ...],
namespace: Dict[str, Any], **kwargs: Any) -> "AbstractBase":
# Actually make the class
abs_cls = super().__new__(mcs, name, bases, namespace, **kwargs)
# Get set of abstract methods from namespace
abstracts = set(nm for nm, val in namespace.items()
if getattr(val, "__isabstractmethod__", False))
# Augment with abstract methods from superclasses
for base in bases:
for nm in getattr(base, "__abstractmethods__", set()):
val = getattr(abs_cls, nm, None)
if getattr(val, "__isabstractmethod__", False):
abstracts.add(nm)
# Lock down the set
abs_cls.__abstractmethods__ = frozenset( # type: ignore[attr-defined]
abstracts)
return abs_cls