2014-08-17 12:56:05 +00:00
|
|
|
/* UpdateParser Header (Autoupdater component)
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2024-01-13 20:10:17 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2014-04-09 21:01:57 +00:00
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
#ifndef UPDATEPARSER_H
|
|
|
|
#define UPDATEPARSER_H
|
|
|
|
|
|
|
|
#include <QXmlDefaultHandler>
|
2016-03-12 02:51:52 +00:00
|
|
|
#include <QXmlStreamReader>
|
2011-12-16 16:31:58 +00:00
|
|
|
#include <QMetaType>
|
|
|
|
#include <QDate>
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
enum UpdateStatus { UPDATE_TESTING = 0, UPDATE_BETA, UPDATE_STABLE, UPDATE_CRITICAL };
|
2012-01-12 09:35:50 +00:00
|
|
|
|
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
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
public:
|
2011-12-17 06:59:40 +00:00
|
|
|
Update();
|
2014-04-17 05:52:25 +00:00
|
|
|
Update(const Update ©);
|
2011-12-17 06:59:40 +00:00
|
|
|
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
|
|
|
|
*/
|
2014-04-17 05:52:25 +00:00
|
|
|
struct Release {
|
2011-12-16 16:31:58 +00:00
|
|
|
Release() {}
|
2020-05-23 15:22:59 +00:00
|
|
|
Release(const Release & /*copy*/) = default;
|
2011-12-16 16:31:58 +00:00
|
|
|
|
2014-04-17 05:52:25 +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;
|
2014-04-17 05:52:25 +00:00
|
|
|
QHash<QString, QString> notes; // by platform
|
|
|
|
QHash<QString, QList<Update> > updates;
|
2011-12-16 16:31:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(Update *)
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
/*! \class UpdateParser
|
|
|
|
\brief SAX XML parser for update.xml
|
|
|
|
*/
|
2014-04-17 05:52:25 +00:00
|
|
|
class UpdateParser: public QXmlDefaultHandler
|
2011-12-16 16:31:58 +00:00
|
|
|
{
|
2014-04-17 05:52:25 +00:00
|
|
|
public:
|
2011-12-16 16:31:58 +00:00
|
|
|
bool startDocument();
|
|
|
|
bool endElement(const QString &namespaceURI, const QString &localName, const QString &name);
|
|
|
|
bool characters(const QString &ch);
|
2014-04-17 05:52:25 +00:00
|
|
|
bool startElement(const QString &namespaceURI, const QString &localName, const QString &name,
|
|
|
|
const QXmlAttributes &atts);
|
2011-12-16 16:31:58 +00:00
|
|
|
bool endDocument();
|
|
|
|
QString latest() { return latest_version; }
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
QHash<QString, Release> releases;
|
|
|
|
private:
|
|
|
|
Update *update;
|
|
|
|
Release *release;
|
2011-12-16 16:31:58 +00:00
|
|
|
QString version, platform;
|
|
|
|
QString release_date;
|
|
|
|
QString latest_version;
|
|
|
|
bool inRelease;
|
|
|
|
bool inUpdate;
|
|
|
|
bool inNotes;
|
|
|
|
bool inUpdateNotes;
|
|
|
|
};
|
|
|
|
|
2016-03-12 02:51:52 +00:00
|
|
|
class PackageUpdate {
|
|
|
|
public:
|
|
|
|
PackageUpdate() {}
|
2020-05-23 15:22:59 +00:00
|
|
|
PackageUpdate(const PackageUpdate & /*copy*/) = default;
|
2016-03-12 02:51:52 +00:00
|
|
|
|
|
|
|
QString name;
|
|
|
|
QString displayName;
|
|
|
|
QString description;
|
|
|
|
QString versionString;
|
|
|
|
QDate releaseDate;
|
|
|
|
bool defaultInstall;
|
|
|
|
QString installScript;
|
|
|
|
QStringList dependencies;
|
|
|
|
QString script;
|
|
|
|
bool forcedInstall;
|
|
|
|
QStringList downloadArchives;
|
|
|
|
QHash<QString, QString> license;
|
|
|
|
QString sha1;
|
|
|
|
unsigned int compressedSize;
|
|
|
|
unsigned int uncompressedSize;
|
|
|
|
QString os;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*! \class UpdatesParser
|
|
|
|
\brief New SAX XML parser for QT Installer Frameworks Updates.xml
|
|
|
|
*/
|
|
|
|
class UpdatesParser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UpdatesParser();
|
|
|
|
bool read(QIODevice *device);
|
|
|
|
QString errorString() const;
|
|
|
|
QHash<QString, PackageUpdate> packages;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void readUpdates();
|
|
|
|
void readPackageUpdate();
|
|
|
|
|
|
|
|
QXmlStreamReader xml;
|
|
|
|
PackageUpdate package;
|
|
|
|
QString currentTag;
|
|
|
|
};
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
|
|
#endif // UPDATEPARSER_H
|