libcruft-util/version.hpp

88 lines
2.5 KiB
C++
Raw Normal View History

2011-05-23 17:18:52 +10:00
/*
2015-04-13 18:05:28 +10:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2011-05-23 17:18:52 +10:00
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2011-05-23 17:18:52 +10:00
*
2012-04-23 13:06:41 +10:00
* Copyright 2010 Danny Robson <danny@nerdcruft.net>
2011-05-23 17:18:52 +10:00
*/
#ifndef __UTIL_VERSION_HPP
#define __UTIL_VERSION_HPP
2011-05-23 17:18:52 +10:00
#include <array>
2011-05-23 17:18:52 +10:00
#include <string>
#include <iostream>
2016-01-19 18:31:35 +11:00
#include <limits>
2011-05-23 17:18:52 +10:00
namespace util {
2013-08-05 21:46:11 +10:00
struct version {
2016-01-19 18:31:35 +11:00
// underlying component value type
using value_t = unsigned;
static_assert (std::numeric_limits<value_t>::max () >= 2100'00'00,
"value_t must be sufficient to store a reasonable future year in YYYYMMDD format");
/// type of release.
///
/// * must be sorted from earliest to latest
/// * specific values aren't currently guaranteed.
2013-08-05 21:46:11 +10:00
enum release_t {
2016-01-19 18:31:35 +11:00
ALPHA,
BETA,
GAMMA,
PRODUCTION
2013-08-05 21:46:11 +10:00
};
version ();
version (unsigned int _major, unsigned int _minor);
explicit version (const std::string& str);
explicit version (const char *str);
2013-08-05 21:46:11 +10:00
void sanity (void) const;
2016-01-19 18:31:35 +11:00
// named component indices
//
// * must start from zero and be monotonically increasing
enum offset_t {
MAJOR = 0,
MINOR = 1,
POINT = 2,
BUILD = 3
2013-08-05 21:46:11 +10:00
};
2016-01-19 18:31:35 +11:00
unsigned major (void) const;
unsigned minor (void) const;
unsigned point (void) const;
unsigned build (void) const;
const unsigned* begin (void) const;
const unsigned* end (void) const;
2013-08-05 21:46:11 +10:00
size_t size;
2016-01-19 18:31:35 +11:00
std::array<unsigned,4u> components;
2013-08-05 21:46:11 +10:00
release_t release;
static version parse (const std::string&);
static version parse (const char*);
2016-01-19 18:31:35 +11:00
bool operator< (const version& rhs) const;
bool operator> (const version& rhs) const;
bool operator>= (const version& rhs) const;
bool operator<= (const version& rhs) const;
bool operator== (const version& rhs) const;
};
2016-01-19 18:31:35 +11:00
std::ostream& operator<< (std::ostream& os, const util::version& rhs);
}
2013-08-05 21:46:11 +10:00
2011-05-23 17:18:52 +10:00
#endif // __VERSION_HPP