decorules is a tiny library that seeks to enforce class structure and instance behaviour on classes and their derived classes through decorators at class declaration time
Project description
decorules
Introduction
decorules is a tiny python library that seeks to enforce rules on class structure and instance behavior for classes and class hierarchies through decorators at the point of class declaration.
The primary objective is to help library developers enforce behavior on derived classes. Secondary benefits are defensive measures, for instance to quickly have an overview of any structural rules enforced on the class.
The rules are specified through decorators on the class declaration and using the metaclass HasEnforcedRules from the library. Enforcement of the rules is done by throwing exceptions (which can be developer specified) when a predicate function fails on the class or an instance (depending on the decorator used).
By default, rules enforced on instances are enforced on creation of an instance only. It is possible to enforce these rules on any member function call by using a decorator on the method.
Installation
decorules was built using python 3.10
. It is available as a package on pypi and can be installed through pip:
pip install decorules
Should you require an installation of pip, follow the instructions on the pip website.
Examples
A worked out example of a class hierachry can be found under src/example
, with library_class.py
and client_class.py
representing the library and client respectively.
Further examples can be found under the test directory.
The aim here is to simply walk through some simple examples to demonstrate usage.
Firstly, suppose we wish to enforce that a (base) class or an instance of the class must have an attribute of a certain type. Here are the basic steps:
- Create a function that takes a class or an instance and checks whether an attribute exists and is of the correct type. In the example, this function is
key_type_enforcer
def key_type_enforcer(instance_or_type,
enforced_type: type,
enforced_key: str,
attrs: dict = None):
member_object = getattr(instance_or_type, enforced_key, None)
if member_object is None:
if attrs is not None:
member_object = attrs.get(enforced_key, None)
if member_object is None:
return False
else:
return issubclass(type(member_object), enforced_type)
pass
- For restrictions on instances, the function must be predicate. This means the function takes one argument (the instance) and returns a boolean. Functions can be turned into predicates using different methods, in this example we will use
partial
from thefunctools
package. For restrictions on classes that do not check the values of attributes predicate functions can be provided. If the rule on the class does make use of such a value (e.g., check if a static float is positive), the function must take 2 arguments and return a boolean. The second argument should always default toNone
[^1]. - Use the decorator
raise_if_false_on_class
when enforcing a rule on a class level, orraise_if_false_on_instance
when enforcing upon instantiation. Both decorators take 1 compulsory argument (the function from step 2. which returns a True/False value) and 2 optional arguments, the first is the type of the exception to be raised should the rule not hold[^2] and the second optional argument is a string providing extra information when the exception is raised. - The rules on instances are only applied after the call to
__init__
. We have the option to add theenforces_instance_rules
decorator to any method of the class, thereby enforcing the instance rules after each method call.
In order to guarantee that the class (and its derived classes) implements a function named library_functionality
we would implement:
from decorules import HasEnforcedRules
import types
from functools import partial
@raise_if_false_on_class(partial(key_type_enforcer,
enforced_type=types.FunctionType,
enforced_key='library_functionality'),
AttributeError)
class HasCorrectMethodClass(metaclass=HasEnforcedRules):
def library_functionality(self):
return 1
If in addition, we ensure that an int
member named x
existed after every instantiation:
@raise_if_false_on_instance(partial(key_type_enforcer, enforced_type=int, enforced_key='x'), AttributeError)
@raise_if_false_on_class(partial(key_type_enforcer, enforced_type=types.FunctionType, enforced_key='library_functionality'), AttributeError)
class HasCorrectMethodAndInstanceVarClass(metaclass=HasEnforcedRules):
def __init__(self, value=20):
self.x = value
def library_functionality(self):
return 1
Should the __init__
implementation not set self.x
or remove it using del self.x
, all of the following calls would throw an AttributeError
:
a = HasCorrectMethodAndInstanceVarClass()
b = HasCorrectMethodAndInstanceVarClass(25)
c = HasCorrectMethodAndInstanceVarClass(5)
For forcing the member x
to be larger than 10:
@raise_if_false_on_instance(lambda ins: ins.x > 10, ValueError, "Check x-member>10")
@raise_if_false_on_instance(partial(key_type_enforcer, enforced_type=int, enforced_key='x'), AttributeError)
@raise_if_false_on_class(partial(key_type_enforcer, enforced_type=types.FunctionType, enforced_key='library_functionality'), AttributeError)
class HasCorrectMethodAndInstanceVarCheckClass(metaclass=HasEnforcedRules):
def __init__(self, value=20):
self.x = value
def library_functionality(self):
return 1
Note the third argument in the decorator, this will be prepended to the message of the exception. For the implementation above, only the third line would raise an exception:
a = HasCorrectMethodAndInstanceVarCheckClass()
b = HasCorrectMethodAndInstanceVarCheckClass(25)
c = HasCorrectMethodAndInstanceVarCheckClass(5) # a ValueError is raised
Because the key-type + comparison paradigm is expected to be widely used for classes and instances, decorules provides a utility for this called member_enforcer
[^3]. The previous snippet could have been simplified using:
import operator
from decorules.utils import member_enforcer
@raise_if_false_on_instance(member_enforcer('x',int, 10, operator.gt), ValueError, "Check x-member>10")
@raise_if_false_on_class(member_enforcer('library_functionality', types.FunctionType), AttributeError)
class HasCorrectMethodAndInstanceVarCheckClass(metaclass=HasEnforcedRules):
def __init__(self, value=20):
self.x = value
def library_functionality(self):
return 1
If we wanted to ensure that a static set had a minimum number of instances of each type (e.g., 1 string
, 2 int
and 1 float
):
from collections import Counter
from collections.abc import Iterable
def min_list_type_counter(instance_or_type,
list_name: str,
min_counter: Counter,
attrs: dict = None):
member_object = getattr(instance_or_type, list_name, None)
if member_object is None:
if attrs is not None:
member_object = attrs.get(list_name, None)
if member_object is None:
return False
else:
if isinstance(member_object, Iterable):
return Counter(type(x) for x in member_object) >= min_counter
else:
return False
@raise_if_false_on_class(partial(min_list_type_counter,
list_name='STATIC_SET',
min_counter = Counter({str: 1, int: 2, float:1})),
AttributeError)
class HasClassLevelMemberTypeCheckClass(metaclass=HasEnforcedRules):
STATIC_SET = ("Test", 10, 40, 50, 45.5, 60.0, '3', 'i', BaseException())
If we wanted to raise an exception as soon as a member value reaches the value 10 during the course of the process:
@raise_if_false_on_instance(lambda x: x.y<10, ValueError)
class HasMethodCheckedAndFailsAfterCall(metaclass=HasEnforcedRules):
def __init__(self, value=20):
self.y = value
@enforces_instance_rules
def add(self, value=0):
self.y += value
a = HasMethodCheckedAndFailsAfterCall(0)
a.add(1)
a.add(1)
a.add(1)
a.add(10) # will raise a ValueError
When using multiple decorators in general, one must be aware that the order of decorator matters with decorator closest to the function/class applied first. With multiple decorator we must also avoid clashes between decorators.
Though not intended for this use, the enforced rules (through predicate functions) are available through the EnforcedFunctions
static class and can thus be retrieved, applied and transferred at any point in the code.
[^1]: The second argument will be used to examine class attributes when required. Note that by always providing a second argument and defaulting it to None
(as was done in key_type_enforcer
), the function can be used both on instances and class declarations.
[^2]: Note that this is an exception type and not an instance. For rules on classes this defaults to AttributeError
, for rules of instantiation this defaults to ValueError
. Other exceptions or classes (including user defined ones) can be supplied, provided instances can be constructed from a string
[^3]: member_enforcer
has 2 compulsory arguments: the enforced_key
(a string with the attribute name) and the enforced_type
(the type of the attribute) and 2 optional arguments: the comparison_value
and the operator_used
, the latter defaults to the boolean equality operator and is only applied if a value is provided.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file decorules-0.0.8.tar.gz
.
File metadata
- Download URL: decorules-0.0.8.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79e7d1ea7719c54ed6dbbe618df49c385d025f7fa4d1d3f0f01494eba44e8345 |
|
MD5 | 66f5bebe5eb269cafd76065089fd1e8e |
|
BLAKE2b-256 | 43605532de5d9051a8b109e6b0c9e1d2153e10299e7b68793b2a6394d0c89789 |
File details
Details for the file decorules-0.0.8-py3-none-any.whl
.
File metadata
- Download URL: decorules-0.0.8-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f91ac19632d060170a627e35dd527e19b76ed186a3f87f6463c2d3d5ec7226d |
|
MD5 | ebc13a2c98fea6af33c56dbbc249cf77 |
|
BLAKE2b-256 | 7d7fa5f19c623abcb9be48bbe85801e05da66669027a415ca010a70b45ae0c00 |