1#ifndef JSON_BINARY_INCLUDED 
    2#define JSON_BINARY_INCLUDED 
  166#if defined(WIN32) && defined(EXPORT_JSON_FUNCTIONS) 
  167#define EXPORT_JSON_FUNCTION __declspec(dllexport) 
  169#define EXPORT_JSON_FUNCTION 
  352                      size_t *space) 
const;
 
  356                        size_t data_length, 
const char *original,
 
  357                        char *destination, 
bool *changed) 
const;
 
  359                        const char *original, 
char *destination) 
const;
 
  362  bool has_space(
size_t pos, 
size_t needed, 
size_t *offset) 
const;
 
  383  Value(
const char *data, uint32_t len)
 
  467  int eq(
const Value &val) 
const;
 
  525                       bool *inlined) 
const;
 
  568template <
typename Func>
 
  570  if (func(value)) 
return true;
 
Kerberos Client Authentication nullptr
Definition: auth_kerberos_client_plugin.cc:251
 
A field that stores a JSON value.
Definition: field.h:4002
 
Error handler for the functions that serialize a JSON value in the JSON binary storage format.
Definition: json_error_handler.h:49
 
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:1153
 
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:167
 
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
 
Class used for reading JSON values that are stored in the binary format.
Definition: json_binary.h:214
 
double m_double_value
The value if the type is DOUBLE.
Definition: json_binary.h:494
 
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:307
 
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:250
 
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:409
 
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:1150
 
EXPORT_JSON_FUNCTION Value lookup(const std::string &key) const
Definition: json_binary.h:332
 
EXPORT_JSON_FUNCTION enum_field_types field_type() const
Get the MySQL field type of an opaque value.
Definition: json_binary.h:317
 
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:397
 
EXPORT_JSON_FUNCTION int64_t get_int64() const
Get the value of an INT.
Definition: json_binary.h:283
 
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:521
 
EXPORT_JSON_FUNCTION Value(const char *data, uint32_t len)
Constructor for values that represent strings.
Definition: json_binary.h:383
 
int64_t m_int_value
The value if the type is INT or UINT.
Definition: json_binary.h:492
 
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:260
 
EXPORT_JSON_FUNCTION 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:1543
 
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:1397
 
EXPORT_JSON_FUNCTION bool is_object() const
Is this value an object?
Definition: json_binary.h:422
 
