Branch data Line data Source code
1 : : #include "lex/Lexer.hpp"
2 : : #include <mutable/lex/TokenType.hpp>
3 : : #include <mutable/util/ArgParser.hpp>
4 : : #include <mutable/util/Diagnostic.hpp>
5 : : #include <mutable/util/fn.hpp>
6 : : #include <cerrno>
7 : : #include <cstdlib>
8 : : #include <cstring>
9 : : #include <fstream>
10 : : #include <iostream>
11 : :
12 : :
13 : : using namespace m;
14 : :
15 : :
16 : 0 : void usage(std::ostream &out, const char *name)
17 : : {
18 : 0 : out << "Performs lexicographic analysis of the input.\n"
19 : 0 : << "USAGE:\n\t" << name << " <FILE>"
20 : 0 : << "\n\t" << name << " -"
21 : 0 : << std::endl;
22 : 0 : }
23 : :
24 : 0 : int main(int argc, const char **argv)
25 : : {
26 : 0 : ArgParser AP;
27 : : #define ADD(TYPE, VAR, INIT, SHORT, LONG, DESCR, CALLBACK)\
28 : : TYPE VAR = INIT;\
29 : : {\
30 : : AP.add<TYPE>(SHORT, LONG, DESCR, CALLBACK);\
31 : : }
32 [ # # ]: 0 : ADD(bool, show_help, false, /* Type, Var, Init */
33 : : "-h", "--help", /* Short, Long */
34 : : "prints this help message", /* Description */
35 : : [&](bool) { show_help = true; }); /* Callback */
36 [ # # ]: 0 : ADD(bool, color, false, /* Type, Var, Init */
37 : : nullptr, "--color", /* Short, Long */
38 : : "use colors", /* Description */
39 : : [&](bool) { color = true; }); /* Callback */
40 : : #undef ADD
41 [ # # ]: 0 : AP.parse_args(argc, argv);
42 : :
43 [ # # ]: 0 : if (show_help) {
44 [ # # ]: 0 : usage(std::cout, argv[0]);
45 [ # # # # ]: 0 : std::cout << "WHERE\n" << AP;
46 : 0 : std::exit(EXIT_SUCCESS);
47 : : }
48 : :
49 [ # # # # ]: 0 : if (AP.args().size() != 1) {
50 [ # # ]: 0 : usage(std::cerr, argv[0]);
51 [ # # # # ]: 0 : std::cerr << "WHERE\n" << AP;
52 : 0 : std::exit(EXIT_FAILURE);
53 : : }
54 : :
55 [ # # ]: 0 : const char *filename = AP.args()[0];
56 : : std::istream *in;
57 [ # # # # ]: 0 : if (streq(filename, "-")) {
58 : : /* read from stdin */
59 : 0 : in = &std::cin;
60 : 0 : } else {
61 : : /* read from file */
62 [ # # # # ]: 0 : in = new std::ifstream(filename, std::ios_base::in);
63 : : }
64 : :
65 [ # # # # ]: 0 : if (in->fail()) {
66 [ # # ]: 0 : if (in == &std::cin)
67 [ # # ]: 0 : std::cerr << "Failed to open stdin: ";
68 : : else
69 [ # # # # : 0 : std::cerr << "Failed to open the file '" << filename << "': ";
# # ]
70 [ # # # # ]: 0 : std::cerr << strerror(errno) << std::endl;
71 : 0 : }
72 : :
73 [ # # ]: 0 : Diagnostic diag(color, std::cout, std::cerr);
74 : 0 : ThreadSafeStringPool pool;
75 [ # # ]: 0 : ast::Lexer lexer(diag, pool, filename, *in);
76 : :
77 [ # # # # : 0 : while (auto tok = lexer.next())
# # ]
78 [ # # # # : 0 : diag(tok.pos) << tok.text << ' ' << tok.type << std::endl;
# # # # #
# # # # ]
79 : :
80 [ # # ]: 0 : if (in != &std::cin)
81 [ # # ]: 0 : delete in;
82 : :
83 [ # # ]: 0 : std::exit(diag.num_errors() ? EXIT_FAILURE : EXIT_SUCCESS);
84 : 0 : }
|