#ifndef _RAGEL_H
#define _RAGEL_H
#include "fix_leaks.h"
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <string>
#include "vector.h"
#include "config.h"
#include "common.h"
#define PROGNAME "ragel"
enum
CodeStyle
{
GenTables,
GenFTables,
GenFlat,
GenFFlat,
GenGoto,
GenFGoto,
GenIpGoto,
GenSplit
};
enum
MinimizeLevel {
MinimizeApprox,
MinimizeStable,
MinimizePartition1,
MinimizePartition2
};
enum
MinimizeOpt {
MinimizeNone,
MinimizeEnd,
MinimizeMostOps,
MinimizeEveryOp
};
enum
RubyImplEnum
{
MRI,
Rubinius
};
extern
MinimizeLevel minimizeLevel;
extern
MinimizeOpt minimizeOpt;
extern
const
char
*machineSpec, *machineName;
extern
bool
printStatistics;
extern
bool
wantDupsRemoved;
extern
bool
generateDot;
extern
bool
generateXML;
extern
RubyImplEnum rubyImpl;
enum
ErrorFormat {
ErrorFormatGNU,
ErrorFormatMSVC,
};
extern
ErrorFormat errorFormat;
extern
int
gblErrorCount;
extern
char
mainMachine[];
InputLoc makeInputLoc(
const
char
*fileName,
int
line = 0,
int
col = 0 );
std::ostream &operator<<( std::ostream &out,
const
InputLoc &loc );
std::ostream &error();
std::ostream &error(
const
InputLoc &loc );
std::ostream &warning(
const
InputLoc &loc );
struct
XmlParser;
void
xmlEscapeHost( std::ostream &out,
char
*data,
long
len );
extern
CodeStyle codeStyle;
extern
bool
displayPrintables;
extern
int
gblErrorCount;
extern
int
numSplitPartitions;
extern
bool
noLineDirectives;
std::ostream &error();
extern
CodeStyle codeStyle;
extern
int
numSplitPartitions;
extern
bool
noLineDirectives;
#endif