2020-06-30 21:33:53 +03:00
|
|
|
/*
|
2021-04-28 23:46:44 +03:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-06-30 21:33:53 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-30 21:33:53 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonPath.h>
|
|
|
|
#include <AK/JsonValue.h>
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
JsonPathElement JsonPathElement::any_array_element { Kind::AnyIndex };
|
|
|
|
JsonPathElement JsonPathElement::any_object_element { Kind::AnyKey };
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
JsonValue JsonPath::resolve(JsonValue const& top_root) const
|
2020-06-30 21:33:53 +03:00
|
|
|
{
|
|
|
|
auto root = top_root;
|
2021-12-15 16:49:35 +03:00
|
|
|
for (auto const& element : *this) {
|
2020-06-30 21:33:53 +03:00
|
|
|
switch (element.kind()) {
|
|
|
|
case JsonPathElement::Kind::Key:
|
2022-12-21 17:37:12 +03:00
|
|
|
root = JsonValue { root.as_object().get(element.key()).value() };
|
2020-06-30 21:33:53 +03:00
|
|
|
break;
|
|
|
|
case JsonPathElement::Kind::Index:
|
|
|
|
root = JsonValue { root.as_array().at(element.index()) };
|
|
|
|
break;
|
|
|
|
default:
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-06-30 21:33:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2023-12-16 17:19:34 +03:00
|
|
|
ByteString JsonPath::to_byte_string() const
|
2020-06-30 21:33:53 +03:00
|
|
|
{
|
|
|
|
StringBuilder builder;
|
2022-07-11 20:32:29 +03:00
|
|
|
builder.append("{ ."sv);
|
2021-12-15 16:49:35 +03:00
|
|
|
for (auto const& el : *this) {
|
2022-07-11 20:32:29 +03:00
|
|
|
builder.append("sv > "sv);
|
2023-12-16 17:19:34 +03:00
|
|
|
builder.append(el.to_byte_string());
|
2020-06-30 21:33:53 +03:00
|
|
|
}
|
2022-07-11 20:32:29 +03:00
|
|
|
builder.append("sv }"sv);
|
2023-12-16 17:19:34 +03:00
|
|
|
return builder.to_byte_string();
|
2020-06-30 21:33:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|