2014-10-07 16:25:04 +00:00
|
|
|
/*
|
2014-10-16 12:08:54 +00:00
|
|
|
This file is part of cpp-ethereum.
|
2014-10-07 16:25:04 +00:00
|
|
|
|
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-07 16:25:04 +00:00
|
|
|
|
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-07 16:25:04 +00:00
|
|
|
|
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/>.
|
2014-10-07 16:25:04 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Solidity parser.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "libsolidity/AST.h"
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
2014-10-07 16:25:04 +00:00
|
|
|
|
|
|
|
class Scanner;
|
|
|
|
|
|
|
|
class Parser
|
|
|
|
{
|
|
|
|
public:
|
2014-12-03 06:46:55 +00:00
|
|
|
ASTPointer<SourceUnit> parse(std::shared_ptr<Scanner> const& _scanner);
|
2014-12-03 17:52:28 +00:00
|
|
|
std::shared_ptr<std::string const> const& getSourceName() const;
|
2014-10-07 16:25:04 +00:00
|
|
|
|
|
|
|
private:
|
2014-10-09 10:28:37 +00:00
|
|
|
class ASTNodeFactory;
|
2014-10-07 16:25:04 +00:00
|
|
|
|
2014-10-09 10:28:37 +00:00
|
|
|
/// Start position of the current token
|
|
|
|
int getPosition() const;
|
|
|
|
/// End position of the current token
|
|
|
|
int getEndPosition() const;
|
2014-10-07 16:25:04 +00:00
|
|
|
|
2014-10-22 18:35:35 +00:00
|
|
|
///@{
|
|
|
|
///@name Parsing functions for the AST nodes
|
2014-12-03 06:46:55 +00:00
|
|
|
ASTPointer<ImportDirective> parseImportDirective();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ContractDefinition> parseContractDefinition();
|
2015-01-19 20:05:47 +00:00
|
|
|
ASTPointer<InheritanceSpecifier> parseInheritanceSpecifier();
|
2015-01-20 14:58:04 +00:00
|
|
|
ASTPointer<FunctionDefinition> parseFunctionDefinition(bool _isPublic, ASTString const* _contractName);
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<StructDefinition> parseStructDefinition();
|
|
|
|
ASTPointer<VariableDeclaration> parseVariableDeclaration(bool _allowVar);
|
2015-01-21 10:16:18 +00:00
|
|
|
ASTPointer<ModifierDefinition> parseModifierDefinition();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<TypeName> parseTypeName(bool _allowVar);
|
|
|
|
ASTPointer<Mapping> parseMapping();
|
|
|
|
ASTPointer<ParameterList> parseParameterList(bool _allowEmpty = true);
|
|
|
|
ASTPointer<Block> parseBlock();
|
|
|
|
ASTPointer<Statement> parseStatement();
|
|
|
|
ASTPointer<IfStatement> parseIfStatement();
|
|
|
|
ASTPointer<WhileStatement> parseWhileStatement();
|
2014-12-15 16:45:18 +00:00
|
|
|
ASTPointer<ForStatement> parseForStatement();
|
2014-12-16 13:46:17 +00:00
|
|
|
ASTPointer<Statement> parseVarDefOrExprStmt();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<VariableDefinition> parseVariableDefinition();
|
2014-10-30 00:20:32 +00:00
|
|
|
ASTPointer<ExpressionStatement> parseExpressionStatement();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<Expression> parseExpression();
|
|
|
|
ASTPointer<Expression> parseBinaryExpression(int _minPrecedence = 4);
|
|
|
|
ASTPointer<Expression> parseUnaryExpression();
|
|
|
|
ASTPointer<Expression> parseLeftHandSideExpression();
|
|
|
|
ASTPointer<Expression> parsePrimaryExpression();
|
|
|
|
std::vector<ASTPointer<Expression>> parseFunctionCallArguments();
|
2014-10-22 18:35:35 +00:00
|
|
|
///@}
|
|
|
|
|
|
|
|
///@{
|
|
|
|
///@name Helper functions
|
2014-10-07 16:25:04 +00:00
|
|
|
|
2014-12-16 13:46:17 +00:00
|
|
|
/// Peeks ahead in the scanner to determine if a variable definition is going to follow
|
2014-12-15 16:45:18 +00:00
|
|
|
bool peekVariableDefinition();
|
|
|
|
|
2014-10-09 10:28:37 +00:00
|
|
|
/// If current token value is not _value, throw exception otherwise advance token.
|
|
|
|
void expectToken(Token::Value _value);
|
2014-10-09 13:57:49 +00:00
|
|
|
Token::Value expectAssignmentOperator();
|
2014-10-20 12:00:37 +00:00
|
|
|
ASTPointer<ASTString> expectIdentifierToken();
|
|
|
|
ASTPointer<ASTString> getLiteralAndAdvance();
|
2014-10-22 18:35:35 +00:00
|
|
|
///@}
|
2014-10-07 16:25:04 +00:00
|
|
|
|
2014-10-23 17:22:30 +00:00
|
|
|
/// Creates a @ref ParserError exception and annotates it with the current position and the
|
|
|
|
/// given @a _description.
|
|
|
|
ParserError createParserError(std::string const& _description) const;
|
|
|
|
|
2014-10-09 10:28:37 +00:00
|
|
|
std::shared_ptr<Scanner> m_scanner;
|
2015-01-21 10:16:18 +00:00
|
|
|
/// Flag that signifies whether '_' is parsed as a PlaceholderStatement or a regular identifier.
|
|
|
|
bool m_insideModifier = false;
|
2014-10-07 16:25:04 +00:00
|
|
|
};
|
|
|
|
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
}
|