-
Notifications
You must be signed in to change notification settings - Fork 0
/
lexan.h
81 lines (72 loc) · 1.8 KB
/
lexan.h
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
#include <iostream>
#include <string>
#include <set>
#include <queue>
#ifndef MILA_LEXAN_H
#define MILA_LEXAN_H
namespace mila
{
extern std::set < std::string > keywords;
enum GraphemType
{
LETTER,
NUMBER,
WHITE_SPACE,
EOI,
FAIL,
OTHER,
};
struct InputCharacter
{
GraphemType type;
char value;
};
enum SymbolType
{
IDENTIFIER,
INTEGER,
OPERATOR,
KEYWORD,
END_OF_INPUT,
ERROR,
};
struct LexicalSymbol
{
LexicalSymbol ( void );
LexicalSymbol ( SymbolType );
LexicalSymbol ( const std::string & );
LexicalSymbol ( const char * );
SymbolType type;
std::string name;
int value;
bool operator == ( const LexicalSymbol & ) const;
bool operator != ( const LexicalSymbol & ) const;
bool operator == ( const char * ) const;
bool operator != ( const char * ) const;
friend std::ostream & operator << ( std::ostream &, const LexicalSymbol & );
};
class Lexan
{
public:
Lexan ( std::istream && );
Lexan & operator << ( const LexicalSymbol & );
Lexan & operator >> ( LexicalSymbol & );
bool eof ( void ) const;
private:
void clearSpace ( void );
void readNumber ( LexicalSymbol &, int );
int checkDigit ( char, int, int & );
void getNext ( InputCharacter & );
void checkKeyword ( LexicalSymbol & );
std::istream && input;
std::queue < LexicalSymbol > que;
};
}
namespace std
{
template <> struct hash < mila::LexicalSymbol >
{
std::size_t operator () ( const mila::LexicalSymbol & ) const;
};
}
#endif