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 decorator library with two objectives:
A. To enforce rules on class structure and instance behavior for classes and class hierarchies through decorators at the point of class declaration. Useful for library developers.
B. To automatically trigger functionality using boolean conditions on an instance of a class[^1]
The decorators employed are:
raise_if_false_on_class
will raise an exception should class structure and/or attributes not adhere to user defined rulesraise_if_false_on_instance
will raise an exception should class instances not adhere to user defined rules[^2]run_if_false_on_instance
will run user supplied functionality should class instances not adhere to user defined criteria[^2]run_instance_rules
will apply the rules from 2. on any member function using this decoratorrun_instance_actions
will apply the actions from 3. on any member function using this decorator
All rules and actions are specified through the decorators on the class declaration and using the metaclass HasRulesActions from the library.
Enforcement of the rules is done by throwing exceptions (which can be developer specified) when a predicate function fails.
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 several types of class hierarchies can be found under src/example
, with library_class.py
and client_class.py
representing the library and client respectively.
Further examples, including interaction with other decorators[^3], can be found in the source file under the tests
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
In order to guarantee that the class (and its derived classes) implements a function named library_functionality
we would implement:
from decorules.has_rules_actions import HasRulesActions
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=HasRulesActions):
def library_functionality(self):
return 1
- 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
[^4]. - 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[^5] 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 therun_instance_rules
decorator to any method of the class, thereby enforcing the instance rules after each method call.
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=HasRulesActions):
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=HasRulesActions):
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
[^6]. 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=HasRulesActions):
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=HasRulesActions):
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=HasRulesActions):
def __init__(self, value=20):
self.y = value
@run_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
To illustrate the triggering of functionality we create the following contrived example: a ProducerClass
manages an integer resource that has be >=0 and <100. Every time a value larger than or equal to 20 is produced, it passes the value to an instance of LargeNumberProcessor
. If the latter is passed a value larger than or equal to 50 it raises an exception. If the average of unprocessed values in its list is larger than 30, all of the values to process will get halved.
def is_m_positive_and_lt_100(instance):
return (instance.m >= 0) & (instance.m < 100)
def is_m_lt_20(instance):
return instance.m < 20
def is_last_entry_lt_50(instance):
if instance.to_process_list:
return instance.to_process_list[-1] < 50
else:
return True # still empty list
def is_mean_entry_lt_30(instance):
if instance.to_process_list:
return sum(instance.to_process_list) / len(instance.to_process_list) < 30.0
else:
return True # still empty list
def halve_list(instance):
if instance.to_process_list:
instance.to_process_list = [int(x*0.5) for x in instance.to_process_list]
@run_if_false_on_instance(is_mean_entry_lt_30, halve_list)
@raise_if_false_on_instance(is_last_entry_lt_50, ValueError, "Refuse to accept value >50")
class LargeNumberProcessor(metaclass=HasRulesActions):
def __init__(self):
self.to_process_list = []
@run_instance_actions
@run_instance_rules
def append_number(self, value: int):
self.to_process_list.append(value)
@run_instance_actions
@run_instance_rules
def process_front_number(self):
if self.to_process_list:
return self.to_process_list.pop(0)
else:
return None
NUMBER_PROCESSOR = LargeNumberProcessor()
def add_to_LNP(instance):
NUMBER_PROCESSOR.append_number(instance.m)
@run_if_false_on_instance(is_m_lt_20, add_to_LNP)
@raise_if_false_on_instance(is_m_positive_and_lt_100, AttributeError)
class ProducerClass(metaclass=HasRulesActions):
def __init__(self, value: int = 0):
self.m = value
@run_instance_actions
@run_instance_rules
def add(self, other: int):
self.m += other
An example run would then be:
k = ProducerClass()
k.add(5)
k.add(5)
k.add(5)
k.add(5)
assert len(NUMBER_PROCESSOR.to_process_list) == 1 # first value of 20 is sent
k.add(5)
assert NUMBER_PROCESSOR.to_process_list[-1] == 25
k.add(-14)
assert NUMBER_PROCESSOR.to_process_list[-1] == 25 # we dropped below 20 so no new value was passed
k.add(11)
NUMBER_PROCESSOR.process_front_number() # 20 is gone from the list
k.add(8)
assert NUMBER_PROCESSOR.to_process_list == [25, 22, 30]
NUMBER_PROCESSOR.process_front_number()
assert NUMBER_PROCESSOR.to_process_list == [22, 30]
NUMBER_PROCESSOR.process_front_number() # because the list average is now [30], its values will get halved
assert NUMBER_PROCESSOR.to_process_list == [15]
k.add(-9) # the managed int goes from 30 to 21
assert NUMBER_PROCESSOR.to_process_list == [15, 21]
k.add(40) # will raise a ValueError as we try to pass 61>=50 to the LargeNumberProcessor
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 functionality itself is up to the user. Possible suggestions could be callback mechanisms, logging, asynchronous tasks, etc.
[^2]: By default, rules and actions on instances are enforced after creation of an instance only. It is possible use these rules and actions after any member function call by using the run_instance_
-style decorator on the method.
[^3]: Here we refer to interactions with the dataclasses
and property
decorators
[^4]: 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.
[^5]: 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
[^6]: 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.9.tar.gz
.
File metadata
- Download URL: decorules-0.0.9.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef9113ea44dcb3b63b15562cbde38a7705302e3c323e7558b42cf856c02ddf5d |
|
MD5 | 19e0fb0751da68dc3a8ef18b82c9eeff |
|
BLAKE2b-256 | 82b5bd22f9597c338f2be7e8739ad436479565bce4b173ac8608df8cb98acb11 |
File details
Details for the file decorules-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: decorules-0.0.9-py3-none-any.whl
- Upload date:
- Size: 14.0 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 | c90af6c5f97738a55d24b26f605e7d840264a550a5a39d551fbdc0e2111ef5b8 |
|
MD5 | 48674b4a214a4b5749b96cb95c528606 |
|
BLAKE2b-256 | b2e04ced4733f0e15117a9bf92af4e7253f4d6e25ec6838e735d883c5f958d8a |