summaryrefslogtreecommitdiffstats
path: root/depends/util/src/modutils.cpp
blob: 5f89eacd30ecd4b3f08ce4aad13d962d4ff6ba31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include "include/modutils.h"

#include <QStringList>
#include <QUrl>
#include <QRegularExpression>
#include <QRegularExpressionMatch>

Util::Version::Version(const QString &str) : m_string(str)
{
	parse();
}

bool Util::Version::operator<(const Version &other) const
{
	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;
		}
	}

	return false;
}
bool Util::Version::operator<=(const Util::Version &other) const
{
	return *this < other || *this == other;
}
bool Util::Version::operator>(const Version &other) const
{
	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;
		}
	}

	return false;
}
bool Util::Version::operator>=(const Version &other) const
{
	return *this > other || *this == other;
}
bool Util::Version::operator==(const Version &other) const
{
	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;
		}
	}

	return true;
}
bool Util::Version::operator!=(const Version &other) const
{
	return !operator==(other);
}

void Util::Version::parse()
{
	m_sections.clear();

	QStringList parts = m_string.split('.');

	for (const auto part : parts)
	{
		m_sections.append(Section(part));
	}
}

bool Util::versionIsInInterval(const QString &version, const QString &interval)
{
	return versionIsInInterval(Util::Version(version), interval);
}
bool Util::versionIsInInterval(const Version &version, const QString &interval)
{
	if (interval.isEmpty() || version.toString() == interval)
	{
		return true;
	}

	// Interval notation is used
	QRegularExpression exp(
		"(?<start>[\\[\\]\\(\\)])(?<bottom>.*?)(,(?<top>.*?))?(?<end>[\\[\\]\\(\\)]),?");
	QRegularExpressionMatch match = exp.match(interval);
	if (match.hasMatch())
	{
		const QChar start = match.captured("start").at(0);
		const QChar end = match.captured("end").at(0);
		const QString bottom = match.captured("bottom");
		const QString top = match.captured("top");

		// check if in range (bottom)
		if (!bottom.isEmpty())
		{
			const auto bottomVersion = Util::Version(bottom);
			if ((start == '[') && !(version >= bottomVersion))
			{
				return false;
			}
			else if ((start == '(') && !(version > bottomVersion))
			{
				return false;
			}
		}

		// check if in range (top)
		if (!top.isEmpty())
		{
			const auto topVersion = Util::Version(top);
			if ((end == ']') && !(version <= topVersion))
			{
				return false;
			}
			else if ((end == ')') && !(version < topVersion))
			{
				return false;
			}
		}

		return true;
	}

	return false;
}