2020-07-30 01:36:41 +00:00
|
|
|
from typing import Callable
|
|
|
|
from typing import Iterable
|
|
|
|
|
2020-11-13 08:17:48 +00:00
|
|
|
import traceback
|
2020-07-30 01:36:41 +00:00
|
|
|
from threading import Thread
|
2020-11-15 18:26:25 +00:00
|
|
|
from uuid import uuid4
|
2020-07-30 01:36:41 +00:00
|
|
|
|
2020-07-31 01:15:36 +00:00
|
|
|
from time import sleep
|
2020-07-30 01:36:41 +00:00
|
|
|
|
2020-11-13 08:17:48 +00:00
|
|
|
import logger
|
|
|
|
|
2020-07-30 01:36:41 +00:00
|
|
|
|
|
|
|
def _onionr_thread(func: Callable, args: Iterable,
|
2020-07-31 01:15:36 +00:00
|
|
|
sleep_secs: int, initial_sleep):
|
2020-11-15 18:26:25 +00:00
|
|
|
thread_id = str(uuid4())
|
2020-07-31 01:15:36 +00:00
|
|
|
if initial_sleep:
|
|
|
|
sleep(initial_sleep)
|
2020-07-30 01:36:41 +00:00
|
|
|
while True:
|
2020-11-13 08:17:48 +00:00
|
|
|
try:
|
|
|
|
func(*args)
|
|
|
|
except Exception as _: # noqa
|
|
|
|
logger.warn(
|
2020-11-15 18:26:25 +00:00
|
|
|
f"Onionr thread exception in {thread_id} \n" +
|
|
|
|
traceback.format_exc(),
|
2020-11-13 08:17:48 +00:00
|
|
|
terminal=True)
|
2020-07-31 01:15:36 +00:00
|
|
|
sleep(sleep_secs)
|
2020-07-30 01:36:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
def add_onionr_thread(
|
|
|
|
func: Callable, args: Iterable,
|
2020-07-31 01:15:36 +00:00
|
|
|
sleep_secs: int, initial_sleep: int = 5):
|
2020-07-30 01:36:41 +00:00
|
|
|
"""Spawn a new onionr thread that exits when the main thread does.
|
|
|
|
|
|
|
|
Runs in an infinite loop with sleep between calls
|
|
|
|
Passes in an interable args and sleep variables"""
|
|
|
|
Thread(target=_onionr_thread,
|
2020-07-31 01:15:36 +00:00
|
|
|
args=(func, args, sleep_secs, initial_sleep), daemon=True).start()
|