UpdatePTUDevCtrl/main.cpp

164 lines
5.1 KiB
C++
Raw Permalink Normal View History

2023-04-05 14:43:27 +02:00
#include <QCoreApplication>
#include <QApplication>
#include <QDebug>
#include <QTimer>
2023-04-13 11:22:32 +02:00
#include <QFileInfo>
2023-04-05 14:43:27 +02:00
2023-06-19 15:59:17 +02:00
#ifdef __linux__
#include <stdlib.h> // system()
#endif
2023-04-05 14:43:27 +02:00
#include "message_handler.h"
#include "plugins/interfaces.h"
2023-11-16 14:16:31 +01:00
#include "commandline_parser.h"
2023-04-05 14:43:27 +02:00
#include <unistd.h>
#include <memory>
2023-04-14 09:06:45 +02:00
#include <QSharedMemory>
2023-05-19 15:33:40 +02:00
#include <QRunnable>
#include <QThreadPool>
2023-05-26 13:02:45 +02:00
#include <QDir>
2023-06-19 15:59:17 +02:00
#include <QProcess>
#include <QCommandLineParser>
#include <QStandardPaths>
2023-08-02 15:40:44 +02:00
#include <QMainWindow>
2023-11-16 14:16:31 +01:00
#include <QSettings>
2023-05-19 15:33:40 +02:00
2023-05-22 16:04:50 +02:00
#include "update.h"
#include "git/git_client.h"
#include "ismas/ismas_client.h"
#include "worker_thread.h"
#include "worker.h"
2023-08-02 15:40:44 +02:00
#include "mainwindow.h"
#include "utils.h"
#include <QThread>
#include <QtWidgets>
#include <QScopedPointer>
#if defined (Q_OS_UNIX) || defined (Q_OS_LINUX)
#include <unistd.h>
#include <errno.h>
#endif
#ifdef PTU5
#define SERIAL_PORT "ttymxc2"
#else
#define SERIAL_PORT "ttyUSB0"
#endif
// argv[1]: file to send to dc
int main(int argc, char *argv[]) {
QByteArray const value = qgetenv("LC_ALL");
if (value != "C") {
qputenv("LC_ALL", "C");
2023-06-19 15:59:17 +02:00
}
2023-11-16 14:16:31 +01:00
// qputenv("XDG_RUNTIME_DIR", "/var/run/user/0");
2023-06-19 15:59:17 +02:00
2023-08-06 07:34:17 +02:00
openlog("ATB-UPDATE", LOG_PERROR | LOG_PID | LOG_CONS, LOG_USER);
2023-04-05 14:43:27 +02:00
QApplication a(argc, argv);
2023-06-19 15:59:17 +02:00
QApplication::setApplicationName("ATBUpdateTool");
QApplication::setApplicationVersion(APP_VERSION);
2023-04-05 14:43:27 +02:00
if (!messageHandlerInstalled()) { // change internal qt-QDebug-handling
atbInstallMessageHandler(atbDebugOutput);
2023-08-06 07:34:17 +02:00
setDebugLevel(LOG_NOTICE);
2023-04-05 14:43:27 +02:00
}
2023-11-16 14:16:31 +01:00
CommandLineParser parser;
2023-06-19 15:59:17 +02:00
parser.process(a);
2023-11-16 14:16:31 +01:00
parser.readSettings();
QString repositoryUrl = parser.repositoryUrl();
QString plugInDir = parser.plugInDir();
QString plugInName = parser.plugInName();
QString workingDir = parser.workingDir();
2023-11-21 16:16:28 +01:00
QString iniFileName = parser.iniFileName();
2023-11-16 14:16:31 +01:00
bool const dryRun = parser.dryRun();
bool const noUpdatePsaHardware = parser.noUpdatePsaHardware();
bool const showYoctoVersion = parser.yoctoVersion();
bool const showYoctoInstallStatus = parser.yoctoInstallStatus();
bool const showExtendedVersion = parser.extendedVersion();
bool const alwaysDownloadConfig = parser.alwaysDownloadConfig();
bool const alwaysDownloadDC = parser.alwaysDownloadDC();
2023-06-19 15:59:17 +02:00
2023-11-16 14:16:31 +01:00
QString const rtPath = QCoreApplication::applicationDirPath();
int const machineNr = Utils::read1stLineOfFile("/mnt/system_data/machine_nr");
int const customerNr = Utils::read1stLineOfFile("/mnt/system_data/cust_nr");
int const zoneNr = Utils::read1stLineOfFile("/mnt/system_data/zone_nr");
QString const branchName = (zoneNr != 0)
? QString("zg1/zone%1").arg(zoneNr) : "master";
2023-11-16 14:16:31 +01:00
qInfo() << "pwd ......................" << rtPath;
qInfo() << "repositoryUrl ............" << repositoryUrl;
qInfo() << "plugInDir ................" << plugInDir;
qInfo() << "plugInName ..............." << plugInName;
qInfo() << "workingDir ..............." << workingDir;
qInfo() << "dryRun ..................." << dryRun;
qInfo() << "noUpdatePsaHardware ......" << noUpdatePsaHardware;
qInfo() << "alwaysDownloadConfig ....." << alwaysDownloadConfig;
qInfo() << "alwaysDownloadDC ........." << alwaysDownloadDC;
2023-11-21 16:16:28 +01:00
qInfo() << "showYoctoVersion ........." << showYoctoVersion;
qInfo() << "showYoctoInstallStatus ..." << showYoctoInstallStatus;
qInfo() << "showExtendedVersion ......" << showExtendedVersion;
qInfo() << "iniFileName .............." << iniFileName;
2023-11-16 14:16:31 +01:00
qInfo() << "extended-version ........." << APP_EXTENDED_VERSION;
qInfo() << "machineNr ................" << machineNr;
qInfo() << "customerNr ..............." << customerNr;
qInfo() << "zoneNr ..................." << zoneNr;
if (showExtendedVersion) {
printf(APP_EXTENDED_VERSION"\n");
return 0;
}
if (showYoctoVersion) {
printf("%s\n", Worker::getATBUpdateToolYoctoVersion().toStdString().c_str());
return 0;
}
if (showYoctoInstallStatus) {
printf("%s\n", Worker::getATBUpdateToolYoctoInstallationStatus().toStdString().c_str());
return 0;
}
2023-11-16 14:16:31 +01:00
QThread::currentThread()->setObjectName("main thread");
qInfo() << "Main thread" << QThread::currentThreadId();
if (!QDir(plugInDir).exists()) {
qCritical() << plugInDir
<< "does not exists, but has to contain dc-library";
exit(-1);
}
2023-06-19 15:59:17 +02:00
// before loading the library, delete all possible shared memory segments
#if defined Q_OS_LINUX || defined Q_OS_UNIX
// system("rm -rf /tmp/qipc*");
#else
#error "Only tested under UNIX/LINUX"
#endif
2023-05-26 13:02:45 +02:00
Worker worker(customerNr,
machineNr,
zoneNr,
2023-11-16 14:16:31 +01:00
repositoryUrl,
branchName,
plugInDir,
plugInName,
workingDir,
noUpdatePsaHardware,
alwaysDownloadConfig,
alwaysDownloadDC,
dryRun);
MainWindow mw(&worker);
worker.setMainWindow(&mw);
2023-08-02 15:40:44 +02:00
mw.setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
mw.showFullScreen();
2023-08-02 15:40:44 +02:00
return a.exec();
2023-04-05 14:43:27 +02:00
}