Files
BlitzLLVM/projects/code_compiler/source/compiler.cpp
T
Michael Fabian 'Xaymar' Dirks dcd8950260 code_compiler: Add initial Compiler and Parser
These don't do much yet and are just here so the class structure exists.
2017-11-13 02:16:17 +01:00

88 lines
2.8 KiB
C++

// Code Compiler for BlitzLLVM
// Copyright(C) 2017 Michael Fabian Dirks
//
// This program 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.
//
// This program 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.
//
// You should have received a copy of the GNU General Public License
// along with this program.If not, see <https://www.gnu.org/licenses/>.
#include "compiler.hpp"
#include "parser.hpp"
#include "lexer.hpp"
#include <fstream>
#include <iostream>
BlitzLLVM::Compiler::Compiler() {}
BlitzLLVM::Compiler::~Compiler() {}
bool BlitzLLVM::Compiler::Compile(std::string in, std::string out) {
std::ifstream infile;
infile.open(in);
if (infile.bad() || !infile.good() || infile.eof()) {
std::cerr << "Failed to open file: " << in << std::endl;
return false;
}
Lexer psr = { infile };
for (auto tkn = psr.GetNextToken(); tkn.first != Lexer::Token::TokenEOF; tkn = psr.GetNextToken()) {
switch (tkn.first) {
case Lexer::Token::TokenEOF:
std::cout << "EOF" << std::endl;
break;
case Lexer::Token::TokenNewLine:
std::cout << "NewLine" << std::endl;
break;
case Lexer::Token::TokenPlus:
case Lexer::Token::TokenMinus:
case Lexer::Token::TokenSlashForward:
case Lexer::Token::TokenSlashBackward:
case Lexer::Token::TokenMultiply:
case Lexer::Token::TokenEqual:
case Lexer::Token::TokenOctothorp:
case Lexer::Token::TokenPercent:
case Lexer::Token::TokenDollar:
case Lexer::Token::TokenRoundBracketOpen:
case Lexer::Token::TokenRoundBracketClose:
case Lexer::Token::TokenSquareBracketOpen:
case Lexer::Token::TokenSquareBracketClose:
case Lexer::Token::TokenAngleBracketOpen:
case Lexer::Token::TokenAngleBracketClose:
case Lexer::Token::TokenDot:
case Lexer::Token::TokenColon:
case Lexer::Token::TokenComma:
case Lexer::Token::TokenSemicolon:
case Lexer::Token::TokenCaret:
case Lexer::Token::TokenDoubleQuote:
std::cout << tkn.second << ' ';
break;
case Lexer::Token::TokenText:
std::cout << "Text(" << tkn.second << ")" << ' ';
break;
case Lexer::Token::TokenNumber:
std::cout << "Number(" << tkn.second << ")" << ' ';
break;
case Lexer::Token::TokenDecimal:
std::cout << "Decimal(" << tkn.second << ")" << ' ';
break;
case Lexer::Token::TokenQuotedText:
std::cout << "QuotedText(" << tkn.second << ")" << ' ';
break;
case Lexer::Token::TokenUnknown:
default:
std::cout << "Unknown" << std::endl;
break;
}
}
return true;
}