SoftRealtimeLoop
LoopKiller
¶
Soft Realtime Loop---a class designed to allow clean exits from infinite loops with the potential for post-loop cleanup operations executing.
The Loop Killer object watches for the key shutdown signals on the UNIX operating system (which runs on the PI) when it detects a shutdown signal, it sets a flag, which is used by the Soft Realtime Loop to stop iterating. Typically, it detects the CTRL-C from your keyboard, which sends a SIGTERM signal.
the function_in_loop argument to the Soft Realtime Loop's blocking_loop method is the function to be run every loop. A typical usage would set function_in_loop to be a method of an object, so that the object could store program state. See the 'ifmain' for two examples.
This library will soon be hosted as a PIP module and added as a python dependency.¶
https://github.com/UM-LoCoLab/NeuroLocoMiddleware/blob/main/SoftRealtimeLoop.py¶
Author: Gray C. Thomas, Ph.D https://github.com/GrayThomas, https://graythomas.github.io
Source code in opensourceleg/utilities/softrealtimeloop.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 |
|
kill_now: bool
property
writable
¶
Property to get the kill_now value. If the kill_now value is True, the loop will stop iterating. If the kill_now value is False, the loop will continue iterating.
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
The kill_now value. |
Example
killer = LoopKiller() killer.kill_now
get_fade()
¶
Interpolates from 1 to zero with soft fade out.
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
The fade value. |
Example
killer = LoopKiller() killer.get_fade()
Source code in opensourceleg/utilities/softrealtimeloop.py
handle_signal(signum, frame)
¶
Method to handle the signal from the operating system. This method is called when the operating system sends a signal to the process. The signal is typically a shutdown signal, such as SIGTERM, SIGINT, or SIGHUP.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
signum |
Any
|
The signal number. |
required |
frame |
Any
|
The frame object. |
required |
Returns:
Type | Description |
---|---|
None
|
None |
Example
killer = LoopKiller() killer.handle_signal(signal.SIGTERM, None)
Source code in opensourceleg/utilities/softrealtimeloop.py
SoftRealtimeLoop
¶
Soft Realtime Loop---a class designed to allow clean exits from infinite loops with the potential for post-loop cleanup operations executing.
The Loop Killer object watches for the key shutdown signals on the UNIX operating system (which runs on the PI). When it detects a shutdown signal, it sets a flag, which is used by the Soft Realtime Loop to stop iterating. Typically, it detects the CTRL-C from your keyboard, which sends a SIGTERM signal.
The function_in_loop
argument to the Soft Realtime Loop's run
method is the function to be run every loop.
A typical usage would set function_in_loop
to be a method of an object, so that the object could store
program state. See the if __name__ == "__main__"
section for examples.
This library is based on the original implementation in: https://github.com/UM-LoCoLab/NeuroLocoMiddleware/blob/main/SoftRealtimeLoop.py
Source code in opensourceleg/utilities/softrealtimeloop.py
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 427 428 429 430 431 432 433 434 435 436 437 438 439 440 |
|
current_time: float
property
¶
Gets the current monotonic time.
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
The current monotonic time. |
fade: float
property
¶
Gets the fade value, which interpolates from 1 to 0 during a fade-out.
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
The fade value. |
Example
loop = SoftRealtimeLoop() loop.fade
time_since_start: float
property
¶
Gets the time elapsed since the loop started.
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
The time since the loop started. |
__del__()
¶
Destructor for the SoftRealtimeLoop. Prints the performance report if reporting is enabled.
__init__(dt=0.001, report=True, fade=0.0, maintain_original_phase=False)
¶
Initializes the SoftRealtimeLoop.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dt |
float
|
The time step of the loop in seconds. Default is 0.001 (1ms). |
0.001
|
report |
bool
|
If True, the loop will print a report at the end of the loop. Default is True. |
True
|
fade |
float
|
The time in seconds to fade out the loop when it is killed. Default is 0.0. |
0.0
|
maintain_original_phase |
bool
|
If True, the iterator will try to keep the time elapsed equal to (loop_number * dt). If False, the iterator will only look at the difference between the current loop and the previous loop. Default is False. |
False
|
Source code in opensourceleg/utilities/softrealtimeloop.py
__iter__()
¶
Resets the loop and returns the iterator object.
Returns:
Name | Type | Description |
---|---|---|
SoftRealtimeLoop |
SoftRealtimeLoop
|
The iterator object. |
__next__()
¶
Advances the loop to the next iteration.
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
The time since the loop started. |
Raises:
Type | Description |
---|---|
StopIteration
|
If the loop is stopped. |
Source code in opensourceleg/utilities/softrealtimeloop.py
__repr__()
¶
Returns a string representation of the SoftRealtimeLoop.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The string representation of the loop. |
print_report()
¶
Prints a performance report for the loop, including average error, standard deviation of error, and percentage of time spent sleeping.
Source code in opensourceleg/utilities/softrealtimeloop.py
reset()
¶
Resets the loop state and signal handlers to their initial state. This allows reusing the same loop instance instead of creating a new one.
Example
loop = SoftRealtimeLoop() loop.run(some_function) loop.reset() # Reset for reuse loop.run(another_function)
Source code in opensourceleg/utilities/softrealtimeloop.py
run(function_to_run)
¶
Runs the loop with the specified function.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
function_to_run |
Callable[[], int]
|
The function to execute in each loop iteration. The function should return 0 to stop the loop. |
required |
Example
loop = SoftRealtimeLoop() loop.run(some_function)
Source code in opensourceleg/utilities/softrealtimeloop.py
stop()
¶
Stops the loop by setting the kill flag.
Example
loop = SoftRealtimeLoop() loop.stop()