File: MyGUI_Version.h

package info (click to toggle)
mygui 3.2.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 36,224 kB
  • sloc: cpp: 118,031; ansic: 30,202; xml: 15,544; cs: 12,602; tcl: 776; python: 417; makefile: 34
file content (115 lines) | stat: -rw-r--r-- 2,423 bytes parent folder | download | duplicates (5)
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
/*
 * 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(unsigned int _major = 0, unsigned int _minor = 0, unsigned int _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;
		}

		unsigned int getMajor() const
		{
			return mMajor;
		}

		unsigned int getMinor() const
		{
			return mMinor;
		}

		unsigned int 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(const std::string& _value)
		{
			const std::vector<std::string>& vec = utility::split(_value, ".");
			if (vec.empty())
				return Version();

			unsigned int major = utility::parseValue<unsigned int>(vec[0]);
			unsigned int minor = vec.size() > 1 ? utility::parseValue<unsigned int>(vec[1]) : 0;
			unsigned int patch = vec.size() > 2 ? utility::parseValue<unsigned int>(vec[2]) : 0;

			return Version(major, minor, patch);
		}

	private:
		unsigned mMajor : 8;
		unsigned mMinor : 8;
		unsigned mPatch : 16;
	};

} // namespace MyGUI

#endif // MYGUI_VERSION_H_