mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-16 12:58:00 -04:00
61 lines
2.0 KiB
C++
61 lines
2.0 KiB
C++
#include "zm_analysis_thread.h"
|
|
|
|
#include "zm_monitor.h"
|
|
#include "zm_signal.h"
|
|
#include "zm_utils.h"
|
|
|
|
AnalysisThread::AnalysisThread(Monitor *monitor) :
|
|
monitor_(monitor), terminate_(false) {
|
|
thread_ = std::thread(&AnalysisThread::Run, this);
|
|
}
|
|
|
|
AnalysisThread::~AnalysisThread() {
|
|
Stop();
|
|
if (thread_.joinable()) thread_.join();
|
|
}
|
|
|
|
void AnalysisThread::Start() {
|
|
if (thread_.joinable()) thread_.join();
|
|
terminate_ = false;
|
|
Debug(3, "Starting analysis thread");
|
|
thread_ = std::thread(&AnalysisThread::Run, this);
|
|
}
|
|
|
|
void AnalysisThread::Run() {
|
|
Microseconds analysis_rate = Microseconds(monitor_->GetAnalysisRate());
|
|
Seconds analysis_update_delay = Seconds(monitor_->GetAnalysisUpdateDelay());
|
|
Debug(2, "AnalysisThread::Run() have update delay %d", analysis_update_delay);
|
|
|
|
monitor_->UpdateAdaptiveSkip();
|
|
|
|
TimePoint last_analysis_update_time = std::chrono::steady_clock::now();
|
|
TimePoint cur_time;
|
|
|
|
while (!(terminate_ or zm_terminate)) {
|
|
// Some periodic updates are required for variable capturing framerate
|
|
if (analysis_update_delay != Seconds::zero()) {
|
|
cur_time = std::chrono::steady_clock::now();
|
|
Debug(2, "Updating adaptive skip");
|
|
if ((cur_time - last_analysis_update_time) > analysis_update_delay) {
|
|
analysis_rate = Microseconds(monitor_->GetAnalysisRate());
|
|
monitor_->UpdateAdaptiveSkip();
|
|
last_analysis_update_time = cur_time;
|
|
}
|
|
}
|
|
|
|
Debug(2, "Analyzing");
|
|
if (!monitor_->Analyse()) {
|
|
if (!(terminate_ or zm_terminate)) {
|
|
Microseconds sleep_for = monitor_->Active() ? Microseconds(ZM_SAMPLE_RATE) : Microseconds(ZM_SUSPENDED_RATE);
|
|
Debug(2, "Sleeping for %" PRId64 "us", int64(sleep_for.count()));
|
|
std::this_thread::sleep_for(sleep_for);
|
|
}
|
|
} else if (analysis_rate != Microseconds::zero()) {
|
|
Debug(2, "Sleeping for %" PRId64 " us", int64(analysis_rate.count()));
|
|
std::this_thread::sleep_for(analysis_rate);
|
|
} else {
|
|
Debug(2, "Not sleeping");
|
|
}
|
|
}
|
|
}
|