solidity/Parser.cpp

836 lines
25 KiB
C++
Raw Normal View History

/*
2014-10-16 12:08:54 +00:00
This file is part of cpp-ethereum.
2014-10-16 12:08:54 +00:00
cpp-ethereum 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.
2014-10-16 12:08:54 +00:00
cpp-ethereum 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.
2014-10-16 12:08:54 +00:00
You should have received a copy of the GNU General Public License
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @author Christian <c@ethdev.com>
* @date 2014
* Solidity parser.
*/
2014-12-03 06:46:55 +00:00
#include <vector>
2014-10-15 12:45:51 +00:00
#include <libdevcore/Log.h>
#include <libsolidity/BaseTypes.h>
#include <libsolidity/Parser.h>
#include <libsolidity/Scanner.h>
#include <libsolidity/Exceptions.h>
2014-12-03 06:47:08 +00:00
using namespace std;
2014-10-16 12:08:54 +00:00
namespace dev
{
namespace solidity
{
/// AST node factory that also tracks the begin and end position of an AST node
/// while it is being parsed
class Parser::ASTNodeFactory
{
public:
ASTNodeFactory(Parser const& _parser):
m_parser(_parser), m_location(_parser.getPosition(), -1, _parser.getSourceName()) {}
2014-10-13 16:22:15 +00:00
2014-10-16 21:49:45 +00:00
void markEndPosition() { m_location.end = m_parser.getEndPosition(); }
void setLocationEmpty() { m_location.end = m_location.start; }
2014-10-09 10:28:37 +00:00
/// Set the end position to the one of the given node.
void setEndPositionFromNode(ASTPointer<ASTNode> const& _node) { m_location.end = _node->getLocation().end; }
2014-10-09 10:28:37 +00:00
template <class NodeType, typename... Args>
ASTPointer<NodeType> createNode(Args&& ... _args)
2014-10-09 10:28:37 +00:00
{
if (m_location.end < 0)
markEndPosition();
2014-12-03 06:47:08 +00:00
return make_shared<NodeType>(m_location, forward<Args>(_args)...);
2014-10-09 10:28:37 +00:00
}
private:
Parser const& m_parser;
2014-10-09 10:28:37 +00:00
Location m_location;
};
2014-12-03 06:46:55 +00:00
ASTPointer<SourceUnit> Parser::parse(shared_ptr<Scanner> const& _scanner)
{
m_scanner = _scanner;
ASTNodeFactory nodeFactory(*this);
vector<ASTPointer<ASTNode>> nodes;
while (_scanner->getCurrentToken() != Token::EOS)
{
switch (m_scanner->getCurrentToken())
{
case Token::IMPORT:
nodes.push_back(parseImportDirective());
break;
case Token::CONTRACT:
nodes.push_back(parseContractDefinition());
break;
default:
BOOST_THROW_EXCEPTION(createParserError(std::string("Expected import directive or contract definition.")));
}
}
return nodeFactory.createNode<SourceUnit>(nodes);
}
std::shared_ptr<const string> const& Parser::getSourceName() const
{
return m_scanner->getSourceName();
}
int Parser::getPosition() const
{
2014-10-09 10:28:37 +00:00
return m_scanner->getCurrentLocation().start;
}
int Parser::getEndPosition() const
{
2014-10-09 10:28:37 +00:00
return m_scanner->getCurrentLocation().end;
}
2014-12-03 06:46:55 +00:00
ASTPointer<ImportDirective> Parser::parseImportDirective()
{
ASTNodeFactory nodeFactory(*this);
expectToken(Token::IMPORT);
if (m_scanner->getCurrentToken() != Token::STRING_LITERAL)
BOOST_THROW_EXCEPTION(createParserError("Expected string literal (URL)."));
ASTPointer<ASTString> url = getLiteralAndAdvance();
nodeFactory.markEndPosition();
expectToken(Token::SEMICOLON);
return nodeFactory.createNode<ImportDirective>(url);
}
ASTPointer<ContractDefinition> Parser::parseContractDefinition()
{
2014-10-09 10:28:37 +00:00
ASTNodeFactory nodeFactory(*this);
2015-01-20 16:41:09 +00:00
ASTPointer<ASTString> docString;
if (m_scanner->getCurrentCommentLiteral() != "")
2015-01-20 16:41:09 +00:00
docString = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
2014-10-09 10:28:37 +00:00
expectToken(Token::CONTRACT);
ASTPointer<ASTString> name = expectIdentifierToken();
vector<ASTPointer<InheritanceSpecifier>> baseContracts;
2014-12-03 06:47:08 +00:00
vector<ASTPointer<StructDefinition>> structs;
vector<ASTPointer<VariableDeclaration>> stateVariables;
vector<ASTPointer<FunctionDefinition>> functions;
2015-01-21 10:16:18 +00:00
vector<ASTPointer<ModifierDefinition>> modifiers;
2015-01-29 13:35:28 +00:00
vector<ASTPointer<EventDefinition>> events;
2015-01-15 15:15:01 +00:00
if (m_scanner->getCurrentToken() == Token::IS)
do
{
m_scanner->next();
baseContracts.push_back(parseInheritanceSpecifier());
2015-01-15 15:15:01 +00:00
}
while (m_scanner->getCurrentToken() == Token::COMMA);
expectToken(Token::LBRACE);
2014-10-16 12:08:54 +00:00
while (true)
{
2014-10-09 10:28:37 +00:00
Token::Value currentToken = m_scanner->getCurrentToken();
2014-10-16 12:08:54 +00:00
if (currentToken == Token::RBRACE)
2014-10-09 10:28:37 +00:00
break;
2014-10-16 12:08:54 +00:00
else if (currentToken == Token::FUNCTION)
2015-02-02 16:24:09 +00:00
functions.push_back(parseFunctionDefinition(name.get()));
2014-10-16 12:08:54 +00:00
else if (currentToken == Token::STRUCT)
2014-10-09 10:28:37 +00:00
structs.push_back(parseStructDefinition());
2014-10-16 12:08:54 +00:00
else if (currentToken == Token::IDENTIFIER || currentToken == Token::MAPPING ||
Token::isElementaryTypeName(currentToken))
{
2015-01-29 13:35:28 +00:00
VarDeclParserOptions options;
options.isStateVariable = true;
stateVariables.push_back(parseVariableDeclaration(options));
2014-10-09 10:28:37 +00:00
expectToken(Token::SEMICOLON);
2014-10-16 12:08:54 +00:00
}
2015-01-21 10:16:18 +00:00
else if (currentToken == Token::MODIFIER)
modifiers.push_back(parseModifierDefinition());
2015-01-29 13:35:28 +00:00
else if (currentToken == Token::EVENT)
events.push_back(parseEventDefinition());
2014-10-16 12:08:54 +00:00
else
2015-01-21 10:16:18 +00:00
BOOST_THROW_EXCEPTION(createParserError("Function, variable, struct or modifier declaration expected."));
2014-10-09 10:28:37 +00:00
}
nodeFactory.markEndPosition();
expectToken(Token::RBRACE);
2015-01-20 16:41:09 +00:00
return nodeFactory.createNode<ContractDefinition>(name, docString, baseContracts, structs,
2015-01-29 13:35:28 +00:00
stateVariables, functions, modifiers, events);
}
ASTPointer<InheritanceSpecifier> Parser::parseInheritanceSpecifier()
{
ASTNodeFactory nodeFactory(*this);
2015-01-28 10:28:22 +00:00
ASTPointer<Identifier> name(parseIdentifier());
vector<ASTPointer<Expression>> arguments;
if (m_scanner->getCurrentToken() == Token::LPAREN)
{
m_scanner->next();
2015-01-29 17:26:00 +00:00
arguments = parseFunctionCallListArguments();
nodeFactory.markEndPosition();
expectToken(Token::RPAREN);
}
else
nodeFactory.setEndPositionFromNode(name);
return nodeFactory.createNode<InheritanceSpecifier>(name, arguments);
}
2015-02-02 16:24:09 +00:00
Declaration::Visibility Parser::parseVisibilitySpecifier(Token::Value _token)
{
Declaration::Visibility visibility;
if (_token == Token::PUBLIC)
visibility = Declaration::Visibility::PUBLIC;
else if (_token == Token::PROTECTED)
visibility = Declaration::Visibility::PROTECTED;
else if (_token == Token::PRIVATE)
visibility = Declaration::Visibility::PRIVATE;
else
solAssert(false, "Invalid visibility specifier.");
m_scanner->next();
return visibility;
}
ASTPointer<FunctionDefinition> Parser::parseFunctionDefinition(ASTString const* _contractName)
{
2014-10-09 10:28:37 +00:00
ASTNodeFactory nodeFactory(*this);
ASTPointer<ASTString> docstring;
if (m_scanner->getCurrentCommentLiteral() != "")
2014-12-03 06:47:08 +00:00
docstring = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
expectToken(Token::FUNCTION);
2015-01-29 21:50:20 +00:00
ASTPointer<ASTString> name;
if (m_scanner->getCurrentToken() == Token::LPAREN)
name = make_shared<ASTString>(); // anonymous function
else
name = expectIdentifierToken();
ASTPointer<ParameterList> parameters(parseParameterList());
2014-10-09 10:28:37 +00:00
bool isDeclaredConst = false;
2015-02-02 16:24:09 +00:00
Declaration::Visibility visibility(Declaration::Visibility::DEFAULT);
vector<ASTPointer<ModifierInvocation>> modifiers;
while (true)
2014-10-16 12:08:54 +00:00
{
2015-02-02 16:24:09 +00:00
Token::Value token = m_scanner->getCurrentToken();
if (token == Token::CONST)
{
isDeclaredConst = true;
m_scanner->next();
}
2015-02-02 16:24:09 +00:00
else if (token == Token::IDENTIFIER)
modifiers.push_back(parseModifierInvocation());
2015-02-02 16:24:09 +00:00
else if (Token::isVisibilitySpecifier(token))
{
if (visibility != Declaration::Visibility::DEFAULT)
BOOST_THROW_EXCEPTION(createParserError("Multiple visibility specifiers."));
visibility = parseVisibilitySpecifier(token);
}
else
break;
2014-10-09 10:28:37 +00:00
}
ASTPointer<ParameterList> returnParameters;
2014-10-16 12:08:54 +00:00
if (m_scanner->getCurrentToken() == Token::RETURNS)
{
bool const permitEmptyParameterList = false;
2014-10-09 10:28:37 +00:00
m_scanner->next();
2014-10-13 13:07:21 +00:00
returnParameters = parseParameterList(permitEmptyParameterList);
2014-10-16 12:08:54 +00:00
}
else
2015-01-30 20:43:19 +00:00
returnParameters = createEmptyParameterList();
ASTPointer<Block> block = parseBlock();
2014-10-09 10:28:37 +00:00
nodeFactory.setEndPositionFromNode(block);
bool const c_isConstructor = (_contractName && *name == *_contractName);
2015-02-02 16:24:09 +00:00
return nodeFactory.createNode<FunctionDefinition>(name, visibility, c_isConstructor, docstring,
parameters, isDeclaredConst, modifiers,
returnParameters, block);
}
ASTPointer<StructDefinition> Parser::parseStructDefinition()
{
2014-10-09 10:28:37 +00:00
ASTNodeFactory nodeFactory(*this);
expectToken(Token::STRUCT);
ASTPointer<ASTString> name = expectIdentifierToken();
2014-12-03 06:47:08 +00:00
vector<ASTPointer<VariableDeclaration>> members;
2014-10-09 10:28:37 +00:00
expectToken(Token::LBRACE);
2014-10-16 12:08:54 +00:00
while (m_scanner->getCurrentToken() != Token::RBRACE)
{
2015-01-29 13:35:28 +00:00
members.push_back(parseVariableDeclaration());
2014-10-09 10:28:37 +00:00
expectToken(Token::SEMICOLON);
}
nodeFactory.markEndPosition();
expectToken(Token::RBRACE);
return nodeFactory.createNode<StructDefinition>(name, members);
}
2015-01-29 13:35:28 +00:00
ASTPointer<VariableDeclaration> Parser::parseVariableDeclaration(VarDeclParserOptions const& _options)
{
2014-10-09 10:28:37 +00:00
ASTNodeFactory nodeFactory(*this);
2015-01-29 13:35:28 +00:00
ASTPointer<TypeName> type = parseTypeName(_options.allowVar);
bool isIndexed = false;
2015-02-02 16:24:09 +00:00
Token::Value token = m_scanner->getCurrentToken();
if (_options.allowIndexed && token == Token::INDEXED)
2015-01-29 13:35:28 +00:00
{
isIndexed = true;
m_scanner->next();
}
2015-02-02 16:24:09 +00:00
Declaration::Visibility visibility(Declaration::Visibility::DEFAULT);
if (_options.isStateVariable && Token::isVisibilitySpecifier(token))
visibility = parseVisibilitySpecifier(token);
2014-10-09 10:28:37 +00:00
nodeFactory.markEndPosition();
2015-01-29 13:35:28 +00:00
return nodeFactory.createNode<VariableDeclaration>(type, expectIdentifierToken(),
2015-02-02 16:24:09 +00:00
visibility, _options.isStateVariable,
2015-01-29 13:35:28 +00:00
isIndexed);
}
2015-01-21 10:16:18 +00:00
ASTPointer<ModifierDefinition> Parser::parseModifierDefinition()
{
ScopeGuard resetModifierFlag([this]() { m_insideModifier = false; });
m_insideModifier = true;
ASTNodeFactory nodeFactory(*this);
ASTPointer<ASTString> docstring;
if (m_scanner->getCurrentCommentLiteral() != "")
docstring = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
expectToken(Token::MODIFIER);
ASTPointer<ASTString> name(expectIdentifierToken());
ASTPointer<ParameterList> parameters;
if (m_scanner->getCurrentToken() == Token::LPAREN)
parameters = parseParameterList();
else
2015-01-30 20:43:19 +00:00
parameters = createEmptyParameterList();
2015-01-21 10:16:18 +00:00
ASTPointer<Block> block = parseBlock();
nodeFactory.setEndPositionFromNode(block);
return nodeFactory.createNode<ModifierDefinition>(name, docstring, parameters, block);
}
2015-01-29 13:35:28 +00:00
ASTPointer<EventDefinition> Parser::parseEventDefinition()
{
ASTNodeFactory nodeFactory(*this);
ASTPointer<ASTString> docstring;
if (m_scanner->getCurrentCommentLiteral() != "")
docstring = make_shared<ASTString>(m_scanner->getCurrentCommentLiteral());
expectToken(Token::EVENT);
ASTPointer<ASTString> name(expectIdentifierToken());
ASTPointer<ParameterList> parameters;
if (m_scanner->getCurrentToken() == Token::LPAREN)
parameters = parseParameterList(true, true);
2015-01-30 20:43:19 +00:00
else
parameters = createEmptyParameterList();
2015-01-29 13:35:28 +00:00
nodeFactory.markEndPosition();
expectToken(Token::SEMICOLON);
return nodeFactory.createNode<EventDefinition>(name, docstring, parameters);
}
ASTPointer<ModifierInvocation> Parser::parseModifierInvocation()
{
ASTNodeFactory nodeFactory(*this);
2015-01-28 10:28:22 +00:00
ASTPointer<Identifier> name(parseIdentifier());
vector<ASTPointer<Expression>> arguments;
if (m_scanner->getCurrentToken() == Token::LPAREN)
{
m_scanner->next();
2015-01-29 17:26:00 +00:00
arguments = parseFunctionCallListArguments();
nodeFactory.markEndPosition();
expectToken(Token::RPAREN);
}
else
nodeFactory.setEndPositionFromNode(name);
return nodeFactory.createNode<ModifierInvocation>(name, arguments);
}
2015-01-28 10:28:22 +00:00
ASTPointer<Identifier> Parser::parseIdentifier()
{
ASTNodeFactory nodeFactory(*this);
nodeFactory.markEndPosition();
return nodeFactory.createNode<Identifier>(expectIdentifierToken());
}
ASTPointer<TypeName> Parser::parseTypeName(bool _allowVar)
{
ASTPointer<TypeName> type;
2014-10-09 10:28:37 +00:00
Token::Value token = m_scanner->getCurrentToken();
2014-10-16 12:08:54 +00:00
if (Token::isElementaryTypeName(token))
{
2014-10-09 10:28:37 +00:00
type = ASTNodeFactory(*this).createNode<ElementaryTypeName>(token);
m_scanner->next();
2014-10-16 12:08:54 +00:00
}
else if (token == Token::VAR)
{
2014-10-13 16:22:15 +00:00
if (!_allowVar)
2014-10-23 17:22:30 +00:00
BOOST_THROW_EXCEPTION(createParserError("Expected explicit type name."));
2014-10-09 10:28:37 +00:00
m_scanner->next();
2014-10-16 12:08:54 +00:00
}
else if (token == Token::MAPPING)
{
2014-10-09 10:28:37 +00:00
type = parseMapping();
2014-10-16 12:08:54 +00:00
}
else if (token == Token::IDENTIFIER)
{
ASTNodeFactory nodeFactory(*this);
nodeFactory.markEndPosition();
type = nodeFactory.createNode<UserDefinedTypeName>(expectIdentifierToken());
2014-10-16 12:08:54 +00:00
}
else
2014-10-23 17:22:30 +00:00
BOOST_THROW_EXCEPTION(createParserError("Expected type name"));
2014-10-09 10:28:37 +00:00
return type;
}
ASTPointer<Mapping> Parser::parseMapping()
{
2014-10-09 10:28:37 +00:00
ASTNodeFactory nodeFactory(*this);
expectToken(Token::MAPPING);
expectToken(Token::LPAREN);
2014-10-16 12:08:54 +00:00
if (!Token::isElementaryTypeName(m_scanner->getCurrentToken()))
2014-10-23 17:22:30 +00:00
BOOST_THROW_EXCEPTION(createParserError("Expected elementary type name for mapping key type"));
ASTPointer<ElementaryTypeName> keyType;
2014-10-09 10:28:37 +00:00
keyType = ASTNodeFactory(*this).createNode<ElementaryTypeName>(m_scanner->getCurrentToken());
m_scanner->next();
expectToken(Token::ARROW);
2014-10-13 16:22:15 +00:00
bool const allowVar = false;
ASTPointer<TypeName> valueType = parseTypeName(allowVar);
2014-10-09 10:28:37 +00:00
nodeFactory.markEndPosition();
expectToken(Token::RPAREN);
return nodeFactory.createNode<Mapping>(keyType, valueType);
}
2015-01-29 13:35:28 +00:00
ASTPointer<ParameterList> Parser::parseParameterList(bool _allowEmpty, bool _allowIndexed)
{
2014-10-09 10:28:37 +00:00
ASTNodeFactory nodeFactory(*this);
2014-12-03 06:47:08 +00:00
vector<ASTPointer<VariableDeclaration>> parameters;
2015-01-29 13:35:28 +00:00
VarDeclParserOptions options;
options.allowIndexed = _allowIndexed;
2014-10-09 10:28:37 +00:00
expectToken(Token::LPAREN);
2014-10-16 12:08:54 +00:00
if (!_allowEmpty || m_scanner->getCurrentToken() != Token::RPAREN)
{
2015-01-29 13:35:28 +00:00
parameters.push_back(parseVariableDeclaration(options));
2014-10-16 12:08:54 +00:00
while (m_scanner->getCurrentToken() != Token::RPAREN)
{
2014-10-09 10:28:37 +00:00
expectToken(Token::COMMA);
2015-01-29 13:35:28 +00:00
parameters.push_back(parseVariableDeclaration(options));
2014-10-09 10:28:37 +00:00
}
}
nodeFactory.markEndPosition();
m_scanner->next();
return nodeFactory.createNode<ParameterList>(parameters);
}
ASTPointer<Block> Parser::parseBlock()
{
2014-10-09 10:28:37 +00:00
ASTNodeFactory nodeFactory(*this);
expectToken(Token::LBRACE);
2014-12-03 06:47:08 +00:00
vector<ASTPointer<Statement>> statements;
2014-10-16 12:08:54 +00:00
while (m_scanner->getCurrentToken() != Token::RBRACE)
2014-10-09 10:28:37 +00:00
statements.push_back(parseStatement());
nodeFactory.markEndPosition();
expectToken(Token::RBRACE);
return nodeFactory.createNode<Block>(statements);
}
ASTPointer<Statement> Parser::parseStatement()
2014-10-09 10:28:37 +00:00
{
ASTPointer<Statement> statement;
2014-10-16 12:08:54 +00:00
switch (m_scanner->getCurrentToken())
{
2014-10-09 10:28:37 +00:00
case Token::IF:
return parseIfStatement();
case Token::WHILE:
return parseWhileStatement();
case Token::FOR:
return parseForStatement();
2014-10-09 10:28:37 +00:00
case Token::LBRACE:
return parseBlock();
2014-10-16 12:08:54 +00:00
// starting from here, all statements must be terminated by a semicolon
case Token::CONTINUE:
statement = ASTNodeFactory(*this).createNode<Continue>();
m_scanner->next();
break;
case Token::BREAK:
statement = ASTNodeFactory(*this).createNode<Break>();
m_scanner->next();
break;
case Token::RETURN:
2014-10-16 12:08:54 +00:00
{
ASTNodeFactory nodeFactory(*this);
ASTPointer<Expression> expression;
2014-10-16 12:08:54 +00:00
if (m_scanner->next() != Token::SEMICOLON)
{
2014-10-16 12:08:54 +00:00
expression = parseExpression();
nodeFactory.setEndPositionFromNode(expression);
}
2014-10-16 12:08:54 +00:00
statement = nodeFactory.createNode<Return>(expression);
2015-01-21 10:16:18 +00:00
break;
2014-10-16 12:08:54 +00:00
}
2015-01-21 10:16:18 +00:00
case Token::IDENTIFIER:
if (m_insideModifier && m_scanner->getCurrentLiteral() == "_")
{
statement = ASTNodeFactory(*this).createNode<PlaceholderStatement>();
m_scanner->next();
return statement;
}
// fall-through
default:
statement = parseVarDefOrExprStmt();
}
expectToken(Token::SEMICOLON);
return statement;
}
ASTPointer<IfStatement> Parser::parseIfStatement()
{
ASTNodeFactory nodeFactory(*this);
expectToken(Token::IF);
expectToken(Token::LPAREN);
ASTPointer<Expression> condition = parseExpression();
expectToken(Token::RPAREN);
ASTPointer<Statement> trueBody = parseStatement();
ASTPointer<Statement> falseBody;
2014-10-16 12:08:54 +00:00
if (m_scanner->getCurrentToken() == Token::ELSE)
{
m_scanner->next();
falseBody = parseStatement();
nodeFactory.setEndPositionFromNode(falseBody);
2014-10-16 12:08:54 +00:00
}
else
nodeFactory.setEndPositionFromNode(trueBody);
return nodeFactory.createNode<IfStatement>(condition, trueBody, falseBody);
}
ASTPointer<WhileStatement> Parser::parseWhileStatement()
{
ASTNodeFactory nodeFactory(*this);
expectToken(Token::WHILE);
expectToken(Token::LPAREN);
ASTPointer<Expression> condition = parseExpression();
expectToken(Token::RPAREN);
ASTPointer<Statement> body = parseStatement();
nodeFactory.setEndPositionFromNode(body);
return nodeFactory.createNode<WhileStatement>(condition, body);
}
ASTPointer<ForStatement> Parser::parseForStatement()
{
ASTNodeFactory nodeFactory(*this);
ASTPointer<Statement> initExpression;
ASTPointer<Expression> conditionExpression;
ASTPointer<ExpressionStatement> loopExpression;
expectToken(Token::FOR);
expectToken(Token::LPAREN);
// LTODO: Maybe here have some predicate like peekExpression() instead of checking for semicolon and RPAREN?
if (m_scanner->getCurrentToken() != Token::SEMICOLON)
initExpression = parseVarDefOrExprStmt();
expectToken(Token::SEMICOLON);
if (m_scanner->getCurrentToken() != Token::SEMICOLON)
conditionExpression = parseExpression();
expectToken(Token::SEMICOLON);
if (m_scanner->getCurrentToken() != Token::RPAREN)
loopExpression = parseExpressionStatement();
expectToken(Token::RPAREN);
ASTPointer<Statement> body = parseStatement();
nodeFactory.setEndPositionFromNode(body);
return nodeFactory.createNode<ForStatement>(initExpression,
conditionExpression,
loopExpression,
body);
}
ASTPointer<Statement> Parser::parseVarDefOrExprStmt()
{
if (peekVariableDefinition())
return parseVariableDefinition();
else
return parseExpressionStatement();
}
ASTPointer<VariableDefinition> Parser::parseVariableDefinition()
{
ASTNodeFactory nodeFactory(*this);
2015-01-29 13:35:28 +00:00
VarDeclParserOptions options;
options.allowVar = true;
ASTPointer<VariableDeclaration> variable = parseVariableDeclaration(options);
ASTPointer<Expression> value;
2014-10-16 12:08:54 +00:00
if (m_scanner->getCurrentToken() == Token::ASSIGN)
{
m_scanner->next();
value = parseExpression();
nodeFactory.setEndPositionFromNode(value);
2014-10-16 12:08:54 +00:00
}
else
nodeFactory.setEndPositionFromNode(variable);
return nodeFactory.createNode<VariableDefinition>(variable, value);
}
ASTPointer<ExpressionStatement> Parser::parseExpressionStatement()
{
ASTNodeFactory nodeFactory(*this);
ASTPointer<Expression> expression = parseExpression();
nodeFactory.setEndPositionFromNode(expression);
return nodeFactory.createNode<ExpressionStatement>(expression);
}
ASTPointer<Expression> Parser::parseExpression()
{
ASTNodeFactory nodeFactory(*this);
ASTPointer<Expression> expression = parseBinaryExpression();
2014-10-16 12:08:54 +00:00
if (!Token::isAssignmentOp(m_scanner->getCurrentToken()))
return expression;
Token::Value assignmentOperator = expectAssignmentOperator();
ASTPointer<Expression> rightHandSide = parseExpression();
nodeFactory.setEndPositionFromNode(rightHandSide);
return nodeFactory.createNode<Assignment>(expression, assignmentOperator, rightHandSide);
}
ASTPointer<Expression> Parser::parseBinaryExpression(int _minPrecedence)
{
ASTNodeFactory nodeFactory(*this);
ASTPointer<Expression> expression = parseUnaryExpression();
2014-10-16 12:08:54 +00:00
int precedence = Token::precedence(m_scanner->getCurrentToken());
for (; precedence >= _minPrecedence; --precedence)
{
while (Token::precedence(m_scanner->getCurrentToken()) == precedence)
{
Token::Value op = m_scanner->getCurrentToken();
m_scanner->next();
ASTPointer<Expression> right = parseBinaryExpression(precedence + 1);
nodeFactory.setEndPositionFromNode(right);
expression = nodeFactory.createNode<BinaryOperation>(expression, op, right);
}
}
return expression;
}
ASTPointer<Expression> Parser::parseUnaryExpression()
{
ASTNodeFactory nodeFactory(*this);
Token::Value token = m_scanner->getCurrentToken();
2015-01-13 17:12:19 +00:00
if (Token::isUnaryOp(token) || Token::isCountOp(token))
2014-10-16 12:08:54 +00:00
{
// prefix expression
m_scanner->next();
ASTPointer<Expression> subExpression = parseUnaryExpression();
nodeFactory.setEndPositionFromNode(subExpression);
return nodeFactory.createNode<UnaryOperation>(token, subExpression, true);
2014-10-16 12:08:54 +00:00
}
else
{
// potential postfix expression
ASTPointer<Expression> subExpression = parseLeftHandSideExpression();
token = m_scanner->getCurrentToken();
2014-10-16 12:08:54 +00:00
if (!Token::isCountOp(token))
return subExpression;
nodeFactory.markEndPosition();
m_scanner->next();
return nodeFactory.createNode<UnaryOperation>(token, subExpression, false);
}
}
ASTPointer<Expression> Parser::parseLeftHandSideExpression()
{
ASTNodeFactory nodeFactory(*this);
2015-01-13 17:12:19 +00:00
ASTPointer<Expression> expression;
if (m_scanner->getCurrentToken() == Token::NEW)
{
expectToken(Token::NEW);
2015-01-28 10:28:22 +00:00
ASTPointer<Identifier> contractName(parseIdentifier());
nodeFactory.setEndPositionFromNode(contractName);
2015-01-13 17:12:19 +00:00
expression = nodeFactory.createNode<NewExpression>(contractName);
}
else
expression = parsePrimaryExpression();
2014-10-16 12:08:54 +00:00
while (true)
{
switch (m_scanner->getCurrentToken())
{
case Token::LBRACK:
{
m_scanner->next();
ASTPointer<Expression> index = parseExpression();
nodeFactory.markEndPosition();
expectToken(Token::RBRACK);
expression = nodeFactory.createNode<IndexAccess>(expression, index);
}
2014-10-16 12:08:54 +00:00
break;
case Token::PERIOD:
{
m_scanner->next();
nodeFactory.markEndPosition();
expression = nodeFactory.createNode<MemberAccess>(expression, expectIdentifierToken());
}
2014-10-16 12:08:54 +00:00
break;
case Token::LPAREN:
{
m_scanner->next();
2015-01-29 17:26:00 +00:00
vector<ASTPointer<Expression>> arguments;
vector<string> names;
parseFunctionCallArguments(arguments, names);
nodeFactory.markEndPosition();
expectToken(Token::RPAREN);
2015-01-29 17:26:00 +00:00
expression = nodeFactory.createNode<FunctionCall>(expression, arguments, names);
}
2014-10-16 12:08:54 +00:00
break;
default:
return expression;
}
}
}
ASTPointer<Expression> Parser::parsePrimaryExpression()
{
ASTNodeFactory nodeFactory(*this);
Token::Value token = m_scanner->getCurrentToken();
ASTPointer<Expression> expression;
2014-10-16 12:08:54 +00:00
switch (token)
{
case Token::TRUE_LITERAL:
case Token::FALSE_LITERAL:
expression = nodeFactory.createNode<Literal>(token, getLiteralAndAdvance());
break;
case Token::NUMBER:
case Token::STRING_LITERAL:
nodeFactory.markEndPosition();
expression = nodeFactory.createNode<Literal>(token, getLiteralAndAdvance());
break;
case Token::IDENTIFIER:
nodeFactory.markEndPosition();
expression = nodeFactory.createNode<Identifier>(getLiteralAndAdvance());
break;
case Token::LPAREN:
{
m_scanner->next();
ASTPointer<Expression> expression = parseExpression();
expectToken(Token::RPAREN);
return expression;
}
default:
2014-10-16 12:08:54 +00:00
if (Token::isElementaryTypeName(token))
{
// used for casts
expression = nodeFactory.createNode<ElementaryTypeNameExpression>(token);
m_scanner->next();
2014-10-16 12:08:54 +00:00
}
else
{
2014-10-23 17:22:30 +00:00
BOOST_THROW_EXCEPTION(createParserError("Expected primary expression."));
return ASTPointer<Expression>(); // this is not reached
}
2014-10-16 21:49:45 +00:00
break;
2014-10-09 10:28:37 +00:00
}
return expression;
}
2015-01-29 17:26:00 +00:00
vector<ASTPointer<Expression>> Parser::parseFunctionCallListArguments()
{
2014-12-03 06:47:08 +00:00
vector<ASTPointer<Expression>> arguments;
2014-10-16 12:08:54 +00:00
if (m_scanner->getCurrentToken() != Token::RPAREN)
{
arguments.push_back(parseExpression());
2014-10-16 12:08:54 +00:00
while (m_scanner->getCurrentToken() != Token::RPAREN)
{
expectToken(Token::COMMA);
arguments.push_back(parseExpression());
}
}
return arguments;
}
2015-01-29 17:26:00 +00:00
void Parser::parseFunctionCallArguments(vector<ASTPointer<Expression>>& _arguments, vector<string>& _names)
{
Token::Value token = m_scanner->getCurrentToken();
if (token == Token::LBRACE)
{
// call({arg1 : 1, arg2 : 2 })
expectToken(Token::LBRACE);
while (m_scanner->getCurrentToken() != Token::RBRACE)
{
string identifier = *expectIdentifierToken();
expectToken(Token::COLON);
ASTPointer<Expression> expression = parseExpression();
_arguments.push_back(expression);
_names.push_back(identifier);
if (m_scanner->getCurrentToken() == Token::COMMA)
{
expectToken(Token::COMMA);
}
else
{
break;
}
}
expectToken(Token::RBRACE);
}
else
{
_arguments = parseFunctionCallListArguments();
}
}
bool Parser::peekVariableDefinition()
{
2014-12-16 23:28:26 +00:00
// distinguish between variable definition (and potentially assignment) and expression statement
// (which include assignments to other expressions and pre-declared variables)
// We have a variable definition if we get a keyword that specifies a type name, or
// in the case of a user-defined type, we have two identifiers following each other.
return (m_scanner->getCurrentToken() == Token::MAPPING ||
m_scanner->getCurrentToken() == Token::VAR ||
((Token::isElementaryTypeName(m_scanner->getCurrentToken()) ||
m_scanner->getCurrentToken() == Token::IDENTIFIER) &&
m_scanner->peekNextToken() == Token::IDENTIFIER));
}
void Parser::expectToken(Token::Value _value)
{
2014-10-09 10:28:37 +00:00
if (m_scanner->getCurrentToken() != _value)
2014-12-03 06:47:08 +00:00
BOOST_THROW_EXCEPTION(createParserError(string("Expected token ") + string(Token::getName(_value))));
2014-10-09 10:28:37 +00:00
m_scanner->next();
}
Token::Value Parser::expectAssignmentOperator()
{
Token::Value op = m_scanner->getCurrentToken();
2014-10-16 12:08:54 +00:00
if (!Token::isAssignmentOp(op))
2014-10-23 17:22:30 +00:00
BOOST_THROW_EXCEPTION(createParserError("Expected assignment operator"));
m_scanner->next();
return op;
}
ASTPointer<ASTString> Parser::expectIdentifierToken()
{
2014-10-09 10:28:37 +00:00
if (m_scanner->getCurrentToken() != Token::IDENTIFIER)
2014-10-23 17:22:30 +00:00
BOOST_THROW_EXCEPTION(createParserError("Expected identifier"));
return getLiteralAndAdvance();
}
ASTPointer<ASTString> Parser::getLiteralAndAdvance()
{
2014-12-03 06:47:08 +00:00
ASTPointer<ASTString> identifier = make_shared<ASTString>(m_scanner->getCurrentLiteral());
2014-10-09 10:28:37 +00:00
m_scanner->next();
return identifier;
}
2015-01-30 20:43:19 +00:00
ASTPointer<ParameterList> Parser::createEmptyParameterList()
{
ASTNodeFactory nodeFactory(*this);
nodeFactory.setLocationEmpty();
return nodeFactory.createNode<ParameterList>(vector<ASTPointer<VariableDeclaration>>());
}
2014-12-03 06:47:08 +00:00
ParserError Parser::createParserError(string const& _description) const
{
return ParserError() << errinfo_sourceLocation(Location(getPosition(), getPosition(), getSourceName()))
<< errinfo_comment(_description);
}
2014-10-16 12:08:54 +00:00
}
}