Compare commits
No commits in common. "2189684cad5f5f6df488c831553b650688d9c457" and "43f60251ef421873ce5670b366ec78aaf0b7cd3f" have entirely different histories.
2189684cad
...
43f60251ef
@ -15,7 +15,6 @@
|
|||||||
#include <QRegularExpression>
|
#include <QRegularExpression>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
#include <QDateTime>
|
|
||||||
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
|
||||||
@ -120,25 +119,16 @@ int main(int argc, char **argv) {
|
|||||||
|
|
||||||
for (QString const &m : d.object().keys()) { // request ack
|
for (QString const &m : d.object().keys()) { // request ack
|
||||||
if (!m.contains("FileUpload", Qt::CaseInsensitive)) continue;
|
if (!m.contains("FileUpload", Qt::CaseInsensitive)) continue;
|
||||||
QJsonObject o2 = d.object()[m].toObject();
|
QJsonObject o = d.object()[m].toObject();
|
||||||
|
|
||||||
QJsonObject::const_iterator it2 = o2.find("TRG");
|
QJsonObject::const_iterator it = o.find("TRG");
|
||||||
if (it2 == o2.constEnd()) break;
|
if (it == o.constEnd()) break;
|
||||||
|
|
||||||
QString const &v2 = it2->toString();
|
QString const &v = it->toString();
|
||||||
if (v2 == "WAIT") {
|
if (v == "WAIT") {
|
||||||
updateRequestStatus = internal::UPDATE_REQUESTED;
|
updateRequestStatus = internal::UPDATE_REQUESTED;
|
||||||
} else {
|
} else {
|
||||||
// the customer-repository does exist, and the ISMAS-trigger is
|
updateRequestStatus = internal::UPDATE_NOT_NECESSARY;
|
||||||
// *NOT* "WAIT", but from 00:00:00 - 00:03:59 this counts as an
|
|
||||||
// automatic update
|
|
||||||
QDateTime const ¤t = QDateTime::currentDateTime();
|
|
||||||
if (current.time().hour() < 4) {
|
|
||||||
updateRequestStatus = internal::UPDATE_NOT_NECESSARY;
|
|
||||||
} else {
|
|
||||||
updateRequestStatus = internal::UPDATE_NOT_REQUESTED;
|
|
||||||
exitCode = -2;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -159,5 +149,7 @@ int main(int argc, char **argv) {
|
|||||||
debug.noquote() << connectionStatus;
|
debug.noquote() << connectionStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
qCritical() << __func__ << ":" << __LINE__ << exitCode;
|
||||||
|
|
||||||
return exitCode;
|
return exitCode;
|
||||||
}
|
}
|
||||||
|
@ -50,17 +50,12 @@ GitCommand::GitCommand()
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool GitCommand::exec(QStringList const &options, int start_timeout, int finish_timeout) {
|
bool GitCommand::exec(QStringList const &options, int start_timeout, int finish_timeout) {
|
||||||
bool ret = false;
|
|
||||||
if (GitCommand::initEnv) {
|
if (GitCommand::initEnv) {
|
||||||
Command cmd(QString("git"), options, m_workingDirectory,
|
Command cmd(QString("git"), options, m_workingDirectory,
|
||||||
start_timeout, finish_timeout);
|
start_timeout, finish_timeout);
|
||||||
ret = cmd.exec();
|
return cmd.exec();
|
||||||
//qCritical() << __func__ << ":" << __LINE__ << cmd.command()
|
|
||||||
// << "," << cmd.args()
|
|
||||||
// << ", result" << cmd.commandResult();
|
|
||||||
m_commandResult = cmd.commandResult();
|
|
||||||
}
|
}
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GitCommand::check(int start_timeout, int finish_timeout) {
|
bool GitCommand::check(int start_timeout, int finish_timeout) {
|
||||||
|
@ -11,14 +11,9 @@ class GitCommand {
|
|||||||
|
|
||||||
bool exec(QStringList const &options, int start_timeout = 100000,
|
bool exec(QStringList const &options, int start_timeout = 100000,
|
||||||
int finish_timeout = 100000);
|
int finish_timeout = 100000);
|
||||||
|
|
||||||
QString m_commandResult{};
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
GitCommand();
|
GitCommand();
|
||||||
|
|
||||||
void resetCommandResult() { m_commandResult.clear(); }
|
|
||||||
QString const &commandResult() const { return m_commandResult; }
|
|
||||||
|
|
||||||
bool status(int start_timeout = 100000, int finish_timeout = 100000);
|
bool status(int start_timeout = 100000, int finish_timeout = 100000);
|
||||||
bool check(int start_timeout = 100000, int finish_timeout = 100000);
|
bool check(int start_timeout = 100000, int finish_timeout = 100000);
|
||||||
|
14
Git/main.cpp
14
Git/main.cpp
@ -15,7 +15,6 @@
|
|||||||
#include <QRegularExpression>
|
#include <QRegularExpression>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
#include <QRegularExpression>
|
|
||||||
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
|
||||||
@ -91,19 +90,6 @@ int main(int argc, char **argv) {
|
|||||||
if (!gitCmd.pull()) {
|
if (!gitCmd.pull()) {
|
||||||
return -4;
|
return -4;
|
||||||
}
|
}
|
||||||
QString const result = gitCmd.commandResult().trimmed();
|
|
||||||
if (result.contains("Already", Qt::CaseInsensitive)
|
|
||||||
&& result.contains("up", Qt::CaseInsensitive)
|
|
||||||
&& result.contains("to", Qt::CaseInsensitive)
|
|
||||||
&& result.contains("date", Qt::CaseInsensitive)) {
|
|
||||||
qCritical() << internal::GIT_CUSTOMER_REPO_NO_UPDATE_NECESSARY;
|
|
||||||
return internal::GIT_NOT_NECESSARY_CODE;
|
|
||||||
} else
|
|
||||||
if (result.contains(QRegularExpression("[Uu]pdating\\s+[a-z0-9]{6,}\\.\\.[a-z0-9]{6,}"))) {
|
|
||||||
// Updating 49a97f5..13a0321
|
|
||||||
qCritical() << internal::GIT_CUSTOMER_REPO_UPDATED;
|
|
||||||
return internal::GIT_UPDATED_CODE;
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
if (!gitCmd.clone()) {
|
if (!gitCmd.clone()) {
|
||||||
return -3;
|
return -3;
|
||||||
|
@ -200,17 +200,14 @@ void MainWindow::onShowCustRepoStatus(QString status) {
|
|||||||
QString s = ui->stepLabel->text();
|
QString s = ui->stepLabel->text();
|
||||||
s.chop(m_stepLabelChopCount);
|
s.chop(m_stepLabelChopCount);
|
||||||
|
|
||||||
QString tmp("Update customer repository ");
|
QString tmp("Check customer repository ");
|
||||||
int len = m_showLineLength - tmp.length();
|
int len = m_showLineLength - tmp.length();
|
||||||
while (--len > 0) {
|
while (--len > 0) {
|
||||||
tmp += " ";
|
tmp += " ";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (status.contains(internal::GIT_CUSTOMER_REPO_UP_TO_DATE, Qt::CaseInsensitive)) {
|
if (status.contains(UpdateCommand::GIT_CUSTOMER_REPO_UP_TO_DATE, Qt::CaseInsensitive)) {
|
||||||
s += QString("%1 <font color='Green'>%2</font><br />").arg(tmp).arg(internal::GIT_CUSTOMER_REPO_UP_TO_DATE);
|
s += QString("%1 <font color='Green'>up to date</font><br />").arg(tmp);
|
||||||
} else
|
|
||||||
if (status.contains(internal::GIT_CUSTOMER_REPO_NOT_NECESSARY, Qt::CaseInsensitive)) {
|
|
||||||
s += QString("%1 <font color='Green'>%2</font><br />").arg(tmp).arg(internal::GIT_CUSTOMER_REPO_NOT_NECESSARY);
|
|
||||||
} else {
|
} else {
|
||||||
s += QString( "%1 <font color='Red'>UNKNOWN STATUS</font><br />").arg(tmp);
|
s += QString( "%1 <font color='Red'>UNKNOWN STATUS</font><br />").arg(tmp);
|
||||||
}
|
}
|
||||||
@ -402,7 +399,7 @@ void MainWindow::onShowUpdateRequest(QString status) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
m_stepLabelChopCount = -s.length();
|
m_stepLabelChopCount = -s.length();
|
||||||
s += "Update customer repository";
|
s += "Check customer repository";
|
||||||
m_stepLabelChopCount += s.length();
|
m_stepLabelChopCount += s.length();
|
||||||
|
|
||||||
ui->stepLabel->setText(s);
|
ui->stepLabel->setText(s);
|
||||||
|
@ -13,20 +13,12 @@ void CheckAndFetchCustomerRepositoryCommand::finished(int exitCode, QProcess::Ex
|
|||||||
Worker *w = worker();
|
Worker *w = worker();
|
||||||
if (w) {
|
if (w) {
|
||||||
switch (exitCode) {
|
switch (exitCode) {
|
||||||
case internal::GIT_CHECKOUT_ERROR_CODE:
|
case -2:
|
||||||
emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_CHECKOUT_ERROR);
|
emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_CHECKOUT_ERROR);
|
||||||
break;
|
break;
|
||||||
case internal::GIT_PULL_ERROR_CODE:
|
case -4:
|
||||||
emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_PULL_ERROR);
|
emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_PULL_ERROR);
|
||||||
break;
|
break;
|
||||||
case internal::GIT_NOT_NECESSARY_CODE:
|
|
||||||
emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_NOT_NECESSARY);
|
|
||||||
exitCode = 0;
|
|
||||||
break;
|
|
||||||
case internal::GIT_UPDATED_CODE:
|
|
||||||
emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_UPDATED);
|
|
||||||
exitCode = 0;
|
|
||||||
break;
|
|
||||||
case 0:
|
case 0:
|
||||||
emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_UP_TO_DATE);
|
emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_UP_TO_DATE);
|
||||||
default:;
|
default:;
|
||||||
@ -37,21 +29,13 @@ void CheckAndFetchCustomerRepositoryCommand::finished(int exitCode, QProcess::Ex
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CheckAndFetchCustomerRepositoryCommand::readyReadStandardOutput() {
|
void CheckAndFetchCustomerRepositoryCommand::readyReadStandardOutput() {
|
||||||
QProcess *p = (QProcess *)sender();
|
//QProcess *p = (QProcess *)sender();
|
||||||
if (p) {
|
//if (p) {
|
||||||
Worker *w = worker();
|
// Worker *w = worker();
|
||||||
if (w) {
|
// if (w) {
|
||||||
QString s = p->readAllStandardOutput().trimmed();
|
// QString s = p->readAllStandardOutput().trimmed();
|
||||||
m_commandResult += s;
|
//
|
||||||
if (m_commandResult.contains(internal::GIT_CUSTOMER_REPO_NO_UPDATE_NECESSARY)) {
|
// qCritical() << __func__ << ":" << __LINE__ << s;
|
||||||
//emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_NOT_NECESSARY);
|
|
||||||
m_commandResult.clear();
|
|
||||||
} else
|
|
||||||
if (m_commandResult.contains(internal::GIT_CUSTOMER_REPO_UPDATED)) {
|
|
||||||
//emit w->showCustRepoStatus(internal::GIT_CUSTOMER_REPO_UPDATED);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// static constexpr const char *GIT_CUSTOMER_REPO_UP_TO_DATE{"up to date"};
|
// static constexpr const char *GIT_CUSTOMER_REPO_UP_TO_DATE{"up to date"};
|
||||||
// emit w->showCustRepoStatus(UpdateCommand::GIT_CUSTOMER_REPO_UP_TO_DATE);
|
// emit w->showCustRepoStatus(UpdateCommand::GIT_CUSTOMER_REPO_UP_TO_DATE);
|
||||||
|
@ -10,7 +10,6 @@ public:
|
|||||||
int nextCommandIndex,
|
int nextCommandIndex,
|
||||||
int start_timeout = 100000,
|
int start_timeout = 100000,
|
||||||
int finish_timeout = 100000);
|
int finish_timeout = 100000);
|
||||||
QString m_commandResult{};
|
|
||||||
public slots:
|
public slots:
|
||||||
virtual void readyReadStandardOutput() override;
|
virtual void readyReadStandardOutput() override;
|
||||||
virtual void finished(int exitCode, QProcess::ExitStatus exitStatus) override;
|
virtual void finished(int exitCode, QProcess::ExitStatus exitStatus) override;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
#include "process/check_update_activation_command.h"
|
#include "process/check_update_activation_command.h"
|
||||||
#include "worker.h"
|
#include "worker.h"
|
||||||
#include "utils_internal.h"
|
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
@ -23,17 +22,17 @@ void CheckUpdateActivationCommand::readyReadStandardOutput() {
|
|||||||
Worker *w = worker();
|
Worker *w = worker();
|
||||||
if (w) {
|
if (w) {
|
||||||
QString s = p->readAllStandardOutput().trimmed();
|
QString s = p->readAllStandardOutput().trimmed();
|
||||||
if (s == internal::UPDATE_REQUESTED) {
|
if (s == UpdateCommand::UPDATE_REQUESTED) {
|
||||||
emit w->showUpdateRequest(internal::UPDATE_REQUESTED);
|
emit w->showUpdateRequest(UpdateCommand::UPDATE_REQUESTED);
|
||||||
} else
|
} else
|
||||||
if (s == internal::UPDATE_NOT_NECESSARY) {
|
if (s == UpdateCommand::UPDATE_NOT_NECESSARY) {
|
||||||
emit w->showUpdateRequest(internal::UPDATE_NOT_NECESSARY);
|
emit w->showUpdateRequest(UpdateCommand::UPDATE_NOT_NECESSARY);
|
||||||
} else
|
} else
|
||||||
if (s == internal::UPDATE_NOT_REQUESTED) {
|
if (s == UpdateCommand::UPDATE_NOT_REQUESTED) {
|
||||||
emit w->showUpdateRequest(internal::UPDATE_NOT_REQUESTED);
|
emit w->showUpdateRequest(UpdateCommand::UPDATE_NOT_REQUESTED);
|
||||||
} else
|
} else
|
||||||
if (s == internal::NO_CUSTOMER_REPOSITORY) {
|
if (s == UpdateCommand::NO_CUSTOMER_REPOSITORY) {
|
||||||
emit w->showUpdateRequest(internal::NO_CUSTOMER_REPOSITORY);
|
emit w->showUpdateRequest(UpdateCommand::NO_CUSTOMER_REPOSITORY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -32,11 +32,8 @@ public:
|
|||||||
int start_timeout = 100000,
|
int start_timeout = 100000,
|
||||||
int finish_timeout = 100000);
|
int finish_timeout = 100000);
|
||||||
|
|
||||||
void resetCommandResult() { m_commandResult.clear(); }
|
|
||||||
QString getCommandResult(bool reset = false);
|
QString getCommandResult(bool reset = false);
|
||||||
QString const &command() const { return m_command; }
|
QString command() const { return m_command; }
|
||||||
QString const &commandResult() const { return m_commandResult; }
|
|
||||||
QStringList const &args() const { return m_args; }
|
|
||||||
|
|
||||||
bool exec();
|
bool exec();
|
||||||
int exitCode() const { return m_exitCode; }
|
int exitCode() const { return m_exitCode; }
|
||||||
|
@ -8,37 +8,21 @@ namespace internal {
|
|||||||
static constexpr const char *UPDATE_NOT_NECESSARY{"not necessary"};
|
static constexpr const char *UPDATE_NOT_NECESSARY{"not necessary"};
|
||||||
static constexpr const char *UPDATE_NOT_REQUESTED{"not requested"};
|
static constexpr const char *UPDATE_NOT_REQUESTED{"not requested"};
|
||||||
static constexpr const char *UPDATE_REQUESTED{"requested"};
|
static constexpr const char *UPDATE_REQUESTED{"requested"};
|
||||||
|
|
||||||
static constexpr const char *NO_CUSTOMER_REPOSITORY{"no customer repository"};
|
static constexpr const char *NO_CUSTOMER_REPOSITORY{"no customer repository"};
|
||||||
|
|
||||||
static constexpr const char *ISMAS_CONNECTED{"connected"};
|
static constexpr const char *ISMAS_CONNECTED{"connected"};
|
||||||
static constexpr const char *ISMAS_DISCONNECTED{"disconnected"};
|
static constexpr const char *ISMAS_DISCONNECTED{"disconnected"};
|
||||||
static constexpr const char *ISMAS_DISCONNECTING{"disconnecting"};
|
static constexpr const char *ISMAS_DISCONNECTING{"disconnecting"};
|
||||||
static constexpr const char *ISMAS_NOT_CONNECTED{"not connected"};
|
static constexpr const char *ISMAS_NOT_CONNECTED{"not connected"};
|
||||||
static constexpr const char *ISMAS_CONNECTION_IN_PROGRESS{"connecting"};
|
static constexpr const char *ISMAS_CONNECTION_IN_PROGRESS{"connecting"};
|
||||||
|
|
||||||
static constexpr const int GIT_CHECKOUT_ERROR_CODE{-2};
|
|
||||||
static constexpr const int GIT_PULL_ERROR_CODE{-4};
|
|
||||||
static constexpr const int GIT_NOT_NECESSARY_CODE{1};
|
|
||||||
static constexpr const int GIT_UPDATED_CODE{2};
|
|
||||||
|
|
||||||
static constexpr const char *GIT_CUSTOMER_REPO_CHECKOUT_ERROR{"checkout error"};
|
static constexpr const char *GIT_CUSTOMER_REPO_CHECKOUT_ERROR{"checkout error"};
|
||||||
static constexpr const char *GIT_CUSTOMER_REPO_PULL_ERROR{"pull error"};
|
static constexpr const char *GIT_CUSTOMER_REPO_PULL_ERROR{"pull error"};
|
||||||
static constexpr const char *GIT_CUSTOMER_REPO_UP_TO_DATE{"up to date"};
|
static constexpr const char *GIT_CUSTOMER_REPO_UP_TO_DATE{"up to date"};
|
||||||
static constexpr const char *GIT_CUSTOMER_REPO_NO_UPDATE_NECESSARY{"no repository update necessary"};
|
|
||||||
static constexpr const char *GIT_CUSTOMER_REPO_NOT_NECESSARY{"not necessary"};
|
|
||||||
static constexpr const char *GIT_CUSTOMER_REPO_UPDATED{"repository updated"};
|
|
||||||
static constexpr const char *GIT_UPDATED{"updated"};
|
|
||||||
|
|
||||||
static constexpr const char *EXEC_OPKG_COMMANDS_SUCCESS{"success"};
|
static constexpr const char *EXEC_OPKG_COMMANDS_SUCCESS{"success"};
|
||||||
static constexpr const char *EXEC_OPKG_COMMANDS_FAIL{"FAIL"};
|
static constexpr const char *EXEC_OPKG_COMMANDS_FAIL{"FAIL"};
|
||||||
static constexpr const char *EXEC_OPKG_COMMANDS_NOACTION_SUCCESS{"success"};
|
static constexpr const char *EXEC_OPKG_COMMANDS_NOACTION_SUCCESS{"success"};
|
||||||
static constexpr const char *EXEC_OPKG_COMMANDS_NOACTION_FAIL{"FAIL"};
|
static constexpr const char *EXEC_OPKG_COMMANDS_NOACTION_FAIL{"FAIL"};
|
||||||
|
|
||||||
static constexpr const char *UPDATE_DC_JSON_FILES_SUCCESS{"success"};
|
static constexpr const char *UPDATE_DC_JSON_FILES_SUCCESS{"success"};
|
||||||
|
|
||||||
static constexpr const char *SYNC_CUSTOMER_REPO_FILES_SUCCESS{"success"};
|
static constexpr const char *SYNC_CUSTOMER_REPO_FILES_SUCCESS{"success"};
|
||||||
|
|
||||||
static constexpr const char *UPDATE_DC_FIRMARE_SUCCESS{"success"};
|
static constexpr const char *UPDATE_DC_FIRMARE_SUCCESS{"success"};
|
||||||
|
|
||||||
static constexpr const char *OPKG_MARKER{"<OPKG>"};
|
static constexpr const char *OPKG_MARKER{"<OPKG>"};
|
||||||
|
@ -22,48 +22,6 @@ namespace ISMAS {
|
|||||||
return QString (local.toString(Qt::ISODateWithMs) + st);
|
return QString (local.toString(Qt::ISODateWithMs) + st);
|
||||||
}
|
}
|
||||||
|
|
||||||
enum RESULT_CODE {
|
|
||||||
E_SUCCESS=0,
|
|
||||||
// if between 00:00 - 04:00 Wait-button state not WAIT, then we assume
|
|
||||||
// that's an automatic nightly (not-necessary) update
|
|
||||||
E_NO_UPDATE_NECESSARY=1,
|
|
||||||
// if APISM reports the ISMAS is not available (15x, 6s delay each)
|
|
||||||
E_ISMAS_NO_CONNECTION_ERROR=2,
|
|
||||||
// if not within 00:00-04:00 and WAIT-button was not in state WAIT
|
|
||||||
E_ISMAS_TRIGGER_ERROR=3,
|
|
||||||
// cloning git repo. not possible
|
|
||||||
E_GIT_CLONE_ERROR=4,
|
|
||||||
// pulling from remote git server not possible
|
|
||||||
E_GIT_PULL_ERROR=5,
|
|
||||||
// fetching from remote git server not possible
|
|
||||||
E_GIT_FETCH_ERROR=6,
|
|
||||||
// merging fetched data not possible
|
|
||||||
E_GIT_MERGE_ERROR=7,
|
|
||||||
// check sanity of local customer-repository failed
|
|
||||||
E_GIT_CHECK_REPOSITORY_ERROR=8,
|
|
||||||
// switch/checkout of branch (i.e. zone) on error
|
|
||||||
E_GIT_SWITCH_BRANCH_ERROR=9,
|
|
||||||
// fetch/pull of new branch failed. the new branch was not available
|
|
||||||
// when installing via SD-card followed by intial clone during the
|
|
||||||
// update process.
|
|
||||||
E_GIT_FETCH_NEW_BRANCH_ERROR=10,
|
|
||||||
// error computing git-blob hash-value
|
|
||||||
E_GIT_HASH_ERROR=11,
|
|
||||||
// update for general json files failed.
|
|
||||||
E_JSON_FILES_UPDATE_ERROR=12,
|
|
||||||
// error downloading config-json-files to device controller
|
|
||||||
E_JSON_FILES_DOWNLOAD_ERROR=13,
|
|
||||||
// error downloading device-controller
|
|
||||||
E_DC_DOWNLOAD_ERROR=14,
|
|
||||||
// error rsyncing json/ini-files to local filesystem
|
|
||||||
E_RSYN_ERROR=15,
|
|
||||||
// HASH_VALUE_ERROR=14,
|
|
||||||
// HW_COMPATIBILITY_ERROR=15,
|
|
||||||
E_OPKG_COMMANDS_ERROR=16,
|
|
||||||
// CLEANUP_ERROR=18,
|
|
||||||
E_UPDATE_IN_ERROR_STATE=99
|
|
||||||
};
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Note:
|
// Note:
|
||||||
// ! After U0002 immer ein CMD_SENDVERSION
|
// ! After U0002 immer ein CMD_SENDVERSION
|
||||||
|
@ -31,8 +31,7 @@ void Command::readyReadStandardOutput() {
|
|||||||
if (p) {
|
if (p) {
|
||||||
QString s = p->readAllStandardOutput();
|
QString s = p->readAllStandardOutput();
|
||||||
if (m_verbose) {
|
if (m_verbose) {
|
||||||
// qCritical().noquote() << s;
|
qCritical().noquote() << s;
|
||||||
m_commandResult += s;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -40,9 +39,7 @@ void Command::readyReadStandardOutput() {
|
|||||||
void Command::readyReadStandardError() {
|
void Command::readyReadStandardError() {
|
||||||
QProcess *p = (QProcess *)sender();
|
QProcess *p = (QProcess *)sender();
|
||||||
if (p) {
|
if (p) {
|
||||||
QString s = p->readAllStandardError();
|
qCritical().noquote() << p->readAllStandardError();
|
||||||
// qCritical().noquote() << s;
|
|
||||||
m_commandResult += s;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user