2015-10-05 05:17:27 +05:30
|
|
|
#include "Version.h"
|
2014-02-02 18:35:07 +05:30
|
|
|
|
2023-01-19 13:16:35 +05:30
|
|
|
#include <QDebug>
|
2014-02-02 18:35:07 +05:30
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QRegularExpressionMatch>
|
2023-01-20 06:01:55 +05:30
|
|
|
#include <QUrl>
|
2014-02-02 18:35:07 +05:30
|
|
|
|
2023-01-20 06:01:55 +05:30
|
|
|
Version::Version(QString str) : m_string(std::move(str))
|
2014-02-02 18:35:07 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
parse();
|
2014-02-02 18:35:07 +05:30
|
|
|
}
|
|
|
|
|
2023-01-20 19:41:35 +05:30
|
|
|
#define VERSION_OPERATOR(return_on_different) \
|
|
|
|
bool exclude_our_sections = false; \
|
|
|
|
bool exclude_their_sections = false; \
|
|
|
|
\
|
|
|
|
const auto size = qMax(m_sections.size(), other.m_sections.size()); \
|
|
|
|
for (int i = 0; i < size; ++i) { \
|
|
|
|
Section sec1 = (i >= m_sections.size()) ? Section() : m_sections.at(i); \
|
|
|
|
Section sec2 = (i >= other.m_sections.size()) ? Section() : other.m_sections.at(i); \
|
|
|
|
\
|
|
|
|
{ /* Don't include appendixes in the comparison */ \
|
|
|
|
if (sec1.isAppendix()) \
|
|
|
|
exclude_our_sections = true; \
|
|
|
|
if (sec2.isAppendix()) \
|
|
|
|
exclude_their_sections = true; \
|
|
|
|
\
|
|
|
|
if (exclude_our_sections) { \
|
|
|
|
sec1 = Section(); \
|
|
|
|
if (sec2.m_isNull) \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if (exclude_their_sections) { \
|
|
|
|
sec2 = Section(); \
|
|
|
|
if (sec1.m_isNull) \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if (sec1 != sec2) \
|
|
|
|
return return_on_different; \
|
|
|
|
}
|
|
|
|
|
2023-01-20 06:01:55 +05:30
|
|
|
bool Version::operator<(const Version& other) const
|
2014-02-02 18:35:07 +05:30
|
|
|
{
|
2023-01-20 19:41:35 +05:30
|
|
|
VERSION_OPERATOR(sec1 < sec2)
|
2014-02-02 18:35:07 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
return false;
|
2014-02-02 18:35:07 +05:30
|
|
|
}
|
2023-01-20 06:01:55 +05:30
|
|
|
bool Version::operator==(const Version& other) const
|
2014-02-02 18:35:07 +05:30
|
|
|
{
|
2023-01-20 19:41:35 +05:30
|
|
|
VERSION_OPERATOR(false)
|
2014-02-02 18:35:07 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
return true;
|
2014-02-02 18:35:07 +05:30
|
|
|
}
|
2023-01-20 19:41:35 +05:30
|
|
|
bool Version::operator!=(const Version& other) const
|
2014-02-02 18:35:07 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return !operator==(other);
|
2014-02-02 18:35:07 +05:30
|
|
|
}
|
2023-01-20 19:41:35 +05:30
|
|
|
bool Version::operator<=(const Version& other) const
|
2023-01-20 06:01:55 +05:30
|
|
|
{
|
|
|
|
return *this < other || *this == other;
|
|
|
|
}
|
2023-01-20 19:41:35 +05:30
|
|
|
bool Version::operator>(const Version& other) const
|
2023-01-20 06:01:55 +05:30
|
|
|
{
|
|
|
|
return !(*this <= other);
|
|
|
|
}
|
2023-01-20 19:41:35 +05:30
|
|
|
bool Version::operator>=(const Version& other) const
|
2023-01-20 06:01:55 +05:30
|
|
|
{
|
|
|
|
return !(*this < other);
|
|
|
|
}
|
2014-02-02 18:35:07 +05:30
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
void Version::parse()
|
2014-02-02 18:35:07 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_sections.clear();
|
2023-01-15 13:17:31 +05:30
|
|
|
QString currentSection;
|
2023-01-17 10:23:01 +05:30
|
|
|
|
2023-01-20 19:41:35 +05:30
|
|
|
if (m_string.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto classChange = [&](QChar lastChar, QChar currentChar) {
|
|
|
|
if (lastChar.isNull())
|
|
|
|
return false;
|
|
|
|
if (lastChar.isDigit() != currentChar.isDigit())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const QList<QChar> s_separators{ '.', '-', '+' };
|
|
|
|
if (s_separators.contains(currentChar) && currentSection.at(0) != currentChar)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
2023-01-15 18:00:18 +05:30
|
|
|
};
|
2023-01-17 10:23:01 +05:30
|
|
|
|
2023-01-20 19:41:35 +05:30
|
|
|
currentSection += m_string.at(0);
|
|
|
|
for (int i = 1; i < m_string.size(); ++i) {
|
2023-01-15 20:37:44 +05:30
|
|
|
const auto& current_char = m_string.at(i);
|
2023-01-20 19:41:35 +05:30
|
|
|
if (classChange(m_string.at(i - 1), current_char)) {
|
|
|
|
if (!currentSection.isEmpty())
|
2023-01-15 13:17:31 +05:30
|
|
|
m_sections.append(Section(currentSection));
|
|
|
|
currentSection = "";
|
|
|
|
}
|
2023-01-20 19:41:35 +05:30
|
|
|
|
2023-01-17 10:23:01 +05:30
|
|
|
currentSection += current_char;
|
2023-01-15 13:17:31 +05:30
|
|
|
}
|
2023-01-20 19:41:35 +05:30
|
|
|
|
|
|
|
if (!currentSection.isEmpty())
|
2023-01-15 13:17:31 +05:30
|
|
|
m_sections.append(Section(currentSection));
|
2014-02-02 18:35:07 +05:30
|
|
|
}
|
2023-01-19 13:16:35 +05:30
|
|
|
|
2023-01-20 06:01:55 +05:30
|
|
|
/// qDebug print support for the Version class
|
2023-01-19 13:16:35 +05:30
|
|
|
QDebug operator<<(QDebug debug, const Version& v)
|
|
|
|
{
|
|
|
|
QDebugStateSaver saver(debug);
|
|
|
|
|
|
|
|
debug.nospace() << "Version{ string: " << v.toString() << ", sections: [ ";
|
|
|
|
|
2023-01-18 22:41:53 +05:30
|
|
|
bool first = true;
|
2023-01-19 13:16:35 +05:30
|
|
|
for (auto s : v.m_sections) {
|
2023-01-18 22:41:53 +05:30
|
|
|
if (!first) debug.nospace() << ", ";
|
|
|
|
debug.nospace() << s.m_fullString;
|
|
|
|
first = false;
|
2023-01-19 13:16:35 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
debug.nospace() << " ]" << " }";
|
|
|
|
|
|
|
|
return debug;
|
2023-01-19 17:41:45 +05:30
|
|
|
}
|