Optionally read and write to file.
This commit is contained in:
parent
12c5043778
commit
ae7c1f98d9
27
main.cpp
27
main.cpp
|
@ -1,13 +1,18 @@
|
||||||
#include "Monicelli.tab.h"
|
#include "Monicelli.tab.h"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <fstream>
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
#include <cstdio>
|
||||||
|
|
||||||
using namespace monicelli;
|
using namespace monicelli;
|
||||||
|
|
||||||
int lineNumber = 1;
|
int lineNumber = 1;
|
||||||
Program *program;
|
Program *program;
|
||||||
|
|
||||||
|
extern FILE *monicelli_in;
|
||||||
|
|
||||||
|
|
||||||
void monicelli_error(const char *message) {
|
void monicelli_error(const char *message) {
|
||||||
std::cerr << "At line " << lineNumber << ": " << message << std::endl;
|
std::cerr << "At line " << lineNumber << ": " << message << std::endl;
|
||||||
|
@ -21,15 +26,31 @@ void monicelli_meta(const char *text) {
|
||||||
std::cerr << "META: " << text << std::endl;
|
std::cerr << "META: " << text << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main(int argc, char **argv) {
|
||||||
#if YYDEBUG
|
#if YYDEBUG
|
||||||
yydebug = 1;
|
yydebug = 1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
program = new Program();
|
bool fromFile = argc > 1;
|
||||||
monicelli_parse();
|
bool toFile = argc > 2;
|
||||||
|
|
||||||
|
program = new Program();
|
||||||
|
|
||||||
|
if (fromFile) {
|
||||||
|
monicelli_in = fopen(argv[1], "r");
|
||||||
|
}
|
||||||
|
monicelli_parse();
|
||||||
|
if (fromFile) {
|
||||||
|
fclose(monicelli_in);
|
||||||
|
}
|
||||||
|
if (toFile) {
|
||||||
|
std::ofstream out(argv[2]);
|
||||||
|
program->emit(out);
|
||||||
|
out.close();
|
||||||
|
}
|
||||||
|
else {
|
||||||
program->emit(std::cout);
|
program->emit(std::cout);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue
Block a user