forked from Neargye/semver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_example.cpp
More file actions
61 lines (55 loc) · 2.64 KB
/
basic_example.cpp
File metadata and controls
61 lines (55 loc) · 2.64 KB
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
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
// SPDX-License-Identifier: MIT
// Copyright (c) 2018 - 2025 Daniil Goncharov <neargye@gmail.com>.
// Copyright (c) 2020 - 2025 Alexander Gorbunov <naratzul@gmail.com>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include <cassert>
#include <iostream>
#include "semver.hpp"
int main() {
constexpr std::string_view raw_version = "1.2.3";
semver::version version;
const auto [ptr, ec] = semver::parse(raw_version, version);
if (ec == std::errc{}) {
assert(ptr == (raw_version.data() + raw_version.size()));
std::cout << version.major() << std::endl; // 1
std::cout << version.minor() << std::endl; // 2
std::cout << version.patch() << std::endl; // 3
}
semver::version version2;
if (semver::parse("1.2.3-alpha0.1+build", version2)) {
std::cout << version2.major() << std::endl; // 1
std::cout << version2.minor() << std::endl; // 2
std::cout << version2.patch() << std::endl; // 3
std::cout << version2.prerelease_tag() << std::endl; // "alpha0.1"
std::cout << version2.build_metadata() << std::endl; // "build"
}
assert(version > version2);
assert(version2 < version);
// use 64 bit integer for numbers
semver::version<int64_t, int64_t, int64_t> version3;
if (semver::parse("0.0.999999999999", version3)) {
std::cout << version3.major() << std::endl; // 0
std::cout << version3.minor() << std::endl; // 0
std::cout << version3.patch() << std::endl; // 999999999999
}
const bool result = semver::valid("0.0.1-beta");
std::cout << std::boolalpha << result << std::endl; // true
}