2022-09-22 20:57:46 -04:00
|
|
|
#ifndef COMMON_H
|
|
|
|
#define COMMON_H
|
|
|
|
|
|
|
|
// This file is part of Motion Watch.
|
|
|
|
|
|
|
|
// Motion Watch is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Motion Watch is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QCryptographicHash>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QDateTime>
|
2023-05-15 19:39:29 -04:00
|
|
|
#include <QThread>
|
2022-09-22 20:57:46 -04:00
|
|
|
|
|
|
|
#include <opencv4/opencv2/opencv.hpp>
|
|
|
|
#include <opencv4/opencv2/videoio.hpp>
|
|
|
|
|
|
|
|
using namespace cv;
|
|
|
|
using namespace std;
|
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
#define APP_VER "3.0.t1"
|
2023-03-10 19:05:54 -05:00
|
|
|
#define APP_NAME "Motion Watch"
|
|
|
|
#define REC_LOG_NAME "rec_log_lines.html"
|
|
|
|
#define DET_LOG_NAME "det_log_lines.html"
|
|
|
|
#define UPK_LOG_NAME "upk_log_lines.html"
|
2022-09-22 20:57:46 -04:00
|
|
|
|
2023-04-20 14:52:59 -04:00
|
|
|
struct evt_t
|
2023-03-05 16:07:07 -05:00
|
|
|
{
|
2023-05-15 15:29:47 -04:00
|
|
|
QString evName;
|
|
|
|
QStringList srcPaths;
|
|
|
|
Mat thumbnail;
|
2023-03-05 16:07:07 -05:00
|
|
|
};
|
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
struct shared_t
|
|
|
|
{
|
2023-05-15 15:29:47 -04:00
|
|
|
QList<evt_t> recList;
|
|
|
|
evt_t curEvent;
|
|
|
|
QString conf;
|
|
|
|
QString recLog;
|
|
|
|
QString detLog;
|
|
|
|
QString upkLog;
|
|
|
|
QString recordUrl;
|
|
|
|
QString outDir;
|
|
|
|
QString postCmd;
|
|
|
|
QString camName;
|
|
|
|
QString webBg;
|
|
|
|
QString webTxt;
|
|
|
|
QString webFont;
|
|
|
|
QString webRoot;
|
|
|
|
bool skipCmd;
|
|
|
|
int frameGap;
|
|
|
|
int evMaxSecs;
|
|
|
|
int postSecs;
|
|
|
|
int maxScore;
|
|
|
|
int procCnt;
|
|
|
|
int hlsCnt;
|
|
|
|
int pixThresh;
|
|
|
|
int imgThresh;
|
|
|
|
int maxEvents;
|
|
|
|
int maxLogSize;
|
|
|
|
int retCode;
|
|
|
|
int postInd;
|
|
|
|
int evInd;
|
2023-02-07 23:19:41 -05:00
|
|
|
};
|
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
QByteArray genMD5(const QString &path);
|
|
|
|
QByteArray genMD5(const QByteArray &bytes);
|
|
|
|
QString getParam(const QString &key, const QStringList &args);
|
|
|
|
QStringList lsFilesInDir(const QString &path, const QString &ext = QString());
|
|
|
|
QStringList lsDirsInDir(const QString &path);
|
|
|
|
bool rdConf(const QString &filePath, shared_t *share);
|
|
|
|
bool rdConf(shared_t *share);
|
|
|
|
void rdLine(const QString ¶m, const QString &line, QString *value);
|
|
|
|
void rdLine(const QString ¶m, const QString &line, int *value);
|
|
|
|
void enforceMaxEvents(shared_t *share);
|
2022-09-22 20:57:46 -04:00
|
|
|
|
|
|
|
#endif // COMMON_H
|