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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
|
/*
* Copyright 2001-2007 Adrian Thurston <thurston@cs.queensu.ca>
*/
/* This file is part of Ragel.
*
* Ragel 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 2 of the License, or
* (at your option) any later version.
*
* Ragel 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 Ragel; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <iostream>
#include <fstream>
#ifndef _WIN32
# include <unistd.h>
#endif
#include "common.h"
#include "rlgen-cd.h"
#include "xmlparse.h"
#include "pcheck.h"
#include "vector.h"
#include "version.h"
/* Code generators. */
#include "tabcodegen.h"
#include "ftabcodegen.h"
#include "flatcodegen.h"
#include "fflatcodegen.h"
#include "gotocodegen.h"
#include "fgotocodegen.h"
#include "ipgotocodegen.h"
#include "splitcodegen.h"
using std::istream;
using std::ifstream;
using std::ostream;
using std::ios;
using std::cin;
using std::cout;
using std::cerr;
using std::endl;
/* Target language and output style. */
CodeStyleEnum codeStyle = GenTables;
/* Io globals. */
istream *inStream = 0;
ostream *outStream = 0;
output_filter *outFilter = 0;
char *outputFileName = 0;
/* Graphviz dot file generation. */
bool graphvizDone = false;
int numSplitPartitions = 0;
bool noLineDirectives = false;
bool printPrintables = false;
/* Print a summary of the options. */
void usage()
{
cout <<
"usage: " PROGNAME " [options] file\n"
"general:\n"
" -h, -H, -?, --help Print this usage and exit\n"
" -v, --version Print version information and exit\n"
" -o <file> Write output to <file>\n"
"code generation options:\n"
" -l Inhibit writing of #line directives\n"
"generated code style:\n"
" -T0 Table driven FSM (default)\n"
" -T1 Faster table driven FSM\n"
" -F0 Flat table driven FSM\n"
" -F1 Faster flat table-driven FSM\n"
" -G0 Goto-driven FSM\n"
" -G1 Faster goto-driven FSM\n"
" -G2 Really fast goto-driven FSM\n"
" -P<N> N-Way Split really fast goto-driven FSM\n"
;
}
/* Print version information. */
void version()
{
cout << "Ragel Code Generator for C, C++, Objective-C and D" << endl <<
"Version " VERSION << ", " PUBDATE << endl <<
"Copyright (c) 2001-2007 by Adrian Thurston" << endl;
}
/* Total error count. */
int gblErrorCount = 0;
ostream &error()
{
gblErrorCount += 1;
cerr << PROGNAME ": ";
return cerr;
}
/*
* Callbacks invoked by the XML data parser.
*/
/* Invoked by the parser when the root element is opened. */
ostream *openOutput( char *inputFile )
{
if ( hostLangType != CCode && hostLangType != DCode ) {
error() << "this code generator is for C and D only" << endl;
exit(1);
}
/* If the output format is code and no output file name is given, then
* make a default. */
if ( outputFileName == 0 ) {
char *ext = findFileExtension( inputFile );
if ( ext != 0 && strcmp( ext, ".rh" ) == 0 )
outputFileName = fileNameFromStem( inputFile, ".h" );
else {
const char *defExtension = 0;
switch ( hostLangType ) {
case CCode: defExtension = ".c"; break;
case DCode: defExtension = ".d"; break;
default: break;
}
outputFileName = fileNameFromStem( inputFile, defExtension );
}
}
/* Make sure we are not writing to the same file as the input file. */
if ( outputFileName != 0 && strcmp( inputFile, outputFileName ) == 0 ) {
error() << "output file \"" << outputFileName <<
"\" is the same as the input file" << endl;
}
if ( outputFileName != 0 ) {
/* Create the filter on the output and open it. */
outFilter = new output_filter( outputFileName );
outFilter->open( outputFileName, ios::out|ios::trunc );
if ( !outFilter->is_open() ) {
error() << "error opening " << outputFileName << " for writing" << endl;
exit(1);
}
/* Open the output stream, attaching it to the filter. */
outStream = new ostream( outFilter );
}
else {
/* Writing out ot std out. */
outStream = &cout;
}
return outStream;
}
/* Invoked by the parser when a ragel definition is opened. */
CodeGenData *makeCodeGen( char *sourceFileName, char *fsmName,
ostream &out, bool wantComplete )
{
CodeGenData *codeGen = 0;
switch ( hostLangType ) {
case CCode:
switch ( codeStyle ) {
case GenTables:
codeGen = new CTabCodeGen(out);
break;
case GenFTables:
codeGen = new CFTabCodeGen(out);
break;
case GenFlat:
codeGen = new CFlatCodeGen(out);
break;
case GenFFlat:
codeGen = new CFFlatCodeGen(out);
break;
case GenGoto:
codeGen = new CGotoCodeGen(out);
break;
case GenFGoto:
codeGen = new CFGotoCodeGen(out);
break;
case GenIpGoto:
codeGen = new CIpGotoCodeGen(out);
break;
case GenSplit:
codeGen = new CSplitCodeGen(out);
break;
}
break;
case DCode:
switch ( codeStyle ) {
case GenTables:
codeGen = new DTabCodeGen(out);
break;
case GenFTables:
codeGen = new DFTabCodeGen(out);
break;
case GenFlat:
codeGen = new DFlatCodeGen(out);
break;
case GenFFlat:
codeGen = new DFFlatCodeGen(out);
break;
case GenGoto:
codeGen = new DGotoCodeGen(out);
break;
case GenFGoto:
codeGen = new DFGotoCodeGen(out);
break;
case GenIpGoto:
codeGen = new DIpGotoCodeGen(out);
break;
case GenSplit:
codeGen = new DSplitCodeGen(out);
break;
}
break;
default: break;
}
codeGen->sourceFileName = sourceFileName;
codeGen->fsmName = fsmName;
codeGen->wantComplete = wantComplete;
return codeGen;
}
/* Main, process args and call yyparse to start scanning input. */
int main(int argc, char **argv)
{
ParamCheck pc("-:Hh?vlo:T:F:G:P:", argc, argv);
const char *xmlInputFileName = 0;
while ( pc.check() ) {
switch ( pc.state ) {
case ParamCheck::match:
switch ( pc.parameter ) {
/* Output. */
case 'o':
if ( *pc.parameterArg == 0 )
error() << "a zero length output file name was given" << endl;
else if ( outputFileName != 0 )
error() << "more than one output file name was given" << endl;
else {
/* Ok, remember the output file name. */
outputFileName = pc.parameterArg;
}
break;
case 'l':
noLineDirectives = true;
break;
/* Code style. */
case 'T':
if ( pc.parameterArg[0] == '0' )
codeStyle = GenTables;
else if ( pc.parameterArg[0] == '1' )
codeStyle = GenFTables;
else {
error() << "-T" << pc.parameterArg[0] <<
" is an invalid argument" << endl;
exit(1);
}
break;
case 'F':
if ( pc.parameterArg[0] == '0' )
codeStyle = GenFlat;
else if ( pc.parameterArg[0] == '1' )
codeStyle = GenFFlat;
else {
error() << "-F" << pc.parameterArg[0] <<
" is an invalid argument" << endl;
exit(1);
}
break;
case 'G':
if ( pc.parameterArg[0] == '0' )
codeStyle = GenGoto;
else if ( pc.parameterArg[0] == '1' )
codeStyle = GenFGoto;
else if ( pc.parameterArg[0] == '2' )
codeStyle = GenIpGoto;
else {
error() << "-G" << pc.parameterArg[0] <<
" is an invalid argument" << endl;
exit(1);
}
break;
case 'P':
codeStyle = GenSplit;
numSplitPartitions = atoi( pc.parameterArg );
break;
/* Version and help. */
case 'v':
version();
exit(0);
case 'H': case 'h': case '?':
usage();
exit(0);
case '-':
if ( strcasecmp(pc.parameterArg, "help") == 0 ) {
usage();
exit(0);
}
else if ( strcasecmp(pc.parameterArg, "version") == 0 ) {
version();
exit(0);
}
else {
error() << "--" << pc.parameterArg <<
" is an invalid argument" << endl;
break;
}
}
break;
case ParamCheck::invalid:
error() << "-" << pc.parameter << " is an invalid argument" << endl;
break;
case ParamCheck::noparam:
if ( *pc.curArg == 0 )
error() << "a zero length input file name was given" << endl;
else if ( xmlInputFileName != 0 )
error() << "more than one input file name was given" << endl;
else {
/* OK, Remember the filename. */
xmlInputFileName = pc.curArg;
}
break;
}
}
/* Bail on above errors. */
if ( gblErrorCount > 0 )
exit(1);
/* Open the input file for reading. */
if ( xmlInputFileName != 0 ) {
/* Open the input file for reading. */
ifstream *inFile = new ifstream( xmlInputFileName );
inStream = inFile;
if ( ! inFile->is_open() )
error() << "could not open " << xmlInputFileName << " for reading" << endl;
}
else {
xmlInputFileName = "<stdin>";
inStream = &cin;
}
/* Bail on above errors. */
if ( gblErrorCount > 0 )
exit(1);
bool wantComplete = true;
bool outputActive = true;
/* Parse the input! */
xml_parse( *inStream, xmlInputFileName, outputActive, wantComplete );
/* If writing to a file, delete the ostream, causing it to flush.
* Standard out is flushed automatically. */
if ( outputFileName != 0 ) {
delete outStream;
delete outFilter;
}
/* Finished, final check for errors.. */
if ( gblErrorCount > 0 ) {
/* If we opened an output file, remove it. */
if ( outputFileName != 0 )
unlink( outputFileName );
exit(1);
}
return 0;
}
|