OSCAR-code/sleepyhead/updateparser.cpp

218 lines
5.8 KiB
C++
Raw Normal View History

2014-08-17 12:56:05 +00:00
/* UpdateParser Implementation (Autoupdater component)
*
2016-03-01 11:59:04 +00:00
* Copyright (c) 2011-2016 Mark Watkins <jedimark@users.sourceforge.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the Linux
* distribution for more details. */
#include <QDebug>
#include "updateparser.h"
#ifndef nullptr
#define nullptr NULL
#endif
2011-12-17 06:40:04 +00:00
Update::Update()
{
size = 0;
2011-12-17 06:40:04 +00:00
}
Update::Update(const Update &copy)
2011-12-17 06:40:04 +00:00
{
type = copy.type;
version = copy.version;
platform = copy.platform;
date = copy.date;
filename = copy.filename;
url = copy.url;
hash = copy.hash;
size = copy.size;
notes = copy.notes;
unzipped_path = copy.unzipped_path;
2011-12-17 06:40:04 +00:00
}
Update::Update(QString _type, QString _version, QString _platform, QDate _date)
{
type = _type;
version = _version;
platform = _platform;
date = _date;
size = 0;
2011-12-17 06:40:04 +00:00
}
bool UpdateParser::startDocument()
{
inRelease = false;
inUpdate = false;
inNotes = false;
inUpdateNotes = false;
release = nullptr;
update = nullptr;
return true;
}
bool UpdateParser::endElement(const QString &namespaceURI, const QString &localName,
const QString &qName)
{
2011-12-17 06:59:40 +00:00
Q_UNUSED(namespaceURI)
Q_UNUSED(localName)
QString name = qName.toLower();
if (name == "release") {
inRelease = false;
release = nullptr;
} else if (inRelease && name == "update") {
inUpdate = false;
update = nullptr;
} else if (inUpdate && name == "notes") {
inUpdateNotes = false;
} else if (inRelease && name == "notes") {
inNotes = false;
}
return true;
}
bool UpdateParser::characters(const QString &ch)
{
if (inUpdateNotes) {
update->notes = ch;
} else if (inNotes) {
release->notes[platform] = ch;
}
return true;
}
UpdateStatus lookupUpdateStatus(QString stat)
{
UpdateStatus status = UPDATE_TESTING;
if (stat == "testing") { status = UPDATE_TESTING; }
else if (stat == "beta") { status = UPDATE_BETA; }
else if (stat == "stable") { status = UPDATE_STABLE; }
else if (stat == "critical") { status = UPDATE_CRITICAL; }
return status;
}
bool UpdateParser::startElement(const QString &namespaceURI, const QString &localName,
const QString &qName, const QXmlAttributes &atts)
{
2011-12-17 06:59:40 +00:00
Q_UNUSED(namespaceURI)
Q_UNUSED(localName)
QString name = qName.toLower();
if (inRelease && name == "update") {
QString ver, type;
UpdateStatus updatestatus = UPDATE_TESTING;
for (int i = 0; i < atts.count(); i++) {
if (atts.localName(i) == "type") {
type = atts.value(i).toLower();
}
if (atts.localName(i) == "version") {
ver = atts.value(i).toLower();
}
if (atts.localName(i) == "platform") {
platform = atts.value(i).toLower();
}
if (atts.localName(i) == "release_date") {
release_date = atts.value(i);
}
if (atts.localName(i) == "status") {
updatestatus = lookupUpdateStatus(atts.value(i).toLower());
}
}
QDate date = QDate::fromString(release_date, "yyyy-MM-dd");
if (!date.isValid()) { date = QDate::currentDate(); }
release->updates[platform].push_back(Update(type, ver, platform, date));
update = &release->updates[platform][release->updates[platform].size() - 1];
update->status = updatestatus;
inUpdate = true;
} else if (inRelease && name == "info") {
QString tmp = atts.value("url");
if (tmp.isEmpty()) { return false; }
release->info_url = tmp;
} else if (inUpdate && name == "file") {
for (int i = 0; i < atts.count(); i++) {
if (atts.localName(i) == "name") {
update->filename = atts.value(i);
}
if (atts.localName(i) == "size") {
bool ok;
update->size = atts.value(i).toLongLong(&ok);
//if (!ok) return false;
}
if (atts.localName(i) == "url") {
update->url = atts.value(i);
}
if (atts.localName(i) == "hash") {
update->hash = atts.value(i).toLower();
}
}
} else if (inUpdate && name == "notes") {
inUpdateNotes = true;
} else if (inRelease && name == "notes") {
platform = "";
if (atts.count() >= 1) {
if (atts.localName(0) == "platform") {
platform = atts.value(0);
}
}
inNotes = true;
} else if (name == "release") {
inRelease = true;
QString codename;
UpdateStatus status = UPDATE_TESTING;
for (int i = 0; i < atts.count(); i++) {
if (atts.localName(i) == "version") {
version = atts.value(i).toLower();
}
if (atts.localName(i) == "codename") {
codename = atts.value(i);
}
if (atts.localName(i) == "status") {
status = lookupUpdateStatus(atts.value(i).toLower());
}
}
releases[version] = Release(version, codename, status);
release = &releases[version];
if (version > latest_version) { latest_version = version; }
}
return true;
}
bool UpdateParser::endDocument()
{
/*for (QHash<QString,Release>::iterator r=releases.begin();r!=releases.end();r++) {
Release & rel=r.value();
qDebug() << "New Version" << r.key() << rel.codename << rel.notes;
for (QHash<QString,Update>::iterator u=rel.files.begin();u!=rel.files.end();u++) {
Update & up=u.value();
qDebug() << "Platform:" << u.key() << up.filename << up.date;
}
}*/
return true;
}