blob: 3009ed562680887726adc4980371a347e52f5207 [file] [log] [blame] [edit]
/*
* Copyright © 2020 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authored by: Christopher James Halse Rogers <christopher.halse.rogers@canonical.com>
*/
#include "version_specifier.h"
using std::experimental::optional;
wlcs::ExactlyVersion::ExactlyVersion(uint32_t version) noexcept
: version{version}
{
}
auto wlcs::ExactlyVersion::select_version(uint32_t max_version) const -> optional<uint32_t>
{
if (max_version < version)
{
return {};
}
return {version};
}
auto wlcs::ExactlyVersion::describe() const -> std::string
{
return std::string{"= "} + std::to_string(version);
}
wlcs::AtLeastVersion::AtLeastVersion(uint32_t version) noexcept
: version{version}
{
}
auto wlcs::AtLeastVersion::select_version(uint32_t max_version) const -> optional<uint32_t>
{
if (max_version < version)
{
return {};
}
return {max_version};
}
auto wlcs::AtLeastVersion::describe() const -> std::string
{
return std::string{">= "} + std::to_string(version);
}
wlcs::VersionSpecifier const& wlcs::AnyVersion = wlcs::AtLeastVersion{1};