1 #ifndef SIMDJSON_INLINE_ARRAY_H
2 #define SIMDJSON_INLINE_ARRAY_H
6 #include "simdjson/dom/array.h"
7 #include "simdjson/dom/element.h"
15 simdjson_inline simdjson_result<dom::array>::simdjson_result() noexcept
16 : internal::simdjson_result_base<dom::array>() {}
17 simdjson_inline simdjson_result<dom::array>::simdjson_result(dom::array value) noexcept
18 : internal::simdjson_result_base<dom::array>(std::forward<dom::array>(value)) {}
19 simdjson_inline simdjson_result<dom::array>::simdjson_result(
error_code error) noexcept
20 : internal::simdjson_result_base<dom::array>(error) {}
22 #if SIMDJSON_EXCEPTIONS
24 inline dom::array::iterator simdjson_result<dom::array>::begin() const noexcept(false) {
25 if (
error()) {
throw simdjson_error(
error()); }
28 inline dom::array::iterator simdjson_result<dom::array>::end() const noexcept(false) {
29 if (
error()) {
throw simdjson_error(
error()); }
32 inline size_t simdjson_result<dom::array>::size() const noexcept(false) {
33 if (
error()) {
throw simdjson_error(
error()); }
39 inline simdjson_result<dom::element> simdjson_result<dom::array>::at_pointer(std::string_view json_pointer)
const noexcept {
40 if (error()) {
return error(); }
41 return first.at_pointer(json_pointer);
43 inline simdjson_result<dom::element> simdjson_result<dom::array>::at(
size_t index)
const noexcept {
44 if (error()) {
return error(); }
45 return first.at(index);
54 simdjson_inline
array::array(
const internal::tape_ref &_tape) noexcept : tape{_tape} {}
56 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
57 return internal::tape_ref(tape.doc, tape.json_index + 1);
60 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
61 return internal::tape_ref(tape.doc, tape.after_element() - 1);
64 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
65 return tape.scope_count();
68 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
69 return tape.matching_brace_index() - tape.json_index;
72 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
73 if(json_pointer.empty()) {
75 }
else if(json_pointer[0] !=
'/') {
78 json_pointer = json_pointer.substr(1);
84 size_t array_index = 0;
86 for (i = 0; i < json_pointer.length() && json_pointer[i] !=
'/'; i++) {
87 uint8_t digit = uint8_t(json_pointer[i] -
'0');
90 array_index = array_index*10 + digit;
100 auto child =
array(tape).
at(array_index);
106 if (i < json_pointer.length()) {
107 child = child.at_pointer(json_pointer.substr(i));
113 SIMDJSON_DEVELOPMENT_ASSERT(tape.usable());
116 if (i == index) {
return element; }
125 simdjson_inline array::iterator::iterator(
const internal::tape_ref &_tape) noexcept : tape{_tape} { }
130 tape.json_index = tape.after_element();
139 return tape.json_index != other.tape.json_index;
141 inline bool array::iterator::operator==(
const array::iterator& other)
const noexcept {
142 return tape.json_index == other.tape.json_index;
144 inline bool array::iterator::operator<(
const array::iterator& other)
const noexcept {
145 return tape.json_index < other.tape.json_index;
147 inline bool array::iterator::operator<=(
const array::iterator& other)
const noexcept {
148 return tape.json_index <= other.tape.json_index;
150 inline bool array::iterator::operator>=(
const array::iterator& other)
const noexcept {
151 return tape.json_index >= other.tape.json_index;
153 inline bool array::iterator::operator>(
const array::iterator& other)
const noexcept {
154 return tape.json_index > other.tape.json_index;
162 #include "simdjson/dom/element-inl.h"
164 #if defined(__cpp_lib_ranges)
165 static_assert(std::ranges::view<simdjson::dom::array>);
166 static_assert(std::ranges::sized_range<simdjson::dom::array>);
167 #if SIMDJSON_EXCEPTIONS
bool operator!=(const iterator &other) const noexcept
Check if these values come from the same place in the JSON.
iterator & operator++() noexcept
Get the next value.
value_type operator*() const noexcept
Get the actual value.
size_t number_of_slots() const noexcept
Get the total number of slots used by this array on the tape.
iterator end() const noexcept
One past the last array element.
size_t size() const noexcept
Get the size of the array (number of immediate children).
simdjson_result< element > at(size_t index) const noexcept
Get the value at the given index.
simdjson_result< element > at_pointer(std::string_view json_pointer) const noexcept
Get the value associated with the given JSON pointer.
simdjson_inline array() noexcept
Create a new, invalid array.
iterator begin() const noexcept
Return the first array element.
We want to support argument-dependent lookup (ADL).
error_code
All possible errors returned by simdjson.
@ INCORRECT_TYPE
JSON element has a different type than user expected.
@ INDEX_OUT_OF_BOUNDS
JSON array index too large.
@ 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.