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"
|
2023-06-16 16:48:58 +02:00
|
|
|
#include "plugins/interfaces.h"
|
2023-04-11 15:38:04 +02:00
|
|
|
|
2023-04-05 14:43:27 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <thread>
|
2023-04-11 15:38:04 +02:00
|
|
|
#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-05-19 15:33:40 +02:00
|
|
|
|
2023-05-22 16:04:50 +02:00
|
|
|
#include "update.h"
|
2023-06-16 16:48:58 +02:00
|
|
|
#include "worker_thread.h"
|
|
|
|
#include "worker.h"
|
|
|
|
|
|
|
|
#include <thread>
|
2023-04-11 15:38:04 +02:00
|
|
|
|
2023-04-13 14:03:25 +02:00
|
|
|
#ifdef PTU5
|
|
|
|
#define SERIAL_PORT "ttymxc2"
|
|
|
|
#else
|
|
|
|
#define SERIAL_PORT "ttyUSB0"
|
|
|
|
#endif
|
|
|
|
|
2023-06-19 15:59:17 +02:00
|
|
|
class hwinf;
|
2023-06-20 16:08:42 +02:00
|
|
|
static void doWork(hwinf *hw, QString update_ctrl_file,
|
2023-07-06 14:12:41 +02:00
|
|
|
QString workingDir, bool maintenanceMode, bool testMode) {
|
2023-06-16 16:48:58 +02:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(2000));
|
2023-07-06 14:12:41 +02:00
|
|
|
Update update(hw, update_ctrl_file, workingDir, maintenanceMode, testMode);
|
2023-06-19 15:59:17 +02:00
|
|
|
update.doUpdate();
|
2023-06-16 16:48:58 +02:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(2000));
|
|
|
|
QCoreApplication::quit();
|
|
|
|
}
|
2023-04-05 14:43:27 +02:00
|
|
|
|
2023-04-13 14:03:25 +02:00
|
|
|
// argv[1]: file to send to dc
|
2023-04-11 15:38:04 +02:00
|
|
|
int main(int argc, char *argv[]) {
|
2023-06-19 15:59:17 +02:00
|
|
|
|
|
|
|
QByteArray const value = qgetenv("XDG_RUNTIME_DIR");
|
|
|
|
if (value.size() == 0) {
|
|
|
|
qputenv("XDG_RUNTIME_DIR", "/run/user/0");
|
|
|
|
}
|
|
|
|
|
2023-04-05 14:43:27 +02:00
|
|
|
QApplication a(argc, argv);
|
2023-06-19 15:59:17 +02:00
|
|
|
QApplication::setApplicationName("ATBUpdateTool");
|
2023-07-06 14:12:41 +02:00
|
|
|
QApplication::setApplicationVersion(APP_VERSION);
|
2023-04-05 14:43:27 +02:00
|
|
|
|
|
|
|
if (!messageHandlerInstalled()) { // change internal qt-QDebug-handling
|
|
|
|
atbInstallMessageHandler(atbDebugOutput);
|
|
|
|
setDebugLevel(QtMsgType::QtDebugMsg);
|
|
|
|
//setDebugLevel(QtMsgType::QtDebugMsg);
|
|
|
|
}
|
|
|
|
|
2023-06-19 15:59:17 +02:00
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.setApplicationDescription("Download tool for downloading device controller firmware, printer json-files and executing opkg-commands.");
|
|
|
|
parser.addHelpOption();
|
|
|
|
parser.addVersionOption();
|
|
|
|
|
|
|
|
QCommandLineOption pluginDirectoryOption(QStringList() << "plugin-directory" << "plugin-directory",
|
|
|
|
QCoreApplication::translate("main", "Where to find dc-plugin."),
|
|
|
|
QCoreApplication::translate("main", "directory"));
|
|
|
|
QString const pluginDefault = "./plugins";
|
|
|
|
pluginDirectoryOption.setDefaultValue(pluginDefault);
|
|
|
|
parser.addOption(pluginDirectoryOption);
|
|
|
|
|
|
|
|
QCommandLineOption pluginNameOption(QStringList() << "plugin-name" << "plugin-name",
|
|
|
|
QCoreApplication::translate("main", "Name of dc-plugin."),
|
|
|
|
QCoreApplication::translate("main", "directory"));
|
|
|
|
QString const pluginNameDefault = "libCAmaster.so";
|
|
|
|
pluginNameOption.setDefaultValue(pluginNameDefault);
|
|
|
|
parser.addOption(pluginNameOption);
|
|
|
|
|
|
|
|
QCommandLineOption workingDirectoryOption(QStringList() << "working-directory" << "working-directory",
|
|
|
|
QCoreApplication::translate("main", "working directory of update-script."),
|
|
|
|
QCoreApplication::translate("main", "directory"));
|
|
|
|
QString const workingDirectoryDefault = ".";
|
|
|
|
workingDirectoryOption.setDefaultValue(workingDirectoryDefault);
|
|
|
|
parser.addOption(workingDirectoryOption);
|
|
|
|
|
2023-07-06 16:54:01 +02:00
|
|
|
QCommandLineOption maintenanceOption(QStringList() << "m" << "maintenance",
|
2023-06-20 16:08:42 +02:00
|
|
|
QCoreApplication::translate("main", "Maintenance mode for underlying script"));
|
|
|
|
parser.addOption(maintenanceOption);
|
|
|
|
|
2023-07-06 14:12:41 +02:00
|
|
|
// test-mode: edit the file update_log.csv and execute the commands
|
|
|
|
// contained in it. Do not call the update-script.
|
2023-07-06 16:54:01 +02:00
|
|
|
QCommandLineOption testOption(QStringList() << "t" << "test",
|
2023-07-06 14:12:41 +02:00
|
|
|
QCoreApplication::translate("main", "Test mode for ATBUpdateTool"));
|
|
|
|
parser.addOption(testOption);
|
|
|
|
|
2023-07-06 16:54:01 +02:00
|
|
|
QCommandLineOption execScriptOption(QStringList() << "e" << "execute-script-only",
|
|
|
|
QCoreApplication::translate("main", "ATBUpdateTool executes update-script only. No download of any files."));
|
|
|
|
parser.addOption(execScriptOption);
|
|
|
|
|
|
|
|
QCommandLineOption dryRunOption(QStringList() << "d" << "dry-run",
|
|
|
|
QCoreApplication::translate("main", "Start ATBUpdateTool in dry-run-mode. No actual actions."));
|
|
|
|
parser.addOption(dryRunOption);
|
|
|
|
|
2023-06-21 16:25:53 +02:00
|
|
|
// TODO:
|
|
|
|
// add some additional parameters
|
2023-06-22 15:18:20 +02:00
|
|
|
// --dry-run
|
2023-06-21 16:25:53 +02:00
|
|
|
// -d: only update device-controller firmware
|
|
|
|
// -j: only update json-files
|
|
|
|
// -o: only execute opkg-commnds
|
2023-06-29 12:40:47 +02:00
|
|
|
// -f: force. update_psa shall always perform a 'git pull'
|
2023-06-21 16:25:53 +02:00
|
|
|
|
2023-06-19 15:59:17 +02:00
|
|
|
// Process the actual command line arguments given by the user
|
|
|
|
parser.process(a);
|
|
|
|
QString plugInDir = parser.value(pluginDirectoryOption);
|
|
|
|
QString plugInName = parser.value(pluginNameOption);
|
|
|
|
QString workingDir = parser.value(workingDirectoryOption);
|
2023-06-20 16:08:42 +02:00
|
|
|
bool maintenanceMode = parser.isSet(maintenanceOption);
|
2023-07-06 14:12:41 +02:00
|
|
|
bool testMode = parser.isSet(testOption);
|
2023-07-06 16:54:01 +02:00
|
|
|
bool executeScriptOnly = parser.isSet(execScriptOption);
|
|
|
|
bool dryRun = parser.isSet(dryRunOption);
|
2023-06-19 15:59:17 +02:00
|
|
|
QString const rtPath = QCoreApplication::applicationDirPath();
|
|
|
|
|
|
|
|
if (plugInDir == pluginDefault) {
|
|
|
|
plugInDir = (rtPath + "/" + pluginDefault);
|
2023-04-13 11:22:32 +02:00
|
|
|
}
|
2023-06-16 16:48:58 +02:00
|
|
|
if (!QDir(plugInDir).exists()) {
|
|
|
|
qCritical() << plugInDir
|
|
|
|
<< "does not exists, but has to contain dc-library";
|
|
|
|
exit(-1);
|
|
|
|
}
|
2023-07-06 16:54:01 +02:00
|
|
|
|
|
|
|
qInfo() << "pwd ..............." << rtPath;
|
|
|
|
qInfo() << "plugInDir ........." << plugInDir;
|
|
|
|
qInfo() << "plugInName ........" << plugInName;
|
|
|
|
qInfo() << "workingDir ........" << workingDir;
|
|
|
|
qInfo() << "maintenanceMode ..." << maintenanceMode;
|
|
|
|
qInfo() << "testMode .........." << testMode;
|
|
|
|
qInfo() << "execScriptOnly ...." << executeScriptOnly;
|
|
|
|
qInfo() << "dryRun ............" << dryRun;
|
2023-06-16 16:48:58 +02:00
|
|
|
|
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
|
|
|
|
2023-06-19 15:59:17 +02:00
|
|
|
hwinf *hw = Update::loadDCPlugin(QDir(plugInDir), plugInName);
|
2023-07-06 14:12:41 +02:00
|
|
|
// hw->dc_autoRequest(false);
|
2023-06-16 16:48:58 +02:00
|
|
|
|
2023-06-19 15:59:17 +02:00
|
|
|
QString const update_ctrl_file = "/opt/app/tools/atbupdate/update_log.csv";
|
2023-07-06 14:12:41 +02:00
|
|
|
std::thread t(doWork, hw, update_ctrl_file, workingDir, maintenanceMode, testMode);
|
2023-06-16 16:48:58 +02:00
|
|
|
|
|
|
|
int ret = a.exec();
|
|
|
|
t.join();
|
|
|
|
|
|
|
|
return ret;
|
2023-04-05 14:43:27 +02:00
|
|
|
}
|