mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
/*
|
|
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/File.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibGUI/GMLFormatter.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<bool> format_file(StringView, bool);
|
|
|
|
ErrorOr<bool> format_file(StringView path, bool inplace)
|
|
{
|
|
auto read_from_stdin = path == "-";
|
|
RefPtr<Core::File> file;
|
|
if (read_from_stdin) {
|
|
file = Core::File::standard_input();
|
|
} else {
|
|
auto open_mode = inplace ? Core::OpenMode::ReadWrite : Core::OpenMode::ReadOnly;
|
|
file = TRY(Core::File::open(path, open_mode));
|
|
}
|
|
auto formatted_gml = GUI::format_gml(file->read_all());
|
|
if (formatted_gml.is_null()) {
|
|
warnln("Failed to parse GML!");
|
|
return false;
|
|
}
|
|
if (inplace && !read_from_stdin) {
|
|
if (!file->seek(0) || !file->truncate(0)) {
|
|
warnln("Could not truncate {}: {}", path, file->error_string());
|
|
return false;
|
|
}
|
|
if (!file->write(formatted_gml)) {
|
|
warnln("Could not write to {}: {}", path, file->error_string());
|
|
return false;
|
|
}
|
|
} else {
|
|
out("{}", formatted_gml);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments args)
|
|
{
|
|
#ifdef __serenity__
|
|
TRY(Core::System::pledge("stdio rpath wpath cpath", nullptr));
|
|
#endif
|
|
|
|
bool inplace = false;
|
|
Vector<const char*> files;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.set_general_help("Format GML files.");
|
|
args_parser.add_option(inplace, "Write formatted contents back to file rather than standard output", "inplace", 'i');
|
|
args_parser.add_positional_argument(files, "File(s) to process", "path", Core::ArgsParser::Required::No);
|
|
args_parser.parse(args);
|
|
|
|
#ifdef __serenity__
|
|
if (!inplace)
|
|
TRY(Core::System::pledge("stdio rpath", nullptr));
|
|
#endif
|
|
|
|
unsigned exit_code = 0;
|
|
|
|
if (files.is_empty())
|
|
files.append("-");
|
|
for (auto& file : files) {
|
|
if (!TRY(format_file(file, inplace)))
|
|
exit_code = 1;
|
|
}
|
|
|
|
return exit_code;
|
|
}
|