Compare commits
3 Commits
9b6f5db8fe
...
11524b8389
Author | SHA1 | Date | |
---|---|---|---|
11524b8389 | |||
6663866743 | |||
12aa9a734a |
@ -80,6 +80,7 @@ SOURCES += \
|
|||||||
mainwindow.cpp \
|
mainwindow.cpp \
|
||||||
../common/src/message_handler.cpp \
|
../common/src/message_handler.cpp \
|
||||||
../UpdatePTUDevCtrl/commandline_parser.cpp \
|
../UpdatePTUDevCtrl/commandline_parser.cpp \
|
||||||
|
../UpdatePTUDevCtrl/process/command.cpp \
|
||||||
update.cpp \
|
update.cpp \
|
||||||
dc_download.cpp \
|
dc_download.cpp \
|
||||||
../common/src/System.cpp
|
../common/src/System.cpp
|
||||||
@ -89,6 +90,7 @@ HEADERS += \
|
|||||||
mainwindow.h \
|
mainwindow.h \
|
||||||
../common/include/message_handler.h \
|
../common/include/message_handler.h \
|
||||||
../UpdatePTUDevCtrl/commandline_parser.h \
|
../UpdatePTUDevCtrl/commandline_parser.h \
|
||||||
|
../UpdatePTUDevCtrl/process/command.h \
|
||||||
update.h \
|
update.h \
|
||||||
dc_download.h \
|
dc_download.h \
|
||||||
../common/include/System.h
|
../common/include/System.h
|
||||||
|
@ -114,21 +114,28 @@ int main(int argc, char **argv) {
|
|||||||
qInfo() << "readDCVersion ............" << readDCVersion;
|
qInfo() << "readDCVersion ............" << readDCVersion;
|
||||||
qInfo() << "dcDir ...................." << dcDir;
|
qInfo() << "dcDir ...................." << dcDir;
|
||||||
|
|
||||||
|
if (readDCVersion) {
|
||||||
|
qInfo() << "dc-version ..............." << Update::dcVersion(
|
||||||
|
QDir::cleanPath(rtPath + QDir::separator()
|
||||||
|
+ QString("customer_%1").arg(customerNr) + QDir::separator()
|
||||||
|
+ dcDir + QDir::separator() + "dc2c.bin"));
|
||||||
|
}
|
||||||
|
|
||||||
if (showExtendedVersion) {
|
if (showExtendedVersion) {
|
||||||
printf(APP_EXTENDED_VERSION"\n");
|
printf(APP_EXTENDED_VERSION"\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString const &customerRepo = QDir::cleanPath(workingDir + QDir::separator() + QString("customer_%1").arg(customerNr));
|
|
||||||
QStringList filesToUpdate;
|
// QString const &customerRepo = QDir::cleanPath(workingDir + QDir::separator() + QString("customer_%1").arg(customerNr));
|
||||||
|
// QStringList filesToUpdate;
|
||||||
|
|
||||||
QThread::currentThread()->setObjectName("main thread");
|
QThread::currentThread()->setObjectName("main thread");
|
||||||
qInfo() << "Main thread" << QThread::currentThreadId();
|
qInfo() << "Main thread" << QThread::currentThreadId();
|
||||||
|
|
||||||
MainWindow mw;
|
// MainWindow mw;
|
||||||
|
|
||||||
mw.setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
|
// mw.setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
|
||||||
// mw.showFullScreen();
|
// mw.showFullScreen();
|
||||||
|
|
||||||
// qCritical() << "SHOW";
|
// qCritical() << "SHOW";
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#include "update.h"
|
#include "update.h"
|
||||||
|
#include "process/command.h"
|
||||||
|
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
@ -21,6 +22,8 @@
|
|||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
#include <QPluginLoader>
|
#include <QPluginLoader>
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
|
#include <QStringList>
|
||||||
|
#include <QString>
|
||||||
|
|
||||||
#define UPDATE_OPKG (1)
|
#define UPDATE_OPKG (1)
|
||||||
#define UPDATE_DC (0)
|
#define UPDATE_DC (0)
|
||||||
@ -92,6 +95,20 @@ bool Update::unloadDCPlugin() {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString Update::dcVersion(QString const &dcBinFile) {
|
||||||
|
Command c("bash");
|
||||||
|
QStringList param;
|
||||||
|
|
||||||
|
param << "-c" << QString(R"(strings %1 | grep DC2c.\[0-9\] | uniq)").arg(dcBinFile);
|
||||||
|
|
||||||
|
if (c.execute("/tmp", param)) {
|
||||||
|
return c.getCommandResult().trimmed().split(QRegularExpression("\\s")).first();
|
||||||
|
// qInfo() << "(" << __func__ << ":" << __LINE__ << ")" << v;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
class hwapi;
|
class hwapi;
|
||||||
Update::Update(QString customerRepository,
|
Update::Update(QString customerRepository,
|
||||||
QString customerNrStr,
|
QString customerNrStr,
|
||||||
|
@ -59,6 +59,7 @@ public:
|
|||||||
virtual ~Update() override;
|
virtual ~Update() override;
|
||||||
|
|
||||||
bool doUpdate();
|
bool doUpdate();
|
||||||
|
static QString dcVersion(QString const &dcBinFile);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DownloadResult sendStatus(int ret) const;
|
DownloadResult sendStatus(int ret) const;
|
||||||
|
@ -161,8 +161,8 @@ void CommandLineParser::readSettings() {
|
|||||||
QString const iniFileName = m_parser.value(m_iniFileNameOption);
|
QString const iniFileName = m_parser.value(m_iniFileNameOption);
|
||||||
m_iniFileName = QDir::cleanPath(iniFileDir + QDir::separator() + iniFileName);
|
m_iniFileName = QDir::cleanPath(iniFileDir + QDir::separator() + iniFileName);
|
||||||
|
|
||||||
qCritical() << __PRETTY_FUNCTION__ << " iniFileDir" << iniFileDir;
|
//qCritical() << __PRETTY_FUNCTION__ << " iniFileDir" << iniFileDir;
|
||||||
qCritical() << __PRETTY_FUNCTION__ << "iniFileName" << m_iniFileName;
|
//qCritical() << __PRETTY_FUNCTION__ << "iniFileName" << m_iniFileName;
|
||||||
|
|
||||||
if (!m_iniFileName.isEmpty()) {
|
if (!m_iniFileName.isEmpty()) {
|
||||||
if (QFile(m_iniFileName).exists()) {
|
if (QFile(m_iniFileName).exists()) {
|
||||||
@ -171,8 +171,8 @@ void CommandLineParser::readSettings() {
|
|||||||
for (QString const &key: keys) {
|
for (QString const &key: keys) {
|
||||||
QVariant v = settings.value(key);
|
QVariant v = settings.value(key);
|
||||||
|
|
||||||
qCritical() << "(" << __func__ << ":" << __LINE__ << ")"
|
//qCritical() << "(" << __func__ << ":" << __LINE__ << ")"
|
||||||
<< key << " -> " << v.toString();
|
// << key << " -> " << v.toString();
|
||||||
|
|
||||||
if (key.contains("repository-url")) {
|
if (key.contains("repository-url")) {
|
||||||
m_repositoryUrl = v.toString();
|
m_repositoryUrl = v.toString();
|
||||||
@ -273,15 +273,9 @@ QString CommandLineParser::dcDir() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool CommandLineParser::readDCVersion() {
|
bool CommandLineParser::readDCVersion() {
|
||||||
|
|
||||||
qCritical() << __func__ << __LINE__;
|
|
||||||
|
|
||||||
if (m_parser.isSet(m_readDCVersionOption)) {
|
if (m_parser.isSet(m_readDCVersionOption)) {
|
||||||
qCritical() << __func__ << __LINE__ << m_readDCVersion;
|
|
||||||
m_readDCVersion = m_parser.value(m_readDCVersionOption);
|
m_readDCVersion = m_parser.value(m_readDCVersionOption);
|
||||||
qCritical() << __func__ << __LINE__ << m_readDCVersion;
|
|
||||||
}
|
}
|
||||||
qCritical() << __func__ << __LINE__ << m_readDCVersion;
|
|
||||||
return m_readDCVersion == "false" ? false : true;
|
return m_readDCVersion == "false" ? false : true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ class CommandLineParser : public QCommandLineParser {
|
|||||||
QString m_plugInDir;
|
QString m_plugInDir;
|
||||||
QString m_plugInName;
|
QString m_plugInName;
|
||||||
QString m_workingDir;
|
QString m_workingDir;
|
||||||
QString m_psaConfigDir;
|
QString m_psaConfigDir{"etc/psa_config"};
|
||||||
QString m_psaTariffDir;
|
QString m_psaTariffDir{"etc/psa_tariff"};
|
||||||
QString m_dryRun;
|
QString m_dryRun;
|
||||||
QString m_noUpdatePsaHardware;
|
QString m_noUpdatePsaHardware;
|
||||||
QString m_showYoctoVersion;
|
QString m_showYoctoVersion;
|
||||||
@ -21,8 +21,8 @@ class CommandLineParser : public QCommandLineParser {
|
|||||||
QString m_iniFileName;
|
QString m_iniFileName;
|
||||||
QString m_alwaysDownloadConfig;
|
QString m_alwaysDownloadConfig;
|
||||||
QString m_alwaysDownloadDC;
|
QString m_alwaysDownloadDC;
|
||||||
QString m_readDCVersion;
|
QString m_readDCVersion{"false"};
|
||||||
QString m_dcDir;
|
QString m_dcDir{"etc/dc/"};
|
||||||
|
|
||||||
QCommandLineOption m_repositoryUrlOption;
|
QCommandLineOption m_repositoryUrlOption;
|
||||||
QCommandLineOption m_iniFileDirectoryOption;
|
QCommandLineOption m_iniFileDirectoryOption;
|
||||||
|
Loading…
Reference in New Issue
Block a user