-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.cpp
198 lines (165 loc) · 5.39 KB
/
global.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
// ****************************************************************************
// ****************************************************************************
// global.cpp
// ****************************************************************************
//
// ****************************************************************************
// ****************************************************************************
// ****************************************************************************
// Includes
// ****************************************************************************
#include "common.h"
// ****************************************************************************
// Initialize Static Members
// ****************************************************************************
bool Global::m_debug = false;
bool Global::m_dumpFSA = false;
bool Global::m_dumpGrammar = false;
bool Global::m_generateTree = false;
// ****************************************************************************
// main()
// ****************************************************************************
int
main(int argc,
char** argv)
{
srand((UINT) time(NULL));
Global::run(argc, argv);
Global::succeed();
}
// ****************************************************************************
// run()
// ****************************************************************************
void
Global::run(int argc,
char** argv)
{
char input[PATH_MAX];
char grammar[PATH_MAX];
*input = '\0';
*grammar = '\0';
Global::readCmdLine(argc, argv, input, grammar);
#ifdef NOT_ENGR
strcpy(input, "stutest2.in");
strcpy(grammar, "mod.grammar");
#endif
printf("\n////////////////////////////////////////////////////////////\n");
printf("\tRunning compiler");
if (*input)
printf(" on \"%s\"", input);
#ifdef NOT_ENGR
printf("\n\nThis version was made for Windows and\ntherefore ignores input parameters!\n");
#endif
if (m_debug)
printf("\n\tDebugging on");
if (m_dumpFSA)
printf("\n\tDumping FSA to fsa.out");
if (m_generateTree)
printf("\n\tGenerating tree and writing to gen.out");
if (m_dumpGrammar)
printf("\n\tDumping grammar to grammar.out");
if (*grammar)
printf("\n\tBuilding grammar from \"%s\"", grammar);
printf("\n////////////////////////////////////////////////////////////\n\n");
Lexer::init();
Translator::init();
Parser::init(grammar);
Lexer::run(input);
Parser::run();
Parser::printTree();
Translator::run();
}
// ************************************************************************************************
// readCmdLine()
//
// This method reads the command line arguments to get the input file. If the input file is
// missing, we print the proper usage and then exit.
// ************************************************************************************************
void
Global::readCmdLine(int argc,
char** argv,
char* inFile,
char* grammarFile)
{
#ifndef NOT_ENGR
opterr = 0;
char c;
while ( (c = getopt(argc, argv, "dfgtb:")) != -1 ) {
switch (c) {
case 'd':
m_debug = true;
break;
case 'f':
m_dumpFSA = true;
break;
case 'g':
m_dumpGrammar = true;
break;
case 't':
m_generateTree = true;
break;
case 'b':
strncpy(grammarFile, optarg, PATH_MAX);
break;
case '?':
if (optopt == 'b')
fprintf(stderr, "Option -%c requires an argument.\n", optopt);
else if (isprint(optopt))
fprintf(stderr, "Unknown option '-%c'.\n", optopt);
else
fprintf(stderr, "Unknown option character '\\x%x'.\n", optopt);
exit(EXIT_FAILURE);
default:
exit(2);
}
}
if (!m_dumpFSA && !m_dumpGrammar && !m_generateTree && (argv[optind] == NULL)) {
fprintf(stderr, "Usage:\n");
fprintf(stderr, "\tcompiler [-b <grammar file>] <input file>\n");
fprintf(stderr, "\tcompiler -f\t\t\t\t\t\t(Dumps the FSA to fsa.out)\n");
fprintf(stderr, "\tcompiler [-b <grammar file>] -g\t\t\t\t(Dumps the grammar to grammar.out)\n");
fprintf(stderr, "\tcompiler -t\t\t\t\t\t\t(Generates a random parse tree to gen.out)\n");
exit(EXIT_FAILURE);
}
if (!(m_dumpFSA || m_dumpGrammar || m_generateTree))
strncpy(inFile, argv[optind], PATH_MAX);
#endif
}
// ************************************************************************************************
// fail()
// ************************************************************************************************
void
Global::fail()
{
printf("\n\n////////////////////////////////////////////////////////////\n");
printf("\tEncountered error, exiting.\n");
printf("////////////////////////////////////////////////////////////\n");
#ifdef NOT_ENGR
char hack;
fscanf(stdin, "%c", &hack);
#endif
exit(EXIT_FAILURE);
}
// ************************************************************************************************
// exit()
// ************************************************************************************************
void
Global::succeed()
{
printf("\n\n////////////////////////////////////////////////////////////\n");
printf("\tExiting compiler\n");
printf("////////////////////////////////////////////////////////////\n");
exit(EXIT_SUCCESS);
}
// ************************************************************************************************
// isNumeric()
// ************************************************************************************************
bool
Global::isNumeric(const char* buf)
{
while (*buf) {
if (!isdigit(*(buf++)))
return false;
}
return true;
}