EXPORT_JSON_FUNCTION bool to_std_string(std::string *buffer, const JsonErrorHandler &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:2131
 
EXPORT_JSON_FUNCTION bool to_pretty_std_string(std::string *buffer, const JsonErrorHandler &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:2143
 
EXPORT_JSON_FUNCTION size_t lookup_index(const std::string &key) const
Definition: json_binary.h:340
 
EXPORT_JSON_FUNCTION const char * get_container_data() const
Definition: json_binary.h:276
 
EXPORT_JSON_FUNCTION Value(double val)
Constructor for values that represent doubles.
Definition: json_binary.h:379
 
EXPORT_JSON_FUNCTION bool get_free_space(const JsonSerializationErrorHandler &error_handler, size_t *space) const
Get the amount of unused space in the binary representation of this value.
Definition: json_binary.cc:1991
 
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:506
 
enum_type
Definition: json_binary.h:216
 
@ DOUBLE
Definition: json_binary.h:222
 
@ LITERAL_FALSE
Definition: json_binary.h:225
 
@ INT
Definition: json_binary.h:220
 
@ STRING
Definition: json_binary.h:219
 
@ OBJECT
Definition: json_binary.h:217
 
@ LITERAL_TRUE
Definition: json_binary.h:224
 
@ ERROR
Definition: json_binary.h:227
 
@ LITERAL_NULL
Definition: json_binary.h:223
 
@ UINT
Definition: json_binary.h:221
 
@ OPAQUE
Definition: json_binary.h:226
 
@ ARRAY
Definition: json_binary.h:218
 
EXPORT_JSON_FUNCTION uint32_t get_container_length() const
Get the length in bytes of the STRING or OPAQUE value represented by this instance.
Definition: json_binary.h:270
 
EXPORT_JSON_FUNCTION Value()
Empty constructor.
Definition: json_binary.h:414
 
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:1188
 
EXPORT_JSON_FUNCTION enum_type type() const
Definition: json_binary.h:239
 
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:1429
 
int eq(const Value &val) const
Compare two Values.
Definition: json_binary.cc:2085
 
EXPORT_JSON_FUNCTION Value(enum_type t)
Constructor for values that represent literals or errors.
Definition: json_binary.h:366
 
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:512
 
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:1202
 
EXPORT_JSON_FUNCTION bool is_array() const
Is this value an array?
Definition: json_binary.h:418
 
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:1111
 
EXPORT_JSON_FUNCTION bool large_format() const
Does this value use the large storage format?
Definition: json_binary.h:243
 
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:1250
 
enum_type m_type
The JSON type of the value.
Definition: json_binary.h:515
 
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:1748
 
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:1937
 
const char * m_data
Pointer to the start of the binary representation of the value.
Definition: json_binary.h:490
 
EXPORT_JSON_FUNCTION uint64_t get_uint64() const
Get the value of a UINT.
Definition: json_binary.h:290
 
EXPORT_JSON_FUNCTION 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:1530
 
EXPORT_JSON_FUNCTION bool raw_binary(const JsonSerializationErrorHandler &error_handler, String *buf) const
Copy the binary representation of this value into a buffer, replacing the contents of the receiving b...
Definition: json_binary.cc:1275
 
EXPORT_JSON_FUNCTION bool is_valid() const
Does this value, and all of its members, represent a valid JSON value?
Definition: json_binary.cc:884
 
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:1340
 
EXPORT_JSON_FUNCTION Value(enum_type t, int64_t val)
Constructor for values that represent ints or uints.
Definition: json_binary.h:373
 
uint32_t m_element_count
Element count for arrays and objects.
Definition: json_binary.h:500
 
EXPORT_JSON_FUNCTION double get_double() const
Get the value of a DOUBLE.
Definition: json_binary.h:297
 
This file contains the field type.
 
enum_field_types
Column types for MySQL Note: Keep include/mysql/components/services/bits/stored_program_bits....
Definition: field_types.h:55
 
static void start(mysql_harness::PluginFuncEnv *env)
Definition: http_auth_backend_plugin.cc:180
 
#define EXPORT_JSON_FUNCTION
Definition: json_binary.h:169
 
std::function< void()> JsonErrorHandler
Definition: json_error_handler.h:36
 
uint32 element_count
Definition: my_tree.h:52
 
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1087
 
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:108
 
void write_offset_or_size(char *dest, size_t offset_or_size, bool large)
Write an offset or a size to a char array.
Definition: json_binary.cc:241
 
uint8_t offset_size(bool large)
Get the size of an offset value.
Definition: json_binary.cc:435
 
bool space_needed(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:1557
 
bool serialize(const Json_dom *dom, const JsonSerializationErrorHandler &error_handler, String *dest)
Serialize the JSON document represented by dom to binary format in the destination string,...
Definition: json_binary.cc:140
 
bool append_offset_or_size(String *dest, size_t offset_or_size, bool large)
Append an offset or a size to a String.
Definition: json_binary.cc:209
 
bool append_int16(String *dest, int16_t value)
Encode a 16-bit int at the end of the destination string.
Definition: json_binary.cc:177
 
bool attempt_inline_value(const Json_dom *value, String *dest, size_t pos, bool large)
Attempt to inline a value in its value entry at the beginning of an object or an array.
Definition: json_binary.cc:468
 
uint32_t read_offset_or_size(const char *data, bool large)
Read an offset or size field from a buffer.
Definition: json_binary.cc:1015
 
bool for_each_node(const Value &value, const Func &func)
Apply a function to every value in a JSON document.
Definition: json_binary.h:569
 
bool inlined_type(uint8_t type, bool large)
Will a value of the specified type be inlined?
Definition: json_binary.cc:416
 
Value parse_binary(const char *data, size_t len)
Parse a JSON binary document.
Definition: json_binary.cc:1086
 
uint8_t value_entry_size(bool large)
Get the size of a value entry.
Definition: json_binary.cc:453
 
uint8_t key_entry_size(bool large)
Get the size of a key entry.
Definition: json_binary.cc:444
 
size_t size(const char *const c)
Definition: base64.h:46
 
mutable_buffer buffer(void *p, size_t n) noexcept
Definition: buffer.h:418
 
required string type
Definition: replication_group_member_actions.proto:34