Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
GLVersionNum.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com>
3 * Copyright Gothel Software e.K.
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 * This Source Code Form is subject to the terms of the MIT License
8 * If a copy of the MIT was not distributed with this file,
9 * you can obtain one at https://opensource.org/license/mit/.
10 */
11
12#ifndef GAMP_GLVERSIONNUMBER_HPP_
13#define GAMP_GLVERSIONNUMBER_HPP_
14
16
17namespace gamp::render::gl {
18
19 /** \addtogroup Gamp_GL
20 *
21 * @{
22 */
23
24 /**
25 * A class for storing and comparing OpenGL version numbers.
26 * This only works for desktop OpenGL at the moment.
27 */
28 class GLVersionNumber : public jau::util::VersionNumberString {
29 private:
30
31 bool m_valid;
32
33 GLVersionNumber(int val[], ssize_t strEnd, uint16_t state, const std::string& versionString, bool valid)
34 : VersionNumberString(val[0], val[1], val[2],
35 0, 0, false, // git
36 state, strEnd, versionString), m_valid(valid)
37 { }
38
39 static const std::regex& getUnderscorePattern() noexcept { // NOLINT(bugprone-exception-escape)
40 static std::regex pattern = getNonGitPattern("_");
41 return pattern;
42 }
43 static const std::regex& getDefaultPattern() noexcept { // NOLINT(bugprone-exception-escape)
44 static std::regex defPattern = getNonGitPattern(".");
45 return defPattern;
46 }
47
48 public:
50
51 static GLVersionNumber create(const std::string& versionString) noexcept {
52 int val[] = { 0, 0, 0 };
53 ssize_t strEnd = 0;
54 uint16_t state = 0;
55 bool valid = false;
56 if (versionString.length() > 0) {
57 std::regex versionPattern;
58 if (versionString.starts_with("GL_VERSION_")) {
59 versionPattern = getUnderscorePattern();
60 } else {
61 versionPattern = getDefaultPattern();
62 }
63 VersionNumberString version(versionString, versionPattern);
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(); // Requires at least a defined major and minor version component!
70 }
71 return GLVersionNumber(val, strEnd, state, versionString, valid);
72 }
73
74 constexpr bool isValid() const noexcept {
75 return m_valid;
76 }
77
78 /**
79 * Returns the optional vendor version at the end of the
80 * <code>GL_VERSION</code> string if exists, otherwise the {@link VersionNumberString#zeroVersion zero version} instance.
81 * <pre>
82 * 2.1 Mesa 7.0.3-rc2 -> 7.0.3 (7.0.3-rc2)
83 * 2.1 Mesa 7.12-devel (git-d6c318e) -> 7.12.0 (7.12-devel)
84 * 4.2.12171 Compatibility Profile Context 9.01.8 -> 9.1.8 (9.01.8)
85 * 4.2.12198 Compatibility Profile Context 12.102.3.0 -> 12.102.3 (12.102.3.0)
86 * 4.3.0 NVIDIA 310.32 -> 310.32 (310.32)
87 * </pre>
88 */
89 VersionNumber createVendorVersion(const std::string& versionString) noexcept {
90 if (versionString.length() <= 0) {
91 return VersionNumber();
92 }
93
94 // Skip the 1st GL version
95 std::string str;
96 {
97 GLVersionNumber glv = create(versionString);
98 str = jau::trim( versionString.substr( glv.endOfStringMatch() ) );
99 }
100
101 while ( str.length() > 0 ) {
102 VersionNumberString version(str, getDefaultPattern());
103 ssize_t eosm = version.endOfStringMatch();
104 if( 0 < eosm ) {
105 if( version.hasMajor() && version.hasMinor() ) { // Requires at least a defined major and minor version component!
106 return version;
107 }
108 str = jau::trim( str.substr( eosm ) );
109 } else {
110 break; // no match
111 }
112 }
113 return VersionNumber();
114 }
115 };
116
117 /**@}*/
118
119} // namespace gamp::render::gl
120
121
122#endif /* GAMP_GLVERSIONNUMBER_HPP_ */
VersionNumber createVendorVersion(const std::string &versionString) noexcept
Returns the optional vendor version at the end of the GL_VERSION string if exists,...
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