Initialize Tizen 2.3
[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 bool generateXML;
78 extern RubyImplEnum rubyImpl;
79
80 /* Error reporting format. */
81 enum ErrorFormat {
82         ErrorFormatGNU,
83         ErrorFormatMSVC,
84 };
85
86 extern ErrorFormat errorFormat;
87 extern int gblErrorCount;
88 extern char mainMachine[];
89
90 InputLoc makeInputLoc( const char *fileName, int line = 0, int col = 0 );
91 std::ostream &operator<<( std::ostream &out, const InputLoc &loc );
92
93 /* Error reporting. */
94 std::ostream &error();
95 std::ostream &error( const InputLoc &loc ); 
96 std::ostream &warning( const InputLoc &loc ); 
97
98 struct XmlParser;
99
100 void xmlEscapeHost( std::ostream &out, char *data, long len );
101
102 extern CodeStyle codeStyle;
103
104 /* IO filenames and stream. */
105 extern bool displayPrintables;
106 extern int gblErrorCount;
107
108 /* Options. */
109 extern int numSplitPartitions;
110 extern bool noLineDirectives;
111
112 std::ostream &error();
113
114 /* Target language and output style. */
115 extern CodeStyle codeStyle;
116
117 extern int numSplitPartitions;
118 extern bool noLineDirectives;
119
120 #endif