43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
|
#include "comdellexer.h"
|
||
|
#include "comdelparser.h"
|
||
|
#include "parserutil.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <fstream>
|
||
|
#include <string>
|
||
|
|
||
|
std::optional<Library> loadLibraryFromFile(ParseContext * parseContext,
|
||
|
const char* name,
|
||
|
std::ostream& stream)
|
||
|
{
|
||
|
std::ifstream in(name, std::ios::in | std::ios::binary);
|
||
|
if( ! in ) {
|
||
|
stream << "ERROR: cannot open file '" << name
|
||
|
<< "' (file does not exist or is unreadable)" << std::endl;
|
||
|
return std::nullopt;
|
||
|
}
|
||
|
|
||
|
std::string source((std::istreambuf_iterator<char>(in)),
|
||
|
std::istreambuf_iterator<char>());
|
||
|
ComdelLexer lexer(name, source, parseContext);
|
||
|
LexerResult lexerResult = lexer.tokenize();
|
||
|
|
||
|
if (lexerResult.errors.size()) {
|
||
|
for (auto& error : lexerResult.errors) {
|
||
|
parseContext->formatError(error, stream, "ERROR: ");
|
||
|
}
|
||
|
return std::nullopt; // if lexer has found errors => don't parse
|
||
|
}
|
||
|
|
||
|
ComdelParser parser(lexerResult.tokens);
|
||
|
auto unit = parser.parse();
|
||
|
if (!unit) {
|
||
|
for (auto& error : parser.getErrors()) {
|
||
|
parseContext->formatError(error, stream, "ERROR: ");
|
||
|
}
|
||
|
return std::nullopt;
|
||
|
}
|
||
|
|
||
|
return *unit;
|
||
|
}
|