1 #ifndef SIMDJSON_INLINE_OBJECT_H
2 #define SIMDJSON_INLINE_OBJECT_H
4 #include "simdjson/dom/element.h"
5 #include "simdjson/dom/object.h"
6 #include "simdjson/portability.h"
15 simdjson_inline simdjson_result<dom::object>::simdjson_result() noexcept
16 : internal::simdjson_result_base<dom::
object>() {}
17 simdjson_inline simdjson_result<dom::object>::simdjson_result(dom::object value) noexcept
18 : internal::simdjson_result_base<dom::object>(std::forward<dom::object>(value)) {}
19 simdjson_inline simdjson_result<dom::object>::simdjson_result(
error_code error) noexcept
20 : internal::simdjson_result_base<dom::object>(error) {}
22 inline simdjson_result<dom::element> simdjson_result<dom::object>::operator[](std::string_view key)
const noexcept {
23 if (error()) {
return error(); }
26 inline simdjson_result<dom::element> simdjson_result<dom::object>::operator[](
const char *key)
const noexcept {
27 if (error()) {
return error(); }
30 inline simdjson_result<dom::element> simdjson_result<dom::object>::at_pointer(std::string_view json_pointer)
const noexcept {
31 if (error()) {
return error(); }
32 return first.at_pointer(json_pointer);
34 inline simdjson_result<dom::element> simdjson_result<dom::object>::at_key(std::string_view key)
const noexcept {
35 if (error()) {
return error(); }
36 return first.at_key(key);
38 inline simdjson_result<dom::element> simdjson_result<dom::object>::at_key_case_insensitive(std::string_view key)
const noexcept {
39 if (error()) {
return error(); }
40 return first.at_key_case_insensitive(key);
43 #if SIMDJSON_EXCEPTIONS
45 inline dom::object::iterator simdjson_result<dom::object>::begin() const noexcept(false) {
46 if (
error()) {
throw simdjson_error(
error()); }
49 inline dom::object::iterator simdjson_result<dom::object>::end() const noexcept(false) {
50 if (
error()) {
throw simdjson_error(
error()); }
53 inline size_t simdjson_result<dom::object>::size() const noexcept(false) {
54 if (
error()) {
throw simdjson_error(
error()); }
66 simdjson_inline
object::object(
const internal::tape_ref &_tape) noexcept : tape{_tape} { }
68 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
69 return internal::tape_ref(tape.doc, tape.json_index + 1);
72 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
73 return internal::tape_ref(tape.doc, tape.after_element() - 1);
76 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
77 return tape.scope_count();
87 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
88 if(json_pointer.empty()) {
90 }
else if(json_pointer[0] !=
'/') {
93 json_pointer = json_pointer.substr(1);
94 size_t slash = json_pointer.find(
'/');
95 std::string_view key = json_pointer.substr(0, slash);
100 size_t escape = key.find(
'~');
101 if (escape != std::string_view::npos) {
103 std::string unescaped(key);
105 switch (unescaped[escape+1]) {
107 unescaped.replace(escape, 2,
"~");
110 unescaped.replace(escape, 2,
"/");
115 escape = unescaped.find(
'~', escape+1);
116 }
while (escape != std::string::npos);
117 child = at_key(unescaped);
125 if (slash != std::string_view::npos) {
126 child = child.at_pointer(json_pointer.substr(slash));
133 for (
iterator field = begin(); field != end_field; ++field) {
134 if (field.key_equals(key)) {
135 return field.value();
145 for (
iterator field = begin(); field != end_field; ++field) {
146 if (field.key_equals_case_insensitive(key)) {
147 return field.value();
156 simdjson_inline object::iterator::iterator(
const internal::tape_ref &_tape) noexcept : tape{_tape} { }
161 return tape.json_index != other.tape.json_index;
163 inline bool object::iterator::operator==(
const object::iterator& other)
const noexcept {
164 return tape.json_index == other.tape.json_index;
166 inline bool object::iterator::operator<(
const object::iterator& other)
const noexcept {
167 return tape.json_index < other.tape.json_index;
169 inline bool object::iterator::operator<=(
const object::iterator& other)
const noexcept {
170 return tape.json_index <= other.tape.json_index;
172 inline bool object::iterator::operator>=(
const object::iterator& other)
const noexcept {
173 return tape.json_index >= other.tape.json_index;
175 inline bool object::iterator::operator>(
const object::iterator& other)
const noexcept {
176 return tape.json_index > other.tape.json_index;
180 tape.json_index = tape.after_element();
189 return tape.get_string_view();
192 return tape.get_string_length();
195 return reinterpret_cast<const char *
>(&tape.doc->string_buf[size_t(tape.tape_value()) +
sizeof(uint32_t)]);
198 return element(internal::tape_ref(tape.doc, tape.json_index + 1));
217 const uint32_t len = key_length();
218 if(o.size() == len) {
220 return (memcmp(o.data(), key_c_str(), len) == 0);
228 const uint32_t len = key_length();
229 if(o.size() == len) {
233 return (simdjson_strncasecmp(o.data(), key_c_str(), len) == 0);
240 inline key_value_pair::key_value_pair(std::string_view _key,
element _value) noexcept :
241 key(_key), value(_value) {}
247 #if defined(__cpp_lib_ranges)
248 static_assert(std::ranges::view<simdjson::dom::object>);
249 static_assert(std::ranges::sized_range<simdjson::dom::object>);
250 #if SIMDJSON_EXCEPTIONS
Key/value pair in an object.
bool operator!=(const iterator &other) const noexcept
Check if these values come from the same place in the JSON.
element value() const noexcept
Get the value of this key/value pair.
bool key_equals(std::string_view o) const noexcept
Returns true if the key in this key/value pair is equal to the provided string_view.
const char * key_c_str() const noexcept
Get the key of this key/value pair.
uint32_t key_length() const noexcept
Get the length (in bytes) of the key in this key/value pair.
const value_type operator*() const noexcept
Get the actual key/value pair.
bool key_equals_case_insensitive(std::string_view o) const noexcept
Returns true if the key in this key/value pair is equal to the provided string_view in a case-insensi...
std::string_view key() const noexcept
Get the key of this key/value pair.
iterator & operator++() noexcept
Get the next key/value pair.
simdjson_result< element > at_key(std::string_view key) const noexcept
Get the value associated with the given key.
iterator end() const noexcept
One past the last key/value pair.
size_t size() const noexcept
Get the size of the object (number of keys).
simdjson_result< element > at_key_case_insensitive(std::string_view key) const noexcept
Get the value associated with the given key in a case-insensitive manner.
simdjson_result< element > operator[](std::string_view key) const noexcept
Get the value associated with the given key.
simdjson_result< element > at_pointer(std::string_view json_pointer) const noexcept
Get the value associated with the given JSON pointer.
simdjson_inline object() noexcept
Create a new, invalid object.
iterator begin() const noexcept
Return the first key/value pair.
We want to support argument-dependent lookup (ADL).
error_code
All possible errors returned by simdjson.
@ NO_SUCH_FIELD
JSON field not found in object.
@ INVALID_JSON_POINTER
Invalid JSON pointer reference.
The result of a simdjson operation that could fail.
simdjson_inline error_code error() const noexcept
The error.