2016-08-19 17:57:21 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2016-08-19 17:57:21 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2016-08-19 17:57:21 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2016-08-19 17:57:21 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2016-08-19 17:57:21 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2016-08-19 17:57:21 +00:00
|
|
|
/**
|
|
|
|
* @author Christian <chris@ethereum.org>
|
|
|
|
* @date 2016
|
|
|
|
* Utilities to handle semantic versioning.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-04-17 11:02:30 +00:00
|
|
|
#include <liblangutil/Token.h>
|
2020-12-18 15:43:14 +00:00
|
|
|
#include <libsolutil/Assertions.h>
|
2020-04-01 03:04:29 +00:00
|
|
|
|
2018-11-14 16:11:55 +00:00
|
|
|
#include <string>
|
2020-12-16 22:33:40 +00:00
|
|
|
#include <optional>
|
2020-04-01 03:04:29 +00:00
|
|
|
#include <utility>
|
2016-08-19 17:57:21 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::langutil
|
2016-08-19 17:57:21 +00:00
|
|
|
{
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
class SemVerError: util::Exception
|
2016-08-19 17:57:21 +00:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2017-03-10 01:03:19 +00:00
|
|
|
#undef major
|
|
|
|
#undef minor
|
|
|
|
|
2016-08-19 17:57:21 +00:00
|
|
|
struct SemVerVersion
|
|
|
|
{
|
|
|
|
unsigned numbers[3];
|
|
|
|
std::string prerelease;
|
|
|
|
std::string build;
|
|
|
|
|
2016-10-25 01:30:25 +00:00
|
|
|
unsigned major() const { return numbers[0]; }
|
|
|
|
unsigned minor() const { return numbers[1]; }
|
|
|
|
unsigned patch() const { return numbers[2]; }
|
|
|
|
|
|
|
|
bool isPrerelease() const { return !prerelease.empty(); }
|
|
|
|
|
2016-08-19 17:57:21 +00:00
|
|
|
explicit SemVerVersion(std::string const& _versionString = "0.0.0");
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SemVerMatchExpression
|
|
|
|
{
|
|
|
|
bool matches(SemVerVersion const& _version) const;
|
|
|
|
|
|
|
|
bool isValid() const { return !m_disjunction.empty(); }
|
|
|
|
|
|
|
|
struct MatchComponent
|
|
|
|
{
|
|
|
|
/// Prefix from < > <= >= ~ ^
|
2018-10-22 14:48:21 +00:00
|
|
|
Token prefix = Token::Illegal;
|
2016-08-19 17:57:21 +00:00
|
|
|
/// Version, where unsigned(-1) in major, minor or patch denotes '*', 'x' or 'X'
|
|
|
|
SemVerVersion version;
|
|
|
|
/// Whether we have 1, 1.2 or 1.2.4
|
|
|
|
unsigned levelsPresent = 1;
|
|
|
|
bool matches(SemVerVersion const& _version) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Conjunction
|
|
|
|
{
|
|
|
|
std::vector<MatchComponent> components;
|
|
|
|
bool matches(SemVerVersion const& _version) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<Conjunction> m_disjunction;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SemVerMatchExpressionParser
|
|
|
|
{
|
|
|
|
public:
|
2020-12-18 15:43:14 +00:00
|
|
|
SemVerMatchExpressionParser(std::vector<Token> _tokens, std::vector<std::string> _literals):
|
2020-04-01 03:04:29 +00:00
|
|
|
m_tokens(std::move(_tokens)), m_literals(std::move(_literals))
|
2020-12-18 15:43:14 +00:00
|
|
|
{
|
|
|
|
solAssert(m_tokens.size() == m_literals.size(), "");
|
|
|
|
}
|
2020-12-16 22:33:40 +00:00
|
|
|
|
|
|
|
/// Returns an expression if it was parseable, or nothing otherwise.
|
|
|
|
std::optional<SemVerMatchExpression> parse();
|
2016-08-19 17:57:21 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
void parseMatchExpression();
|
|
|
|
SemVerMatchExpression::MatchComponent parseMatchComponent();
|
|
|
|
unsigned parseVersionPart();
|
|
|
|
|
|
|
|
char currentChar() const;
|
|
|
|
char nextChar();
|
2018-10-22 14:48:21 +00:00
|
|
|
Token currentToken() const;
|
2016-08-19 17:57:21 +00:00
|
|
|
void nextToken();
|
|
|
|
|
2018-10-22 14:48:21 +00:00
|
|
|
std::vector<Token> m_tokens;
|
2016-08-19 17:57:21 +00:00
|
|
|
std::vector<std::string> m_literals;
|
|
|
|
|
|
|
|
unsigned m_pos = 0;
|
|
|
|
unsigned m_posInside = 0;
|
|
|
|
|
|
|
|
SemVerMatchExpression m_expression;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|