1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 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 92 93 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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
|
.. _ATTR:
Overview
########
The :mod:`pyTooling.Attributes` package offers the base implementation of `.NET-like attributes <https://learn.microsoft.com/en-us/dotnet/csharp/advanced-topics/reflection-and-attributes/>`__
realized with :term:`Python decorators <decorator>`. The annotated and declarative data is stored as instances of
:class:`~pyTooling.Attributes.Attribute` classes in an additional ``__pyattr__`` field per class, method or function.
The annotation syntax allows users to attach any structured data to classes, methods or functions. In many cases, a
user will derive a custom attribute from :class:`~pyTooling.Attributes.Attribute` and override the ``__init__`` method,
so user-defined parameters can be accepted when the attribute is constructed.
Later, classes, methods or functions can be searched for by querying the attribute class for attribute instance usage
locations (see 'Function Attributes' example). Another option for class and method attributes is defining a new classes
using pyTooling’s :ref:`META/ExtendedType` meta-class. Here the class itself offers helper methods for discovering
annotated methods (see 'Method Attributes' example). While all *user-defined* (and *pre-defined*) attributes offer a
powerful API derived from :class:`~pyTooling.Attributes.Attribute` class, the full potential can only be experienced
when using class declarations constructed by the :class:`pyTooling.MetaClass.ExtendedType` meta-class.
Attributes can create a complex class hierarchy. This helps in finding and filtering for annotated data.
.. _ATTR/Goals:
Design Goals
************
The main design goals are:
* Allow meta-data annotation to Python language entities (class, method, function) as declarative syntax.
* Find applied attributes based on attribute type (methods on the attribute).
* Find applied attributes in a scope (find on class and on class' methods).
* Allow building a hierarchy of attribute classes.
* Filter attributes based on their class hierarchy.
* Reduce overhead to class creation time (do not impact object creation time).
.. _ATTR/Example:
Example
*******
.. grid:: 2
.. grid-item:: **Function Attributes**
:columns: 6
.. code-block:: Python
from pyTooling.Attributes import Attribute
class Command(Attribute):
def __init__(self, cmd: str, help: str = ""):
pass
class Flag(Attribute):
def __init__(self, param: str, short: str = None, long: str = None, help: str = ""):
pass
@Command(cmd="version", help="Print version information.")
@Flag(param="verbose", short="-v", long="--verbose", help="Default handler.")
def Handler(self, args):
pass
for function in Command.GetFunctions():
pass
.. grid-item:: **Method Attributes**
:columns: 6
.. code-block:: Python
from pyTooling.Attributes import Attribute
from pyTooling.MetaClasses import ExtendedType
class TestCase(Attribute):
def __init__(self, name: str):
pass
class Program(metaclass=ExtendedType):
@TestCase(name="Handler routine")
def Handler(self, args):
pass
prog = Program()
for method, attributes in prog.GetMethodsWithAttributes(predicate=TestCase):
pass
.. _ATTR/UseCases:
Use Cases
*********
In general all classes, methods and functions can be annotated with additional meta-data. It depends on the application,
framework or library to decide if annotations should be applied imperatively as regular code or declaratively as
attributes via Python decorators.
With this in mind, the following use-cases and ideas can be derived:
.. rubric:: Derived Use Cases:
* Describe a command line argument parser (like ArgParse) in a declarative form. |br|
See :ref:`pyTooling.Attributes.ArgParse Package and Examples <ATTR/ArgParse>`
* Mark nested classes, so later when the outer class gets instantiated, these nested classes are indexed or
automatically registered. |br|
See :ref:`CLIAbstraction <CLIABS>` |rarr| :ref:`CLIABS/CLIArgument`
* Mark methods in a class as test cases and classes as test suites, so test cases and suites are not identified based on
a magic method name. |br|
*Investigation ongoing / planned feature.*
* Mark class members as public or private and control visibility in auto-generated documentation. |br|
See `SphinxExtensions <https://sphinxextensions.readthedocs.io/en/latest/>`_ |rarr| DocumentMemberAttribute
.. _ATTR/Predefined:
Predefined Attributes
*********************
pyTooling's attributes offers the :class:`~pyTooling.Attributes.Attribute` base-class to derive futher attribute classes.
A derive :class:`~pyTooling.Attributes.SimpleAttribute` is also offered to accept any ``*args, **kwargs`` parameters for
annotation of semi-structured meta-data.
It's recommended to derive an own hierarchy of attribute classes with well-defined parameter lists for the ``__init__``
method. Meta-data stored in attribute should be made accessible via (readonly) properties.
In addition, an :mod:`pyTooling.Attributes.ArgParse` subpackage is provided, which allows users to describe complex
argparse command line argument parser structures in a declarative way.
.. rubric:: Partial inheritance diagram:
.. inheritance-diagram:: pyTooling.Attributes.SimpleAttribute pyTooling.Attributes.ArgParse.DefaultHandler pyTooling.Attributes.ArgParse.CommandHandler pyTooling.Attributes.ArgParse.CommandLineArgument
:parts: 1
.. _ATTR/Predefined/Attribute:
Attribute
=========
The :class:`~pyTooling.Attributes.Attribute` class implements half of the attribute's feature set. It implements the
instantiation and storage of attribute internal values as well as the search and lookup methods to find attributes. The
second half is implemented in the :class:`~pyTooling.MetaClasses.ExtendedType` meta-class. It adds attribute specific
methods to each class created by that meta-class.
Any attribute is applied on a class, method or function using Python's decorator syntax, because every attribute is
actually a decorator. In addition, such a decorator accepts parameters, which are used to instantiate an attribute class
and handover the parameters to that attribute instance.
Every instance of an attribute is registered at its class in a class variable. Further more, these instances are
distinguished if they are applied to a class, method or function.
* :meth:`~pyTooling.Attributes.Attribute.GetClasses` returns a generator to iterate all classes, this attribute was
applied to.
* :meth:`~pyTooling.Attributes.Attribute.GetMethods` returns a generator to iterate all methods, this attribute was
applied to.
* :meth:`~pyTooling.Attributes.Attribute.GetFunctions` returns a generator to iterate all functions, this attribute was
applied to.
* :meth:`~pyTooling.Attributes.Attribute.GetAttributes` returns a tuple of applied attributes to the given method.
.. grid:: 3
.. grid-item:: **Apply a class attribute**
:columns: 4
.. code-block:: Python
from pyTooling.Attributes import Attribute
@Attribute()
class MyClass:
pass
.. grid-item:: **Apply a method attribute**
:columns: 4
.. code-block:: Python
from pyTooling.Attributes import Attribute
class MyClass:
@Attribute()
def MyMethod(self):
pass
.. grid-item:: **Apply a function attribute**
:columns: 4
.. code-block:: Python
from pyTooling.Attributes import Attribute
@Attribute()
def MyFunction(param):
pass
.. grid:: 3
.. grid-item:: **Find attribute usages of class attributes**
:columns: 4
.. code-block:: Python
from pyTooling.Attributes import Attribute
for cls in Attribute.GetClasses():
pass
.. grid-item:: **Find attribute usages of method attributes**
:columns: 4
.. code-block:: Python
from pyTooling.Attributes import Attribute
for method in Attribute.GetMethods():
pass
.. grid-item:: **Find attribute usages of function attributes**
:columns: 4
.. code-block:: Python
from pyTooling.Attributes import Attribute
for function in Attribute.GetFunctions():
pass
.. rubric:: Condensed definition of class :class:`~pyTooling.Attributes.Attribute`
.. code-block:: Python
class Attribute:
@classmethod
def GetFunctions(cls, scope: Type = None, predicate: TAttributeFilter = None) -> Generator[TAttr, None, None]:
...
@classmethod
def GetClasses(cls, scope: Type = None, predicate: TAttributeFilter = None) -> Generator[TAttr, None, None]:
...
@classmethod
def GetMethods(cls, scope: Type = None, predicate: TAttributeFilter = None) -> Generator[TAttr, None, None]:
...
@classmethod
def GetAttributes(cls, method: MethodType, includeSubClasses: bool = True) -> Tuple['Attribute', ...]:
...
.. rubric:: Planned Features
* Allow attributes to be applied only once per kind.
* Allow limitation of attributes to classes, methods or functions, so an attribute meant for methods can't be applied to
a function or class.
* Allow filtering attribute with a predicate function, so values of an attribute instance can be checked too.
.. _ATTR/Predefined/SimpleAttribute:
SimpleAttribute
===============
The :class:`~pyTooling.Attributes.SimpleAttribute` class accepts any positional and any keyword arguments as data. That
data is made available via :attr:`~pyTooling.Attributes.SimpleAttribute.Args` and :attr:`~pyTooling.Attributes.SimpleAttribute.KwArgs`
properties.
.. code-block:: Python
from pyTooling.Attributes import SimpleAttribute
@SimpleAttribute(kind="testsuite")
class MyClass:
@SimpleAttribute(kind="testcase", id=1, description="Test and operator")
def test_and(self):
...
@SimpleAttribute(kind="testcase", id=2, description="Test xor operator")
def test_xor(self):
...
**Condensed definition of class** :class:`~pyTooling.Attributes.SimpleAttribute`:
.. code-block:: python
class SimpleAttribute(Attribute):
def __init__(self, *args, **kwargs) -> None:
...
@readonly
def Args(self) -> Tuple[Any, ...]:
...
@readonly
def KwArgs(self) -> Dict[str, Any]:
...
.. _ATTR/UserDefined:
User-Defined Attributes
***********************
It's recommended to derive user-defined attributes from :class:`~pyTooling.Attributes.Attribute`, so the ``__init__``
method can be overriden to accept a well defined parameter list including type hints.
The example defines an ``Annotation`` attribute, which accepts a single string parameter. When the attribute is applied,
the parameter is stored in an instance. The inner field is then accessible via readonly ``Annotation`` property.
.. grid:: 2
.. grid-item:: **Find attribute usages of class attributes**
:columns: 6
.. code-block:: Python
class Application(metaclass=ExtendedType):
@Annotation("Some annotation data")
def AnnotatedMethod(self):
pass
for method in Annotation.GetMethods():
pass
.. grid-item:: **Find attribute usages of class attributes**
:columns: 6
.. code-block:: python
from pyTooling.Attributes import Attribute
class Annotation(Attribute):
_annotation: str
def __init__(self, annotation: str):
self._annotation = annotation
@readonly
def Annotation(self) -> str:
return self._annotation
.. _ATTR/Searching:
Searching Attributes
********************
.. todo:: Attributes:: Searching Attributes
.. _ATTR/Filtering:
Filtering Attributes
********************
Methods :meth:`~pyTooling.Attributes.Attribute.GetClasses`, :meth:`~pyTooling.Attributes.Attribute.GetMethods`
:meth:`~pyTooling.Attributes.Attribute.GetFunctions`, :meth:`~pyTooling.Attributes.Attribute.GetAttributes` accept an
optional ``predicate`` parameter, which needs to be a subclass of :class:`~pyTooling.Attributes.Attribute`.
.. todo:: Attributes:: Filtering Attributes
.. _ATTR/Grouping:
Grouping Attributes
*******************
.. todo:: Attributes:: Grouping Attributes
.. code-block:: Python
from pyTooling.Attributes import Attribute, SimpleAttribute
class GroupAttribute(Attribute):
_id: str
def __init__(self, id: str):
self._id = id
def __call__(self, entity: Entity) -> Entity:
self._AppendAttribute(entity, SimpleAttribute(3, 4, id=self._id, name="attr1"))
self._AppendAttribute(entity, SimpleAttribute(5, 6, id=self._id, name="attr2"))
return entity
class Grouped(TestCase):
def test_Group_Simple(self) -> None:
@SimpleAttribute(1, 2, id="my", name="Class1")
@GroupAttribute("grp")
class MyClass1:
pass
.. _ATTR/Details:
Implementation Details
**********************
.. todo:: Attributes:: Implementation details
:data:`~pyTooling.Attributes.ATTRIBUTES_MEMBER_NAME`
The annotated data is stored in an additional ``__dict__`` entry for each
annotated method. By default the entry is called ``__pyattr__``. Multiple
attributes can be applied to the same method.
.. _ATTR/Consumers:
Consumers
*********
This abstraction layer is used by:
* ✅ Declarative definition of ArgParse parser rules. |br|
:ref:`pyTooling.Attributes.ArgParse <ATTR/ArgParse>`
|