2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
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>
|
2020-11-15 15:11:21 +03:00
|
|
|
#include <AK/ByteBuffer.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>
|
2020-08-05 22:13:25 +03:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2020-02-06 17:04:03 +03:00
|
|
|
#include <LibCore/File.h>
|
2019-06-30 10:11:04 +03:00
|
|
|
#include <stdio.h>
|
2020-02-11 14:16:07 +03:00
|
|
|
#include <unistd.h>
|
2019-06-30 10:11:04 +03:00
|
|
|
|
2021-03-24 04:41:26 +03: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 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
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2020-02-11 14:16:07 +03:00
|
|
|
if (pledge("stdio rpath", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-08-05 22:13:25 +03:00
|
|
|
const char* path = nullptr;
|
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.");
|
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);
|
2020-08-05 22:13:25 +03:00
|
|
|
args_parser.parse(argc, argv);
|
2021-03-24 04:41:26 +03:00
|
|
|
if (path == nullptr)
|
|
|
|
path = "/dev/stdin";
|
2020-08-05 22:13:25 +03:00
|
|
|
auto file = Core::File::construct(path);
|
2021-05-12 12:26:43 +03:00
|
|
|
if (!file->open(Core::OpenMode::ReadOnly)) {
|
2020-12-14 21:28:40 +03:00
|
|
|
warnln("Couldn't open {} for reading: {}", path, file->error_string());
|
2019-06-30 10:11:04 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-02-11 14:16:07 +03:00
|
|
|
if (pledge("stdio", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-09-21 21:50:06 +03:00
|
|
|
auto file_contents = file->read_all();
|
2019-06-30 10:11:04 +03:00
|
|
|
auto json = JsonValue::from_string(file_contents);
|
2020-08-05 22:15:52 +03:00
|
|
|
if (!json.has_value()) {
|
2020-12-14 21:28:40 +03:00
|
|
|
warnln("Couldn't parse {} as JSON", path);
|
2020-08-05 22:15:52 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2019-06-30 10:11:04 +03:00
|
|
|
|
2021-03-24 04:41:26 +03:00
|
|
|
print(json.value(), 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;
|
|
|
|
}
|
|
|
|
|
2021-03-24 04:41:26 +03:00
|
|
|
void print(const JsonValue& 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("\"");
|
|
|
|
out("{}", value.to_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
|
|
|
}
|