2022-09-22 20:57:46 -04:00
|
|
|
// This file is part of Motion Watch.
|
2022-04-14 09:45:54 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
// 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.
|
2022-04-14 09:45:54 -04:00
|
|
|
|
2022-09-22 20:57:46 -04:00
|
|
|
// 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.
|
2022-04-14 09:45:54 -04:00
|
|
|
|
2023-05-17 15:06:58 -04:00
|
|
|
#include "common.h"
|
2023-05-15 15:29:47 -04:00
|
|
|
#include "camera.h"
|
2022-08-12 21:46:36 -04:00
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
QCoreApplication app(argc, argv);
|
2023-04-20 14:52:59 -04:00
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
QCoreApplication::setApplicationName(APP_NAME);
|
|
|
|
QCoreApplication::setApplicationVersion(APP_VER);
|
2023-04-20 14:52:59 -04:00
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
auto args = QCoreApplication::arguments();
|
|
|
|
auto ret = 0;
|
2022-12-11 10:25:22 -05:00
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
if (args.contains("-h"))
|
2023-02-18 21:20:24 -05:00
|
|
|
{
|
2023-05-15 15:29:47 -04:00
|
|
|
QTextStream(stdout) << "Motion Watch " << APP_VER << Qt::endl << Qt::endl;
|
|
|
|
QTextStream(stdout) << "Usage: mow <argument>" << Qt::endl << Qt::endl;
|
|
|
|
QTextStream(stdout) << "-h : display usage information about this application." << Qt::endl;
|
2023-05-17 15:06:58 -04:00
|
|
|
QTextStream(stdout) << "-c : path to the config file used to run a single camera instance." << Qt::endl;
|
|
|
|
QTextStream(stdout) << "-d : path to a directory that can contain multiple config files." << Qt::endl;
|
|
|
|
QTextStream(stdout) << " each file found in the directory will be used to run a" << Qt::endl;
|
|
|
|
QTextStream(stdout) << " camera instance." << Qt::endl;
|
2023-05-15 15:29:47 -04:00
|
|
|
QTextStream(stdout) << "-v : display the current version." << Qt::endl << Qt::endl;
|
2023-02-07 23:19:41 -05:00
|
|
|
}
|
2023-05-15 15:29:47 -04:00
|
|
|
else if (args.contains("-v"))
|
2022-08-12 21:46:36 -04:00
|
|
|
{
|
2023-05-15 15:29:47 -04:00
|
|
|
QTextStream(stdout) << APP_VER << Qt::endl;
|
2023-03-05 16:07:07 -05:00
|
|
|
}
|
2023-05-17 15:06:58 -04:00
|
|
|
else if (args.contains("-d"))
|
|
|
|
{
|
|
|
|
auto *muli = new MultiInstance(&app);
|
|
|
|
|
|
|
|
ret = muli->start(args);
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
{
|
|
|
|
ret = QCoreApplication::exec();
|
|
|
|
}
|
|
|
|
}
|
2023-05-15 15:29:47 -04:00
|
|
|
else if (args.contains("-c"))
|
2023-03-05 16:07:07 -05:00
|
|
|
{
|
2023-05-15 15:29:47 -04:00
|
|
|
auto *cam = new Camera(&app);
|
2022-12-13 20:27:32 -05:00
|
|
|
|
2023-05-17 15:06:58 -04:00
|
|
|
ret = cam->start(args);
|
|
|
|
|
|
|
|
if (ret == 0)
|
2022-12-11 10:25:22 -05:00
|
|
|
{
|
2023-05-15 15:29:47 -04:00
|
|
|
ret = QCoreApplication::exec();
|
2022-12-11 10:25:22 -05:00
|
|
|
}
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-05-15 15:29:47 -04:00
|
|
|
QTextStream(stderr) << "err: no config file(s) were given in -c" << Qt::endl;
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|
|
|
|
|
2023-05-15 15:29:47 -04:00
|
|
|
return ret;
|
2022-04-14 09:45:54 -04:00
|
|
|
}
|