hololinked.td.interaction_affordance.InteractionAffordance
Bases: Schema
Implements schema information common to all interaction affordances.
Specification Definitions
UML Diagram
Source code in hololinked/hololinked/td/interaction_affordance.py
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 | |
Attributes
objekt
property
writable
Object instance of the interaction affordance - Property, Action or Event
owner
property
writable
Owning Thing instance or Thing class of the interaction affordance.
Depends on how this object was created, whether using an instance or a class.
thing_id
property
ID of the Thing instance owning the interaction affordance, if available, otherwise None
Functions
generate
classmethod
generate(interaction: Property | Action | Event, owner: Thing) -> PropertyAffordance | ActionAffordance | EventAffordance
build the schema for the specific interaction affordance as an instance of this class.
Use the json() method to get the JSON representation of the schema.
Note that this method is different from build() method as its supposed to be used as a classmethod to create an instance. Although, it internally calls build(), and some additional steps are included.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Property | Action | Event
|
interaction object for which the schema is to be built |
required |
|
Thing
|
owner of the interaction affordance |
required |
Returns:
| Type | Description |
|---|---|
PropertyAffordance | ActionAffordance | EventAffordance
|
|
Source code in hololinked/hololinked/td/interaction_affordance.py
build
populate the fields of the schema for the specific interaction affordance
from_TD
classmethod
populate the schema from the TD and return it as an instance of this class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
name of the interaction affordance used as key in the TD |
required |
|
JSON
|
Thing Description JSON dictionary (the entire one, not just the component of the affordance) |
required |
Returns:
| Type | Description |
|---|---|
PropertyAffordance | ActionAffordance | EventAffordance
|
|
Source code in hololinked/hololinked/td/interaction_affordance.py
retrieve_form
retrieve form for a certain operation, return default if not found
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
operation for which the form is to be retrieved |
required |
|
Any
|
default value to return if form is not found, by default None. One can make use of a sensible default value for one's logic. |
None
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
JSON representation of the form |
Source code in hololinked/hololinked/td/interaction_affordance.py
register_descriptor
classmethod
register_descriptor(descriptor: Property | Action | Event, schema_generator: InteractionAffordance) -> None
register a custom schema generator for a descriptor
Source code in hololinked/hololinked/td/interaction_affordance.py
TD Supported Fields
Apart from the attributes above, the fields below are also attributes of the class InteractionAffordance
with the following meaning:
| field | supported | meaning | default usage |
|---|---|---|---|
| title | ✔️ | Provides a human-readable title | class name of Thing |
| titles | ➖ | Provides multi-language human-readable titles | to be manually set |
| description | ✔️ | Provides additional human-readable information | cleaned docstring of Thing |
| descriptions | ➖ | Provides multi-language human-readable descriptions | to be manually set |
| forms | ✔️ | Provides a list of forms for the interaction | generated by server per protocol for every supported operation |
See subclasses for more specific fields under same topic.