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 <QDir>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QDateTime>
|
2023-05-15 19:39:29 -04:00
|
|
|
#include <QThread>
|
2023-05-21 09:34:57 -04:00
|
|
|
#include <QTimer>
|
2023-05-26 16:12:53 -04:00
|
|
|
#include <QStringList>
|
2023-06-10 21:51:39 -04:00
|
|
|
#include <QMutex>
|
2023-10-08 10:09:15 -04:00
|
|
|
#include <QRegularExpression>
|
2023-11-18 18:40:26 -05:00
|
|
|
#include <QFileSystemWatcher>
|
2023-07-31 11:16:07 -04:00
|
|
|
#include <iostream>
|
2022-09-22 20:57:46 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2023-12-23 17:38:11 -05:00
|
|
|
#define APP_VER "3.3.t9"
|
2023-03-10 19:05:54 -05:00
|
|
|
#define APP_NAME "Motion Watch"
|
2023-05-17 15:06:58 -04:00
|
|
|
#define APP_BIN "mow"
|
2023-05-26 16:12:53 -04:00
|
|
|
#define DATETIME_FMT "yyyyMMddhhmmss"
|
|
|
|
#define STRFTIME_FMT "%Y%m%d%H%M%S"
|
2023-08-06 10:17:10 -04:00
|
|
|
#define PREV_IMG "&prev&"
|
|
|
|
#define NEXT_IMG "&next&"
|
2022-09-22 20:57:46 -04:00
|
|
|
|
2023-10-27 15:43:17 -04:00
|
|
|
enum CmdExeType
|
|
|
|
{
|
|
|
|
MAIN_LOOP,
|
2023-11-05 18:44:50 -05:00
|
|
|
VID_LOOP
|
2023-10-27 15:43:17 -04:00
|
|
|
};
|
|
|
|
|
2023-04-20 14:52:59 -04:00
|
|
|
struct evt_t
|
2023-03-05 16:07:07 -05:00
|
|
|
{
|
2023-11-05 18:44:50 -05:00
|
|
|
QList<QString> vidList;
|
|
|
|
QString timeStamp;
|
|
|
|
QString imgPath;
|
|
|
|
float score;
|
|
|
|
bool inQue;
|
|
|
|
int queAge;
|
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;
|
|
|
|
QString conf;
|
2023-10-08 10:09:15 -04:00
|
|
|
QString recordUri;
|
2023-07-18 18:47:14 -04:00
|
|
|
QString buffPath;
|
2023-05-15 15:29:47 -04:00
|
|
|
QString postCmd;
|
|
|
|
QString camName;
|
2023-10-19 15:04:39 -04:00
|
|
|
QString recPath;
|
2023-08-06 10:17:10 -04:00
|
|
|
QString outputType;
|
|
|
|
QString compCmd;
|
2023-10-08 10:09:15 -04:00
|
|
|
QString streamCodec;
|
|
|
|
QString streamExt;
|
|
|
|
QString recExt;
|
|
|
|
QString thumbExt;
|
2023-10-19 15:04:39 -04:00
|
|
|
QString recScale;
|
|
|
|
QString imgScale;
|
2023-10-27 15:43:17 -04:00
|
|
|
QString servMainLoop;
|
|
|
|
QString servVidLoop;
|
|
|
|
QString servUser;
|
2023-12-23 17:38:11 -05:00
|
|
|
QString servGroup;
|
2023-10-08 10:09:15 -04:00
|
|
|
bool singleTenant;
|
2023-05-15 15:29:47 -04:00
|
|
|
bool skipCmd;
|
2023-11-05 18:44:50 -05:00
|
|
|
int liveSecs;
|
2023-10-19 15:04:39 -04:00
|
|
|
int recFps;
|
2023-05-15 15:29:47 -04:00
|
|
|
int evMaxSecs;
|
|
|
|
int postSecs;
|
|
|
|
int imgThresh;
|
|
|
|
int maxEvents;
|
|
|
|
int retCode;
|
2023-02-07 23:19:41 -05:00
|
|
|
};
|
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
QString getParam(const QString &key, const QStringList &args);
|
2023-10-19 15:04:39 -04:00
|
|
|
QString buildThreadCount(int count);
|
2023-05-15 15:29:47 -04:00
|
|
|
QStringList lsFilesInDir(const QString &path, const QString &ext = QString());
|
|
|
|
QStringList lsDirsInDir(const QString &path);
|
2023-05-26 16:12:53 -04:00
|
|
|
QStringList listFacingFiles(const QString &path, const QString &ext, const QDateTime &stamp, int secs, char dir);
|
|
|
|
QStringList backwardFacingFiles(const QString &path, const QString &ext, const QDateTime &stamp, int secs);
|
|
|
|
QStringList forwardFacingFiles(const QString &path, const QString &ext, const QDateTime &stamp, int secs);
|
2023-08-06 10:17:10 -04:00
|
|
|
QStringList parseArgs(const QByteArray &data, int maxArgs, int *pos = nullptr);
|
2023-05-15 15:29:47 -04:00
|
|
|
bool rdConf(const QString &filePath, shared_t *share);
|
2023-10-19 15:04:39 -04:00
|
|
|
bool mkPath(const QString &path);
|
2023-05-15 15:29:47 -04:00
|
|
|
void rdLine(const QString ¶m, const QString &line, QString *value);
|
|
|
|
void rdLine(const QString ¶m, const QString &line, int *value);
|
2023-10-08 10:09:15 -04:00
|
|
|
void rdLine(const QString ¶m, const QString &line, bool *value);
|
2023-05-15 15:29:47 -04:00
|
|
|
void enforceMaxEvents(shared_t *share);
|
2023-10-19 15:04:39 -04:00
|
|
|
void enforceMaxImages(shared_t *share);
|
2023-11-05 18:44:50 -05:00
|
|
|
void enforceMaxClips(shared_t *share);
|
2023-10-08 10:09:15 -04:00
|
|
|
void extCorrection(QString &ext);
|
2022-09-22 20:57:46 -04:00
|
|
|
|
|
|
|
#endif // COMMON_H
|