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
|
/*
* This source file is part of MyGUI. For the latest info, see http://mygui.info/
* Distributed under the MIT License
* (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
*/
#ifndef MYGUI_VERSION_H_
#define MYGUI_VERSION_H_
#include "MyGUI_Prerequest.h"
#include "MyGUI_Types.h"
#include "MyGUI_StringUtility.h"
namespace MyGUI
{
class MYGUI_EXPORT Version
{
public:
Version(uint8_t _major = 0, uint8_t _minor = 0, uint16_t _patch = 0) :
mMajor(_major),
mMinor(_minor),
mPatch(_patch)
{
}
friend bool operator<(Version const& a, Version const& b)
{
return (a.mMajor < b.mMajor) ? true : (a.mMinor < b.mMinor);
}
friend bool operator>=(Version const& a, Version const& b)
{
return !(a < b);
}
friend bool operator>(Version const& a, Version const& b)
{
return (b < a);
}
friend bool operator<=(Version const& a, Version const& b)
{
return !(a > b);
}
friend bool operator==(Version const& a, Version const& b)
{
return !(a < b) && !(a > b);
}
friend bool operator!=(Version const& a, Version const& b)
{
return !(a == b);
}
friend std::ostream& operator<<(std::ostream& _stream, const Version& _value)
{
_stream << _value.print();
return _stream;
}
friend std::istream& operator>>(std::istream& _stream, Version& _value)
{
std::string value;
_stream >> value;
_value = parse(value);
return _stream;
}
uint8_t getMajor() const
{
return mMajor;
}
uint8_t getMinor() const
{
return mMinor;
}
uint16_t getPatch() const
{
return mPatch;
}
std::string print() const
{
if (mPatch == 0)
return utility::toString(mMajor, ".", mMinor);
return utility::toString(mMajor, ".", mMinor, ".", mPatch);
}
static Version parse(std::string_view _value)
{
const std::vector<std::string>& vec = utility::split(_value, ".");
if (vec.empty())
return {};
uint8_t major = utility::parseValue<uint8_t>(vec[0]);
uint8_t minor = vec.size() > 1 ? utility::parseValue<uint8_t>(vec[1]) : 0;
uint16_t patch = vec.size() > 2 ? utility::parseValue<uint16_t>(vec[2]) : 0;
return {major, minor, patch};
}
private:
uint8_t mMajor;
uint8_t mMinor;
uint16_t mPatch;
};
} // namespace MyGUI
#endif // MYGUI_VERSION_H_
|