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
segragated 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 contrain operations on properties and actions.
Source code in hololinked\core\thing.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 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 |
|
Functions
__init__
__init__(*, id: str, logger: typing.Optional[logging.Logger] = None, serializer: typing.Optional[BaseSerializer | JSONSerializer] = None, **kwargs: typing.Dict[str, typing.Any]) -> None
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 |
|
Optional[Logger]
|
logging.Logger instance to track log messages. Default logger with a IO-stream handler and network accessible handler is created if None supplied. |
None
|
|
Optional[BaseSerializer | JSONSerializer]
|
Serializer to be used for serializing and deserializing data - preferred is a JSON Serializer.
If not supplied, a |
None
|
|
Dict[str, Any]
|
|
{}
|
Source code in hololinked\core\thing.py
run_with_http_server
run_with_http_server(port: int = 8080, address: str = '0.0.0.0', allowed_clients: str | typing.Iterable[str] | None = None, ssl_context: ssl.SSLContext | None = None, **kwargs: typing.Dict[str, typing.Any]) -> None
Quick-start to serve Thing
over HTTP. This method is fully blocking.
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 (which is default) |
'0.0.0.0'
|
|
SSLContext | None
|
use it for customized SSL context to provide encrypted communication. For certificate file and key file,
one may also use |
None
|
|
str | Iterable[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
|
|
Dict[str, Any]
|
|
{}
|
Source code in hololinked\core\thing.py
run_with_zmq_server
run_with_zmq_server(transports: typing.Sequence[ZMQ_TRANSPORTS] | ZMQ_TRANSPORTS = ZMQ_TRANSPORTS.IPC, forked: bool = False, **kwargs: typing.Dict[str, typing.Any]) -> None
Quick-start to serve Thing
over ZMQ. This method is fully blocking. This
method is blocking until exit()
is called.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Sequence[ZMQ_TRANSPORTS] | ZMQ_TRANSPORTS
|
ZMQ transport layers at which the object is exposed:
For multiple transports, supply a list of transports. For example: |
IPC
|
|
Dict[str, Any]
|
|
{}
|
Source code in hololinked\core\thing.py
run
Expose the object with the given servers. This method is blocking until exit()
is called.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Sequence[BaseProtocolServer]
|
list of instantiated servers to expose the object. |
required |
Source code in hololinked\core\thing.py
ping
exit
Stop serving the object. This method can only be called remotely
Source code in 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 True, offending interaction affordances will be removed from the JSON. This is useful to build partial but always working ThingModel. ` |
False
|
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\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
logging.Logger instance to track log messages. Default logger with a IO-stream handler
and network accessible handler is created if none supplied.