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
|
Token Lexer::lexer_get_token() {
lexer_skip_whitespace();
Token token;
switch(this->c) {
case '\n':
this->temp.clear();
this->temp.push_back(this->src[this->p]);
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_NEWLINE].c_str());
break;
case '\'':
this->temp.clear();
lexer_advance_char();
while(this->c != '\'') {
this->temp.push_back(this->src[this->p]);
lexer_advance_char();
}
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_STRING].c_str());
break;
case '\"':
this->temp.clear();
lexer_advance_char();
while(this->c != '\"') {
this->temp.push_back(this->src[this->p]);
lexer_advance_char();
}
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_DIRECTORY_URL].c_str());
break;
case '*':
this->temp.clear();
this->temp.push_back(this->src[this->p]);
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_ASTERISK].c_str());
break;
case '=':
this->temp.clear();
this->temp.push_back(this->src[this->p]);
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_EQUALS].c_str());
break;
case '(':
this->temp.clear();
this->temp.push_back(this->src[this->p]);
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_LPAREN].c_str());
break;
case ')':
this->temp.clear();
this->temp.push_back(this->src[this->p]);
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_RPAREN].c_str());
break;
case ',':
this->temp.clear();
this->temp.push_back(this->src[this->p]);
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_COMMA].c_str());
break;
case ';':
this->temp.clear();
this->temp.push_back(this->src[this->p]);
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_SEMICOL].c_str());
break;
case '\0':
this->temp.clear();
this->temp.push_back(this->src[this->p]);
this->value = std::string(begin(this->temp), end(this->temp));
token = Token(this->value.c_str(), TokenType[Type_EOF].c_str());
break;
}
if(isalpha(this->c)) {
this->temp.clear();
while(isalpha(lexer_peek())) {
this->temp.push_back(this->src[this->p]);
lexer_advance_char();
}
this->value = std::string(begin(this->temp), end(this->temp));
this->keyword = lexer_check_if_keyword(this->value);
for(int i = 0; i < TokenType.size(); i++) {
if(TokenType[i] == keyword) {
token = Token(this->value.c_str(), TokenType[i].c_str());
}
}
}
lexer_advance_char();
return token;
}
|