lisa.wlgen.rta.DeletedProperty#
- class lisa.wlgen.rta.DeletedProperty(key)[source]#
Bases:
ContaminatingProperty
Forcefully delete the given property, recursively for all subtrees.
- Parameters:
key (str) – Key of the property to delete.
See also
Note
The property is not actually deleted but just replaced by an instance of this class, which will have specific handling in relevant parts of the code.
Classes
__class__
inheritedMetaclass for properties.
Attributes
Subclasses can override this attribute so that
PropertyBase.from_key()
knows that it can call their_from_key()
method for that key.Properties
Methods
Combine two instances of the same property together.
Alternative constructor that is available with the same signature for all properties.
HASH_COERCE()
inheritedUsed to coerce the values of
self.__dict__
to hashable values.find_cls()
inheritedFind which subclass can handle
key
.
Classes#
- DeletedProperty.__class__#
alias of
PropertyMeta
Attributes#
- DeletedProperty.KEY = None#
Subclasses can override this attribute so that
PropertyBase.from_key()
knows that it can call their_from_key()
method for that key.Note
This class attribute will not be inherited automatically so that each class can be uniquely identified by its key. Subclass that do not override the value explicitly will get
None
.
Properties#
- property DeletedProperty.val[source]#
Value “payload” of the property.
Ideally, it should be a valid value that can be given to
from_key()
, but it’s not mandatory. For complex properties that are not isomorphic to a Python basic type (int, tuple etc.),self
should be returned.
- property DeletedProperty.key#
Inherited property, see
lisa.wlgen.rta.PropertyBase.key
Key of the instance.
Methods#
- DeletedProperty.__and__(other)[source]#
Combine two instances of the same property together.
This is used to combine properties at the various levels of the
RTAPhaseTree
tree, on each path from the root to the leaves. It is guaranteed that the instance closer to the root will beself
and the one closer to the leaves will beother
.If the property is a constraint, a good implementation should combine two instances by applying the strongest constraint. For example, CPU affinity are combined by taking the intersection of allowed CPUs.
If the property is some sort of “dummy” structure, it can make sense to allow the instance closer to the root of the tree to override the set members in the instance closer to the leaves.
Otherwise, it’s probably best to just bail with
ValueError
with a message explaining that there is a conflict.
- classmethod DeletedProperty.from_key(key, val)[source]#
Alternative constructor that is available with the same signature for all properties.
- DeletedProperty.HASH_COERCE(x, coerce)#
Inherited method, see
lisa.utils.SimpleHash.HASH_COERCE()
Used to coerce the values of
self.__dict__
to hashable values.
- classmethod DeletedProperty.find_cls(key)#
Inherited method, see
lisa.wlgen.rta.PropertyBase.find_cls()
Find which subclass can handle
key
.