2014-02-02 13:05:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
2014-09-06 17:16:56 +01:00
|
|
|
#include <QList>
|
|
|
|
|
2014-02-02 13:05:07 +00:00
|
|
|
#include "libutil_config.h"
|
|
|
|
|
|
|
|
class QUrl;
|
|
|
|
|
|
|
|
namespace Util
|
|
|
|
{
|
|
|
|
struct Version
|
|
|
|
{
|
|
|
|
Version(const QString &str);
|
2014-09-06 17:16:56 +01:00
|
|
|
Version() {}
|
2014-02-02 13:05:07 +00:00
|
|
|
|
|
|
|
bool operator<(const Version &other) const;
|
|
|
|
bool operator<=(const Version &other) const;
|
|
|
|
bool operator>(const Version &other) const;
|
2014-09-06 17:16:56 +01:00
|
|
|
bool operator>=(const Version &other) const;
|
2014-02-02 13:05:07 +00:00
|
|
|
bool operator==(const Version &other) const;
|
|
|
|
bool operator!=(const Version &other) const;
|
|
|
|
|
|
|
|
QString toString() const
|
|
|
|
{
|
|
|
|
return m_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_string;
|
2014-09-06 17:16:56 +01:00
|
|
|
struct Section
|
|
|
|
{
|
|
|
|
explicit Section(const QString &str, const int num) : numValid(true), number(num), string(str) {}
|
|
|
|
explicit Section(const QString &str) : numValid(false), string(str) {}
|
|
|
|
explicit Section() {}
|
|
|
|
bool numValid;
|
|
|
|
int number;
|
|
|
|
QString string;
|
|
|
|
|
|
|
|
inline bool operator!=(const Section &other) const
|
|
|
|
{
|
|
|
|
return (numValid && other.numValid) ? (number != other.number) : (string != other.string);
|
|
|
|
}
|
|
|
|
inline bool operator<(const Section &other) const
|
|
|
|
{
|
|
|
|
return (numValid && other.numValid) ? (number < other.number) : (string < other.string);
|
|
|
|
}
|
|
|
|
inline bool operator>(const Section &other) const
|
|
|
|
{
|
|
|
|
return (numValid && other.numValid) ? (number > other.number) : (string > other.string);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QList<Section> m_sections;
|
|
|
|
|
|
|
|
void parse();
|
2014-02-02 13:05:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
LIBUTIL_EXPORT bool versionIsInInterval(const QString &version, const QString &interval);
|
2014-09-06 17:16:56 +01:00
|
|
|
LIBUTIL_EXPORT bool versionIsInInterval(const Version &version, const QString &interval);
|
2014-02-02 13:05:07 +00:00
|
|
|
}
|
|
|
|
|