2020-11-10 15:26:38 +01:00
|
|
|
#include "parser/parser.hpp"
|
|
|
|
|
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
namespace hex::lang {
|
|
|
|
|
|
|
|
Parser::Parser() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
using TokenIter = std::vector<Token>::const_iterator;
|
|
|
|
|
|
|
|
std::vector<ASTNode*> parseTillToken(TokenIter &curr, Token::Type endTokenType);
|
|
|
|
|
|
|
|
bool tryConsume(TokenIter &curr, std::initializer_list<Token::Type> tokenTypes) {
|
|
|
|
std::vector<Token>::const_iterator originalPosition = curr;
|
|
|
|
|
|
|
|
for (const auto& type : tokenTypes) {
|
|
|
|
if (curr->type != type) {
|
|
|
|
curr = originalPosition;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
curr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ASTNode* parseBuiltinVariableDecl(TokenIter &curr) {
|
|
|
|
return new ASTNodeVariableDecl(curr[-3].typeToken.type, curr[-2].identifierToken.identifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
ASTNode* parseCustomTypeVariableDecl(TokenIter &curr) {
|
|
|
|
return new ASTNodeVariableDecl(Token::TypeToken::Type::CustomType, curr[-2].identifierToken.identifier, curr[-3].identifierToken.identifier);
|
|
|
|
}
|
|
|
|
|
2020-11-10 16:24:48 +01:00
|
|
|
ASTNode* parseFreeBuiltinVariableDecl(TokenIter &curr) {
|
|
|
|
return new ASTNodeVariableDecl(curr[-5].typeToken.type, curr[-4].identifierToken.identifier, "", curr[-2].integerToken.integer);
|
|
|
|
}
|
|
|
|
|
|
|
|
ASTNode* parseFreeCustomTypeVariableDecl(TokenIter &curr) {
|
|
|
|
return new ASTNodeVariableDecl(Token::TypeToken::Type::CustomType, curr[-4].identifierToken.identifier, curr[-5].identifierToken.identifier, curr[-2].integerToken.integer);
|
|
|
|
}
|
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
std::optional<ASTNode*> parseStruct(TokenIter &curr) {
|
|
|
|
const std::string &structName = curr[-2].identifierToken.identifier;
|
|
|
|
std::vector<ASTNode*> nodes;
|
|
|
|
|
|
|
|
while (!tryConsume(curr, {Token::Type::ScopeClose})) {
|
|
|
|
if (tryConsume(curr, {Token::Type::Type, Token::Type::Identifier, Token::Type::EndOfExpression}))
|
|
|
|
nodes.push_back(parseBuiltinVariableDecl(curr));
|
|
|
|
else if (tryConsume(curr, {Token::Type::Identifier, Token::Type::Identifier, Token::Type::EndOfExpression}))
|
|
|
|
nodes.push_back(parseCustomTypeVariableDecl(curr));
|
|
|
|
else break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tryConsume(curr, {Token::Type::EndOfExpression})) {
|
|
|
|
for(auto &node : nodes) delete node;
|
|
|
|
return { };
|
|
|
|
}
|
|
|
|
|
2020-11-10 16:24:48 +01:00
|
|
|
return new ASTNodeStruct(structName, nodes);
|
2020-11-10 15:26:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ASTNode *parseScope(TokenIter &curr) {
|
|
|
|
return new ASTNodeScope(parseTillToken(curr, Token::Type::ScopeClose));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<ASTNode*> parseUsingDeclaration(TokenIter &curr) {
|
|
|
|
auto keyword = curr[-5].keywordToken;
|
|
|
|
auto name = curr[-4].identifierToken;
|
|
|
|
auto op = curr[-3].operatorToken;
|
|
|
|
|
|
|
|
if (keyword.keyword != Token::KeywordToken::Keyword::Using)
|
|
|
|
return { };
|
|
|
|
|
|
|
|
if (op.op != Token::OperatorToken::Operator::Assignment)
|
|
|
|
return { };
|
|
|
|
|
|
|
|
if (curr[-2].type == Token::Type::Type) {
|
|
|
|
auto type = curr[-2].typeToken;
|
|
|
|
|
|
|
|
return new ASTNodeTypeDecl(type.type, name.identifier);
|
|
|
|
} else if (curr[-2].type == Token::Type::Identifier) {
|
|
|
|
auto customType = curr[-2].identifierToken;
|
|
|
|
|
|
|
|
return new ASTNodeTypeDecl(Token::TypeToken::Type::CustomType, name.identifier, customType.identifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
return { };
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<std::vector<ASTNode*>> parseStatement(TokenIter &curr) {
|
|
|
|
std::vector<ASTNode*> program;
|
|
|
|
|
2020-11-10 16:24:48 +01:00
|
|
|
// Struct
|
2020-11-10 15:26:38 +01:00
|
|
|
if (tryConsume(curr, { Token::Type::Keyword, Token::Type::Identifier, Token::Type::ScopeOpen })) {
|
|
|
|
if (curr[-3].keywordToken.keyword == Token::KeywordToken::Keyword::Struct) {
|
|
|
|
auto structAst = parseStruct(curr);
|
|
|
|
|
|
|
|
if (!structAst.has_value()) {
|
|
|
|
for(auto &node : program) delete node;
|
|
|
|
return { };
|
|
|
|
}
|
|
|
|
|
|
|
|
program.push_back(structAst.value());
|
|
|
|
}
|
|
|
|
|
|
|
|
return program;
|
2020-11-10 16:24:48 +01:00
|
|
|
|
|
|
|
// Scope
|
2020-11-10 15:26:38 +01:00
|
|
|
} else if (tryConsume(curr, { Token::Type::ScopeOpen })) {
|
|
|
|
program.push_back(parseScope(curr));
|
|
|
|
|
|
|
|
return program;
|
2020-11-10 16:24:48 +01:00
|
|
|
|
|
|
|
// Using declaration with built-in type
|
2020-11-10 15:26:38 +01:00
|
|
|
} else if (tryConsume(curr, { Token::Type::Keyword, Token::Type::Identifier, Token::Type::Operator, Token::Type::Type, Token::Type::EndOfExpression})) {
|
|
|
|
auto usingDecl = parseUsingDeclaration(curr);
|
|
|
|
|
|
|
|
if (!usingDecl.has_value()) {
|
|
|
|
for(auto &node : program) delete node;
|
|
|
|
return { };
|
|
|
|
}
|
|
|
|
|
|
|
|
program.push_back(usingDecl.value());
|
|
|
|
|
|
|
|
return program;
|
2020-11-10 16:24:48 +01:00
|
|
|
|
|
|
|
// Using declaration with custom type
|
2020-11-10 15:26:38 +01:00
|
|
|
} else if (tryConsume(curr, { Token::Type::Keyword, Token::Type::Identifier, Token::Type::Operator, Token::Type::Identifier, Token::Type::EndOfExpression})) {
|
|
|
|
auto usingDecl = parseUsingDeclaration(curr);
|
|
|
|
|
|
|
|
if (!usingDecl.has_value()) {
|
|
|
|
for(auto &node : program) delete node;
|
|
|
|
return { };
|
|
|
|
}
|
|
|
|
|
|
|
|
program.push_back(usingDecl.value());
|
|
|
|
|
2020-11-10 16:24:48 +01:00
|
|
|
return program;
|
|
|
|
// Variable declaration with built-in type
|
|
|
|
} else if (tryConsume(curr, { Token::Type::Type, Token::Type::Identifier, Token::Type::Operator, Token::Type::Integer, Token::Type::EndOfExpression})) {
|
|
|
|
auto variableDecl = parseFreeBuiltinVariableDecl(curr);
|
|
|
|
|
|
|
|
program.push_back(variableDecl);
|
|
|
|
|
|
|
|
return program;
|
|
|
|
|
|
|
|
// Variable declaration with custom type
|
|
|
|
} else if (tryConsume(curr, { Token::Type::Identifier, Token::Type::Identifier, Token::Type::Operator, Token::Type::Integer, Token::Type::EndOfExpression})) {
|
|
|
|
auto variableDecl = parseFreeCustomTypeVariableDecl(curr);
|
|
|
|
|
|
|
|
program.push_back(variableDecl);
|
|
|
|
|
2020-11-10 15:26:38 +01:00
|
|
|
return program;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for(auto &node : program) delete node;
|
|
|
|
return { };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<ASTNode*> parseTillToken(TokenIter &curr, Token::Type endTokenType) {
|
|
|
|
std::vector<ASTNode*> program;
|
|
|
|
|
|
|
|
while (curr->type != endTokenType) {
|
|
|
|
auto newTokens = parseStatement(curr);
|
|
|
|
|
|
|
|
if (!newTokens.has_value())
|
|
|
|
break;
|
|
|
|
|
|
|
|
program.insert(program.end(), newTokens->begin(), newTokens->end());
|
|
|
|
}
|
|
|
|
|
|
|
|
curr++;
|
|
|
|
|
|
|
|
return program;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<Result, std::vector<ASTNode*>> Parser::parse(const std::vector<Token> &tokens) {
|
|
|
|
auto currentToken = tokens.begin();
|
|
|
|
|
|
|
|
auto program = parseTillToken(currentToken, Token::Type::EndOfProgram);
|
|
|
|
|
|
|
|
if (program.empty())
|
|
|
|
return { ResultParseError, { } };
|
|
|
|
|
|
|
|
return { ResultSuccess, program };
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|