hololinked.core.thing.Thing
Bases: Propertized, RemoteInvokable, EventSource
Subclass from here to expose hardware or python objects on the network. Remotely accessible members of a Thing are
segregated into properties, actions & events. Utilize properties for data that can be read and written,
actions to instruct the object to perform tasks and events to get notified of any relevant information. State Machines
can be used to constrain operations on properties and actions.
Source code in hololinked/hololinked/core/thing.py
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 | |
Functions
__init__
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
String identifier of the instance. For an interconnected system of hardware, IDs are recommended to be unique. This value is used for many operations, for example - creating zmq socket address, tables in databases, and to identify the instance in a HTTP Server - (http(s)://{domain and sub domain}/{id}). |
required |
|
BoundLogger | None
|
|
None
|
|
dict[str, Any]
|
|
{}
|
Source code in hololinked/hololinked/core/thing.py
run_with_http_server
run_with_http_server(port: int = 8080, address: str = '0.0.0.0', allowed_clients: str | list[str] | None = None, ssl_context: SSLContext | None = None, forked: bool = False, print_welcome_message: bool = True, **kwargs: dict[str, Any]) -> None
Quick-start to serve Thing over HTTP. This method is fully blocking, call exit() (hololinked.server.exit())
to unblock.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
int
|
the port at which the HTTP server should be run (unique) |
8080
|
|
str
|
A convenience option to set IP address apart from 0.0.0.0 (i.e. bind to all interfaces, which is default) |
'0.0.0.0'
|
|
SSLContext | None
|
provide custom certificates with an SSL context for encrypted communication |
None
|
|
str | list[str] | None
|
serves request and sets CORS only from these clients, other clients are rejected with 403. Uses remote IP header value to achieve this. Unlike CORS, the server resource is not even executed if the client is not an allowed client. Note that the remote IP in a HTTP request is believable only from a trusted HTTP client, not a modified one. |
None
|
|
bool
|
if |
False
|
|
dict[str, Any]
|
additional keyword arguments:
|
{}
|
Source code in hololinked/hololinked/core/thing.py
run_with_zmq_server
run_with_zmq_server(access_points: list[ZMQ_TRANSPORTS] | ZMQ_TRANSPORTS | str | list[str] = ZMQ_TRANSPORTS.IPC, forked: bool = False, **kwargs: dict[str, Any]) -> None
Quick-start to serve Thing over ZMQ. This method is fully blocking, call exit() (hololinked.server.exit())
to unblock.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
list[ZMQ_TRANSPORTS] | ZMQ_TRANSPORTS | str | list[str]
|
ZMQ transport layers at which the object is exposed:
One may use more than one form of transport. All requests made will be anyway queued internally
irrespective of origin. For multiple transports, supply a list of transports.
For example: |
IPC
|
|
bool
|
if |
False
|
|
dict[str, Any]
|
|
{}
|
Source code in hololinked/hololinked/core/thing.py
run
Expose the object with the given servers. This method is blocking until exit() (hololinked.server.exit())
is called.
Thing(id='example_id').run(servers=[http_server, zmq_server, mqtt_publisher])
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
bool
|
if |
False
|
|
bool
|
if |
True
|
|
dict[str, Any]
|
keyword arguments
|
{}
|
Source code in hololinked/hololinked/core/thing.py
ping
ping to see if it is alive. Successful when action succeeds with no return value and no timeout or exception raised on the client side.
exit
Stop serving the object. This method usually needs to be called remotely. The servers are not stopped, just the object run loop is exited.
Source code in hololinked/hololinked/core/thing.py
get_thing_model
generate the Thing Model of the object. The model is a JSON that describes the object's properties, actions, events and their metadata, without the protocol information. The model can be used by a client to understand the object's capabilities.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
bool
|
if |
False
|
|
list[str]
|
List of affordances names (of any type) to skip in the generated model. |
[]
|
Returns:
| Type | Description |
|---|---|
ThingModel
|
represented as an object in python, gets automatically serialized to JSON when pushed out of the socket. |
Source code in hololinked/hololinked/core/thing.py
Attributes
id
str
instance-attribute, writable
String identifier of the instance. For an interconnected system of hardware,
IDs are recommended to be unique. This value is used for many operations,
for example - creating zmq socket address, tables in databases, and to identify the instance
in the HTTP Server - (http(s)://{domain and sub domain}/{id}).
properties
PropertiesRegistry
instance-attribute, read-only
container for the property descriptors of the object
actions
ActionsRegistry
instance-attribute, read-only
container for the action descriptors of the object
events
EventsRegistry
instance-attribute, read-only
container for the event descriptors of the objec.
state
str, instance-attribute, writable
Current state machine's state if state machine present, None indicates absence of state machine.
State machine returned state is always a string even if specified as an Enum in the state machine.
sub_things
typing.Dict[str, Thing]
instance-attribute
other Thing's that are composed within this Thing.
logger
logging.Logger
structlog.stdlib.BoundLogger instance to log messages. Default logger with a IO-stream handler
is created if none supplied.