Moved some global data into InputData. Not all there yet.
[external/ragel.git] / ragel / ragel.h
1 /*
2  *  Copyright 2001-2007 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 _RAGEL_H
23 #define _RAGEL_H
24
25 #include <stdio.h>
26 #include <iostream>
27 #include <fstream>
28 #include <string>
29 #include "vector.h"
30 #include "config.h"
31 #include "common.h"
32
33 #define PROGNAME "ragel"
34
35 /* Target output style. */
36 enum CodeStyle
37 {
38         GenTables,
39         GenFTables,
40         GenFlat,
41         GenFFlat,
42         GenGoto,
43         GenFGoto,
44         GenIpGoto,
45         GenSplit
46 };
47
48 /* To what degree are machine minimized. */
49 enum MinimizeLevel {
50         MinimizeApprox,
51         MinimizeStable,
52         MinimizePartition1,
53         MinimizePartition2
54 };
55
56 enum MinimizeOpt {
57         MinimizeNone,
58         MinimizeEnd,
59         MinimizeMostOps,
60         MinimizeEveryOp
61 };
62
63 /* Target implementation */
64 enum RubyImplEnum
65 {
66         MRI,
67         Rubinius
68 };
69
70 /* Options. */
71 extern MinimizeLevel minimizeLevel;
72 extern MinimizeOpt minimizeOpt;
73 extern const char *machineSpec, *machineName;
74 extern bool printStatistics;
75 extern bool wantDupsRemoved;
76 extern bool generateDot;
77 extern RubyImplEnum rubyImpl;
78
79 /* Error reporting format. */
80 enum ErrorFormat {
81         ErrorFormatGNU,
82         ErrorFormatMSVC,
83 };
84
85 extern ErrorFormat errorFormat;
86 extern int gblErrorCount;
87 extern char mainMachine[];
88
89 InputLoc makeInputLoc( const char *fileName, int line = 0, int col = 0 );
90 std::ostream &operator<<( std::ostream &out, const InputLoc &loc );
91
92 /* Error reporting. */
93 std::ostream &error();
94 std::ostream &error( const InputLoc &loc ); 
95 std::ostream &warning( const InputLoc &loc ); 
96
97 struct XmlParser;
98
99 void xmlEscapeHost( std::ostream &out, char *data, long len );
100
101 extern CodeStyle codeStyle;
102
103 /* IO filenames and stream. */
104 extern bool displayPrintables;
105 extern int gblErrorCount;
106
107 /* Options. */
108 extern int numSplitPartitions;
109 extern bool noLineDirectives;
110
111 std::ostream &error();
112
113 /* Target language and output style. */
114 extern CodeStyle codeStyle;
115
116 extern int numSplitPartitions;
117 extern bool noLineDirectives;
118
119 #endif