2016-02-22 01:13:32 +00:00
|
|
|
/*
|
2019-02-13 15:56:46 +00:00
|
|
|
This file is part of solidity.
|
2016-02-22 01:13:32 +00:00
|
|
|
|
2019-02-13 15:56:46 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
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-02-22 01:13:32 +00:00
|
|
|
|
2019-02-13 15:56:46 +00:00
|
|
|
solidity 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.
|
2016-02-22 01:13:32 +00:00
|
|
|
|
2019-02-13 15:56:46 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2016-02-22 01:13:32 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2016
|
|
|
|
* Solidity parser shared functionality.
|
|
|
|
*/
|
|
|
|
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/ParserBase.h>
|
|
|
|
#include <liblangutil/Scanner.h>
|
|
|
|
#include <liblangutil/ErrorReporter.h>
|
2016-02-22 01:13:32 +00:00
|
|
|
|
|
|
|
using namespace std;
|
2018-11-14 16:11:55 +00:00
|
|
|
using namespace langutil;
|
2016-02-22 01:13:32 +00:00
|
|
|
|
|
|
|
int ParserBase::position() const
|
|
|
|
{
|
|
|
|
return m_scanner->currentLocation().start;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ParserBase::endPosition() const
|
|
|
|
{
|
|
|
|
return m_scanner->currentLocation().end;
|
|
|
|
}
|
|
|
|
|
2018-10-22 14:48:21 +00:00
|
|
|
Token ParserBase::currentToken() const
|
2017-05-29 14:05:12 +00:00
|
|
|
{
|
|
|
|
return m_scanner->currentToken();
|
|
|
|
}
|
|
|
|
|
2018-10-22 14:48:21 +00:00
|
|
|
Token ParserBase::peekNextToken() const
|
2017-05-29 14:05:12 +00:00
|
|
|
{
|
|
|
|
return m_scanner->peekNextToken();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ParserBase::currentLiteral() const
|
|
|
|
{
|
|
|
|
return m_scanner->currentLiteral();
|
|
|
|
}
|
|
|
|
|
2018-10-22 14:48:21 +00:00
|
|
|
Token ParserBase::advance()
|
2017-05-29 14:05:12 +00:00
|
|
|
{
|
|
|
|
return m_scanner->next();
|
|
|
|
}
|
|
|
|
|
2018-10-22 14:48:21 +00:00
|
|
|
void ParserBase::expectToken(Token _value, bool _advance)
|
2016-02-22 01:13:32 +00:00
|
|
|
{
|
2018-10-22 14:48:21 +00:00
|
|
|
Token tok = m_scanner->currentToken();
|
2016-03-30 03:32:40 +00:00
|
|
|
if (tok != _value)
|
|
|
|
{
|
2018-10-22 14:48:21 +00:00
|
|
|
auto tokenName = [this](Token _token)
|
2016-03-30 03:32:40 +00:00
|
|
|
{
|
2018-05-04 12:26:23 +00:00
|
|
|
if (_token == Token::Identifier)
|
|
|
|
return string("identifier");
|
|
|
|
else if (_token == Token::EOS)
|
|
|
|
return string("end of source");
|
2018-10-22 14:48:21 +00:00
|
|
|
else if (TokenTraits::isReservedKeyword(_token))
|
|
|
|
return string("reserved keyword '") + TokenTraits::friendlyName(_token) + "'";
|
|
|
|
else if (TokenTraits::isElementaryTypeName(_token)) //for the sake of accuracy in reporting
|
2018-05-04 12:26:23 +00:00
|
|
|
{
|
|
|
|
ElementaryTypeNameToken elemTypeName = m_scanner->currentElementaryTypeNameToken();
|
|
|
|
return string("'") + elemTypeName.toString() + "'";
|
|
|
|
}
|
|
|
|
else
|
2018-10-22 14:48:21 +00:00
|
|
|
return string("'") + TokenTraits::friendlyName(_token) + "'";
|
2018-05-04 12:26:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fatalParserError(string("Expected ") + tokenName(_value) + string(" but got ") + tokenName(tok));
|
2016-03-30 03:32:40 +00:00
|
|
|
}
|
2018-05-02 19:42:26 +00:00
|
|
|
if (_advance)
|
|
|
|
m_scanner->next();
|
2016-02-22 01:13:32 +00:00
|
|
|
}
|
|
|
|
|
2017-08-21 10:33:29 +00:00
|
|
|
void ParserBase::increaseRecursionDepth()
|
|
|
|
{
|
|
|
|
m_recursionDepth++;
|
2017-09-19 11:03:45 +00:00
|
|
|
if (m_recursionDepth >= 2560)
|
2017-08-21 10:33:29 +00:00
|
|
|
fatalParserError("Maximum recursion depth reached during parsing.");
|
|
|
|
}
|
|
|
|
|
|
|
|
void ParserBase::decreaseRecursionDepth()
|
|
|
|
{
|
|
|
|
solAssert(m_recursionDepth > 0, "");
|
|
|
|
m_recursionDepth--;
|
|
|
|
}
|
|
|
|
|
2016-02-22 01:13:32 +00:00
|
|
|
void ParserBase::parserError(string const& _description)
|
|
|
|
{
|
2018-12-12 13:43:34 +00:00
|
|
|
m_errorReporter.parserError(SourceLocation{position(), endPosition(), source()}, _description);
|
2016-02-22 01:13:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ParserBase::fatalParserError(string const& _description)
|
|
|
|
{
|
2018-12-12 13:43:34 +00:00
|
|
|
m_errorReporter.fatalParserError(SourceLocation{position(), endPosition(), source()}, _description);
|
2016-02-22 01:13:32 +00:00
|
|
|
}
|