1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:27:35 +00:00

LibCMake: Add a lexer for CMakeCache.txt

This is a totally different syntax than for regular CMake files, and
also is undocumented and subject to change, but it's also nice and
simple. :^)
This commit is contained in:
Sam Atkins 2023-03-07 20:33:16 +00:00 committed by Linus Groh
parent 515fca4f7a
commit bb07d678ac
6 changed files with 324 additions and 5 deletions

View file

@ -0,0 +1,46 @@
/*
* Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/GenericLexer.h>
#include <AK/Vector.h>
#include <LibCMake/CMakeCache/Token.h>
namespace CMake::Cache {
class Lexer : private GenericLexer {
public:
static ErrorOr<Vector<Token>> lex(StringView input);
private:
Lexer(StringView input);
ErrorOr<Vector<Token>> lex_file();
void skip_whitespace();
void consume_comment();
void consume_help_text();
void consume_variable_definition();
void consume_key();
void consume_colon();
void consume_type();
void consume_equals();
void consume_value();
void consume_garbage();
Position position() const;
void next_line();
void emit_token(Token::Type, StringView value, Position start, Position end);
Vector<Token> m_tokens;
size_t m_line { 0 };
size_t m_string_offset_after_previous_newline { 0 };
};
}