Line data Source code
1 : /*
2 : * If not stated otherwise in this file or this component's LICENSE file the
3 : * following copyright and licenses apply:
4 : *
5 : * Copyright 2023 Sky UK
6 : *
7 : * Licensed under the Apache License, Version 2.0 (the "License");
8 : * you may not use this file except in compliance with the License.
9 : * You may obtain a copy of the License at
10 : *
11 : * http://www.apache.org/licenses/LICENSE-2.0
12 : *
13 : * Unless required by applicable law or agreed to in writing, software
14 : * distributed under the License is distributed on an "AS IS" BASIS,
15 : * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 : * See the License for the specific language governing permissions and
17 : * limitations under the License.
18 : */
19 :
20 : #include "SchemaVersion.h"
21 :
22 : namespace firebolt::rialto::common
23 : {
24 52 : SchemaVersion::SchemaVersion(std::uint32_t major, std::uint32_t minor, std::uint32_t patch)
25 52 : : m_major{major}, m_minor{minor}, m_patch{patch}
26 : {
27 : }
28 :
29 7 : bool SchemaVersion::operator==(const SchemaVersion &other) const
30 : {
31 7 : return this->m_major == other.m_major && this->m_minor == other.m_minor && this->m_patch == other.m_patch;
32 : }
33 :
34 8 : bool SchemaVersion::isCompatible(const SchemaVersion &other) const
35 : {
36 8 : return this->m_major == other.m_major;
37 : }
38 :
39 10 : std::string SchemaVersion::str() const
40 : {
41 10 : return std::to_string(m_major) + "." + std::to_string(m_minor) + "." + std::to_string(m_patch);
42 : }
43 :
44 28 : std::uint32_t SchemaVersion::major() const
45 : {
46 28 : return m_major;
47 : }
48 :
49 27 : std::uint32_t SchemaVersion::minor() const
50 : {
51 27 : return m_minor;
52 : }
53 :
54 27 : std::uint32_t SchemaVersion::patch() const
55 : {
56 27 : return m_patch;
57 : }
58 :
59 26 : SchemaVersion getCurrentSchemaVersion()
60 : try
61 : {
62 52 : return SchemaVersion{static_cast<std::uint32_t>(std::stoul(PROJECT_VER_MAJOR)),
63 52 : static_cast<std::uint32_t>(std::stoul(PROJECT_VER_MINOR)),
64 52 : static_cast<std::uint32_t>(std::stoul(PROJECT_VER_PATCH))};
65 : }
66 0 : catch (const std::exception &e)
67 : {
68 : // If conversion can't be performed, return default version
69 0 : return SchemaVersion{1, 0, 0};
70 : }
71 : } // namespace firebolt::rialto::common
|