diff options
author | Itamar <itamar8910@gmail.com> | 2021-05-21 15:39:38 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-22 15:52:11 +0200 |
commit | 14e00118251f84b469952d2b885fae9655897ccb (patch) | |
tree | fb263210ffbd4f43e5a28874badc2513c54dd68c /Userland/Libraries/LibCpp | |
parent | 1c3c043cd386c2a094d335b798f5d621234f161e (diff) | |
download | serenity-14e00118251f84b469952d2b885fae9655897ccb.zip |
LibCpp: Make Preprocessor::handle_preprocessor_line return keyword
This also moves most of the logic that was in handle_preprocessor_line
into handle_preprocessor_keyword.
Diffstat (limited to 'Userland/Libraries/LibCpp')
-rw-r--r-- | Userland/Libraries/LibCpp/Preprocessor.cpp | 47 | ||||
-rw-r--r-- | Userland/Libraries/LibCpp/Preprocessor.h | 4 |
2 files changed, 30 insertions, 21 deletions
diff --git a/Userland/Libraries/LibCpp/Preprocessor.cpp b/Userland/Libraries/LibCpp/Preprocessor.cpp index f36f0c4112..c1dac5cae2 100644 --- a/Userland/Libraries/LibCpp/Preprocessor.cpp +++ b/Userland/Libraries/LibCpp/Preprocessor.cpp @@ -34,26 +34,33 @@ const String& Preprocessor::process() return m_processed_text; } -void Preprocessor::handle_preprocessor_line(const StringView& line) +static void consume_whitespace(GenericLexer& lexer) { - GenericLexer lexer(line); + lexer.ignore_while([](char ch) { return isspace(ch); }); + if (lexer.peek() == '/' && lexer.peek(1) == '/') + lexer.ignore_until([](char ch) { return ch == '\n'; }); +} - auto consume_whitespace = [&] { - lexer.ignore_while([](char ch) { return isspace(ch); }); - if (lexer.peek() == '/' && lexer.peek(1) == '/') - lexer.ignore_until([](char ch) { return ch == '\n'; }); - }; +Preprocessor::PreprocessorKeyword Preprocessor::handle_preprocessor_line(const StringView& line) +{ + GenericLexer lexer(line); - consume_whitespace(); + consume_whitespace(lexer); lexer.consume_specific('#'); - consume_whitespace(); + consume_whitespace(lexer); auto keyword = lexer.consume_until(' '); if (keyword.is_empty() || keyword.is_null() || keyword.is_whitespace()) - return; + return {}; + + handle_preprocessor_keyword(keyword, lexer); + return keyword; +} +void Preprocessor::handle_preprocessor_keyword(const StringView& keyword, GenericLexer& line_lexer) +{ if (keyword == "include") { - consume_whitespace(); - m_included_paths.append(lexer.consume_all()); + consume_whitespace(line_lexer); + m_included_paths.append(line_lexer.consume_all()); return; } @@ -84,14 +91,14 @@ void Preprocessor::handle_preprocessor_line(const StringView& line) if (keyword == "define") { if (m_state == State::Normal) { - auto key = lexer.consume_until(' '); - consume_whitespace(); + auto key = line_lexer.consume_until(' '); + consume_whitespace(line_lexer); DefinedValue value; value.filename = m_filename; value.line = m_line_index; - auto string_value = lexer.consume_all(); + auto string_value = line_lexer.consume_all(); if (!string_value.is_empty()) value.value = string_value; @@ -101,8 +108,8 @@ void Preprocessor::handle_preprocessor_line(const StringView& line) } if (keyword == "undef") { if (m_state == State::Normal) { - auto key = lexer.consume_until(' '); - lexer.consume_all(); + auto key = line_lexer.consume_until(' '); + line_lexer.consume_all(); m_definitions.remove(key); } return; @@ -110,7 +117,7 @@ void Preprocessor::handle_preprocessor_line(const StringView& line) if (keyword == "ifdef") { ++m_current_depth; if (m_state == State::Normal) { - auto key = lexer.consume_until(' '); + auto key = line_lexer.consume_until(' '); if (m_definitions.contains(key)) { m_depths_of_taken_branches.append(m_current_depth - 1); return; @@ -125,7 +132,7 @@ void Preprocessor::handle_preprocessor_line(const StringView& line) if (keyword == "ifndef") { ++m_current_depth; if (m_state == State::Normal) { - auto key = lexer.consume_until(' '); + auto key = line_lexer.consume_until(' '); if (!m_definitions.contains(key)) { m_depths_of_taken_branches.append(m_current_depth - 1); return; @@ -161,7 +168,7 @@ void Preprocessor::handle_preprocessor_line(const StringView& line) return; } if (keyword == "pragma") { - lexer.consume_all(); + line_lexer.consume_all(); return; } diff --git a/Userland/Libraries/LibCpp/Preprocessor.h b/Userland/Libraries/LibCpp/Preprocessor.h index c374e11ce0..774f19730b 100644 --- a/Userland/Libraries/LibCpp/Preprocessor.h +++ b/Userland/Libraries/LibCpp/Preprocessor.h @@ -35,7 +35,9 @@ public: void set_ignore_unsupported_keywords(bool ignore) { m_options.ignore_unsupported_keywords = ignore; } private: - void handle_preprocessor_line(const StringView&); + using PreprocessorKeyword = StringView; + PreprocessorKeyword handle_preprocessor_line(const StringView&); + void handle_preprocessor_keyword(const StringView& keyword, GenericLexer& line_lexer); Definitions m_definitions; const String m_filename; |