mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
140 lines
5.4 KiB
C++
140 lines
5.4 KiB
C++
namespace simdjson {
|
|
namespace SIMDJSON_IMPLEMENTATION {
|
|
namespace ondemand {
|
|
|
|
/**
|
|
* Iterates through JSON tokens (`{` `}` `[` `]` `,` `:` `"<string>"` `123` `true` `false` `null`)
|
|
* detected by stage 1.
|
|
*
|
|
* @private This is not intended for external use.
|
|
*/
|
|
class token_iterator {
|
|
public:
|
|
/**
|
|
* Create a new invalid token_iterator.
|
|
*
|
|
* Exists so you can declare a variable and later assign to it before use.
|
|
*/
|
|
simdjson_really_inline token_iterator() noexcept = default;
|
|
simdjson_really_inline token_iterator(token_iterator &&other) noexcept = default;
|
|
simdjson_really_inline token_iterator &operator=(token_iterator &&other) noexcept = default;
|
|
simdjson_really_inline token_iterator(const token_iterator &other) noexcept = default;
|
|
simdjson_really_inline token_iterator &operator=(const token_iterator &other) noexcept = default;
|
|
|
|
/**
|
|
* Advance to the next token (returning the current one).
|
|
*
|
|
* Does not check or update depth/expect_value. Caller is responsible for that.
|
|
*/
|
|
simdjson_really_inline const uint8_t *advance() noexcept;
|
|
|
|
/**
|
|
* Get the JSON text for a given token (relative).
|
|
*
|
|
* This is not null-terminated; it is a view into the JSON.
|
|
*
|
|
* @param delta The relative position of the token to retrieve. e.g. 0 = current token,
|
|
* 1 = next token, -1 = prev token.
|
|
*
|
|
* TODO consider a string_view, assuming the length will get stripped out by the optimizer when
|
|
* it isn't used ...
|
|
*/
|
|
simdjson_really_inline const uint8_t *peek(int32_t delta=0) const noexcept;
|
|
/**
|
|
* Get the maximum length of the JSON text for a given token.
|
|
*
|
|
* The length will include any whitespace at the end of the token.
|
|
*
|
|
* @param delta The relative position of the token to retrieve. e.g. 0 = current token,
|
|
* 1 = next token, -1 = prev token.
|
|
*/
|
|
simdjson_really_inline uint32_t peek_length(int32_t delta=0) const noexcept;
|
|
|
|
/**
|
|
* Get the JSON text for a given token.
|
|
*
|
|
* This is not null-terminated; it is a view into the JSON.
|
|
*
|
|
* @param position The position of the token.
|
|
*
|
|
* TODO consider a string_view, assuming the length will get stripped out by the optimizer when
|
|
* it isn't used ...
|
|
*/
|
|
simdjson_really_inline const uint8_t *peek(token_position position) const noexcept;
|
|
/**
|
|
* Get the maximum length of the JSON text for a given token.
|
|
*
|
|
* The length will include any whitespace at the end of the token.
|
|
*
|
|
* @param position The position of the token.
|
|
*/
|
|
simdjson_really_inline uint32_t peek_length(token_position position) const noexcept;
|
|
|
|
/**
|
|
* Save the current index to be restored later.
|
|
*/
|
|
simdjson_really_inline token_position position() const noexcept;
|
|
/**
|
|
* Reset to a previously saved index.
|
|
*/
|
|
simdjson_really_inline void set_position(token_position target_checkpoint) noexcept;
|
|
|
|
// NOTE: we don't support a full C++ iterator interface, because we expect people to make
|
|
// different calls to advance the iterator based on *their own* state.
|
|
|
|
simdjson_really_inline bool operator==(const token_iterator &other) const noexcept;
|
|
simdjson_really_inline bool operator!=(const token_iterator &other) const noexcept;
|
|
simdjson_really_inline bool operator>(const token_iterator &other) const noexcept;
|
|
simdjson_really_inline bool operator>=(const token_iterator &other) const noexcept;
|
|
simdjson_really_inline bool operator<(const token_iterator &other) const noexcept;
|
|
simdjson_really_inline bool operator<=(const token_iterator &other) const noexcept;
|
|
|
|
protected:
|
|
simdjson_really_inline token_iterator(const uint8_t *buf, token_position index) noexcept;
|
|
|
|
/**
|
|
* Get the index of the JSON text for a given token (relative).
|
|
*
|
|
* This is not null-terminated; it is a view into the JSON.
|
|
*
|
|
* @param delta The relative position of the token to retrieve. e.g. 0 = current token,
|
|
* 1 = next token, -1 = prev token.
|
|
*/
|
|
simdjson_really_inline uint32_t peek_index(int32_t delta=0) const noexcept;
|
|
/**
|
|
* Get the index of the JSON text for a given token.
|
|
*
|
|
* This is not null-terminated; it is a view into the JSON.
|
|
*
|
|
* @param position The position of the token.
|
|
*
|
|
*/
|
|
simdjson_really_inline uint32_t peek_index(token_position position) const noexcept;
|
|
|
|
const uint8_t *buf{};
|
|
token_position index{};
|
|
|
|
friend class json_iterator;
|
|
friend class value_iterator;
|
|
friend class object;
|
|
friend simdjson_really_inline void logger::log_line(const json_iterator &iter, const char *title_prefix, const char *title, std::string_view detail, int delta, int depth_delta) noexcept;
|
|
friend simdjson_really_inline void logger::log_line(const json_iterator &iter, token_position index, depth_t depth, const char *title_prefix, const char *title, std::string_view detail) noexcept;
|
|
};
|
|
|
|
} // namespace ondemand
|
|
} // namespace SIMDJSON_IMPLEMENTATION
|
|
} // namespace simdjson
|
|
|
|
namespace simdjson {
|
|
|
|
template<>
|
|
struct simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::token_iterator> : public SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::token_iterator> {
|
|
public:
|
|
simdjson_really_inline simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::token_iterator &&value) noexcept; ///< @private
|
|
simdjson_really_inline simdjson_result(error_code error) noexcept; ///< @private
|
|
simdjson_really_inline simdjson_result() noexcept = default;
|
|
simdjson_really_inline ~simdjson_result() noexcept = default; ///< @private
|
|
};
|
|
|
|
} // namespace simdjson
|