12#ifndef GAMP_GLVERSIONNUMBER_HPP_
13#define GAMP_GLVERSIONNUMBER_HPP_
39 static const std::regex& getUnderscorePattern()
noexcept {
43 static const std::regex& getDefaultPattern()
noexcept {
52 int val[] = { 0, 0, 0 };
57 std::regex versionPattern;
59 versionPattern = getUnderscorePattern();
61 versionPattern = getDefaultPattern();
64 strEnd = version.endOfStringMatch();
65 val[0] = version.major();
66 val[1] = version.minor();
67 state = (uint16_t) ( ( version.hasMajor() ? VersionNumber::HAS_MAJOR : (uint16_t)0 ) |
68 ( version.hasMinor() ? VersionNumber::HAS_MINOR : (uint16_t)0 ) );
69 valid = version.hasMajor() && version.hasMinor();
101 while ( str.length() > 0 ) {
103 ssize_t eosm = version.endOfStringMatch();
105 if( version.hasMajor() && version.hasMinor() ) {
VersionNumber createVendorVersion(const std::string &versionString) noexcept
Returns the optional vendor version at the end of the GL_VERSION string if exists,...
GLVersionNumber() noexcept
static GLVersionNumber create(const std::string &versionString) noexcept
constexpr bool isValid() const noexcept
Simple version number class containing a version number either being defined explicit or derived from...
static std::regex getNonGitPattern(const std::string &delim)
constexpr const std::string & versionString() const noexcept
Returns the used version-string, empty if not constructed with such.
constexpr VersionNumberString() noexcept
Default ctor for zero version.
constexpr VersionNumberString(int majorRev, int minorRev, int subMinorRev, int gitCommits, uint64_t gitSSHA, bool gitDirty, uint16_t _state, ssize_t strEnd, std::string _version_str) noexcept
constexpr ssize_t endOfStringMatch() const noexcept
If constructed with version-string, returns the string offset after the last matching character,...
constexpr VersionNumber() noexcept
Default ctor for zero version.
constexpr VersionNumber(int majorRev, int minorRev, int subMinorRev, int gitCommits, uint64_t gitSSHA, bool gitDirty, uint16_t _state) noexcept
std::string trim(const std::string &s) noexcept
trim copy