mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
1ac3a00ca9
* fix issue 2137 * updating the single header --------- Co-authored-by: Daniel Lemire <dlemire@lemire.me>
158 lines
6.0 KiB
C++
158 lines
6.0 KiB
C++
#ifndef SIMDJSON_GENERIC_ONDEMAND_TOKEN_ITERATOR_H
|
|
|
|
#ifndef SIMDJSON_CONDITIONAL_INCLUDE
|
|
#define SIMDJSON_GENERIC_ONDEMAND_TOKEN_ITERATOR_H
|
|
#include "simdjson/generic/ondemand/base.h"
|
|
#include "simdjson/generic/implementation_simdjson_result_base.h"
|
|
#include "simdjson/generic/ondemand/logger.h"
|
|
#endif // SIMDJSON_CONDITIONAL_INCLUDE
|
|
|
|
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_inline token_iterator() noexcept = default;
|
|
simdjson_inline token_iterator(token_iterator &&other) noexcept = default;
|
|
simdjson_inline token_iterator &operator=(token_iterator &&other) noexcept = default;
|
|
simdjson_inline token_iterator(const token_iterator &other) noexcept = default;
|
|
simdjson_inline token_iterator &operator=(const token_iterator &other) noexcept = default;
|
|
|
|
/**
|
|
* Advance to the next token (returning the current one).
|
|
*/
|
|
simdjson_inline const uint8_t *return_current_and_advance() noexcept;
|
|
/**
|
|
* Reports the current offset in bytes from the start of the underlying buffer.
|
|
*/
|
|
simdjson_inline uint32_t current_offset() const 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 is not used...
|
|
*/
|
|
simdjson_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_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.
|
|
*
|
|
*/
|
|
simdjson_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_inline uint32_t peek_length(token_position position) const noexcept;
|
|
/**
|
|
* Get the maximum length of the JSON text for a root token.
|
|
*
|
|
* The length will include any whitespace at the end of the token.
|
|
*
|
|
* @param position The position of the token (start of the document).
|
|
*/
|
|
simdjson_inline uint32_t peek_root_length(token_position position) const noexcept;
|
|
/**
|
|
* Return the current index.
|
|
*/
|
|
simdjson_inline token_position position() const noexcept;
|
|
/**
|
|
* Reset to a previously saved index.
|
|
*/
|
|
simdjson_inline void set_position(token_position target_position) 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_inline bool operator==(const token_iterator &other) const noexcept;
|
|
simdjson_inline bool operator!=(const token_iterator &other) const noexcept;
|
|
simdjson_inline bool operator>(const token_iterator &other) const noexcept;
|
|
simdjson_inline bool operator>=(const token_iterator &other) const noexcept;
|
|
simdjson_inline bool operator<(const token_iterator &other) const noexcept;
|
|
simdjson_inline bool operator<=(const token_iterator &other) const noexcept;
|
|
|
|
protected:
|
|
simdjson_inline token_iterator(const uint8_t *buf, token_position position) 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_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_inline uint32_t peek_index(token_position position) const noexcept;
|
|
|
|
const uint8_t *buf{};
|
|
token_position _position{};
|
|
|
|
friend class json_iterator;
|
|
friend class value_iterator;
|
|
friend class object;
|
|
template <typename... Args>
|
|
friend simdjson_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, logger::log_level level, Args&&... args) noexcept;
|
|
template <typename... Args>
|
|
friend simdjson_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, logger::log_level level, Args&&... args) 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_inline simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::token_iterator &&value) noexcept; ///< @private
|
|
simdjson_inline simdjson_result(error_code error) noexcept; ///< @private
|
|
simdjson_inline simdjson_result() noexcept = default;
|
|
simdjson_inline ~simdjson_result() noexcept = default; ///< @private
|
|
};
|
|
|
|
} // namespace simdjson
|
|
|
|
#endif // SIMDJSON_GENERIC_ONDEMAND_TOKEN_ITERATOR_H
|