PrismLauncher/launcher/Version.cpp

110 lines
3.0 KiB
C++
Raw Normal View History

2015-10-05 00:47:27 +01:00
#include "Version.h"
#include <QStringList>
#include <QUrl>
#include <QRegularExpression>
#include <QRegularExpressionMatch>
2015-10-05 00:47:27 +01:00
Version::Version(const QString &str) : m_string(str)
{
2018-07-15 13:51:05 +01:00
parse();
}
2015-10-05 00:47:27 +01:00
bool Version::operator<(const Version &other) const
{
2018-07-15 13:51:05 +01:00
const int size = qMax(m_sections.size(), other.m_sections.size());
for (int i = 0; i < size; ++i)
{
const Section sec1 = (i >= m_sections.size()) ? Section("0") : m_sections.at(i);
const Section sec2 =
(i >= other.m_sections.size()) ? Section("0") : other.m_sections.at(i);
if (sec1 != sec2)
{
return sec1 < sec2;
}
}
2018-07-15 13:51:05 +01:00
return false;
}
2015-10-05 00:47:27 +01:00
bool Version::operator<=(const Version &other) const
{
2018-07-15 13:51:05 +01:00
return *this < other || *this == other;
}
2015-10-05 00:47:27 +01:00
bool Version::operator>(const Version &other) const
{
2018-07-15 13:51:05 +01:00
const int size = qMax(m_sections.size(), other.m_sections.size());
for (int i = 0; i < size; ++i)
{
const Section sec1 = (i >= m_sections.size()) ? Section("0") : m_sections.at(i);
const Section sec2 =
(i >= other.m_sections.size()) ? Section("0") : other.m_sections.at(i);
if (sec1 != sec2)
{
return sec1 > sec2;
}
}
2018-07-15 13:51:05 +01:00
return false;
}
2015-10-05 00:47:27 +01:00
bool Version::operator>=(const Version &other) const
2014-09-06 17:16:56 +01:00
{
2018-07-15 13:51:05 +01:00
return *this > other || *this == other;
2014-09-06 17:16:56 +01:00
}
2015-10-05 00:47:27 +01:00
bool Version::operator==(const Version &other) const
{
2018-07-15 13:51:05 +01:00
const int size = qMax(m_sections.size(), other.m_sections.size());
for (int i = 0; i < size; ++i)
{
const Section sec1 = (i >= m_sections.size()) ? Section("0") : m_sections.at(i);
const Section sec2 =
(i >= other.m_sections.size()) ? Section("0") : other.m_sections.at(i);
if (sec1 != sec2)
{
return false;
}
}
2018-07-15 13:51:05 +01:00
return true;
}
2015-10-05 00:47:27 +01:00
bool Version::operator!=(const Version &other) const
{
2018-07-15 13:51:05 +01:00
return !operator==(other);
}
2015-10-05 00:47:27 +01:00
void Version::parse()
{
2018-07-15 13:51:05 +01:00
m_sections.clear();
QString currentSection;
bool lastCharWasDigit = false;
for (int i = 0; i < m_string.size(); ++i) {
if(m_string[i].isDigit()){
if(!lastCharWasDigit){
if(!currentSection.isEmpty()){
m_sections.append(Section(currentSection));
}
currentSection = "";
}
currentSection += m_string[i];
lastCharWasDigit = true;
}else if(m_string[i].isLetter()){
if(lastCharWasDigit){
if(!currentSection.isEmpty()){
m_sections.append(Section(currentSection));
}
currentSection = "";
}
currentSection += m_string[i];
lastCharWasDigit = false;
}
else if(m_string[i] == '.' || m_string[i] == '-' || m_string[i] == '_'){
if(!currentSection.isEmpty()){
m_sections.append(Section(currentSection));
}
currentSection = "";
}
}
if (!currentSection.isEmpty()) {
m_sections.append(Section(currentSection));
2018-07-15 13:51:05 +01:00
}
}