Skip to content

Commit

Permalink
Meta: Port Generate_CSS_ValueID_h to LibMain/Core::Stream
Browse files Browse the repository at this point in the history
  • Loading branch information
AtkinsSJ authored and trflynn89 committed Mar 10, 2022
1 parent 83eb5ac commit dd238df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Meta/Lagom/Tools/CodeGenerators/LibWeb/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ lagom_tool(Generate_CSS_MediaFeatureID_h SOURCES Generate_CSS_MediaFeatureID_h
lagom_tool(Generate_CSS_MediaFeatureID_cpp SOURCES Generate_CSS_MediaFeatureID_cpp.cpp LIBS LagomMain)
lagom_tool(Generate_CSS_PropertyID_h SOURCES Generate_CSS_PropertyID_h.cpp)
lagom_tool(Generate_CSS_PropertyID_cpp SOURCES Generate_CSS_PropertyID_cpp.cpp)
lagom_tool(Generate_CSS_ValueID_h SOURCES Generate_CSS_ValueID_h.cpp)
lagom_tool(Generate_CSS_ValueID_h SOURCES Generate_CSS_ValueID_h.cpp LIBS LagomMain)
lagom_tool(Generate_CSS_ValueID_cpp SOURCES Generate_CSS_ValueID_cpp.cpp)

add_subdirectory(WrapperGenerator)
16 changes: 6 additions & 10 deletions Meta/Lagom/Tools/CodeGenerators/LibWeb/Generate_CSS_ValueID_h.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,18 @@
*/

#include "GeneratorUtil.h"
#include <AK/ByteBuffer.h>
#include <AK/JsonObject.h>
#include <AK/SourceGenerator.h>
#include <AK/StringBuilder.h>
#include <LibCore/File.h>
#include <LibMain/Main.h>

int main(int argc, char** argv)
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
if (argc != 2) {
warnln("usage: {} <path/to/CSS/Identifiers.json>", argv[0]);
if (arguments.argc != 2) {
warnln("usage: {} <path/to/CSS/Identifiers.json>", arguments.strings[0]);
return 1;
}
auto file = Core::File::construct(argv[1]);
if (!file->open(Core::OpenMode::ReadOnly))
return 1;

auto json = JsonValue::from_string(file->read_all()).release_value_but_fixme_should_propagate_errors();
auto json = TRY(read_entire_file_as_json(arguments.strings[1]));
VERIFY(json.is_array());

StringBuilder builder;
Expand Down Expand Up @@ -58,4 +53,5 @@ const char* string_from_value_id(ValueID);
)~~~");

outln("{}", generator.as_string_view());
return 0;
}

0 comments on commit dd238df

Please sign in to comment.