2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2021-05-15 10:34:40 +00:00
|
|
|
#include <AK/Assertions.h>
|
2019-06-30 07:11:04 +00:00
|
|
|
#include <AK/JsonArray.h>
|
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonValue.h>
|
2019-08-07 19:28:07 +00:00
|
|
|
#include <AK/StringBuilder.h>
|
2020-08-05 19:13:25 +00:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2020-02-06 14:04:03 +00:00
|
|
|
#include <LibCore/File.h>
|
2021-12-02 22:40:42 +00:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibMain/Main.h>
|
2020-02-11 11:16:07 +00:00
|
|
|
#include <unistd.h>
|
2019-06-30 07:11:04 +00:00
|
|
|
|
2021-03-24 01:41:26 +00:00
|
|
|
static void print(const JsonValue& value, int spaces_per_indent, int indent = 0, bool use_color = true);
|
|
|
|
static void print_indent(int indent, int spaces_per_indent)
|
2019-06-30 07:11:04 +00:00
|
|
|
{
|
2021-03-24 01:41:26 +00:00
|
|
|
for (int i = 0; i < indent * spaces_per_indent; ++i)
|
|
|
|
out(" ");
|
2019-06-30 07:11:04 +00:00
|
|
|
}
|
|
|
|
|
2021-12-02 22:40:42 +00:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2019-06-30 07:11:04 +00:00
|
|
|
{
|
2021-12-02 22:40:42 +00:00
|
|
|
TRY(Core::System::pledge("stdio rpath"));
|
2020-02-11 11:16:07 +00:00
|
|
|
|
2021-12-02 22:40:42 +00:00
|
|
|
StringView path;
|
2021-03-24 01:41:26 +00:00
|
|
|
int spaces_in_indent = 4;
|
2020-08-05 19:13:25 +00:00
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
2020-12-05 15:22:58 +00:00
|
|
|
args_parser.set_general_help("Pretty-print a JSON file with syntax-coloring and indentation.");
|
2021-03-24 01:41:26 +00:00
|
|
|
args_parser.add_option(spaces_in_indent, "Indent size", "indent-size", 'i', "spaces_in_indent");
|
|
|
|
args_parser.add_positional_argument(path, "Path to JSON file", "path", Core::ArgsParser::Required::No);
|
|
|
|
VERIFY(spaces_in_indent >= 0);
|
2021-12-02 22:40:42 +00:00
|
|
|
args_parser.parse(arguments);
|
|
|
|
|
2021-03-24 01:41:26 +00:00
|
|
|
if (path == nullptr)
|
2021-12-02 22:40:42 +00:00
|
|
|
path = "/dev/stdin"sv;
|
|
|
|
|
|
|
|
auto file = TRY(Core::File::open(path, Core::OpenMode::ReadOnly));
|
2019-06-30 07:11:04 +00:00
|
|
|
|
2021-12-02 22:40:42 +00:00
|
|
|
TRY(Core::System::pledge("stdio"));
|
2020-02-11 11:16:07 +00:00
|
|
|
|
2019-09-21 18:50:06 +00:00
|
|
|
auto file_contents = file->read_all();
|
2021-12-02 22:40:42 +00:00
|
|
|
auto json = TRY(JsonValue::from_string(file_contents));
|
2019-06-30 07:11:04 +00:00
|
|
|
|
2021-12-02 22:40:42 +00:00
|
|
|
print(json, spaces_in_indent, 0, isatty(STDOUT_FILENO));
|
2020-12-14 18:28:40 +00:00
|
|
|
outln();
|
2019-06-30 07:11:04 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-03-24 01:41:26 +00:00
|
|
|
void print(const JsonValue& value, int spaces_per_indent, int indent, bool use_color)
|
2019-06-30 07:11:04 +00:00
|
|
|
{
|
|
|
|
if (value.is_object()) {
|
2020-12-14 18:50:07 +00:00
|
|
|
size_t printed_members = 0;
|
2021-05-31 16:59:02 +00:00
|
|
|
auto& object = value.as_object();
|
2020-12-14 18:28:40 +00:00
|
|
|
outln("{{");
|
2020-12-14 18:50:07 +00:00
|
|
|
object.for_each_member([&](auto& member_name, auto& member_value) {
|
|
|
|
++printed_members;
|
2021-03-24 01:41:26 +00:00
|
|
|
print_indent(indent + 1, spaces_per_indent);
|
2020-12-14 18:37:03 +00:00
|
|
|
if (use_color)
|
|
|
|
out("\"\033[33;1m{}\033[0m\": ", member_name);
|
|
|
|
else
|
|
|
|
out("\"{}\": ", member_name);
|
2021-03-24 01:41:26 +00:00
|
|
|
print(member_value, spaces_per_indent, indent + 1, use_color);
|
2020-12-14 18:50:07 +00:00
|
|
|
if (printed_members < static_cast<size_t>(object.size()))
|
|
|
|
out(",");
|
|
|
|
outln();
|
2019-06-30 07:11:04 +00:00
|
|
|
});
|
2021-03-24 01:41:26 +00:00
|
|
|
print_indent(indent, spaces_per_indent);
|
2020-12-14 18:28:40 +00:00
|
|
|
out("}}");
|
2019-06-30 07:11:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (value.is_array()) {
|
2020-12-14 18:50:07 +00:00
|
|
|
size_t printed_entries = 0;
|
|
|
|
auto array = value.as_array();
|
2020-12-14 18:28:40 +00:00
|
|
|
outln("[");
|
2020-12-14 18:50:07 +00:00
|
|
|
array.for_each([&](auto& entry_value) {
|
|
|
|
++printed_entries;
|
2021-03-24 01:41:26 +00:00
|
|
|
print_indent(indent + 1, spaces_per_indent);
|
|
|
|
print(entry_value, spaces_per_indent, indent + 1, use_color);
|
2020-12-14 18:50:07 +00:00
|
|
|
if (printed_entries < static_cast<size_t>(array.size()))
|
|
|
|
out(",");
|
|
|
|
outln();
|
2019-06-30 07:11:04 +00:00
|
|
|
});
|
2021-03-24 01:41:26 +00:00
|
|
|
print_indent(indent, spaces_per_indent);
|
2020-12-14 18:28:40 +00:00
|
|
|
out("]");
|
2019-06-30 07:11:04 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-12-14 18:37:03 +00:00
|
|
|
if (use_color) {
|
|
|
|
if (value.is_string())
|
|
|
|
out("\033[31;1m");
|
|
|
|
else if (value.is_number())
|
|
|
|
out("\033[35;1m");
|
|
|
|
else if (value.is_bool())
|
|
|
|
out("\033[32;1m");
|
|
|
|
else if (value.is_null())
|
|
|
|
out("\033[34;1m");
|
|
|
|
}
|
2019-11-29 20:35:01 +00:00
|
|
|
if (value.is_string())
|
2020-12-14 18:28:40 +00:00
|
|
|
out("\"");
|
|
|
|
out("{}", value.to_string());
|
2019-11-29 20:35:01 +00:00
|
|
|
if (value.is_string())
|
2020-12-14 18:28:40 +00:00
|
|
|
out("\"");
|
2020-12-14 18:37:03 +00:00
|
|
|
if (use_color)
|
|
|
|
out("\033[0m");
|
2019-06-30 07:11:04 +00:00
|
|
|
}
|