File: versioninfo.cpp

package info (click to toggle)
qflipper 1.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,320 kB
  • sloc: cpp: 18,500; sh: 247; ansic: 191; xml: 38; python: 14; makefile: 5
file content (235 lines) | stat: -rw-r--r-- 5,177 bytes parent folder | download | duplicates (2)
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#include "versioninfo.h"

#include <QDebug>
#include <QLoggingCategory>

Q_DECLARE_LOGGING_CATEGORY(CATEGORY_DEBUG)

VersionInfo::VersionInfo():
    VersionInfo(-1, -1, -1)
{}

VersionInfo::VersionInfo(int major, int minor, int sub):
    m_version{major, minor, sub},
    m_rc(-1)
{}

VersionInfo::VersionInfo(const QString &versionString):
    VersionInfo()
{
    const auto tokens = versionString.toLower().split('-');
    const auto versionTokens = tokens[0].split('.');

    if(versionTokens.size() != 3) {
        qCDebug(CATEGORY_DEBUG) << "Malformed version string";
        return;
    }

    bool canConvert;

    for(auto it = versionTokens.cbegin(); it != versionTokens.cend(); ++it) {
        const auto num = (*it).toInt(&canConvert);

        if(canConvert) {
            const auto idx = std::distance(versionTokens.cbegin(), it);
            m_version[idx] = num;
        } else {
            qCDebug(CATEGORY_DEBUG) << "Illegal characters in version";
            return;
        }
    }

    if(tokens.size() == 2) {
        const auto &suffix = tokens[1];
        if(suffix.startsWith(QStringLiteral("rc"))) {
            if(suffix.length() == 2) {
                m_rc = 0;
                return;
            }

#if QT_VERSION < 0x060000
            const auto rc = suffix.midRef(2).toInt(&canConvert);
#else
            const auto rc = QStringView(suffix).sliced(2).toInt(&canConvert);
#endif
            if(canConvert) {
                m_rc = rc;
            } else {
                qCDebug(CATEGORY_DEBUG) << "Illegal characters in release candidate suffix";
            }
        }

    } else {
        qCDebug(CATEGORY_DEBUG) << "Malformed release candidate suffix";
    }
}

VersionInfo VersionInfo::withCommit(const QString &commit) const
{
    auto ret = *this;
    ret.m_commit = commit;
    return ret;
}

VersionInfo VersionInfo::withBranch(const QString &branch) const
{
    auto ret = *this;
    ret.m_branch = branch;
    return ret;
}

VersionInfo VersionInfo::withRcNumber(int candidateNum) const
{
    auto ret = *this;
    ret.m_rc = candidateNum;
    return ret;
}

VersionInfo VersionInfo::withDate(const QDate &date) const
{
    auto ret = *this;
    ret.m_date = date;
    return ret;
}

bool VersionInfo::isValid() const
{
    return isVersionValid() || isCommitValid();
}

bool VersionInfo::isVersionValid() const
{
    for(const auto num: m_version) {
        if(num < 0) {
            return false;
        }
    }

    return true;
}

bool VersionInfo::isCommitValid() const
{
    return !m_commit.isEmpty();
}

bool VersionInfo::isDevelopment() const
{
    return !isVersionValid() && isCommitValid();
}

bool VersionInfo::isReleaseCandidate() const
{
    return m_rc >= 0;
}

int VersionInfo::major() const
{
    return m_version[VersionMajor];
}

int VersionInfo::minor() const
{
    return m_version[VersionMinor];
}

int VersionInfo::sub() const
{
    return m_version[VersionSub];
}

int VersionInfo::rc() const
{
    return m_rc;
}

const QDate &VersionInfo::date() const
{
    return m_date;
}

const QString &VersionInfo::commit() const
{
    return m_commit;
}

const QString &VersionInfo::branch() const
{
    return m_branch;
}

QString VersionInfo::toString() const
{
    if(!isValid()) {
        return QStringLiteral("invalid");
    } else if(isDevelopment()) {
        return m_commit;
    }

    QStringList ver;

    for(const auto num: m_version) {
        ver.append(QString::number(num));
    }

    const auto ret = ver.join('.');

    if(isReleaseCandidate()) {
        return m_rc ? QStringLiteral("%1-rc%2").arg(ret, m_rc) :
                      QStringLiteral("%1-rc").arg(ret);
    } else {
        return ret;
    }
}

bool VersionInfo::isVersionGreaterThan(const VersionInfo &other) const
{
    return (major() > other.major()) || ((major() == other.major()) && (minor() > other.minor() || (minor() == other.minor() && sub() > other.sub())));
}

bool VersionInfo::isRCNumGreaterThan(const VersionInfo &other) const
{
    return rc() > other.rc();
}

bool VersionInfo::isDateGreaterThan(const VersionInfo &other) const
{
    return other.date().daysTo(date()) > 0;
}

bool VersionInfo::isCommitDifferent(const VersionInfo &other) const
{
    return commit() != other.commit();
}

bool VersionInfo::operator >(const VersionInfo &other) const
{
    if(!isValid() || !other.isValid()) {
        return false;

    } else if(other.isDevelopment()) {
        if(isDevelopment()) {
            return isCommitDifferent(other) || isDateGreaterThan(other);
        } else {
            return isDateGreaterThan(other);
        }

    } else if(other.isReleaseCandidate()) {
        if(isDevelopment()) {
            return isDateGreaterThan(other);
        } else if(isReleaseCandidate()) {
            return isVersionGreaterThan(other) || isRCNumGreaterThan(other);
        } else {
            return isVersionGreaterThan(other);
        }

    } else {
        if(isDevelopment()) {
            return isDateGreaterThan(other);
        } else if(isReleaseCandidate()) {
            return isVersionGreaterThan(other);
        } else {
            return isVersionGreaterThan(other);
        }
    }
}