hololinked.core.property.Property
Bases: Parameter
get/set/delete an object/instance attribute with type definitions, validations, post-set effects, metadata and more.
Please note the capital 'P' in Property to differentiate from python's own property.
Property objects are similar to python's property but not a subclass of it due to limitations and redundancy.
Source code in hololinked/hololinked/core/property.py
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 | |
Attributes
Functions
__init__
__init__(default: Any = None, *, doc: str | None = None, constant: bool = False, readonly: bool = False, allow_None: bool = False, label: str | None = None, state: list | tuple | str | Enum | None = None, db_persist: bool = False, db_init: bool = False, db_commit: bool = False, observable: bool = False, model: 'BaseModel' | None = None, class_member: bool = False, fget: Callable | None = None, fset: Callable | None = None, fdel: Callable | None = None, fcomparator: Callable | None = None, deepcopy_default: bool = False, per_instance_descriptor: bool = False, remote: bool = True, precedence: float | None = None, metadata: dict | None = None) -> None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Any
|
The default value of the property. |
None
|
|
str | None
|
docstring explaining what this property represents. |
None
|
|
bool
|
if |
False
|
|
bool
|
if |
False
|
|
bool
|
if |
False
|
|
bool
|
if |
False
|
|
list | tuple | str | Enum | None
|
state of state machine where property write can be executed |
None
|
|
bool
|
if |
False
|
|
bool
|
if |
False
|
|
bool
|
if |
False
|
|
Callable | None
|
custom getter method, mandatory when setter method is also custom supplied. |
None
|
|
Callable | None
|
custom setter method |
None
|
|
Callable | None
|
custom deleter method |
None
|
|
bool
|
set to |
True
|
|
str | None
|
optional text label to be used when this Property is shown in a listing. If no label is supplied,
the attribute name for this property in the owning |
None
|
|
dict | None
|
store your own metadata for the property which gives useful (and modifiable) information about the property. Properties operate using slots which means you cannot set foreign attributes on this object normally. This metadata dictionary should overcome this limitation. |
None
|
|
bool
|
whether a separate Property instance will be created for every |
False
|
|
bool
|
controls whether the default value of this Property will be deepcopied when a |
False
|
|
bool
|
when |
`False`
|
|
float | None
|
a numeric value, usually in the range 0.0 to 1.0, which allows the order of Properties in a class to be defined in a listing or e.g. in GUI menus. A negative precedence indicates a property that should be hidden in such listings. |
None
|
Source code in hololinked/hololinked/core/property.py
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 | |
comparator
Register a comparator method using this decorator to decide when to push a change event.
Signature of the comparator method must be:
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Callable
|
a method which takes two arguments - the old value and new value - and returns
|
required |
Returns:
| Type | Description |
|---|---|
Callable
|
the supplied function, no modifications made but a reference is stored |
Source code in hololinked/hololinked/core/property.py
to_affordance
Generates a PropertyAffordance TD fragment for this Property
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
The instance of the owning |
None
|
Returns:
| Type | Description |
|---|---|
PropertyAffordance
|
the affordance TD fragment for this property |
Source code in hololinked/hololinked/core/property.py
push_change_event
Pushes change event both on read and write if an event publisher object is available
on the owning Thing.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
the |
required | |
|
Any
|
the value that was just read or written |
required |
Source code in hololinked/hololinked/core/property.py
external_set
method called when the value of the property is set from an external source, e.g. a remote client. Usually introduces a state machine check before allowing the set operation.
Source code in hololinked/hololinked/core/property.py
validate_and_adapt
Validate the given value and adapt it if a proper logical reasoning can be given, for example, cropping a number to its bounds. Returns modified value.