-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLexer.cpp
83 lines (68 loc) · 1.58 KB
/
Lexer.cpp
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
#include <stdexcept>
#include <string>
#include <cctype>
#include "Token.h"
#include "Lexer.h"
Lexer::Lexer(std::string text){
this->text = text;
this->pos = 0;
this->current_char = this->text.at(this->pos);
}
void Lexer::error(){
throw std::invalid_argument("Error parsing input");
}
void Lexer::advance(){
this->pos++;
if(this->pos > this->text.length()-1)
this->current_char = '\0';
else
this->current_char = this->text.at(this->pos);
}
void Lexer::skip_whitespace(){
while(this->current_char!='\0' && this->current_char==' ')
this->advance();
}
int Lexer::get_integer(){
std::string result = "";
while(this->current_char!='\0' && isdigit(this->current_char)){
result += this->current_char;
this->advance();
}
return stoi(result);
}
Token Lexer::get_next_token() {
while(this->current_char != '\0'){
if( isspace(this->current_char) ){
this->skip_whitespace();
continue;
}
if( isdigit(this->current_char) )
return Token(INTEGER, this->get_integer());
if( this->current_char == '+' ){
this->advance();
return Token(PLUS, (int)'+');
}
if( this->current_char == '-' ){
this->advance();
return Token(MINUS, (int)'-');
}
if( this->current_char == '*' ){
this->advance();
return Token(MUL, (int)'*');
}
if (this->current_char == '/' ){
this->advance();
return Token(DIV, (int)'/');
}
if(this->current_char == '('){
this->advance();
return Token(LPAREN, (int)'(');
}
if(this->current_char == ')'){
this->advance();
return Token(RPAREN, (int)')');
}
this->error();
}
return Token(EOFE, (int)'\0');
}