X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=thread_utils.py;h=51078a4e57ebe9193a3eee4669a1cf33a55bb4e0;hb=4198f76987184c774135860bfb22432c69d0714d;hp=ad1f0bf9029b3232ba9cbd28b085afade91f0186;hpb=36fea7f15ed17150691b5b3ead75450e575229ef;p=python_utils.git diff --git a/thread_utils.py b/thread_utils.py index ad1f0bf..51078a4 100644 --- a/thread_utils.py +++ b/thread_utils.py @@ -13,6 +13,19 @@ logger = logging.getLogger(__name__) def current_thread_id() -> str: + """Returns a string composed of the parent process' id, the current + process' id and the current thread identifier. The former two are + numbers (pids) whereas the latter is a thread id passed during thread + creation time. + + >>> ret = current_thread_id() + >>> (ppid, pid, tid) = ret.split('/') + >>> ppid.isnumeric() + True + >>> pid.isnumeric() + True + + """ ppid = os.getppid() pid = os.getpid() tid = threading.current_thread().name @@ -22,6 +35,26 @@ def current_thread_id() -> str: def is_current_thread_main_thread() -> bool: """Returns True is the current (calling) thread is the process' main thread and False otherwise. + + >>> is_current_thread_main_thread() + True + + >>> result = None + >>> def thunk(): + ... global result + ... result = is_current_thread_main_thread() + + >>> thunk() + >>> result + True + + >>> import threading + >>> thread = threading.Thread(target=thunk) + >>> thread.start() + >>> thread.join() + >>> result + False + """ return threading.current_thread() is threading.main_thread() @@ -61,9 +94,7 @@ def background_thread( def wrapper(funct: Callable): @functools.wraps(funct) - def inner_wrapper( - *a, **kwa - ) -> Tuple[threading.Thread, threading.Event]: + def inner_wrapper(*a, **kwa) -> Tuple[threading.Thread, threading.Event]: should_terminate = threading.Event() should_terminate.clear() newargs = (*a, should_terminate) @@ -130,9 +161,7 @@ def periodically_invoke( should_terminate = threading.Event() should_terminate.clear() newargs = (should_terminate, *args) - thread = threading.Thread( - target=helper_thread, args=newargs, kwargs=kwargs - ) + thread = threading.Thread(target=helper_thread, args=newargs, kwargs=kwargs) thread.start() logger.debug(f'Started thread {thread.name} tid={thread.ident}') return (thread, should_terminate) @@ -140,3 +169,9 @@ def periodically_invoke( return wrapper_repeat return decorator_repeat + + +if __name__ == '__main__': + import doctest + + doctest.testmod()