2020-01-13 23:18:14 +00:00
|
|
|
/* Version.h
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2014-04-09 21:01:57 +00:00
|
|
|
|
2011-12-16 12:11:33 +00:00
|
|
|
#ifndef VERSION_H
|
|
|
|
#define VERSION_H
|
|
|
|
|
2020-01-16 16:33:39 +00:00
|
|
|
#include <QString>
|
2011-12-16 12:11:33 +00:00
|
|
|
|
2020-01-15 22:00:21 +00:00
|
|
|
class Version
|
|
|
|
{
|
|
|
|
friend class VersionTests;
|
|
|
|
public:
|
|
|
|
Version(const QString & version_string);
|
2020-01-16 00:27:03 +00:00
|
|
|
const QString PrereleaseType() const;
|
2020-01-15 22:00:21 +00:00
|
|
|
bool IsReleaseVersion() const { return mPrerelease.isEmpty(); }
|
|
|
|
bool IsValid() const { return mIsValid; }
|
|
|
|
bool operator==(const Version & b) const { return Compare(*this, b) == 0; }
|
2020-01-16 00:45:46 +00:00
|
|
|
bool operator!=(const Version & b) const { return Compare(*this, b) != 0; }
|
2020-01-15 22:00:21 +00:00
|
|
|
bool operator<(const Version & b) const { return Compare(*this, b) < 0; }
|
|
|
|
bool operator>(const Version & b) const { return Compare(*this, b) > 0; }
|
|
|
|
|
2020-01-16 16:33:39 +00:00
|
|
|
//!brief Returns the full version string, including all metadata, used in reports
|
|
|
|
operator const QString &() const;
|
|
|
|
//!brief Returns the full version string, including all metadata, used in reports
|
|
|
|
const QString & toString() const;
|
|
|
|
//!brief Returns the version string to display in the UI, without build metadata if a release version
|
|
|
|
const QString displayString() const;
|
|
|
|
//!brief Returns the version string without any build metadata
|
|
|
|
const QString minimalString() const;
|
|
|
|
|
2020-01-15 22:00:21 +00:00
|
|
|
protected:
|
|
|
|
const QString mString;
|
|
|
|
bool mIsValid;
|
|
|
|
|
|
|
|
int mMajor, mMinor, mPatch;
|
|
|
|
QString mPrerelease, mBuild;
|
|
|
|
|
|
|
|
void ParseSemanticVersion();
|
|
|
|
void FixLegacyVersions();
|
|
|
|
static int Compare(const Version & a, const Version & b);
|
|
|
|
};
|
|
|
|
|
2020-01-16 00:45:46 +00:00
|
|
|
//!brief Get the current version of the application.
|
2020-01-15 22:00:21 +00:00
|
|
|
const Version & getVersion();
|
|
|
|
|
2020-01-16 18:58:18 +00:00
|
|
|
//!brief Get the date and time of the application was built.
|
|
|
|
const QString & getBuildDateTime();
|
|
|
|
|
2020-01-15 18:18:00 +00:00
|
|
|
QString getPrereleaseSuffix();
|
2020-01-13 23:37:32 +00:00
|
|
|
|
2011-12-16 12:11:33 +00:00
|
|
|
#endif // VERSION_H
|