1#ifndef JSON_BINARY_INCLUDED
2#define JSON_BINARY_INCLUDED
167#if defined(WIN32) && defined(EXPORT_JSON_FUNCTIONS)
168#define EXPORT_JSON_FUNCTION __declspec(dllexport)
170#define EXPORT_JSON_FUNCTION
320 size_t data_length,
const char *original,
321 char *destination,
bool *changed)
const;
323 const char *original,
char *destination)
const;
326 bool has_space(
size_t pos,
size_t needed,
size_t *offset)
const;
347 Value(
const char *data, uint32_t len)
431 int eq(
const Value &val)
const;
485 bool *inlined)
const;
530template <
typename Func>
532 if (func(value))
return true;
535 for (
size_t i = 0, size = value.
element_count(); i < size; ++i)
A field that stores a JSON value.
Definition: field.h:3987
JSON DOM abstract base class.
Definition: json_dom.h:173
Abstraction for accessing JSON values irrespective of whether they are (started out as) binary JSON v...
Definition: json_dom.h:1161
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:168
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:34
Class used for reading JSON values that are stored in the binary format.
Definition: json_binary.h:198
double m_double_value
The value if the type is DOUBLE.
Definition: json_binary.h:452
EXPORT_JSON_FUNCTION Value key(size_t pos) const
Get the key of the member stored at the specified position in a JSON object.
Definition: json_binary.cc:1131
EXPORT_JSON_FUNCTION uint32_t element_count() const
Get the number of elements in an array, or the number of members in an object.
Definition: json_binary.h:275
EXPORT_JSON_FUNCTION const char * get_data() const
Get a pointer to the beginning of the STRING or OPAQUE data represented by this instance.
Definition: json_binary.h:234
EXPORT_JSON_FUNCTION Value(enum_field_types ft, const char *data, uint32_t len)
Constructor for values that represent opaque data.
Definition: json_binary.h:373
bool update_in_shadow(const Field_json *field, size_t pos, Json_wrapper *new_value, size_t data_offset, size_t data_length, const char *original, char *destination, bool *changed) const
Update a value in an array or object.
Definition: json_binary.cc:1727
EXPORT_JSON_FUNCTION Value lookup(const std::string &key) const
Definition: json_binary.h:300
bool first_value_offset(size_t *offset) const
Find the lowest possible offset where a value can be located inside this array or object.
Definition: json_binary.cc:1378
EXPORT_JSON_FUNCTION enum_field_types field_type() const
Get the MySQL field type of an opaque value.
Definition: json_binary.h:285
EXPORT_JSON_FUNCTION Value(enum_type t, const char *data, uint32_t bytes, uint32_t element_count, bool large)
Constructor for values that represent arrays or objects.
Definition: json_binary.h:361
EXPORT_JSON_FUNCTION size_t lookup_index(const char *key, size_t length) const
Get the index of the element with the specified key in a JSON object.
Definition: json_binary.cc:1183
EXPORT_JSON_FUNCTION int64_t get_int64() const
Get the value of an INT.
Definition: json_binary.h:251
bool m_large
True if an array or an object uses the large storage format with 4 byte offsets instead of 2 byte off...
Definition: json_binary.h:479
EXPORT_JSON_FUNCTION Value(const char *data, uint32_t len)
Constructor for values that represent strings.
Definition: json_binary.h:347
int64_t m_int_value
The value if the type is INT or UINT.
Definition: json_binary.h:450
bool remove_in_shadow(const Field_json *field, size_t pos, const char *original, char *destination) const
Remove a value from an array or object.
Definition: json_binary.cc:1914
EXPORT_JSON_FUNCTION Value element(size_t pos) const
Get the element at the specified position of a JSON array or a JSON object.
Definition: json_binary.cc:1093
bool raw_binary(const THD *thd, String *buf) const
Copy the binary representation of this value into a buffer, replacing the contents of the receiving b...
Definition: json_binary.cc:1256
EXPORT_JSON_FUNCTION uint32_t get_data_length() const
Get the length in bytes of the STRING or OPAQUE value represented by this instance.
Definition: json_binary.h:244
EXPORT_JSON_FUNCTION bool is_object() const
Is this value an object?
Definition: json_binary.h:386
EXPORT_JSON_FUNCTION size_t lookup_index(const std::string &key) const
Definition: json_binary.h:308
EXPORT_JSON_FUNCTION bool has_space(size_t pos, size_t needed, size_t *offset) const
Does this array or object have enough space to replace the value at the given position with another v...
Definition: json_binary.cc:1410
EXPORT_JSON_FUNCTION bool is_valid() const
Does this value, and all of its members, represent a valid JSON value?
Definition: json_binary.cc:867
EXPORT_JSON_FUNCTION Value(double val)
Constructor for values that represent doubles.
Definition: json_binary.h:343
uint32_t m_length
The full length (in bytes) of the binary representation of an array or object, or the length of a str...
Definition: json_binary.h:464
enum_type
Definition: json_binary.h:200
@ DOUBLE
Definition: json_binary.h:206
@ LITERAL_FALSE
Definition: json_binary.h:209
@ INT
Definition: json_binary.h:204
@ STRING
Definition: json_binary.h:203
@ OBJECT
Definition: json_binary.h:201
@ LITERAL_TRUE
Definition: json_binary.h:208
@ ERROR
Definition: json_binary.h:211
@ LITERAL_NULL
Definition: json_binary.h:207
@ UINT
Definition: json_binary.h:205
@ OPAQUE
Definition: json_binary.h:210
@ ARRAY
Definition: json_binary.h:202
size_t key_entry_offset(size_t pos) const
Get the offset of the key entry that describes the key of the member at a given position in this obje...
Definition: json_binary.cc:1511
EXPORT_JSON_FUNCTION Value()
Empty constructor.
Definition: json_binary.h:378
EXPORT_JSON_FUNCTION enum_type type() const
Definition: json_binary.h:223
EXPORT_JSON_FUNCTION bool to_std_string(std::string *buffer, const JsonDocumentDepthHandler &depth_handler) const
Format the JSON value to an external JSON string in buffer in the format of ISO/IEC 10646.
Definition: json_binary.cc:2104
EXPORT_JSON_FUNCTION Value(enum_type t)
Constructor for values that represent literals or errors.
Definition: json_binary.h:330
enum_field_types m_field_type
The MySQL field type of the value, in case the type of the value is OPAQUE.
Definition: json_binary.h:470
bool element_offsets(size_t pos, size_t *start, size_t *end, bool *inlined) const
Find the start offset and the end offset of the specified element.
Definition: json_binary.cc:1321
size_t value_entry_offset(size_t pos) const
Get the offset of the value entry that describes the element at a given position in this array or obj...
Definition: json_binary.cc:1524
EXPORT_JSON_FUNCTION bool to_pretty_std_string(std::string *buffer, const JsonDocumentDepthHandler &depth_handler) const
Format the JSON value to an external JSON string in buffer in the format of ISO/IEC 10646.
Definition: json_binary.cc:2116
EXPORT_JSON_FUNCTION bool is_array() const
Is this value an array?
Definition: json_binary.h:382
EXPORT_JSON_FUNCTION bool large_format() const
Does this value use the large storage format?
Definition: json_binary.h:227
bool get_free_space(const THD *thd, size_t *space) const
Get the amount of unused space in the binary representation of this value.
Definition: json_binary.cc:1967
enum_type m_type
The JSON type of the value.
Definition: json_binary.h:473
const char * m_data
Pointer to the start of the binary representation of the value.
Definition: json_binary.h:448
EXPORT_JSON_FUNCTION uint64_t get_uint64() const
Get the value of a UINT.
Definition: json_binary.h:258
int eq(const Value &val) const
Compare two Values.
Definition: json_binary.cc:2059
EXPORT_JSON_FUNCTION Value(enum_type t, int64_t val)
Constructor for values that represent ints or uints.
Definition: json_binary.h:337
EXPORT_JSON_FUNCTION bool is_backed_by(const String *str) const
Is this binary value pointing to data that is contained in the specified string.
Definition: json_binary.cc:1230
uint32_t m_element_count
Element count for arrays and objects.
Definition: json_binary.h:458
EXPORT_JSON_FUNCTION double get_double() const
Get the value of a DOUBLE.
Definition: json_binary.h:265
EXPORT_JSON_FUNCTION Value lookup(const char *key, size_t length) const
Get the value associated with the specified key in a JSON object.
Definition: json_binary.cc:1169
Fido Client Authentication nullptr
Definition: fido_client_plugin.cc:222
This file contains the field type.
enum_field_types
Column types for MySQL.
Definition: field_types.h:53
static void start(mysql_harness::PluginFuncEnv *env)
Definition: http_auth_backend_plugin.cc:177
#define EXPORT_JSON_FUNCTION
Definition: json_binary.h:170
std::function< void()> JsonDocumentDepthHandler
Definition: json_error_handler.h:32
uint32 element_count
Definition: my_tree.h:52
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1052
Definition: buf0block_hint.cc:30
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
Definition: json_binary.cc:100
bool space_needed(const THD *thd, const Json_wrapper *value, bool large, size_t *needed)
How much space is needed for a JSON value when it is stored in the binary format.
Definition: json_binary.cc:1538
bool serialize(const THD *thd, const Json_dom *dom, String *dest)
Serialize the JSON document represented by dom to binary format in the destination string,...
Definition: json_binary.cc:132
bool for_each_node(const Value &value, const Func &func)
Apply a function to every value in a JSON document.
Definition: json_binary.h:531
Value parse_binary(const char *data, size_t len)
Parse a JSON binary document.
Definition: json_binary.cc:1068
mutable_buffer buffer(void *p, size_t n) noexcept
Definition: buffer.h:420