2020-11-02 00:45:04 +03:00
|
|
|
import datetime
|
2020-11-04 06:26:39 +03:00
|
|
|
import logging
|
2020-11-02 00:45:04 +03:00
|
|
|
import threading
|
2020-11-04 15:31:25 +03:00
|
|
|
import time
|
2023-05-29 13:31:17 +03:00
|
|
|
from multiprocessing.synchronize import Event as MpEvent
|
2020-11-02 00:45:04 +03:00
|
|
|
|
2022-11-04 05:23:09 +03:00
|
|
|
from frigate.object_detection import ObjectDetectProcess
|
2023-07-06 17:28:50 +03:00
|
|
|
from frigate.util.services import restart_frigate
|
2021-09-18 15:40:27 +03:00
|
|
|
|
2020-11-04 06:26:39 +03:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
2021-02-17 16:23:32 +03:00
|
|
|
|
2020-11-02 00:45:04 +03:00
|
|
|
class FrigateWatchdog(threading.Thread):
|
2022-11-19 16:16:33 +03:00
|
|
|
def __init__(self, detectors: dict[str, ObjectDetectProcess], stop_event: MpEvent):
|
2020-11-02 00:45:04 +03:00
|
|
|
threading.Thread.__init__(self)
|
2021-02-17 16:23:32 +03:00
|
|
|
self.name = "frigate_watchdog"
|
2020-11-02 00:45:04 +03:00
|
|
|
self.detectors = detectors
|
|
|
|
|
self.stop_event = stop_event
|
|
|
|
|
|
2022-04-12 23:24:45 +03:00
|
|
|
def run(self) -> None:
|
2020-11-02 00:45:04 +03:00
|
|
|
time.sleep(10)
|
2021-05-21 18:39:14 +03:00
|
|
|
while not self.stop_event.wait(10):
|
2020-11-02 00:45:04 +03:00
|
|
|
now = datetime.datetime.now().timestamp()
|
|
|
|
|
|
|
|
|
|
# check the detection processes
|
|
|
|
|
for detector in self.detectors.values():
|
2023-07-01 15:47:16 +03:00
|
|
|
detection_start = detector.detection_start.value # type: ignore[attr-defined]
|
|
|
|
|
# issue https://github.com/python/typeshed/issues/8799
|
|
|
|
|
# from mypy 0.981 onwards
|
2021-02-17 16:23:32 +03:00
|
|
|
if detection_start > 0.0 and now - detection_start > 10:
|
|
|
|
|
logger.info(
|
|
|
|
|
"Detection appears to be stuck. Restarting detection process..."
|
|
|
|
|
)
|
2020-11-02 00:45:04 +03:00
|
|
|
detector.start_or_restart()
|
2022-04-12 23:24:45 +03:00
|
|
|
elif (
|
|
|
|
|
detector.detect_process is not None
|
|
|
|
|
and not detector.detect_process.is_alive()
|
|
|
|
|
):
|
2023-01-13 16:18:15 +03:00
|
|
|
logger.info("Detection appears to have stopped. Exiting Frigate...")
|
2021-09-18 15:40:27 +03:00
|
|
|
restart_frigate()
|
2021-05-21 18:39:14 +03:00
|
|
|
|
2023-05-29 13:31:17 +03:00
|
|
|
logger.info("Exiting watchdog...")
|