2020-05-01 02:28:58 +03:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
|
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-01 02:28:58 +03:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "INILexer.h"
|
2021-06-04 01:02:12 +03:00
|
|
|
|
#include <AK/CharacterTypes.h>
|
2020-05-01 02:28:58 +03:00
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
|
|
|
|
|
|
namespace GUI {
|
|
|
|
|
|
2021-06-04 01:01:16 +03:00
|
|
|
|
IniLexer::IniLexer(StringView const& input)
|
2020-05-01 02:28:58 +03:00
|
|
|
|
: m_input(input)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char IniLexer::peek(size_t offset) const
|
|
|
|
|
{
|
|
|
|
|
if ((m_index + offset) >= m_input.length())
|
|
|
|
|
return 0;
|
|
|
|
|
return m_input[m_index + offset];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char IniLexer::consume()
|
|
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
|
VERIFY(m_index < m_input.length());
|
2020-05-01 02:28:58 +03:00
|
|
|
|
char ch = m_input[m_index++];
|
|
|
|
|
if (ch == '\n') {
|
|
|
|
|
m_position.line++;
|
|
|
|
|
m_position.column = 0;
|
|
|
|
|
} else {
|
|
|
|
|
m_position.column++;
|
|
|
|
|
}
|
|
|
|
|
return ch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Vector<IniToken> IniLexer::lex()
|
|
|
|
|
{
|
|
|
|
|
Vector<IniToken> tokens;
|
|
|
|
|
|
|
|
|
|
size_t token_start_index = 0;
|
|
|
|
|
IniPosition token_start_position;
|
|
|
|
|
|
|
|
|
|
auto emit_token = [&](auto type) {
|
|
|
|
|
IniToken token;
|
|
|
|
|
token.m_type = type;
|
|
|
|
|
token.m_start = m_position;
|
2021-06-04 01:05:33 +03:00
|
|
|
|
consume();
|
2020-05-01 02:28:58 +03:00
|
|
|
|
token.m_end = m_position;
|
|
|
|
|
tokens.append(token);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
auto begin_token = [&] {
|
|
|
|
|
token_start_index = m_index;
|
|
|
|
|
token_start_position = m_position;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
auto commit_token = [&](auto type) {
|
|
|
|
|
IniToken token;
|
|
|
|
|
token.m_type = type;
|
|
|
|
|
token.m_start = token_start_position;
|
2021-06-04 01:02:12 +03:00
|
|
|
|
token.m_end = m_position;
|
2020-05-01 02:28:58 +03:00
|
|
|
|
tokens.append(token);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
while (m_index < m_input.length()) {
|
|
|
|
|
auto ch = peek();
|
|
|
|
|
|
2021-06-04 01:02:12 +03:00
|
|
|
|
if (is_ascii_space(ch)) {
|
2020-05-01 02:28:58 +03:00
|
|
|
|
begin_token();
|
2021-06-04 01:02:12 +03:00
|
|
|
|
while (is_ascii_space(peek()))
|
2020-05-01 02:28:58 +03:00
|
|
|
|
consume();
|
|
|
|
|
commit_token(IniToken::Type::Whitespace);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ;Comment
|
|
|
|
|
if (ch == ';') {
|
|
|
|
|
begin_token();
|
|
|
|
|
while (peek() && peek() != '\n')
|
|
|
|
|
consume();
|
|
|
|
|
commit_token(IniToken::Type::Comment);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// [Section]
|
|
|
|
|
if (ch == '[') {
|
|
|
|
|
// [ Token
|
|
|
|
|
begin_token();
|
|
|
|
|
consume();
|
|
|
|
|
commit_token(IniToken::Type::LeftBracket);
|
|
|
|
|
|
|
|
|
|
// Section
|
|
|
|
|
begin_token();
|
|
|
|
|
while (peek() && !(peek() == ']' || peek() == '\n'))
|
|
|
|
|
consume();
|
|
|
|
|
commit_token(IniToken::Type::section);
|
|
|
|
|
|
|
|
|
|
// ] Token
|
|
|
|
|
if (peek() && peek() == ']') {
|
|
|
|
|
begin_token();
|
|
|
|
|
consume();
|
|
|
|
|
commit_token(IniToken::Type::RightBracket);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Empty Line
|
|
|
|
|
if (ch == '\n') {
|
|
|
|
|
consume();
|
|
|
|
|
emit_token(IniToken::Type::Unknown);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Name=Value
|
|
|
|
|
begin_token();
|
|
|
|
|
while (peek() && !(peek() == '=' || peek() == '\n'))
|
|
|
|
|
consume();
|
|
|
|
|
commit_token(IniToken::Type::Name);
|
|
|
|
|
|
|
|
|
|
if (peek() && peek() == '=') {
|
|
|
|
|
begin_token();
|
|
|
|
|
consume();
|
|
|
|
|
commit_token(IniToken::Type::Equal);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (peek()) {
|
|
|
|
|
begin_token();
|
|
|
|
|
while (peek() && peek() != '\n')
|
|
|
|
|
consume();
|
|
|
|
|
commit_token(IniToken::Type::Value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return tokens;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|