mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
73 lines
2.6 KiB
C++
73 lines
2.6 KiB
C++
#include "simdjson/error.h"
|
|
|
|
namespace simdjson {
|
|
namespace SIMDJSON_IMPLEMENTATION {
|
|
namespace ondemand {
|
|
|
|
/**
|
|
* A JSON field (key/value pair) in an object.
|
|
*
|
|
* Returned from object iteration.
|
|
*
|
|
* Extends from std::pair<raw_json_string, value> so you can use C++ algorithms that rely on pairs.
|
|
*/
|
|
class field : public std::pair<raw_json_string, value> {
|
|
public:
|
|
/**
|
|
* Create a new invalid field.
|
|
*
|
|
* Exists so you can declare a variable and later assign to it before use.
|
|
*/
|
|
simdjson_really_inline field() noexcept;
|
|
|
|
/**
|
|
* Get the key as a string_view (for higher speed, consider raw_key).
|
|
* We deliberately use a more cumbersome name (unescaped_key) to force users
|
|
* to think twice about using it.
|
|
*
|
|
* This consumes the key: once you have called unescaped_key(), you cannot
|
|
* call it again nor can you call key().
|
|
*/
|
|
simdjson_really_inline simdjson_warn_unused simdjson_result<std::string_view> unescaped_key() noexcept;
|
|
/**
|
|
* Get the key as a raw_json_string. Can be used for direct comparison with
|
|
* an unescaped C string: e.g., key() == "test".
|
|
*/
|
|
simdjson_really_inline raw_json_string key() const noexcept;
|
|
/**
|
|
* Get the field value.
|
|
*/
|
|
simdjson_really_inline ondemand::value &value() & noexcept;
|
|
/**
|
|
* @overload ondemand::value &ondemand::value() & noexcept
|
|
*/
|
|
simdjson_really_inline ondemand::value value() && noexcept;
|
|
|
|
protected:
|
|
simdjson_really_inline field(raw_json_string key, ondemand::value &&value) noexcept;
|
|
static simdjson_really_inline simdjson_result<field> start(value_iterator &parent_iter) noexcept;
|
|
static simdjson_really_inline simdjson_result<field> start(const value_iterator &parent_iter, raw_json_string key) noexcept;
|
|
friend struct simdjson_result<field>;
|
|
friend class object_iterator;
|
|
};
|
|
|
|
} // namespace ondemand
|
|
} // namespace SIMDJSON_IMPLEMENTATION
|
|
} // namespace simdjson
|
|
|
|
namespace simdjson {
|
|
|
|
template<>
|
|
struct simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::field> : public SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::field> {
|
|
public:
|
|
simdjson_really_inline simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::field &&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<std::string_view> unescaped_key() noexcept;
|
|
simdjson_really_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string> key() noexcept;
|
|
simdjson_really_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> value() noexcept;
|
|
};
|
|
|
|
} // namespace simdjson
|