simdjson 4.2.1
Ridiculously Fast JSON
Loading...
Searching...
No Matches
element.h
1#ifndef SIMDJSON_DOM_ELEMENT_H
2#define SIMDJSON_DOM_ELEMENT_H
3
4#include <vector>
5
6#include "simdjson/dom/base.h"
7#include "simdjson/dom/array.h"
8
9namespace simdjson {
10namespace dom {
11
16enum class element_type {
17 ARRAY = '[',
18 OBJECT = '{',
19 INT64 = 'l',
20 UINT64 = 'u',
21 DOUBLE = 'd',
22 STRING = '"',
23 BOOL = 't',
24 NULL_VALUE = 'n'
25};
26
33class element {
34public:
36 simdjson_inline element() noexcept;
37
39 simdjson_inline element_type type() const noexcept;
40
47 inline simdjson_result<array> get_array() const noexcept;
54 inline simdjson_result<object> get_object() const noexcept;
71 inline simdjson_result<const char *> get_c_str() const noexcept;
81 inline simdjson_result<size_t> get_string_length() const noexcept;
91 inline simdjson_result<std::string_view> get_string() const noexcept;
99 inline simdjson_result<int64_t> get_int64() const noexcept;
107 inline simdjson_result<uint64_t> get_uint64() const noexcept;
114 inline simdjson_result<double> get_double() const noexcept;
121 inline simdjson_result<bool> get_bool() const noexcept;
122
128 inline bool is_array() const noexcept;
134 inline bool is_object() const noexcept;
140 inline bool is_string() const noexcept;
146 inline bool is_int64() const noexcept;
152 inline bool is_uint64() const noexcept;
158 inline bool is_double() const noexcept;
159
165 inline bool is_number() const noexcept;
166
172 inline bool is_bool() const noexcept;
176 inline bool is_null() const noexcept;
177
190 template<typename T>
191 simdjson_inline bool is() const noexcept;
192
212 template<typename T>
213 inline simdjson_result<T> get() const noexcept {
214 // Unless the simdjson library provides an inline implementation, calling this method should
215 // immediately fail.
216 static_assert(!sizeof(T), "The get method with given type is not implemented by the simdjson library. "
217 "The supported types are Boolean (bool), numbers (double, uint64_t, int64_t), "
218 "strings (std::string_view, const char *), arrays (dom::array) and objects (dom::object). "
219 "We recommend you use get_double(), get_bool(), get_uint64(), get_int64(), "
220 "get_object(), get_array() or get_string() instead of the get template.");
221 }
222
239 template<typename T>
240 simdjson_warn_unused simdjson_inline error_code get(T &value) const noexcept;
241
257 template<typename T>
258 inline void tie(T &value, error_code &error) && noexcept;
259
260#if SIMDJSON_EXCEPTIONS
267 inline operator bool() const noexcept(false);
268
280 inline explicit operator const char*() const noexcept(false);
281
291 inline operator std::string_view() const noexcept(false);
292
300 inline operator uint64_t() const noexcept(false);
308 inline operator int64_t() const noexcept(false);
315 inline operator double() const noexcept(false);
322 inline operator array() const noexcept(false);
329 inline operator object() const noexcept(false);
330
337 inline dom::array::iterator begin() const noexcept(false);
338
345 inline dom::array::iterator end() const noexcept(false);
346#endif // SIMDJSON_EXCEPTIONS
347
361 inline simdjson_result<element> operator[](std::string_view key) const noexcept;
362
376 inline simdjson_result<element> operator[](const char *key) const noexcept;
377 simdjson_result<element> operator[](int) const noexcept = delete;
378
379
402 inline simdjson_result<element> at_pointer(const std::string_view json_pointer) const noexcept;
403
404 inline simdjson_result<std::vector<element>> at_path_with_wildcard(const std::string_view json_path) const noexcept;
405
419 inline simdjson_result<element> at_path(std::string_view json_path) const noexcept;
420
421#ifndef SIMDJSON_DISABLE_DEPRECATED_API
442 [[deprecated("For standard compliance, use at_pointer instead, and prefix your pointers with a slash '/', see RFC6901 ")]]
443 inline simdjson_result<element> at(const std::string_view json_pointer) const noexcept;
444#endif // SIMDJSON_DISABLE_DEPRECATED_API
445
452 inline simdjson_result<element> at(size_t index) const noexcept;
453
466 inline simdjson_result<element> at_key(std::string_view key) const noexcept;
467
476 inline simdjson_result<element> at_key_case_insensitive(std::string_view key) const noexcept;
477
484 inline bool operator<(const element &other) const noexcept;
485
492 inline bool operator==(const element &other) const noexcept;
493
495 inline bool dump_raw_tape(std::ostream &out) const noexcept;
496
497private:
498 simdjson_inline element(const internal::tape_ref &tape) noexcept;
499 internal::tape_ref tape{};
500 friend class document;
501 friend class object;
502 friend class array;
503 friend struct simdjson_result<element>;
504 template<typename T>
505 friend class simdjson::internal::string_builder;
506
507};
508
509} // namespace dom
510
512template<>
513struct simdjson_result<dom::element> : public internal::simdjson_result_base<dom::element> {
514public:
515 simdjson_inline simdjson_result() noexcept;
516 simdjson_inline simdjson_result(dom::element &&value) noexcept;
517 simdjson_inline simdjson_result(error_code error) noexcept;
518
519 simdjson_inline simdjson_result<dom::element_type> type() const noexcept;
520 template<typename T>
521 simdjson_inline bool is() const noexcept;
522 template<typename T>
523 simdjson_inline simdjson_result<T> get() const noexcept;
524 template<typename T>
525 simdjson_warn_unused simdjson_inline error_code get(T &value) const noexcept;
526
527 simdjson_inline simdjson_result<dom::array> get_array() const noexcept;
528 simdjson_inline simdjson_result<dom::object> get_object() const noexcept;
529 simdjson_inline simdjson_result<const char *> get_c_str() const noexcept;
530 simdjson_inline simdjson_result<size_t> get_string_length() const noexcept;
531 simdjson_inline simdjson_result<std::string_view> get_string() const noexcept;
532 simdjson_inline simdjson_result<int64_t> get_int64() const noexcept;
533 simdjson_inline simdjson_result<uint64_t> get_uint64() const noexcept;
534 simdjson_inline simdjson_result<double> get_double() const noexcept;
535 simdjson_inline simdjson_result<bool> get_bool() const noexcept;
536
537 simdjson_inline bool is_array() const noexcept;
538 simdjson_inline bool is_object() const noexcept;
539 simdjson_inline bool is_string() const noexcept;
540 simdjson_inline bool is_int64() const noexcept;
541 simdjson_inline bool is_uint64() const noexcept;
542 simdjson_inline bool is_double() const noexcept;
543 simdjson_inline bool is_number() const noexcept;
544 simdjson_inline bool is_bool() const noexcept;
545 simdjson_inline bool is_null() const noexcept;
546
547 simdjson_inline simdjson_result<dom::element> operator[](std::string_view key) const noexcept;
548 simdjson_inline simdjson_result<dom::element> operator[](const char *key) const noexcept;
549 simdjson_result<dom::element> operator[](int) const noexcept = delete;
550 simdjson_inline simdjson_result<dom::element> at_pointer(const std::string_view json_pointer) const noexcept;
551 simdjson_inline simdjson_result<std::vector<dom::element>> at_path_with_wildcard(const std::string_view json_path) const noexcept;
552 simdjson_inline simdjson_result<dom::element> at_path(const std::string_view json_path) const noexcept;
553 [[deprecated("For standard compliance, use at_pointer instead, and prefix your pointers with a slash '/', see RFC6901 ")]]
554 simdjson_inline simdjson_result<dom::element> at(const std::string_view json_pointer) const noexcept;
555 simdjson_inline simdjson_result<dom::element> at(size_t index) const noexcept;
556 simdjson_inline simdjson_result<dom::element> at_key(std::string_view key) const noexcept;
557 simdjson_inline simdjson_result<dom::element> at_key_case_insensitive(std::string_view key) const noexcept;
558
559#if SIMDJSON_EXCEPTIONS
560 simdjson_inline operator bool() const noexcept(false);
561 simdjson_inline explicit operator const char*() const noexcept(false);
562 simdjson_inline operator std::string_view() const noexcept(false);
563 simdjson_inline operator uint64_t() const noexcept(false);
564 simdjson_inline operator int64_t() const noexcept(false);
565 simdjson_inline operator double() const noexcept(false);
566 simdjson_inline operator dom::array() const noexcept(false);
567 simdjson_inline operator dom::object() const noexcept(false);
568
569 simdjson_inline dom::array::iterator begin() const noexcept(false);
570 simdjson_inline dom::array::iterator end() const noexcept(false);
571#endif // SIMDJSON_EXCEPTIONS
572};
573
574} // namespace simdjson
575
576#endif // SIMDJSON_DOM_DOCUMENT_H
JSON array.
Definition array.h:15
A JSON element.
Definition element.h:33
bool is_object() const noexcept
Whether this element is a json object.
bool is_double() const noexcept
Whether this element is a json number that fits in a double.
simdjson_inline element_type type() const noexcept
The type of this element.
bool is_number() const noexcept
Whether this element is a json number.
simdjson_result< T > get() const noexcept
Get the value as the provided type (T).
Definition element.h:213
simdjson_result< const char * > get_c_str() const noexcept
Cast this element to a null-terminated C string.
simdjson_result< element > at_pointer(const std::string_view json_pointer) const noexcept
Get the value associated with the given JSON pointer.
simdjson_result< double > get_double() const noexcept
Cast this element to a double floating-point.
simdjson_inline bool is() const noexcept
Tell whether the value can be cast to provided type (T).
simdjson_result< element > at_key_case_insensitive(std::string_view key) const noexcept
Get the value associated with the given key in a case-insensitive manner.
void tie(T &value, error_code &error) &&noexcept
Get the value as the provided type (T), setting error if it's not the given type.
simdjson_result< bool > get_bool() const noexcept
Cast this element to a bool.
bool is_string() const noexcept
Whether this element is a json string.
simdjson_result< element > at_key(std::string_view key) const noexcept
Get the value associated with the given key.
operator std::string_view() const noexcept(false)
Read this element as a null-terminated UTF-8 string.
dom::array::iterator end() const noexcept(false)
Iterate over each element in this array.
simdjson_result< array > get_array() const noexcept
Cast this element to an array.
simdjson_result< size_t > get_string_length() const noexcept
Gives the length in bytes of the string.
simdjson_inline element() noexcept
Create a new, invalid element.
simdjson_result< uint64_t > get_uint64() const noexcept
Cast this element to an unsigned integer.
dom::array::iterator begin() const noexcept(false)
Iterate over each element in this array.
simdjson_result< element > at(const std::string_view json_pointer) const noexcept
Version 0.4 of simdjson used an incorrect interpretation of the JSON Pointer standard and allowed the...
simdjson_result< int64_t > get_int64() const noexcept
Cast this element to a signed integer.
simdjson_result< object > get_object() const noexcept
Cast this element to an object.
bool is_uint64() const noexcept
Whether this element is a json number that fits in an unsigned 64-bit integer.
simdjson_result< element > operator[](std::string_view key) const noexcept
Get the value associated with the given key.
bool is_int64() const noexcept
Whether this element is a json number that fits in a signed 64-bit integer.
bool is_null() const noexcept
Whether this element is a json null.
simdjson_result< element > at_path(std::string_view json_path) const noexcept
Get the value associated with the given JSONPath expression.
simdjson_result< std::string_view > get_string() const noexcept
Cast this element to a string.
bool is_array() const noexcept
Whether this element is a json array.
bool is_bool() const noexcept
Whether this element is a json true or false.
JSON object.
Definition object.h:16
element_type
The actual concrete type of a JSON element This is the type it is most easily cast to with get<>.
Definition element.h:16
@ STRING
std::string_view
@ UINT64
uint64_t: any integer that fits in uint64_t but not int64_t
@ DOUBLE
double: Any number with a "." or "e" that fits in double.
The top level simdjson namespace, containing everything the library provides.
Definition base.h:8
error_code
All possible errors returned by simdjson.
Definition error.h:19
The result of a simdjson operation that could fail.
Definition error.h:278
simdjson_inline error_code error() const noexcept
The error.
Definition error-inl.h:168
simdjson_warn_unused simdjson_inline error_code get(T &value) &&noexcept
Move the value to the provided variable.
Definition error-inl.h:163