Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/simdjson/simdjson.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2026-08-14 12:14:27 -0400. version 4.6.7 Do not edit! */
/* auto-generated on 2026-08-24 17:10:01 -0400. version 4.6.9 Do not edit! */
/* including simdjson.cpp: */
/* begin file simdjson.cpp */
#define SIMDJSON_SRC_SIMDJSON_CPP
Expand Down
105 changes: 39 additions & 66 deletions deps/simdjson/simdjson.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2026-08-14 12:14:27 -0400. version 4.6.7 Do not edit! */
/* auto-generated on 2026-08-24 17:10:01 -0400. version 4.6.9 Do not edit! */
/* including simdjson.h: */
/* begin file simdjson.h */
#ifndef SIMDJSON_H
Expand Down Expand Up @@ -2538,7 +2538,7 @@ namespace std {
#define SIMDJSON_SIMDJSON_VERSION_H

/** The version of simdjson being used (major.minor.revision) */
#define SIMDJSON_VERSION "4.6.7"
#define SIMDJSON_VERSION "4.6.9"

namespace simdjson {
enum {
Expand All @@ -2553,7 +2553,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdjson being used.
*/
SIMDJSON_VERSION_REVISION = 7
SIMDJSON_VERSION_REVISION = 9
};
} // namespace simdjson

Expand Down Expand Up @@ -69201,6 +69201,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -72864,13 +72865,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down Expand Up @@ -82583,6 +82580,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -86246,13 +86244,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down Expand Up @@ -96452,6 +96446,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -100115,13 +100110,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down Expand Up @@ -110321,6 +110312,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -113984,13 +113976,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down Expand Up @@ -124305,6 +124293,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -127968,13 +127957,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down Expand Up @@ -138606,6 +138591,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -142269,13 +142255,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down Expand Up @@ -152381,6 +152363,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -156044,13 +156027,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down Expand Up @@ -166179,6 +166158,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -169842,13 +169822,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down Expand Up @@ -179981,6 +179957,7 @@ template <typename Func>
template <typename Func>
#endif
inline error_code value::for_each_at_path_with_wildcard(std::string_view json_path, Func&& callback) noexcept {
if (size_t(iter.depth()) >= iter.json_iter().parser->max_depth()) { return DEPTH_ERROR; }
json_type t;
SIMDJSON_TRY(type().get(t));
switch (t) {
Expand Down Expand Up @@ -183644,13 +183621,9 @@ simdjson_inline bool raw_json_string::unsafe_is_equal(std::string_view target) c
if(target.size() <= SIMDJSON_PADDING) {
return (raw()[target.size()] == '"') && !memcmp(raw(), target.data(), target.size());
}
const char * r{raw()};
size_t pos{0};
for(;pos < target.size();pos++) {
if(r[pos] != target[pos]) { return false; }
}
if(r[pos] != '"') { return false; }
return true;
// Past SIMDJSON_PADDING we can no longer rely on the padding to keep the
// comparison in bounds, so we must stop at the quote terminating the key.
return is_equal(target);
}

simdjson_inline bool raw_json_string::is_equal(std::string_view target) const noexcept {
Expand Down
Loading