Improved progress indicator + refactored update info parsing code.
This commit is contained in:
parent
be887a796f
commit
a2e57f2d45
@ -135,7 +135,11 @@ namespace MUtils
|
|||||||
|
|
||||||
bool getUpdateInfo(const QString &url, const QString &outFileVers, const QString &outFileSign);
|
bool getUpdateInfo(const QString &url, const QString &outFileVers, const QString &outFileSign);
|
||||||
bool tryContactHost(const QString &hostname, const int &timeoutMsec);
|
bool tryContactHost(const QString &hostname, const int &timeoutMsec);
|
||||||
bool parseVersionInfo(const QString &file, UpdateCheckerInfo *updateInfo);
|
|
||||||
|
bool parseVersionInfo(const QString &file, UpdateCheckerInfo *const updateInfo);
|
||||||
|
int parseSectionHeaderStr(const QString &name);
|
||||||
|
void parseHeaderValue(const QString &key, const QString &val, QDate &updateInfoDate);
|
||||||
|
void parseUpdateInfoValue(const QString &key, const QString &val, UpdateCheckerInfo *const updateInfo);
|
||||||
|
|
||||||
bool getFile(const QUrl &url, const QString &outFile, const unsigned int maxRedir = 8U);
|
bool getFile(const QUrl &url, const QString &outFile, const unsigned int maxRedir = 8U);
|
||||||
bool checkSignature(const QString &file, const QString &signature);
|
bool checkSignature(const QString &file, const QString &signature);
|
||||||
|
@ -42,9 +42,9 @@
|
|||||||
// CONSTANTS
|
// CONSTANTS
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
static const char *header_id = "!Update";
|
static const char *HEADER_ID = "!Update";
|
||||||
|
|
||||||
static const char *mirror_url_postfix[] =
|
static const char *MIRROR_URL_POSTFIX[] =
|
||||||
{
|
{
|
||||||
"update.ver",
|
"update.ver",
|
||||||
"update_beta.ver",
|
"update_beta.ver",
|
||||||
@ -72,21 +72,21 @@ static char *USER_AGENT_STR = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Geck
|
|||||||
} \
|
} \
|
||||||
while(0)
|
while(0)
|
||||||
|
|
||||||
|
#define LOG_MESSAGE_HELPER(X) do \
|
||||||
|
{ \
|
||||||
|
if (!(X).isNull()) \
|
||||||
|
{ \
|
||||||
|
emit messageLogged((X)); \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
while(0)
|
||||||
|
|
||||||
|
#define STRICMP(X,Y) ((X).compare((Y), Qt::CaseInsensitive) == 0)
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Helper Functions
|
// Helper Functions
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
static int getMaxProgress(void)
|
|
||||||
{
|
|
||||||
int counter = 0;
|
|
||||||
while (update_mirrors[counter])
|
|
||||||
{
|
|
||||||
counter++;
|
|
||||||
}
|
|
||||||
counter += MIN_CONNSCORE + QUICK_MIRRORS + 2;
|
|
||||||
return counter; ;
|
|
||||||
}
|
|
||||||
|
|
||||||
static QStringList buildRandomList(const char *const values[])
|
static QStringList buildRandomList(const char *const values[])
|
||||||
{
|
{
|
||||||
QStringList list;
|
QStringList list;
|
||||||
@ -127,15 +127,13 @@ void MUtils::UpdateCheckerInfo::resetInfo(void)
|
|||||||
|
|
||||||
bool MUtils::UpdateCheckerInfo::isComplete(void)
|
bool MUtils::UpdateCheckerInfo::isComplete(void)
|
||||||
{
|
{
|
||||||
if(this->m_buildNo < 1) return false;
|
return (this->m_buildNo > 0) &&
|
||||||
if(this->m_buildDate.year() < 2010) return false;
|
(this->m_buildDate.year() >= 2010) &&
|
||||||
if(this->m_downloadSite.isEmpty()) return false;
|
(!this->m_downloadSite.isEmpty()) &&
|
||||||
if(this->m_downloadAddress.isEmpty()) return false;
|
(!this->m_downloadAddress.isEmpty()) &&
|
||||||
if(this->m_downloadFilename.isEmpty()) return false;
|
(!this->m_downloadFilename.isEmpty()) &&
|
||||||
if(this->m_downloadFilecode.isEmpty()) return false;
|
(!this->m_downloadFilecode.isEmpty()) &&
|
||||||
if(this->m_downloadChecksum.isEmpty()) return false;
|
(!this->m_downloadChecksum.isEmpty());
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
@ -152,7 +150,7 @@ MUtils::UpdateChecker::UpdateChecker(const QString &binCurl, const QString &binG
|
|||||||
m_installedBuildNo(installedBuildNo),
|
m_installedBuildNo(installedBuildNo),
|
||||||
m_betaUpdates(betaUpdates),
|
m_betaUpdates(betaUpdates),
|
||||||
m_testMode(testMode),
|
m_testMode(testMode),
|
||||||
m_maxProgress(getMaxProgress()),
|
m_maxProgress(MIN_CONNSCORE + 5),
|
||||||
m_environment(initEnvVars())
|
m_environment(initEnvVars())
|
||||||
{
|
{
|
||||||
m_status = UpdateStatus_NotStartedYet;
|
m_status = UpdateStatus_NotStartedYet;
|
||||||
@ -214,7 +212,7 @@ void MUtils::UpdateChecker::checkForUpdates(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
msleep(500);
|
msleep(333);
|
||||||
setProgress(1);
|
setProgress(1);
|
||||||
|
|
||||||
// ----- Test Known Hosts Connectivity ----- //
|
// ----- Test Known Hosts Connectivity ----- //
|
||||||
@ -232,8 +230,7 @@ void MUtils::UpdateChecker::checkForUpdates(void)
|
|||||||
const QString hostName = mirrorList.takeFirst();
|
const QString hostName = mirrorList.takeFirst();
|
||||||
if (tryContactHost(hostName, connectionTimout))
|
if (tryContactHost(hostName, connectionTimout))
|
||||||
{
|
{
|
||||||
connectionScore += 1;
|
setProgress(1 + (connectionScore += 1));
|
||||||
setProgress(qBound(1, connectionScore + 1, MIN_CONNSCORE + 1));
|
|
||||||
elapsedTimer.restart();
|
elapsedTimer.restart();
|
||||||
if (connectionScore >= MIN_CONNSCORE)
|
if (connectionScore >= MIN_CONNSCORE)
|
||||||
{
|
{
|
||||||
@ -268,7 +265,6 @@ endLoop:
|
|||||||
|
|
||||||
while(!mirrorList.isEmpty())
|
while(!mirrorList.isEmpty())
|
||||||
{
|
{
|
||||||
setProgress(m_progress + 1);
|
|
||||||
const QString currentMirror = mirrorList.takeFirst();
|
const QString currentMirror = mirrorList.takeFirst();
|
||||||
const bool isQuick = (mirrorCount++ < QUICK_MIRRORS);
|
const bool isQuick = (mirrorCount++ < QUICK_MIRRORS);
|
||||||
if(tryUpdateMirror(m_updateInfo.data(), currentMirror, isQuick))
|
if(tryUpdateMirror(m_updateInfo.data(), currentMirror, isQuick))
|
||||||
@ -284,12 +280,8 @@ endLoop:
|
|||||||
msleep(1);
|
msleep(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (m_progress < m_maxProgress)
|
msleep(333);
|
||||||
{
|
setProgress(MIN_CONNSCORE + 5);
|
||||||
msleep(16);
|
|
||||||
setProgress(m_progress + 1);
|
|
||||||
CHECK_CANCELLED();
|
|
||||||
}
|
|
||||||
|
|
||||||
// ----- Generate final result ----- //
|
// ----- Generate final result ----- //
|
||||||
|
|
||||||
@ -316,14 +308,14 @@ endLoop:
|
|||||||
|
|
||||||
void MUtils::UpdateChecker::testMirrorsList(void)
|
void MUtils::UpdateChecker::testMirrorsList(void)
|
||||||
{
|
{
|
||||||
// ----- Test update mirrors ----- //
|
|
||||||
|
|
||||||
QStringList mirrorList;
|
QStringList mirrorList;
|
||||||
for(int i = 0; update_mirrors[i]; i++)
|
for(int i = 0; update_mirrors[i]; i++)
|
||||||
{
|
{
|
||||||
mirrorList << QString::fromLatin1(update_mirrors[i]);
|
mirrorList << QString::fromLatin1(update_mirrors[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ----- Test update mirrors ----- //
|
||||||
|
|
||||||
qDebug("\n[Mirror Sites]");
|
qDebug("\n[Mirror Sites]");
|
||||||
log("Testing all known mirror sites...", "", "---");
|
log("Testing all known mirror sites...", "", "---");
|
||||||
|
|
||||||
@ -370,7 +362,7 @@ void MUtils::UpdateChecker::testMirrorsList(void)
|
|||||||
{
|
{
|
||||||
qWarning("\nConnectivity test FAILED on the following host:\n%s\n", MUTILS_L1STR(currentHost));
|
qWarning("\nConnectivity test FAILED on the following host:\n%s\n", MUTILS_L1STR(currentHost));
|
||||||
}
|
}
|
||||||
log("", "---");
|
log("---");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -389,28 +381,29 @@ void MUtils::UpdateChecker::setStatus(const int status)
|
|||||||
|
|
||||||
void MUtils::UpdateChecker::setProgress(const int progress)
|
void MUtils::UpdateChecker::setProgress(const int progress)
|
||||||
{
|
{
|
||||||
if(m_progress != progress)
|
const int value = qBound(0, progress, m_maxProgress);
|
||||||
|
if(m_progress != value)
|
||||||
{
|
{
|
||||||
m_progress = progress;
|
emit progressChanged(m_progress = value);
|
||||||
emit progressChanged(progress);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MUtils::UpdateChecker::log(const QString &str1, const QString &str2, const QString &str3, const QString &str4)
|
void MUtils::UpdateChecker::log(const QString &str1, const QString &str2, const QString &str3, const QString &str4)
|
||||||
{
|
{
|
||||||
if(!str1.isNull()) emit messageLogged(str1);
|
LOG_MESSAGE_HELPER(str1);
|
||||||
if(!str2.isNull()) emit messageLogged(str2);
|
LOG_MESSAGE_HELPER(str2);
|
||||||
if(!str3.isNull()) emit messageLogged(str3);
|
LOG_MESSAGE_HELPER(str3);
|
||||||
if(!str4.isNull()) emit messageLogged(str4);
|
LOG_MESSAGE_HELPER(str4);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MUtils::UpdateChecker::tryUpdateMirror(UpdateCheckerInfo *updateInfo, const QString &url, const bool &quick)
|
bool MUtils::UpdateChecker::tryUpdateMirror(UpdateCheckerInfo *updateInfo, const QString &url, const bool &quick)
|
||||||
{
|
{
|
||||||
bool success = false;
|
bool success = false;
|
||||||
log("", "Trying mirror:", url, "");
|
log("", "Trying update mirror:", url, "");
|
||||||
|
|
||||||
if (quick)
|
if (quick)
|
||||||
{
|
{
|
||||||
|
setProgress(MIN_CONNSCORE + 1);
|
||||||
if (!tryContactHost(QUrl(url).host(), (MAX_CONN_TIMEOUT / 8)))
|
if (!tryContactHost(QUrl(url).host(), (MAX_CONN_TIMEOUT / 8)))
|
||||||
{
|
{
|
||||||
log("", "Mirror is too slow, skipping!");
|
log("", "Mirror is too slow, skipping!");
|
||||||
@ -422,53 +415,54 @@ bool MUtils::UpdateChecker::tryUpdateMirror(UpdateCheckerInfo *updateInfo, const
|
|||||||
const QString outFileVers = QString("%1/%2.ver").arg(temp_folder(), randPart);
|
const QString outFileVers = QString("%1/%2.ver").arg(temp_folder(), randPart);
|
||||||
const QString outFileSign = QString("%1/%2.sig").arg(temp_folder(), randPart);
|
const QString outFileSign = QString("%1/%2.sig").arg(temp_folder(), randPart);
|
||||||
|
|
||||||
if (getUpdateInfo(url, outFileVers, outFileSign))
|
if (!getUpdateInfo(url, outFileVers, outFileSign))
|
||||||
{
|
{
|
||||||
log("Download completed, verifying signature:", "");
|
log("", "Oops: Download of update information has failed!");
|
||||||
if (checkSignature(outFileVers, outFileSign))
|
goto cleanUp;
|
||||||
{
|
|
||||||
log("", "Signature is valid, parsing info:", "");
|
|
||||||
success = parseVersionInfo(outFileVers, updateInfo);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
log("", "Bad signature, take care !!!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
log("", "Download has failed!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log("Download completed, verifying signature:", "");
|
||||||
|
setProgress(MIN_CONNSCORE + 4);
|
||||||
|
if (!checkSignature(outFileVers, outFileSign))
|
||||||
|
{
|
||||||
|
log("", "Bad signature detected, take care !!!");
|
||||||
|
goto cleanUp;
|
||||||
|
}
|
||||||
|
|
||||||
|
log("", "Signature is valid, parsing update information:", "");
|
||||||
|
success = parseVersionInfo(outFileVers, updateInfo);
|
||||||
|
|
||||||
|
cleanUp:
|
||||||
QFile::remove(outFileVers);
|
QFile::remove(outFileVers);
|
||||||
QFile::remove(outFileSign);
|
QFile::remove(outFileSign);
|
||||||
|
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MUtils::UpdateChecker::getUpdateInfo(const QString &url, const QString &outFileVers, const QString &outFileSign)
|
bool MUtils::UpdateChecker::getUpdateInfo(const QString &url, const QString &outFileVers, const QString &outFileSign)
|
||||||
{
|
{
|
||||||
log("Downloading update info:", "");
|
log("Downloading update information:", "");
|
||||||
if(getFile(QUrl(QString("%1%2").arg(url, mirror_url_postfix[m_betaUpdates ? 1 : 0])), outFileVers))
|
setProgress(MIN_CONNSCORE + 2);
|
||||||
|
if(getFile(QUrl(QString("%1%2").arg(url, MIRROR_URL_POSTFIX[m_betaUpdates ? 1 : 0])), outFileVers))
|
||||||
{
|
{
|
||||||
if (!m_cancelled)
|
if (!m_cancelled)
|
||||||
{
|
{
|
||||||
log( "Downloading signature file:", "");
|
log( "Downloading signature file:", "");
|
||||||
if (getFile(QUrl(QString("%1%2.sig2").arg(url, mirror_url_postfix[m_betaUpdates ? 1 : 0])), outFileSign))
|
setProgress(MIN_CONNSCORE + 3);
|
||||||
|
if (getFile(QUrl(QString("%1%2.sig2").arg(url, MIRROR_URL_POSTFIX[m_betaUpdates ? 1 : 0])), outFileSign))
|
||||||
{
|
{
|
||||||
return true;
|
return true; /*completed*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MUtils::UpdateChecker::parseVersionInfo(const QString &file, UpdateCheckerInfo *updateInfo)
|
//----------------------------------------------------------
|
||||||
{
|
// PARSE UPDATE INFO
|
||||||
QRegExp value("^(\\w+)=(.+)$");
|
//----------------------------------------------------------
|
||||||
QRegExp section("^\\[(.+)\\]$");
|
|
||||||
|
|
||||||
QDate updateInfoDate;
|
bool MUtils::UpdateChecker::parseVersionInfo(const QString &file, UpdateCheckerInfo *const updateInfo)
|
||||||
|
{
|
||||||
updateInfo->resetInfo();
|
updateInfo->resetInfo();
|
||||||
|
|
||||||
QFile data(file);
|
QFile data(file);
|
||||||
@ -478,92 +472,149 @@ bool MUtils::UpdateChecker::parseVersionInfo(const QString &file, UpdateCheckerI
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool inHdr = false;
|
QDate updateInfoDate;
|
||||||
bool inSec = false;
|
int sectionId = 0;
|
||||||
|
QRegExp regex_sec("^\\[(.+)\\]$"), regex_val("^([^=]+)=(.+)$");
|
||||||
|
|
||||||
while(!data.atEnd())
|
while(!data.atEnd())
|
||||||
{
|
{
|
||||||
QString line = QString::fromLatin1(data.readLine()).trimmed();
|
QString line = QString::fromLatin1(data.readLine()).trimmed();
|
||||||
if(section.indexIn(line) >= 0)
|
if (regex_sec.indexIn(line) >= 0)
|
||||||
{
|
{
|
||||||
log(QString("Sec: [%1]").arg(section.cap(1)));
|
sectionId = parseSectionHeaderStr(regex_sec.cap(1).trimmed());
|
||||||
inSec = (section.cap(1).compare(m_applicationId, Qt::CaseInsensitive) == 0);
|
|
||||||
inHdr = (section.cap(1).compare(QString::fromLatin1(header_id), Qt::CaseInsensitive) == 0);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if(inSec && (value.indexIn(line) >= 0))
|
if (regex_val.indexIn(line) >= 0)
|
||||||
{
|
{
|
||||||
log(QString("Val: '%1' ==> '%2").arg(value.cap(1), value.cap(2)));
|
const QString key = regex_val.cap(1).trimmed();
|
||||||
if(value.cap(1).compare("BuildNo", Qt::CaseInsensitive) == 0)
|
const QString val = regex_val.cap(2).trimmed();
|
||||||
|
switch (sectionId)
|
||||||
{
|
{
|
||||||
bool ok = false;
|
case 1:
|
||||||
const unsigned int temp = value.cap(2).toUInt(&ok);
|
parseHeaderValue(key, val, updateInfoDate);
|
||||||
if(ok) updateInfo->m_buildNo = temp;
|
break;
|
||||||
}
|
case 2:
|
||||||
else if(value.cap(1).compare("BuildDate", Qt::CaseInsensitive) == 0)
|
parseUpdateInfoValue(key, val, updateInfo);
|
||||||
{
|
break;
|
||||||
const QDate temp = QDate::fromString(value.cap(2).trimmed(), Qt::ISODate);
|
|
||||||
if(temp.isValid()) updateInfo->m_buildDate = temp;
|
|
||||||
}
|
|
||||||
else if(value.cap(1).compare("DownloadSite", Qt::CaseInsensitive) == 0)
|
|
||||||
{
|
|
||||||
updateInfo->m_downloadSite = value.cap(2).trimmed();
|
|
||||||
}
|
|
||||||
else if(value.cap(1).compare("DownloadAddress", Qt::CaseInsensitive) == 0)
|
|
||||||
{
|
|
||||||
updateInfo->m_downloadAddress = value.cap(2).trimmed();
|
|
||||||
}
|
|
||||||
else if(value.cap(1).compare("DownloadFilename", Qt::CaseInsensitive) == 0)
|
|
||||||
{
|
|
||||||
updateInfo->m_downloadFilename = value.cap(2).trimmed();
|
|
||||||
}
|
|
||||||
else if(value.cap(1).compare("DownloadFilecode", Qt::CaseInsensitive) == 0)
|
|
||||||
{
|
|
||||||
updateInfo->m_downloadFilecode = value.cap(2).trimmed();
|
|
||||||
}
|
|
||||||
else if(value.cap(1).compare("DownloadChecksum", Qt::CaseInsensitive) == 0)
|
|
||||||
{
|
|
||||||
updateInfo->m_downloadChecksum = value.cap(2).trimmed();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if(inHdr && (value.indexIn(line) >= 0))
|
|
||||||
{
|
|
||||||
log(QString("Val: '%1' ==> '%2").arg(value.cap(1), value.cap(2)));
|
|
||||||
if(value.cap(1).compare("TimestampCreated", Qt::CaseInsensitive) == 0)
|
|
||||||
{
|
|
||||||
QDate temp = QDate::fromString(value.cap(2).trimmed(), Qt::ISODate);
|
|
||||||
if(temp.isValid()) updateInfoDate = temp;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!updateInfoDate.isValid())
|
if(updateInfoDate.isValid())
|
||||||
{
|
{
|
||||||
updateInfo->resetInfo();
|
const QDate expiredDate = updateInfoDate.addMonths(VERSION_INFO_EXPIRES_MONTHS);
|
||||||
log("WARNING: Version info timestamp is missing!");
|
if (expiredDate < OS::current_date())
|
||||||
return false;
|
{
|
||||||
|
log(QString("WARNING: Update information has expired at %1!").arg(expiredDate.toString(Qt::ISODate)));
|
||||||
|
goto cleanUp;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
const QDate currentDate = OS::current_date();
|
|
||||||
if(updateInfoDate.addMonths(VERSION_INFO_EXPIRES_MONTHS) < currentDate)
|
|
||||||
{
|
{
|
||||||
updateInfo->resetInfo();
|
log("WARNING: Timestamp is missing from update information header!");
|
||||||
log(QString::fromLatin1("WARNING: This version info has expired at %1!").arg(updateInfoDate.addMonths(VERSION_INFO_EXPIRES_MONTHS).toString(Qt::ISODate)));
|
goto cleanUp;
|
||||||
return false;
|
|
||||||
}
|
|
||||||
else if(currentDate < updateInfoDate)
|
|
||||||
{
|
|
||||||
log("Version info is from the future, take care!");
|
|
||||||
qWarning("Version info is from the future, take care!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!updateInfo->isComplete())
|
if(!updateInfo->isComplete())
|
||||||
{
|
{
|
||||||
log("WARNING: Version info is incomplete!");
|
log("WARNING: Update information is incomplete!");
|
||||||
return false;
|
goto cleanUp;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
log("", "Success: Update information is complete.");
|
||||||
|
return true; /*success*/
|
||||||
|
|
||||||
|
cleanUp:
|
||||||
|
updateInfo->resetInfo();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
int MUtils::UpdateChecker::parseSectionHeaderStr(const QString &name)
|
||||||
|
{
|
||||||
|
log(QString("Sec: [%1]").arg(name));
|
||||||
|
|
||||||
|
if (STRICMP(name, HEADER_ID))
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (STRICMP(name, m_applicationId))
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unknonw section encountered!
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void MUtils::UpdateChecker::parseHeaderValue(const QString &key, const QString &val, QDate &updateInfoDate)
|
||||||
|
{
|
||||||
|
log(QString("Hdr: \"%1\"=\"%2\"").arg(key, val));
|
||||||
|
|
||||||
|
if (STRICMP(key, "TimestampCreated"))
|
||||||
|
{
|
||||||
|
const QDate temp = QDate::fromString(val, Qt::ISODate);
|
||||||
|
if (temp.isValid())
|
||||||
|
{
|
||||||
|
updateInfoDate = temp;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unknown entry encountered!
|
||||||
|
qWarning("Unknown header value: %s", MUTILS_L1STR(key));
|
||||||
|
}
|
||||||
|
|
||||||
|
void MUtils::UpdateChecker::parseUpdateInfoValue(const QString &key, const QString &val, UpdateCheckerInfo *const updateInfo)
|
||||||
|
{
|
||||||
|
log(QString("Val: \"%1\"=\"%2\"").arg(key, val));
|
||||||
|
|
||||||
|
if (STRICMP(key, "BuildNo"))
|
||||||
|
{
|
||||||
|
bool ok = false;
|
||||||
|
const unsigned int temp = val.toUInt(&ok);
|
||||||
|
if (ok)
|
||||||
|
{
|
||||||
|
updateInfo->m_buildNo = temp;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (STRICMP(key, "BuildDate"))
|
||||||
|
{
|
||||||
|
const QDate temp = QDate::fromString(val, Qt::ISODate);
|
||||||
|
if (temp.isValid())
|
||||||
|
{
|
||||||
|
updateInfo->m_buildDate = temp;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (STRICMP(key, "DownloadSite"))
|
||||||
|
{
|
||||||
|
updateInfo->m_downloadSite = val;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (STRICMP(key, "DownloadAddress"))
|
||||||
|
{
|
||||||
|
updateInfo->m_downloadAddress = val;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (STRICMP(key, "DownloadFilename"))
|
||||||
|
{
|
||||||
|
updateInfo->m_downloadFilename = val;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (STRICMP(key, "DownloadFilecode"))
|
||||||
|
{
|
||||||
|
updateInfo->m_downloadFilecode = val;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (STRICMP(key, "DownloadChecksum"))
|
||||||
|
{
|
||||||
|
updateInfo->m_downloadChecksum = val;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Unknown entry encountered!
|
||||||
|
qWarning("Unknown update value: %s", MUTILS_L1STR(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------
|
//----------------------------------------------------------
|
||||||
@ -699,7 +750,7 @@ int MUtils::UpdateChecker::execProcess(const QString &programFile, const QString
|
|||||||
while (process.canReadLine())
|
while (process.canReadLine())
|
||||||
{
|
{
|
||||||
const QString line = QString::fromLatin1(process.readLine()).simplified();
|
const QString line = QString::fromLatin1(process.readLine()).simplified();
|
||||||
if ((!line.isEmpty()) && line.compare(QLatin1String("<")) && line.compare(QLatin1String(">")))
|
if (line.length() > 1)
|
||||||
{
|
{
|
||||||
log(line);
|
log(line);
|
||||||
}
|
}
|
||||||
@ -725,7 +776,7 @@ int MUtils::UpdateChecker::execProcess(const QString &programFile, const QString
|
|||||||
while (process.canReadLine())
|
while (process.canReadLine())
|
||||||
{
|
{
|
||||||
const QString line = QString::fromLatin1(process.readLine()).simplified();
|
const QString line = QString::fromLatin1(process.readLine()).simplified();
|
||||||
if ((!line.isEmpty()) && line.compare(QLatin1String("<")) && line.compare(QLatin1String(">")))
|
if (line.length() > 1)
|
||||||
{
|
{
|
||||||
log(line);
|
log(line);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user