Skip to content

Commit

Permalink
Utilities: Add GLSL compiler command line utility
Browse files Browse the repository at this point in the history
  • Loading branch information
Poseydon42 committed Jul 23, 2023
1 parent e1d6be6 commit 0263583
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions Userland/Utilities/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ target_link_libraries(expr PRIVATE LibRegex)
target_link_libraries(fdtdump PRIVATE LibDeviceTree)
target_link_libraries(file PRIVATE LibGfx LibIPC LibArchive LibCompress LibAudio)
target_link_libraries(functrace PRIVATE LibDebug LibX86)
target_link_libraries(glsl-compiler PRIVATE LibGLSL)
target_link_libraries(gml-format PRIVATE LibGUI)
target_link_libraries(grep PRIVATE LibFileSystem LibRegex)
target_link_libraries(gunzip PRIVATE LibCompress)
Expand Down
44 changes: 44 additions & 0 deletions Userland/Utilities/glsl-compiler.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Copyright (c) 2021-2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/

#include <LibCore/ArgsParser.h>
#include <LibCore/File.h>
#include <LibGLSL/Parser.h>
#include <LibMain/Main.h>

ErrorOr<int> serenity_main(Main::Arguments arguments)
{
Core::ArgsParser args_parser;
StringView path;
bool print_tokens = false;
args_parser.add_option(print_tokens, "Print Tokens", "tokens", 't');
args_parser.add_positional_argument(path, "Input file", "input-file", Core::ArgsParser::Required::Yes);
args_parser.parse(arguments);

if (path.is_empty())
return 1;

auto file = TRY(Core::File::open(path, Core::File::OpenMode::Read));
auto content = TRY(file->read_until_eof());
StringView content_view(content);

GLSL::Preprocessor preprocessor(path, content_view);
auto tokens = preprocessor.process_and_lex();

GLSL::Parser parser(tokens, path);
if (print_tokens)
parser.print_tokens();
auto root = parser.parse();

dbgln("Parser errors:");
for (auto& error : parser.errors()) {
dbgln("{}", error);
}

root->dump();

return 0;
}

0 comments on commit 0263583

Please sign in to comment.