2014-04-09 21:01:57 +00:00
|
|
|
/* -*- 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. */
|
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
#ifndef UPDATEPARSER_H
|
|
|
|
#define UPDATEPARSER_H
|
|
|
|
|
|
|
|
#include <QXmlDefaultHandler>
|
|
|
|
#include <QMetaType>
|
|
|
|
#include <QDate>
|
|
|
|
|
2012-01-12 09:35:50 +00:00
|
|
|
enum UpdateStatus { UPDATE_TESTING=0, UPDATE_BETA, UPDATE_STABLE, UPDATE_CRITICAL };
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
/*! \struct Update
|
|
|
|
\brief Holds platform specific information about an individual updates
|
|
|
|
*/
|
2011-12-17 06:40:04 +00:00
|
|
|
class Update
|
2011-12-16 16:31:58 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-12-17 06:59:40 +00:00
|
|
|
Update();
|
|
|
|
Update(const Update & copy);
|
|
|
|
Update(QString _type, QString _version, QString _platform, QDate _date);
|
2011-12-16 16:31:58 +00:00
|
|
|
QString type;
|
|
|
|
QString version;
|
|
|
|
QString platform;
|
2012-01-12 09:35:50 +00:00
|
|
|
UpdateStatus status;
|
2011-12-16 16:31:58 +00:00
|
|
|
QDate date;
|
|
|
|
QString filename;
|
|
|
|
QString url;
|
|
|
|
QString hash;
|
|
|
|
qint64 size;
|
|
|
|
QString notes;
|
|
|
|
QString unzipped_path;
|
|
|
|
};
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
/*! \struct Release
|
|
|
|
\brief Holds information about an individual major release
|
|
|
|
*/
|
2011-12-16 16:31:58 +00:00
|
|
|
struct Release
|
|
|
|
{
|
|
|
|
Release() {}
|
|
|
|
Release(const Release & copy) {
|
|
|
|
version=copy.version;
|
|
|
|
codename=copy.version;
|
|
|
|
notes=copy.notes;
|
|
|
|
info_url=copy.info_url;
|
|
|
|
status=copy.status;
|
|
|
|
updates=copy.updates;
|
|
|
|
}
|
|
|
|
|
2012-01-12 09:35:50 +00:00
|
|
|
Release(QString ver, QString code, UpdateStatus stat) { version=ver; codename=code; status=stat; }
|
2011-12-16 16:31:58 +00:00
|
|
|
QString version;
|
|
|
|
QString codename;
|
2012-01-12 09:35:50 +00:00
|
|
|
UpdateStatus status;
|
2011-12-16 16:31:58 +00:00
|
|
|
QString info_url;
|
|
|
|
QHash<QString,QString> notes; // by platform
|
|
|
|
QHash<QString,QList<Update> > updates;
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(Update *)
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
/*! \class UpdateParser
|
|
|
|
\brief SAX XML parser for update.xml
|
|
|
|
*/
|
2011-12-16 16:31:58 +00:00
|
|
|
class UpdateParser:public QXmlDefaultHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool startDocument();
|
|
|
|
bool endElement(const QString &namespaceURI, const QString &localName, const QString &name);
|
|
|
|
bool characters(const QString &ch);
|
|
|
|
bool startElement(const QString &namespaceURI, const QString &localName, const QString &name, const QXmlAttributes &atts);
|
|
|
|
bool endDocument();
|
|
|
|
QString latest() { return latest_version; }
|
|
|
|
|
|
|
|
QHash<QString,Release> releases;
|
|
|
|
private:
|
|
|
|
Update * update;
|
|
|
|
Release * release;
|
|
|
|
QString version, platform;
|
|
|
|
QString release_date;
|
|
|
|
QString latest_version;
|
|
|
|
bool inRelease;
|
|
|
|
bool inUpdate;
|
|
|
|
bool inNotes;
|
|
|
|
bool inUpdateNotes;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // UPDATEPARSER_H
|