2016-06-05 06:00:36 +08:00
|
|
|
#include <windows.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <unordered_map>
|
2016-06-05 07:01:28 +08:00
|
|
|
#include <functional>
|
2016-06-05 06:00:36 +08:00
|
|
|
#include "filehelper.h"
|
|
|
|
#include "stringutils.h"
|
2016-06-05 07:01:28 +08:00
|
|
|
#include "testfiles.h"
|
2016-06-05 06:00:36 +08:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
struct Lexer
|
|
|
|
{
|
|
|
|
explicit Lexer()
|
|
|
|
{
|
|
|
|
SetupKeywordMap();
|
|
|
|
}
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
string Input;
|
|
|
|
string ConsumedInput;
|
|
|
|
size_t Index = 0;
|
|
|
|
string Error;
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
string IdentifierStr = "";
|
|
|
|
uint64_t NumberVal = 0;
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
int LastChar = ' ';
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
enum Token
|
|
|
|
{
|
|
|
|
//status tokens
|
|
|
|
tok_eof = -10000,
|
|
|
|
tok_error,
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
//keywords
|
|
|
|
tok_typedef, //"typedef"
|
|
|
|
tok_struct, //"struct"
|
|
|
|
tok_char, //"char"
|
|
|
|
tok_unsigned, //"unsigned"
|
|
|
|
tok_int, //"int"
|
|
|
|
tok_sizeof, //"sizeof"
|
|
|
|
tok_BYTE, //"BYTE"
|
|
|
|
tok_WORD, //"WORD"
|
|
|
|
tok_DWORD, //"DWORD"
|
|
|
|
tok_ushort, //"ushort"
|
|
|
|
tok_uint, //"uint"
|
|
|
|
tok_byte, //"byte"
|
|
|
|
tok_double, //"double"
|
|
|
|
tok_string, //"string"
|
|
|
|
tok_return, //"return"
|
|
|
|
tok_enum, //"enum"
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
//others
|
|
|
|
tok_identifier, //[a-zA-Z_][a-zA-Z0-9_]
|
|
|
|
tok_number //(0x[0-9a-fA-F]+)|([0-9]+)
|
|
|
|
};
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
unordered_map<string, Token> KeywordMap;
|
|
|
|
|
|
|
|
void SetupKeywordMap()
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
KeywordMap["typedef"] = tok_typedef;
|
|
|
|
KeywordMap["struct"] = tok_struct;
|
|
|
|
KeywordMap["char"] = tok_char;
|
|
|
|
KeywordMap["unsigned"] = tok_unsigned;
|
|
|
|
KeywordMap["int"] = tok_int;
|
|
|
|
KeywordMap["sizeof"] = tok_sizeof;
|
|
|
|
KeywordMap["BYTE"] = tok_BYTE;
|
|
|
|
KeywordMap["WORD"] = tok_WORD;
|
|
|
|
KeywordMap["DWORD"] = tok_DWORD;
|
|
|
|
KeywordMap["byte"] = tok_byte;
|
|
|
|
KeywordMap["ushort"] = tok_ushort;
|
|
|
|
KeywordMap["uint"] = tok_uint;
|
|
|
|
KeywordMap["double"] = tok_double;
|
|
|
|
KeywordMap["string"] = tok_string;
|
|
|
|
KeywordMap["return"] = tok_return;
|
|
|
|
KeywordMap["enum"] = tok_enum;
|
|
|
|
}
|
|
|
|
|
|
|
|
Token ReportError(const String & error)
|
|
|
|
{
|
|
|
|
Error = error;
|
|
|
|
return tok_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
String TokString(int tok)
|
|
|
|
{
|
|
|
|
switch (Token(tok))
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
case tok_eof: return "tok_eof";
|
|
|
|
case tok_error: return StringUtils::sprintf("tok_error \"%s\"", Error.c_str());
|
|
|
|
case tok_identifier: return StringUtils::sprintf("tok_identifier \"%s\"", IdentifierStr.c_str());
|
|
|
|
case tok_number: return StringUtils::sprintf("tok_number %llu (0x%llX)", NumberVal, NumberVal);
|
|
|
|
default:
|
|
|
|
for (const auto & itr : KeywordMap)
|
|
|
|
{
|
|
|
|
if (tok == itr.second)
|
|
|
|
return "tok_" + itr.first;
|
|
|
|
}
|
|
|
|
if (tok > 0 && tok < 265)
|
|
|
|
{
|
|
|
|
String s;
|
|
|
|
s = tok;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
return "<INVALID TOKEN>";
|
2016-06-05 06:00:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
int PeekChar(int distance = 0)
|
|
|
|
{
|
|
|
|
if (Index + distance >= Input.length())
|
|
|
|
return EOF;
|
|
|
|
return Input[Index + distance];
|
|
|
|
}
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
int ReadChar()
|
|
|
|
{
|
|
|
|
if (Index == Input.length())
|
|
|
|
return EOF;
|
|
|
|
ConsumedInput += Input[Index];
|
|
|
|
return uint8_t(Input[Index++]); //do not sign-extend to support UTF-8
|
|
|
|
}
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
int GetToken()
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
//skip whitespace
|
|
|
|
while (isspace(LastChar))
|
|
|
|
LastChar = ReadChar();
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
//identifier/keyword
|
|
|
|
if (isalpha(LastChar) || LastChar == '_') //[a-zA-Z_]
|
|
|
|
{
|
|
|
|
IdentifierStr = LastChar;
|
|
|
|
LastChar = ReadChar();
|
|
|
|
while (isalnum(LastChar) || LastChar == '_') //[0-9a-zA-Z_]
|
|
|
|
{
|
|
|
|
IdentifierStr += LastChar;
|
|
|
|
LastChar = ReadChar();
|
|
|
|
}
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
//keywords
|
|
|
|
auto found = KeywordMap.find(IdentifierStr);
|
|
|
|
if (found != KeywordMap.end())
|
|
|
|
return found->second;
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
return tok_identifier;
|
|
|
|
}
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
//hex numbers
|
|
|
|
if (LastChar == '0' && PeekChar() == 'x') //0x
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
string NumStr;
|
|
|
|
ReadChar(); //consume the 'x'
|
|
|
|
|
|
|
|
while (isxdigit(LastChar = ReadChar())) //[0-9a-fA-F]*
|
2016-06-05 06:00:36 +08:00
|
|
|
NumStr += LastChar;
|
|
|
|
|
|
|
|
if (!NumStr.length()) //check for error condition
|
|
|
|
return ReportError("no hex digits after \"0x\" prefix");
|
|
|
|
|
|
|
|
if (sscanf_s(NumStr.c_str(), "%llX", &NumberVal) != 1)
|
|
|
|
return ReportError("sscanf_s failed on hexadecimal number");
|
|
|
|
return tok_number;
|
|
|
|
}
|
2016-06-05 07:01:28 +08:00
|
|
|
if (isdigit(LastChar)) //[0-9]
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
string NumStr;
|
|
|
|
NumStr = LastChar;
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
while (isdigit(LastChar = ReadChar())) //[0-9]*
|
|
|
|
NumStr += LastChar;
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
if (sscanf_s(NumStr.c_str(), "%llu", &NumberVal) != 1)
|
|
|
|
return ReportError("sscanf_s failed on decimal number");
|
|
|
|
return tok_number;
|
|
|
|
}
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
//comments
|
|
|
|
if (LastChar == '/' && PeekChar() == '/') //line comment
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
LastChar = ReadChar();
|
2016-06-05 06:00:36 +08:00
|
|
|
} while (LastChar != EOF && LastChar != '\n');
|
|
|
|
|
|
|
|
if (LastChar == '\n')
|
2016-06-05 07:01:28 +08:00
|
|
|
return GetToken(); //interpret the next line
|
|
|
|
}
|
|
|
|
else if (LastChar == '/' && PeekChar() == '*') //block comment
|
|
|
|
{
|
|
|
|
//TODO: implement this
|
2016-06-05 06:00:36 +08:00
|
|
|
}
|
2016-06-05 07:01:28 +08:00
|
|
|
|
|
|
|
//end of file
|
|
|
|
if (LastChar == EOF)
|
|
|
|
return tok_eof;
|
|
|
|
|
|
|
|
//unknown character
|
|
|
|
auto ThisChar = LastChar;
|
|
|
|
LastChar = ReadChar();
|
|
|
|
return ThisChar;
|
2016-06-05 06:00:36 +08:00
|
|
|
}
|
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
bool ReadInputFile(const string & filename)
|
|
|
|
{
|
|
|
|
return FileHelper::ReadAllText(filename, Input);
|
|
|
|
}
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
void TestLex(function<void(const string & line)> lexEnum)
|
|
|
|
{
|
|
|
|
int tok;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
tok = GetToken();
|
|
|
|
lexEnum(TokString(tok));
|
|
|
|
} while (tok != tok_eof && tok != tok_error);
|
|
|
|
}
|
|
|
|
};
|
2016-06-05 06:00:36 +08:00
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
bool TestLexer(const string & filename)
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
Lexer lexer;
|
|
|
|
if (!lexer.ReadInputFile("tests\\" + filename))
|
|
|
|
{
|
|
|
|
printf("failed to read \"%s\"\n", filename.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
string expected;
|
|
|
|
if (!FileHelper::ReadAllText(filename + ".lextest", expected)) //don't fail tests that we didn't specify yet
|
|
|
|
return true;
|
|
|
|
StringUtils::ReplaceAll(expected, "\r\n", "\n");
|
|
|
|
expected = StringUtils::Trim(expected);
|
|
|
|
string actual;
|
|
|
|
lexer.TestLex([&](const string & line)
|
|
|
|
{
|
|
|
|
actual += line + "\n";
|
|
|
|
});
|
|
|
|
actual = StringUtils::Trim(actual);
|
|
|
|
if (expected == actual)
|
|
|
|
{
|
|
|
|
printf("lexer test for \"%s\" success!\n", filename.c_str());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
printf("lexer test for \"%s\" failed\n", filename.c_str());
|
|
|
|
FileHelper::WriteAllText("expected.out", expected);
|
|
|
|
FileHelper::WriteAllText("actual.out", actual);
|
|
|
|
return false;
|
2016-06-05 06:00:36 +08:00
|
|
|
}
|
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
void RunLexerTests()
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
for (auto file : testFiles)
|
|
|
|
TestLexer(file);
|
2016-06-05 06:00:36 +08:00
|
|
|
}
|
|
|
|
|
2016-06-05 07:01:28 +08:00
|
|
|
bool DebugLexer(const string & filename)
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
printf("Debugging \"%s\"\n", filename.c_str());
|
|
|
|
Lexer lexer;
|
|
|
|
if (!lexer.ReadInputFile("tests\\" + filename))
|
2016-06-05 06:00:36 +08:00
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
printf("failed to read \"%s\"\n", filename.c_str());
|
|
|
|
return false;
|
2016-06-05 06:00:36 +08:00
|
|
|
}
|
2016-06-05 07:01:28 +08:00
|
|
|
lexer.TestLex([](const string & line)
|
|
|
|
{
|
|
|
|
puts(line.c_str());
|
|
|
|
});
|
|
|
|
puts("");
|
|
|
|
return true;
|
2016-06-05 06:00:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2016-06-05 07:01:28 +08:00
|
|
|
DebugLexer(testFiles[1]);
|
|
|
|
RunLexerTests();
|
2016-06-05 06:00:36 +08:00
|
|
|
system("pause");
|
|
|
|
return 0;
|
|
|
|
}
|