a2c9ae8b4ad29d858334fd827ca8a5cf6b941067
[external/ragel.git] / ragel / inputdata.h
1 /*
2  *  Copyright 2008 Adrian Thurston <thurston@complang.org>
3  */
4
5 /*  This file is part of Ragel.
6  *
7  *  Ragel is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  * 
12  *  Ragel is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  * 
17  *  You should have received a copy of the GNU General Public License
18  *  along with Ragel; if not, write to the Free Software
19  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
20  */
21
22 #ifndef _INPUT_DATA
23 #define _INPUT_DATA
24
25 #include "gendata.h"
26 #include <iostream>
27 #include <sstream>
28
29 struct Parser;
30 struct ParseData;
31
32 struct InputItem
33 {
34         enum Type {
35                 HostData,
36                 Write,
37         };
38
39         Type type;
40         std::ostringstream data;
41         std::string name;
42         ParseData *pd;
43         Vector<char *> writeArgs;
44
45         InputLoc loc;
46
47         InputItem *prev, *next;
48 };
49
50 struct Parser;
51
52 typedef AvlMap<const char*, Parser*, CmpStr> ParserDict;
53 typedef AvlMapEl<const char*, Parser*> ParserDictEl;
54 typedef DList<Parser> ParserList;
55 typedef DList<InputItem> InputItemList;
56 typedef Vector<const char *> ArgsVector;
57
58 struct InputData
59 {
60         InputData() : 
61                 inputFileName(0),
62                 outputFileName(0),
63                 inStream(0),
64                 outStream(0),
65                 outFilter(0),
66                 dotGenParser(0)
67         {}
68
69         /* The name of the root section, this does not change during an include. */
70         const char *inputFileName;
71         const char *outputFileName;
72
73         /* Io globals. */
74         std::istream *inStream;
75         std::ostream *outStream;
76         output_filter *outFilter;
77
78         Parser *dotGenParser;
79
80         ParserDict parserDict;
81         ParserList parserList;
82         InputItemList inputItems;
83
84         ArgsVector includePaths;
85
86         void writeOutput();
87         void makeOutputStream();
88         void openOutput();
89         void generateReduced();
90         void prepareMachineGen();
91         void terminateAllParsers();
92
93         void cdDefaultFileName( const char *inputFile );
94         void javaDefaultFileName( const char *inputFile );
95         void rubyDefaultFileName( const char *inputFile );
96         void csharpDefaultFileName( const char *inputFile );
97
98         void writeLanguage( std::ostream &out );
99         void writeXML( std::ostream &out );
100 };
101
102 #endif