added docstings and typings

This commit is contained in:
Schmieder, Jacob
2024-01-29 12:32:23 +00:00
parent 41be3fdee2
commit 6975986ed4
9 changed files with 410 additions and 136 deletions
+26 -13
View File
@@ -1,24 +1,37 @@
"""
Stores global variables for the app.
global_var.py
This module stores global variables for the app.
Global variables:
REQUEST_QUEUE (multiprocessing.Queue): A queue to store audio file paths as strings.
RESPONSE_QUEUE (multiprocessing.Queue): A queue to store transcriptions as strings.
LAST_ACTIVE_TIME (multiprocessing.Value): A value to store the time of the last activity.
LOADED_EVENT (multiprocessing.Event): An event to indicate when the model is loaded.
RUNNING_EVENT (multiprocessing.Event): An event to indicate when the model is running.
MODEL_PARAMS (Optional[dict]): A dictionary to store the model parameters.
MODEL_PROCESS (Optional[multiprocessing.Process]): A process to handle the model globally.
LAST_USED (float): A float to track the time of the last user activity.
TIMEOUT (Optional[int]): An integer to store the timeout in seconds.
DEFAULT_APP_CONIFG_PATH (str): A string to store the default path to the app configuration file.
"""
# Global variable to store the model
import multiprocessing
import os
import time
from typing import Optional
REQUEST_QUEUE = multiprocessing.Queue() # audio file path as string
RESPONSE_QUEUE = multiprocessing.Queue() # transcription as string
LAST_ACTIVE_TIME = multiprocessing.Value('d', time.time()) # time of last activity
LOADED_EVENT = multiprocessing.Event() # model loaded event
RUNNING_EVENT = multiprocessing.Event() # model running event
REQUEST_QUEUE: multiprocessing.Queue = multiprocessing.Queue() # audio file path as string
RESPONSE_QUEUE: multiprocessing.Queue = multiprocessing.Queue() # transcription as string
LAST_ACTIVE_TIME: multiprocessing.Value = multiprocessing.Value('d', time.time()) # time of last activity
LOADED_EVENT: multiprocessing.Event = multiprocessing.Event() # model loaded event
RUNNING_EVENT: multiprocessing.Event = multiprocessing.Event() # model running event
MODEL_PARAMS = None # model parameters
MODEL_PROCESS = None # model process to handle globally
MODEL_PARAMS: Optional[dict] = None # model parameters
MODEL_PROCESS: Optional[multiprocessing.Process] = None # model process to handle globally
# Global variable to track user activity
LAST_USED = time.time()
TIMEOUT = None #seconds
DEFAULT_APP_CONIFG_PATH = os.path.join(os.path.dirname(os.path.realpath(__file__)), "config.yml")
LAST_USED: float = time.time()
TIMEOUT: Optional[int] = None # seconds
DEFAULT_APP_CONIFG_PATH: str = os.path.join(os.path.dirname(os.path.realpath(__file__)), "config.yml")