pollymc/api/logic/Version.cpp

86 lines
1.9 KiB
C++
Raw Normal View History

2015-10-05 05:17:27 +05:30
#include "Version.h"
#include <QStringList>
#include <QUrl>
#include <QRegularExpression>
#include <QRegularExpressionMatch>
2015-10-05 05:17:27 +05:30
Version::Version(const QString &str) : m_string(str)
{
2014-09-06 21:46:56 +05:30
parse();
}
2015-10-05 05:17:27 +05:30
bool Version::operator<(const Version &other) const
{
2014-09-06 21:46:56 +05:30
const int size = qMax(m_sections.size(), other.m_sections.size());
for (int i = 0; i < size; ++i)
{
2015-01-28 03:01:07 +05:30
const Section sec1 = (i >= m_sections.size()) ? Section("0") : m_sections.at(i);
2014-09-06 21:46:56 +05:30
const Section sec2 =
2015-01-28 03:01:07 +05:30
(i >= other.m_sections.size()) ? Section("0") : other.m_sections.at(i);
2014-09-06 21:46:56 +05:30
if (sec1 != sec2)
{
2014-09-06 21:46:56 +05:30
return sec1 < sec2;
}
}
return false;
}
2015-10-05 05:17:27 +05:30
bool Version::operator<=(const Version &other) const
{
return *this < other || *this == other;
}
2015-10-05 05:17:27 +05:30
bool Version::operator>(const Version &other) const
{
2014-09-06 21:46:56 +05:30
const int size = qMax(m_sections.size(), other.m_sections.size());
for (int i = 0; i < size; ++i)
{
2015-01-28 03:01:07 +05:30
const Section sec1 = (i >= m_sections.size()) ? Section("0") : m_sections.at(i);
2014-09-06 21:46:56 +05:30
const Section sec2 =
2015-01-28 03:01:07 +05:30
(i >= other.m_sections.size()) ? Section("0") : other.m_sections.at(i);
2014-09-06 21:46:56 +05:30
if (sec1 != sec2)
{
2014-09-06 21:46:56 +05:30
return sec1 > sec2;
}
}
return false;
}
2015-10-05 05:17:27 +05:30
bool Version::operator>=(const Version &other) const
2014-09-06 21:46:56 +05:30
{
return *this > other || *this == other;
}
2015-10-05 05:17:27 +05:30
bool Version::operator==(const Version &other) const
{
2014-09-06 21:46:56 +05:30
const int size = qMax(m_sections.size(), other.m_sections.size());
for (int i = 0; i < size; ++i)
{
2015-01-28 03:01:07 +05:30
const Section sec1 = (i >= m_sections.size()) ? Section("0") : m_sections.at(i);
2014-09-06 21:46:56 +05:30
const Section sec2 =
2015-01-28 03:01:07 +05:30
(i >= other.m_sections.size()) ? Section("0") : other.m_sections.at(i);
2014-09-06 21:46:56 +05:30
if (sec1 != sec2)
{
2014-09-06 21:46:56 +05:30
return false;
}
}
return true;
}
2015-10-05 05:17:27 +05:30
bool Version::operator!=(const Version &other) const
{
return !operator==(other);
}
2015-10-05 05:17:27 +05:30
void Version::parse()
{
2014-09-06 21:46:56 +05:30
m_sections.clear();
// FIXME: this is bad. versions can contain a lot more separators...
2014-09-06 21:46:56 +05:30
QStringList parts = m_string.split('.');
for (const auto part : parts)
{
2015-01-28 03:01:07 +05:30
m_sections.append(Section(part));
}
}