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 06:01:55 +05:30
|
|
|
bool Version::operator<(const Version& other) const
|
2014-02-02 18:35:07 +05:30
|
|
|
{
|
2023-01-20 06:01:55 +05:30
|
|
|
const auto size = qMax(m_sections.size(), other.m_sections.size());
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
const Section sec1 =
|
|
|
|
(i >= m_sections.size()) ? Section("") : m_sections.at(i);
|
2018-07-15 18:21:05 +05:30
|
|
|
const Section sec2 =
|
2023-01-18 22:41:53 +05:30
|
|
|
(i >= other.m_sections.size()) ? Section("") : other.m_sections.at(i);
|
2023-01-20 06:01:55 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if (sec1 != sec2)
|
|
|
|
return 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 06:01:55 +05:30
|
|
|
const auto size = qMax(m_sections.size(), other.m_sections.size());
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
const Section sec1 =
|
|
|
|
(i >= m_sections.size()) ? Section("") : m_sections.at(i);
|
2018-07-15 18:21:05 +05:30
|
|
|
const Section sec2 =
|
2023-01-18 22:41:53 +05:30
|
|
|
(i >= other.m_sections.size()) ? Section("") : other.m_sections.at(i);
|
2014-02-02 18:35:07 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if (sec1 != sec2)
|
|
|
|
return 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
|
|
|
}
|
2015-10-05 05:17:27 +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 06:01:55 +05:30
|
|
|
bool Version::operator<=(const Version &other) const
|
|
|
|
{
|
|
|
|
return *this < other || *this == other;
|
|
|
|
}
|
|
|
|
bool Version::operator>(const Version &other) const
|
|
|
|
{
|
|
|
|
return !(*this <= other);
|
|
|
|
}
|
|
|
|
bool Version::operator>=(const Version &other) const
|
|
|
|
{
|
|
|
|
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-15 21:14:17 +05:30
|
|
|
auto classChange = [](QChar lastChar, QChar currentChar) {
|
2023-01-17 10:23:01 +05:30
|
|
|
return !lastChar.isNull() && ((!lastChar.isDigit() && currentChar.isDigit()) || (lastChar.isDigit() && !currentChar.isDigit()));
|
2023-01-15 18:00:18 +05:30
|
|
|
};
|
2023-01-17 10:23:01 +05:30
|
|
|
|
2023-01-15 13:17:31 +05:30
|
|
|
for (int i = 0; i < m_string.size(); ++i) {
|
2023-01-15 20:37:44 +05:30
|
|
|
const auto& current_char = m_string.at(i);
|
2023-01-17 10:23:01 +05:30
|
|
|
if ((i > 0 && classChange(m_string.at(i - 1), current_char)) || current_char == '.' || current_char == '-' || current_char == '+') {
|
2023-01-15 21:14:17 +05:30
|
|
|
if (!currentSection.isEmpty()) {
|
2023-01-15 13:17:31 +05:30
|
|
|
m_sections.append(Section(currentSection));
|
|
|
|
}
|
|
|
|
currentSection = "";
|
|
|
|
}
|
2023-01-17 10:23:01 +05:30
|
|
|
currentSection += current_char;
|
2023-01-15 13:17:31 +05:30
|
|
|
}
|
|
|
|
if (!currentSection.isEmpty()) {
|
|
|
|
m_sections.append(Section(currentSection));
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
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
|
|
|
}
|