Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
39 lines
887 B
C++
39 lines
887 B
C++
|
|
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/core/sstring.hh>
|
|
#include <seastar/core/format.hh>
|
|
#include <tuple>
|
|
|
|
namespace version {
|
|
class version {
|
|
std::tuple<uint16_t, uint16_t, uint16_t> _version;
|
|
public:
|
|
version(uint16_t x, uint16_t y = 0, uint16_t z = 0): _version(std::make_tuple(x, y, z)) {}
|
|
|
|
seastar::sstring to_sstring() {
|
|
return seastar::format("{:d}.{:d}.{:d}", std::get<0>(_version), std::get<1>(_version), std::get<2>(_version));
|
|
}
|
|
|
|
static version current() {
|
|
static version v(3, 0, 8);
|
|
return v;
|
|
}
|
|
|
|
std::strong_ordering operator<=>(const version&) const = default;
|
|
};
|
|
|
|
inline const seastar::sstring& release() {
|
|
static thread_local auto str_ver = version::current().to_sstring();
|
|
return str_ver;
|
|
}
|
|
}
|