/* -*- 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 * * 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 #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;iupdates[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;ifilename=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;ilatest_version) latest_version=version; } return true; } bool UpdateParser::endDocument() { /*for (QHash::iterator r=releases.begin();r!=releases.end();r++) { Release & rel=r.value(); qDebug() << "New Version" << r.key() << rel.codename << rel.notes; for (QHash::iterator u=rel.files.begin();u!=rel.files.end();u++) { Update & up=u.value(); qDebug() << "Platform:" << u.key() << up.filename << up.date; } }*/ return true; }