-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLexer.cs
223 lines (215 loc) · 7.85 KB
/
Lexer.cs
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
using System;
using System.Collections.Generic;
class Lexer
{
static HashSet<char> digits = new HashSet<char>{'1', '2', '3', '4', '5', '6', '7', '8', '9', '0'};
static HashSet<char> extendedDigits = new HashSet<char>{'1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 'e', '.'};
static HashSet<char> alphabets = new HashSet<char>{
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'
};
static HashSet<char> whitespace = new HashSet<char>{
'\t', ' ', '\n', '\r',
};
public string text = "";
public string fn = "";
public string currentChar;
public Position pos;
public Lexer(string fname, string txt, Position givenPos = null){
fn = fname;
text = txt;
if(givenPos == null){
pos = new Position(fname, txt);
} else {
givenPos.ResetIndexing();
pos = givenPos;
}
}
public void Advance()
{
pos.Advance(currentChar);
currentChar = pos.idx < text.Length ? text[pos.idx].ToString() : Token.TT_END;
}
public Token MakeNumber()
{
var pos_start = pos.Copy();
var number_str = "";
var dot_count = 0;
var e_count = 0;
while (extendedDigits.Contains(currentChar[0]))
{
if (currentChar == ".") dot_count+=1;
if (currentChar == "e") e_count+=1;
if (dot_count == 2) break;
if (e_count == 2) break;
if (dot_count == 1 && e_count == 1) break;
number_str = String.Concat(number_str, currentChar);
this.Advance();
}
return new Token(Token.TT_NUMBER, number_str, pos_start.Copy(), pos.Copy());
}
public Token MakeString()
{
var str = "";
var posStart = pos.Copy();
var esacapeChar = false;
var escapeChars = new Dictionary<string, string>(){
{"n", "\n"},
{"t", "\t"}
};
this.Advance();
while (currentChar != Token.TT_END && (currentChar != "\"" || esacapeChar))
{
if(esacapeChar)
{
str += escapeChars[currentChar].ToString();
esacapeChar = false;
} else
{
if(currentChar == "\\")
{
esacapeChar = true;
} else
{
str += currentChar.ToString();
}
}
this.Advance();
}
this.Advance();
return new Token(Token.TT_STRING, str, posStart.Copy(), pos.Copy());
}
public Token MakeAOrB(string a, string tokA, List<Tuple<string, string>> list)
{
var tokType = tokA;
var posStart = pos.Copy();
Advance();
foreach (var tup in list)
{
if (currentChar != tup.Item1) break;
tokType = tup.Item2;
Advance();
}
return new Token(tokType, "", posStart, pos.Copy());
}
public Token MakeIdentifier()
{
var pos_start = pos.Copy();
var id_str = "";
while (currentChar != Token.TT_END && alphabets.Contains(currentChar[0]))
{
id_str += currentChar;
this.Advance();
}
return
Token.KEYWORDS.Contains(id_str)
? new Token(Token.TT_KEYWORD, id_str, pos_start.Copy(), pos.Copy())
: new Token(Token.TT_IDENT, id_str, pos_start.Copy(), pos.Copy());
}
public List<Token> Lex()
{
this.Advance();
var tokens = new List<Token>();
while (currentChar != Token.TT_END)
{
if (whitespace.Contains(currentChar[0]))
{
this.Advance();
} else if (currentChar == "+")
{
tokens.Add(new Token(Token.TT_PLUS, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "\"")
{
tokens.Add(this.MakeString());
} else if (currentChar == "-")
{
tokens.Add(new Token(Token.TT_MINUS, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "*")
{
tokens.Add(new Token(Token.TT_MUL, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "/")
{
tokens.Add(new Token(Token.TT_DIV, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "&")
{
tokens.Add(new Token(Token.TT_AND, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "|")
{
tokens.Add(MakeAOrB("|", Token.TT_OR, new List<Tuple<string, string>>(){
Tuple.Create(">", Token.TT_PIPE),
Tuple.Create(">", Token.TT_CURRY_PIPE),
}));
} else if (currentChar == ">")
{
tokens.Add(MakeAOrB(">", Token.TT_GT, new List<Tuple<string, string>>(){Tuple.Create("=", Token.TT_GTE)}));
} else if (currentChar == "!")
{
tokens.Add(MakeAOrB(">", Token.TT_NOT, new List<Tuple<string, string>>(){Tuple.Create("=", Token.TT_NE)}));
} else if (currentChar == "=")
{
tokens.Add(MakeAOrB("=", Token.TT_NOT, new List<Tuple<string, string>>(){Tuple.Create("=", Token.TT_EE)}));
} else if (currentChar == "<")
{
tokens.Add(MakeAOrB("<", Token.TT_LT, new List<Tuple<string, string>>(){Tuple.Create("=", Token.TT_LTE)}));
} else if (currentChar == "(")
{
tokens.Add(new Token(Token.TT_RPAREN, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == ")")
{
tokens.Add(new Token(Token.TT_LPAREN, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "[")
{
tokens.Add(new Token(Token.TT_RSQUARE, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "]")
{
tokens.Add(new Token(Token.TT_LSQUARE, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "{")
{
tokens.Add(new Token(Token.TT_RCURLY, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == "}")
{
tokens.Add(new Token(Token.TT_LCURLY, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == ",")
{
tokens.Add(new Token(Token.TT_COMMA, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == ":")
{
tokens.Add(new Token(Token.TT_COLON, pos.Copy(), pos.Copy()));
this.Advance();
} else if (currentChar == ".")
{
tokens.Add(new Token(Token.TT_DOT, pos.Copy(), pos.Copy()));
this.Advance();
} else if (digits.Contains(currentChar[0]))
{
tokens.Add(this.MakeNumber());
} else if (alphabets.Contains(currentChar[0]))
{
tokens.Add(this.MakeIdentifier());
} else
{
var posStart = pos.Copy();
var errorChar = currentChar;
this.Advance();
throw new LexerException(posStart, pos.Copy(), errorChar);
}
}
tokens.Add(new Token(Token.TT_END, pos, pos));
return tokens;
}
}