API Reference - Extensions
This section provides more details on the extension files and how to define the patches in there.
This module contains the utilities to extend WSMOD with new features.
The register_node_patch
decorator is used to register a function that will be used
instead of a method or attribute of a node. The apply_patches
function applies all
registered patches to a model.
Example of patching a method:
empty_distributed
will be called instead of pull_distributed
of "my_node":
>>> from wsimod.extensions import register_node_patch, apply_patches
>>> @register_node_patch("my_node", "pull_distributed")
>>> def empty_distributed(self, vqip):
>>> return {}
Attributes, methods of the node, and sub-attributes can be patched. Also, an item of a list or a dictionary can be patched if the item argument is provided.
Example of patching an attribute:
10
will be assigned to t
:
>>> @register_node_patch("my_node", "t", is_attr=True)
>>> def patch_t(node):
>>> return 10
Example of patching an attribute item:
patch_default_pull_set_handler
will be assigned to
pull_set_handler["default"]
:
>>> @register_node_patch("my_node", "pull_set_handler", item="default")
>>> def patch_default_pull_set_handler(self, vqip):
>>> return {}
If patching a method of an attribute, the is_attr
argument should be set to True
and
the target should include the attribute name and the method name, all separated by
periods, eg. attribute_name.method_name
.
It should be noted that the patched function should have the same signature as the
original method or attribute, and the return type should be the same as well, otherwise
there will be a runtime error. In particular, the first argument of the patched function
should be the node object itself, which will typically be named self
.
The overridden method or attribute can be accessed within the patched function using the
_patched_{method_name}
attribute of the object, eg. self._patched_pull_distributed
.
The exception to this is when patching an item, in which case the original item is no
available to be used within the overriding function.
Finally, the apply_patches
is called within the Model.load
method and will apply all
patches in the order they were registered. This means that users need to be careful with
the order of the patches in their extensions files, as they may have interdependencies.
TODO: Update documentation on extensions files.
apply_patches(model)
Apply all registered patches to the model.
TODO: Validate signature of the patched methods and type of patched attributes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model
|
Model
|
The model to apply the patches to. |
required |
Source code in wsimod\extensions.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
|
register_node_patch(node_name, target, item=None, is_attr=False)
Register a function to patch a node method or any of its attributes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
node_name
|
str
|
The name of the node to patch. |
required |
target
|
str
|
The target of the object to patch in the form of a string with the
attribute, sub-attribute, etc. and finally method (or attribute) to replace,
sepparated with period, eg. |
required |
item
|
Hashable
|
Typically a string or an integer indicating the item to replace in the selected attribue, which should be a list or a dictionary. |
None
|
is_attr
|
bool
|
If True, the decorated function will be called when applying the patch and the result assigned to the target, instead of assigning the function itself. In this case, the only argument passed to the function is the node object. |
False
|
Source code in wsimod\extensions.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
|