OSCAR-code/sleepyhead/updateparser.cpp
Sean Stangl 012e9fd314 Auto-convert the main source directory with astyle. "The Huge Patch"
The files daily.cpp and daily.h are omitted, pending some other cleanup patches landing first.

Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
2014-04-17 16:15:28 +10:00

216 lines
5.9 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* UpdateParser
*
* Copyright (c) 2011-2014 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"
Update::Update()
{
size = 0;
}
Update::Update(const Update &copy)
{
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;
}
Update::Update(QString _type, QString _version, QString _platform, QDate _date)
{
type = _type;
version = _version;
platform = _platform;
date = _date;
size = 0;
}
bool UpdateParser::startDocument()
{
inRelease = false;
inUpdate = false;
inNotes = false;
inUpdateNotes = false;
release = NULL;
update = NULL;
return true;
}
bool UpdateParser::endElement(const QString &namespaceURI, const QString &localName,
const QString &qName)
{
Q_UNUSED(namespaceURI)
Q_UNUSED(localName)
QString name = qName.toLower();
if (name == "release") {
inRelease = false;
release = NULL;
} else if (inRelease && name == "update") {
inUpdate = false;
update = NULL;
} 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)
{
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;
}