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
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
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;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::langutil;
|
2016-02-22 01:13:32 +00:00
|
|
|
|
2020-02-05 23:04:18 +00:00
|
|
|
SourceLocation ParserBase::currentLocation() const
|
2016-02-22 01:13:32 +00:00
|
|
|
{
|
2020-02-05 23:04:18 +00:00
|
|
|
return m_scanner->currentLocation();
|
2016-02-22 01:13:32 +00:00
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2019-05-27 14:13:27 +00:00
|
|
|
string ParserBase::currentLiteral() const
|
2017-05-29 14:05:12 +00:00
|
|
|
{
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2019-05-27 14:13:27 +00:00
|
|
|
string ParserBase::tokenName(Token _token)
|
|
|
|
{
|
|
|
|
if (_token == Token::Identifier)
|
|
|
|
return "identifier";
|
|
|
|
else if (_token == Token::EOS)
|
|
|
|
return "end of source";
|
|
|
|
else if (TokenTraits::isReservedKeyword(_token))
|
|
|
|
return "reserved keyword '" + TokenTraits::friendlyName(_token) + "'";
|
|
|
|
else if (TokenTraits::isElementaryTypeName(_token)) //for the sake of accuracy in reporting
|
|
|
|
{
|
|
|
|
ElementaryTypeNameToken elemTypeName = m_scanner->currentElementaryTypeNameToken();
|
|
|
|
return "'" + elemTypeName.toString() + "'";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return "'" + TokenTraits::friendlyName(_token) + "'";
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2019-05-27 14:13:27 +00:00
|
|
|
string const expectedToken = ParserBase::tokenName(_value);
|
|
|
|
if (m_parserErrorRecovery)
|
2020-05-08 23:28:55 +00:00
|
|
|
parserError(6635_error, "Expected " + expectedToken + " but got " + tokenName(tok));
|
2019-05-27 14:13:27 +00:00
|
|
|
else
|
2020-05-08 23:28:55 +00:00
|
|
|
fatalParserError(2314_error, "Expected " + expectedToken + " but got " + tokenName(tok));
|
2019-05-27 14:13:27 +00:00
|
|
|
// Do not advance so that recovery can sync or make use of the current token.
|
|
|
|
// This is especially useful if the expected token
|
|
|
|
// is the only one that is missing and is at the end of a construct.
|
|
|
|
// "{ ... ; }" is such an example.
|
|
|
|
// ^
|
|
|
|
_advance = false;
|
|
|
|
}
|
|
|
|
if (_advance)
|
2021-06-22 12:49:38 +00:00
|
|
|
advance();
|
2019-05-27 14:13:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ParserBase::expectTokenOrConsumeUntil(Token _value, string const& _currentNodeName, bool _advance)
|
|
|
|
{
|
2020-08-20 14:07:04 +00:00
|
|
|
solAssert(m_inParserRecovery, "The function is supposed to be called during parser recovery only.");
|
|
|
|
|
2019-05-27 14:13:27 +00:00
|
|
|
Token tok = m_scanner->currentToken();
|
|
|
|
if (tok != _value)
|
|
|
|
{
|
2020-02-05 23:04:18 +00:00
|
|
|
SourceLocation errorLoc = currentLocation();
|
|
|
|
int startPosition = errorLoc.start;
|
2019-05-27 14:13:27 +00:00
|
|
|
while (m_scanner->currentToken() != _value && m_scanner->currentToken() != Token::EOS)
|
2021-06-22 12:49:38 +00:00
|
|
|
advance();
|
2019-05-27 14:13:27 +00:00
|
|
|
|
|
|
|
string const expectedToken = ParserBase::tokenName(_value);
|
|
|
|
if (m_scanner->currentToken() == Token::EOS)
|
2016-03-30 03:32:40 +00:00
|
|
|
{
|
2019-05-27 14:13:27 +00:00
|
|
|
// rollback to where the token started, and raise exception to be caught at a higher level.
|
2020-06-02 13:45:03 +00:00
|
|
|
m_scanner->setPosition(static_cast<size_t>(startPosition));
|
2020-08-20 14:07:04 +00:00
|
|
|
string const msg = "In " + _currentNodeName + ", " + expectedToken + "is expected; got " + ParserBase::tokenName(tok) + " instead.";
|
2020-05-08 23:28:55 +00:00
|
|
|
fatalParserError(1957_error, errorLoc, msg);
|
2019-05-27 14:13:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-08-20 14:07:04 +00:00
|
|
|
parserWarning(3796_error, "Recovered in " + _currentNodeName + " at " + expectedToken + ".");
|
2019-05-27 14:13:27 +00:00
|
|
|
m_inParserRecovery = false;
|
|
|
|
}
|
|
|
|
}
|
2020-08-20 14:07:04 +00:00
|
|
|
else
|
2019-05-27 14:13:27 +00:00
|
|
|
{
|
|
|
|
string expectedToken = ParserBase::tokenName(_value);
|
2020-05-08 23:28:55 +00:00
|
|
|
parserWarning(3347_error, "Recovered in " + _currentNodeName + " at " + expectedToken + ".");
|
2019-05-27 14:13:27 +00:00
|
|
|
m_inParserRecovery = false;
|
2019-05-28 16:07:22 +00:00
|
|
|
}
|
2019-05-27 14:13:27 +00:00
|
|
|
|
2018-05-02 19:42:26 +00:00
|
|
|
if (_advance)
|
2021-06-22 12:49:38 +00:00
|
|
|
advance();
|
2016-02-22 01:13:32 +00:00
|
|
|
}
|
|
|
|
|
2017-08-21 10:33:29 +00:00
|
|
|
void ParserBase::increaseRecursionDepth()
|
|
|
|
{
|
|
|
|
m_recursionDepth++;
|
2019-06-17 10:01:31 +00:00
|
|
|
if (m_recursionDepth >= 1200)
|
2020-05-08 23:28:55 +00:00
|
|
|
fatalParserError(7319_error, "Maximum recursion depth reached during parsing.");
|
2017-08-21 10:33:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ParserBase::decreaseRecursionDepth()
|
|
|
|
{
|
|
|
|
solAssert(m_recursionDepth > 0, "");
|
|
|
|
m_recursionDepth--;
|
|
|
|
}
|
|
|
|
|
2020-05-08 22:24:58 +00:00
|
|
|
void ParserBase::parserWarning(ErrorId _error, string const& _description)
|
2019-05-27 14:13:27 +00:00
|
|
|
{
|
2020-05-08 22:24:58 +00:00
|
|
|
m_errorReporter.warning(_error, currentLocation(), _description);
|
2019-05-27 14:13:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 09:56:28 +00:00
|
|
|
void ParserBase::parserWarning(ErrorId _error, SourceLocation const& _location, string const& _description)
|
|
|
|
{
|
|
|
|
m_errorReporter.warning(_error, _location, _description);
|
|
|
|
}
|
|
|
|
|
2020-05-08 22:24:58 +00:00
|
|
|
void ParserBase::parserError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2019-05-27 14:13:27 +00:00
|
|
|
{
|
2020-05-08 22:24:58 +00:00
|
|
|
m_errorReporter.parserError(_error, _location, _description);
|
2019-05-27 14:13:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 22:24:58 +00:00
|
|
|
void ParserBase::parserError(ErrorId _error, string const& _description)
|
2016-02-22 01:13:32 +00:00
|
|
|
{
|
2020-05-08 22:24:58 +00:00
|
|
|
parserError(_error, currentLocation(), _description);
|
2016-02-22 01:13:32 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 22:24:58 +00:00
|
|
|
void ParserBase::fatalParserError(ErrorId _error, string const& _description)
|
2016-02-22 01:13:32 +00:00
|
|
|
{
|
2020-05-08 22:24:58 +00:00
|
|
|
fatalParserError(_error, currentLocation(), _description);
|
2019-05-27 14:13:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 22:24:58 +00:00
|
|
|
void ParserBase::fatalParserError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2019-05-27 14:13:27 +00:00
|
|
|
{
|
2020-05-08 22:24:58 +00:00
|
|
|
m_errorReporter.fatalParserError(_error, _location, _description);
|
2016-02-22 01:13:32 +00:00
|
|
|
}
|