2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2022-10-12 22:42:05 +03:00
|
|
|
* Copyright (c) 2022, Maxwell Trussell <maxtrussell@gmail.com>
|
2020-01-18 11:38:21 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2021-05-15 13:34:40 +03:00
|
|
|
#include <AK/Assertions.h>
|
2019-06-30 10:11:04 +03:00
|
|
|
#include <AK/JsonArray.h>
|
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonValue.h>
|
2019-08-07 22:28:07 +03:00
|
|
|
#include <AK/StringBuilder.h>
|
2022-10-12 22:42:05 +03:00
|
|
|
#include <AK/StringView.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
#include <AK/Vector.h>
|
2020-08-05 22:13:25 +03:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2023-02-09 05:02:46 +03:00
|
|
|
#include <LibCore/File.h>
|
2021-12-03 01:40:42 +03:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibMain/Main.h>
|
2020-02-11 14:16:07 +03:00
|
|
|
#include <unistd.h>
|
2019-06-30 10:11:04 +03:00
|
|
|
|
2022-10-12 22:42:05 +03:00
|
|
|
static JsonValue query(JsonValue const& value, Vector<StringView>& key_parts, size_t key_index = 0);
|
2022-04-01 20:58:27 +03:00
|
|
|
static void print(JsonValue const& value, int spaces_per_indent, int indent = 0, bool use_color = true);
|
2021-03-24 04:41:26 +03:00
|
|
|
static void print_indent(int indent, int spaces_per_indent)
|
2019-06-30 10:11:04 +03:00
|
|
|
{
|
2021-03-24 04:41:26 +03:00
|
|
|
for (int i = 0; i < indent * spaces_per_indent; ++i)
|
|
|
|
out(" ");
|
2019-06-30 10:11:04 +03:00
|
|
|
}
|
|
|
|
|
2021-12-03 01:40:42 +03:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2019-06-30 10:11:04 +03:00
|
|
|
{
|
2021-12-03 01:40:42 +03:00
|
|
|
TRY(Core::System::pledge("stdio rpath"));
|
2020-02-11 14:16:07 +03:00
|
|
|
|
2021-12-03 01:40:42 +03:00
|
|
|
StringView path;
|
2022-10-12 22:42:05 +03:00
|
|
|
StringView dotted_key;
|
2021-03-24 04:41:26 +03:00
|
|
|
int spaces_in_indent = 4;
|
2020-08-05 22:13:25 +03:00
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
2020-12-05 18:22:58 +03:00
|
|
|
args_parser.set_general_help("Pretty-print a JSON file with syntax-coloring and indentation.");
|
2022-10-12 22:42:05 +03:00
|
|
|
args_parser.add_option(dotted_key, "Dotted query key", "query", 'q', "foo.*.bar");
|
2021-03-24 04:41:26 +03: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-03 01:40:42 +03:00
|
|
|
args_parser.parse(arguments);
|
|
|
|
|
2023-02-09 05:02:46 +03:00
|
|
|
auto file = TRY(Core::File::open_file_or_standard_stream(path, Core::File::OpenMode::Read));
|
2019-06-30 10:11:04 +03:00
|
|
|
|
2021-12-03 01:40:42 +03:00
|
|
|
TRY(Core::System::pledge("stdio"));
|
2020-02-11 14:16:07 +03:00
|
|
|
|
2022-12-11 19:49:00 +03:00
|
|
|
auto file_contents = TRY(file->read_until_eof());
|
2021-12-03 01:40:42 +03:00
|
|
|
auto json = TRY(JsonValue::from_string(file_contents));
|
2022-10-12 22:42:05 +03:00
|
|
|
if (!dotted_key.is_empty()) {
|
|
|
|
auto key_parts = dotted_key.split_view('.');
|
|
|
|
json = query(json, key_parts);
|
|
|
|
}
|
2019-06-30 10:11:04 +03:00
|
|
|
|
2021-12-03 01:40:42 +03:00
|
|
|
print(json, spaces_in_indent, 0, isatty(STDOUT_FILENO));
|
2020-12-14 21:28:40 +03:00
|
|
|
outln();
|
2019-06-30 10:11:04 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void print(JsonValue const& value, int spaces_per_indent, int indent, bool use_color)
|
2019-06-30 10:11:04 +03:00
|
|
|
{
|
|
|
|
if (value.is_object()) {
|
2020-12-14 21:50:07 +03:00
|
|
|
size_t printed_members = 0;
|
2021-05-31 19:59:02 +03:00
|
|
|
auto& object = value.as_object();
|
2020-12-14 21:28:40 +03:00
|
|
|
outln("{{");
|
2020-12-14 21:50:07 +03:00
|
|
|
object.for_each_member([&](auto& member_name, auto& member_value) {
|
|
|
|
++printed_members;
|
2021-03-24 04:41:26 +03:00
|
|
|
print_indent(indent + 1, spaces_per_indent);
|
2020-12-14 21:37:03 +03:00
|
|
|
if (use_color)
|
|
|
|
out("\"\033[33;1m{}\033[0m\": ", member_name);
|
|
|
|
else
|
|
|
|
out("\"{}\": ", member_name);
|
2021-03-24 04:41:26 +03:00
|
|
|
print(member_value, spaces_per_indent, indent + 1, use_color);
|
2020-12-14 21:50:07 +03:00
|
|
|
if (printed_members < static_cast<size_t>(object.size()))
|
|
|
|
out(",");
|
|
|
|
outln();
|
2019-06-30 10:11:04 +03:00
|
|
|
});
|
2021-03-24 04:41:26 +03:00
|
|
|
print_indent(indent, spaces_per_indent);
|
2020-12-14 21:28:40 +03:00
|
|
|
out("}}");
|
2019-06-30 10:11:04 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (value.is_array()) {
|
2020-12-14 21:50:07 +03:00
|
|
|
size_t printed_entries = 0;
|
|
|
|
auto array = value.as_array();
|
2020-12-14 21:28:40 +03:00
|
|
|
outln("[");
|
2020-12-14 21:50:07 +03:00
|
|
|
array.for_each([&](auto& entry_value) {
|
|
|
|
++printed_entries;
|
2021-03-24 04:41:26 +03:00
|
|
|
print_indent(indent + 1, spaces_per_indent);
|
|
|
|
print(entry_value, spaces_per_indent, indent + 1, use_color);
|
2020-12-14 21:50:07 +03:00
|
|
|
if (printed_entries < static_cast<size_t>(array.size()))
|
|
|
|
out(",");
|
|
|
|
outln();
|
2019-06-30 10:11:04 +03:00
|
|
|
});
|
2021-03-24 04:41:26 +03:00
|
|
|
print_indent(indent, spaces_per_indent);
|
2020-12-14 21:28:40 +03:00
|
|
|
out("]");
|
2019-06-30 10:11:04 +03:00
|
|
|
return;
|
|
|
|
}
|
2020-12-14 21:37:03 +03: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 23:35:01 +03:00
|
|
|
if (value.is_string())
|
2020-12-14 21:28:40 +03:00
|
|
|
out("\"");
|
2022-12-06 04:12:49 +03:00
|
|
|
out("{}", value.to_deprecated_string());
|
2019-11-29 23:35:01 +03:00
|
|
|
if (value.is_string())
|
2020-12-14 21:28:40 +03:00
|
|
|
out("\"");
|
2020-12-14 21:37:03 +03:00
|
|
|
if (use_color)
|
|
|
|
out("\033[0m");
|
2019-06-30 10:11:04 +03:00
|
|
|
}
|
2022-10-12 22:42:05 +03:00
|
|
|
|
|
|
|
JsonValue query(JsonValue const& value, Vector<StringView>& key_parts, size_t key_index)
|
|
|
|
{
|
|
|
|
if (key_index == key_parts.size())
|
|
|
|
return value;
|
|
|
|
auto key = key_parts[key_index++];
|
|
|
|
|
|
|
|
if (key == "*"sv) {
|
|
|
|
Vector<JsonValue> matches;
|
|
|
|
if (value.is_object()) {
|
|
|
|
value.as_object().for_each_member([&](auto&, auto& member_value) {
|
|
|
|
matches.append(query(member_value, key_parts, key_index));
|
|
|
|
});
|
|
|
|
} else if (value.is_array()) {
|
|
|
|
value.as_array().for_each([&](auto& member) {
|
|
|
|
matches.append(query(member, key_parts, key_index));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return JsonValue(JsonArray(matches));
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonValue result {};
|
|
|
|
if (value.is_object()) {
|
2022-12-22 17:27:53 +03:00
|
|
|
result = value.as_object().get(key).value_or({});
|
2022-10-12 22:42:05 +03:00
|
|
|
} else if (value.is_array()) {
|
|
|
|
auto key_as_index = key.to_int();
|
|
|
|
if (key_as_index.has_value())
|
|
|
|
result = value.as_array().at(key_as_index.value());
|
|
|
|
}
|
|
|
|
return query(result, key_parts, key_index);
|
|
|
|
}
|