-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathitem_json_func.h
1306 lines (1077 loc) · 43.2 KB
/
item_json_func.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef ITEM_JSON_FUNC_INCLUDED
#define ITEM_JSON_FUNC_INCLUDED
/* Copyright (c) 2015, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include <assert.h>
#include <sys/types.h>
#include <cstdint>
#include <memory>
#include <utility> // std::forward
#include "field_types.h"
#include "my_alloc.h"
#include "my_inttypes.h"
#include "my_table_map.h"
#include "my_time.h"
#include "mysql/strings/m_ctype.h"
#include "mysql/udf_registration_types.h"
#include "mysql_com.h"
#include "mysql_time.h"
#include "prealloced_array.h" // Prealloced_array
#include "sql-common/json_error_handler.h"
#include "sql-common/json_path.h" // Json_path
#include "sql-common/json_schema.h" //Json_schema_validator_holder
#include "sql/enum_query_type.h"
#include "sql/field.h"
#include "sql/item.h"
#include "sql/item_cmpfunc.h"
#include "sql/item_func.h"
#include "sql/item_strfunc.h" // Item_str_func
#include "sql/mem_root_array.h" // Mem_root_array
#include "sql/parse_location.h" // POS
#include "sql/psi_memory_key.h" // key_memory_JSON
#include "sql_string.h"
class Json_array;
class Json_diff_vector;
class Json_dom;
class Json_object;
class Json_scalar_holder;
class Json_schema_validator;
class Json_wrapper;
class PT_item_list;
class THD;
class my_decimal;
enum Cast_target : unsigned char;
enum class Json_on_response_type : uint16;
enum class enum_json_diff_status;
struct Cast_type;
struct TABLE;
/** For use by JSON_CONTAINS_PATH() and JSON_SEARCH() */
enum enum_one_or_all_type {
ooa_one,
ooa_all,
ooa_null,
ooa_error,
ooa_uninitialized
};
/**
Path cache for JSON functions. Caches parsed path
objects for arguments which are string literals.
Maintains a vector of path objects and an array of
ints which map path argument numbers to slots in
the array.
*/
class Json_path_cache {
private:
/// Holder for path strings.
String m_path_value;
/// List of paths.
Prealloced_array<Json_path, 8> m_paths;
/// Enum that tells the status of a cell in m_paths.
enum class enum_path_status : uint8 {
UNINITIALIZED,
OK_NOT_NULL,
OK_NULL,
};
/// Struct that points to a cell in m_paths and tells its status.
struct Path_cell {
enum_path_status m_status = enum_path_status::UNINITIALIZED;
size_t m_index = 0;
};
/// Map argument indexes to indexes into m_paths.
Mem_root_array<Path_cell> m_arg_idx_to_vector_idx;
public:
Json_path_cache(THD *thd, uint size);
~Json_path_cache();
/**
Parse a path expression if necessary. Does nothing if the path
expression is constant and it has already been parsed. Assumes that
we've already verified that the path expression is not null. Raises an
error if the path expression is syntactically incorrect. Raises an
error if the path expression contains wildcard tokens but is not
supposed to. Otherwise puts the parsed path onto the
path vector.
@param[in] thd THD handle
@param[in] args Array of args to a JSON function
@param[in] arg_idx Index of the path_expression in args
@param[in] forbid_wildcards True if the path shouldn't contain * or **
@returns false on success (valid path or NULL), true on error
*/
bool parse_and_cache_path(const THD *thd, Item **args, uint arg_idx,
bool forbid_wildcards);
/**
Return an already parsed path expression.
@param[in] arg_idx Index of the path_expression in the JSON function args
@returns the already parsed path, possibly NULL
*/
const Json_path *get_path(uint arg_idx) const;
/**
Reset the cache for re-use when a statement is re-executed.
*/
void reset_cache();
};
/* JSON function support */
/**
Base class for all item functions that a return JSON value
*/
class Item_json_func : public Item_func {
/// Can this function type be used in partial update?
virtual bool can_use_in_partial_update() const { return false; }
protected:
/// String used when reading JSON binary values or JSON text values.
String m_value;
/// String used for converting JSON text values to utf8mb4 charset.
String m_conversion_buffer;
/// String used for converting a JSON value to text in val_str().
String m_string_buffer;
// Cache for constant path expressions
Json_path_cache m_path_cache;
/**
Target column for partial update, if this function is used in an
update statement and partial update can be used.
*/
const Field_json *m_partial_update_column = nullptr;
public:
/**
Construct an Item_json_func instance.
@param thd THD handle
@param parent_args arguments to forward to Item_func's constructor
*/
template <typename... Args>
Item_json_func(THD *thd, Args &&...parent_args)
: Item_func(std::forward<Args>(parent_args)...),
m_path_cache(thd, arg_count) {
set_data_type_json();
}
bool resolve_type(THD *) override {
if (reject_vector_args()) return true;
set_nullable(true);
return false;
}
enum Item_result result_type() const override { return STRING_RESULT; }
String *val_str(String *arg) override;
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override;
bool get_time(MYSQL_TIME *ltime) override;
longlong val_int() override;
double val_real() override;
my_decimal *val_decimal(my_decimal *decimal_value) override;
void cleanup() override;
Item_result cast_to_int_type() const override { return INT_RESULT; }
/**
Does this function call support partial update of the given JSON column?
JSON_SET, JSON_REPLACE and JSON_REMOVE support partial update of a JSON
column if the JSON column is the first argument of the function call, or if
the first argument is a sequence of nested JSON_SET, JSON_REPLACE and
JSON_REMOVE calls in which the JSON column is the first argument of the
inner function call.
For example, this expression can be used to partially update column
`json_col`:
JSON_SET(JSON_REPLACE(json_col, path1, val1), path2, val2)
*/
bool supports_partial_update(const Field_json *field) const override;
/**
Mark this expression as used in partial update. Should only be
called if #supports_partial_update returns true.
*/
void mark_for_partial_update(const Field_json *field);
};
bool sql_scalar_to_json(Item *arg, const char *calling_function, String *value,
String *tmp, Json_wrapper *wr,
Json_scalar_holder *scalar, bool scalar_string);
/**
Return the JSON value of the argument in a wrapper.
Handles arguments with type JSON, including array objects (which do
not report type JSON but rather the type of individual elements).
Does not handle literals.
See also get_json_wrapper.
@param[in] arg the argument
@param[in,out] result the JSON value wrapper
@param[out] has_value true if argument was handled, false otherwise
undefined when error
*/
bool json_value(Item *arg, Json_wrapper *result, bool *has_value);
/**
Return the JSON value of the argument in a wrapper. Abstracts whether
the value comes from a field or a function or a valid JSON text.
@param[in] args the arguments
@param[in] arg_idx the argument index
@param[out] str the string buffer
@param[in] func_name the name of the function we are executing
@param[out] wrapper the JSON value wrapper
@returns false if we found a value or NULL, true if not.
*/
bool get_json_wrapper(Item **args, uint arg_idx, String *str,
const char *func_name, Json_wrapper *wrapper);
/**
Convert Json values or MySQL values to JSON.
@param[in] args arguments to function
@param[in] arg_idx the index of the argument to process
@param[in] calling_function name of the calling function
@param[in,out] value working area (if the returned Json_wrapper points
to a binary value rather than a DOM, this string
will end up holding the binary representation, and
it must stay alive until the wrapper is destroyed
or converted from binary to DOM)
@param[in,out] tmp temporary scratch space for converting strings to
the correct charset; only used if accept_string is
true and conversion is needed
@param[in,out] wr the result wrapper
@param[in,out] scalar pointer to pre-allocated memory that can be
borrowed by the result wrapper if the result is a
scalar. If the pointer is NULL, memory for a
scalar result will be allocated on the heap.
@param[in] accept_string
if true, accept MySQL strings as JSON strings
by converting them to UTF8, else emit an error
@returns false if we found a value or NULL, true otherwise
*/
bool get_json_atom_wrapper(Item **args, uint arg_idx,
const char *calling_function, String *value,
String *tmp, Json_wrapper *wr,
Json_scalar_holder *scalar, bool accept_string);
/**
Check a non-empty val for character set. If it has character set
my_charset_binary, signal error and return false. Else, try to convert to
my_charset_utf8mb4_bin. If this fails, signal error and return true, else
return false.
@param[in] val the string to be checked
@param[in,out] buf buffer to hold the converted string
@param[out] resptr the resulting, possibly converted string,
only set if no error
@param[out] reslength the length of resptr
@param[in] require_string
If true, give error messages if binary string. If we
see a conversion error (space), we give error
notwithstanding this parameter value
@returns True if the string could not be converted. False on success.
*/
bool ensure_utf8mb4(const String &val, String *buf, const char **resptr,
size_t *reslength, bool require_string);
/**
Represents the JSON function JSON_VALID( <value> )
*/
class Item_func_json_valid final : public Item_int_func {
String m_value;
public:
Item_func_json_valid(const POS &pos, Item *a) : Item_int_func(pos, a) {}
const char *func_name() const override { return "json_valid"; }
enum Functype functype() const override { return JSON_VALID_FUNC; }
bool is_bool_func() const override { return true; }
longlong val_int() override;
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
set_nullable(true);
return false;
}
};
/**
Represents the JSON function JSON_SCHEMA_VALID( <json schema>, <json doc> )
*/
class Item_func_json_schema_valid final : public Item_bool_func {
public:
Item_func_json_schema_valid(const POS &pos, Item *a, Item *b);
~Item_func_json_schema_valid() override;
const char *func_name() const override { return "json_schema_valid"; }
enum Functype functype() const override { return JSON_SCHEMA_VALID_FUNC; }
bool val_bool() override;
longlong val_int() override { return val_bool() ? 1 : 0; }
bool fix_fields(THD *, Item **) override;
void cleanup() override;
private:
Json_schema_validator m_cached_schema_validator;
};
/**
Represents the JSON function
JSON_SCHEMA_VALIDATION_REPORT( <json schema>, <json doc> )
*/
class Item_func_json_schema_validation_report final : public Item_json_func {
public:
Item_func_json_schema_validation_report(THD *thd, const POS &pos,
PT_item_list *a);
~Item_func_json_schema_validation_report() override;
const char *func_name() const override {
return "json_schema_validation_report";
}
enum Functype functype() const override {
return JSON_SCHEMA_VALIDATION_REPORT_FUNC;
}
bool val_json(Json_wrapper *wr) override;
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
set_nullable(true);
return false;
}
bool fix_fields(THD *, Item **) override;
void cleanup() override;
private:
Json_schema_validator m_cached_schema_validator;
};
/**
Represents the JSON function JSON_CONTAINS()
*/
class Item_func_json_contains final : public Item_int_func {
String m_doc_value;
Json_path_cache m_path_cache;
public:
Item_func_json_contains(THD *thd, const POS &pos, PT_item_list *a)
: Item_int_func(pos, a), m_path_cache(thd, arg_count) {}
const char *func_name() const override { return "json_contains"; }
enum Functype functype() const override { return JSON_CONTAINS; }
optimize_type select_optimize(const THD *) override { return OPTIMIZE_KEY; }
bool gc_subst_analyzer(uchar **) override { return true; }
bool is_bool_func() const override { return true; }
longlong val_int() override;
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
if (param_type_is_default(thd, 1, 3)) return true;
set_nullable(true);
return false;
}
/** Cleanup between executions of the statement */
void cleanup() override;
enum_const_item_cache can_cache_json_arg(Item *arg) override {
return (arg == args[0] || arg == args[1]) ? CACHE_JSON_VALUE : CACHE_NONE;
}
};
/**
Represents the JSON function JSON_CONTAINS_PATH()
*/
class Item_func_json_contains_path final : public Item_int_func {
String m_doc_value;
enum_one_or_all_type m_cached_ooa;
// Cache for constant path expressions
Json_path_cache m_path_cache;
public:
Item_func_json_contains_path(THD *thd, const POS &pos, PT_item_list *a)
: Item_int_func(pos, a),
m_cached_ooa(ooa_uninitialized),
m_path_cache(thd, arg_count) {}
const char *func_name() const override { return "json_contains_path"; }
enum Functype functype() const override { return JSON_CONTAINS_PATH_FUNC; }
bool is_bool_func() const override { return true; }
longlong val_int() override;
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
if (param_type_is_default(thd, 1, -1)) return true;
set_nullable(true);
return false;
}
/** Cleanup between executions of the statement */
void cleanup() override;
enum_const_item_cache can_cache_json_arg(Item *arg) override {
return (arg == args[0]) ? CACHE_JSON_VALUE : CACHE_NONE;
}
};
/**
Represents the JSON function JSON_TYPE
*/
class Item_func_json_type : public Item_str_func {
String m_value;
public:
Item_func_json_type(const POS &pos, Item *a) : Item_str_func(pos, a) {}
const char *func_name() const override { return "json_type"; }
enum Functype functype() const override { return JSON_TYPE_FUNC; }
bool resolve_type(THD *) override;
String *val_str(String *) override;
};
/**
Represents a "CAST( <value> AS JSON )" coercion.
*/
class Item_typecast_json final : public Item_json_func {
typedef Item_json_func super;
public:
Item_typecast_json(THD *thd, const POS &pos, Item *a)
: Item_json_func(thd, pos, a) {}
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (Item_json_func::resolve_type(thd)) return true;
return args[0]->propagate_type(thd, MYSQL_TYPE_JSON, false, true);
}
void print(const THD *thd, String *str,
enum_query_type query_type) const override;
const char *func_name() const override { return "cast_as_json"; }
const char *cast_type() const { return "json"; }
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_LENGTH()
*/
class Item_func_json_length final : public Item_int_func {
String m_doc_value;
public:
Item_func_json_length(const POS &pos, Item *doc) : Item_int_func(pos, doc) {}
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
if (param_type_is_default(thd, 1, 2)) return true;
set_nullable(true);
return false;
}
const char *func_name() const override { return "json_length"; }
enum Functype functype() const override { return JSON_LENGTH_FUNC; }
longlong val_int() override;
};
/**
Represents the JSON function JSON_DEPTH()
*/
class Item_func_json_depth final : public Item_int_func {
String m_doc_value;
public:
Item_func_json_depth(const POS &pos, Item *a) : Item_int_func(pos, a) {}
const char *func_name() const override { return "json_depth"; }
enum Functype functype() const override { return JSON_DEPTH_FUNC; }
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
set_nullable(true);
return false;
}
longlong val_int() override;
};
/**
Represents the JSON function JSON_KEYS()
*/
class Item_func_json_keys : public Item_json_func {
String m_doc_value;
public:
Item_func_json_keys(THD *thd, const POS &pos, Item *a)
: Item_json_func(thd, pos, a) {}
Item_func_json_keys(THD *thd, const POS &pos, Item *a, Item *b)
: Item_json_func(thd, pos, a, b) {}
const char *func_name() const override { return "json_keys"; }
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (Item_json_func::resolve_type(thd)) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
if (param_type_is_default(thd, 1, 2)) return true;
return false;
}
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_EXTRACT()
*/
class Item_func_json_extract final : public Item_json_func {
String m_doc_value;
public:
Item_func_json_extract(THD *thd, const POS &pos, PT_item_list *a)
: Item_json_func(thd, pos, a) {}
Item_func_json_extract(THD *thd, const POS &pos, Item *a, Item *b)
: Item_json_func(thd, pos, a, b) {}
const char *func_name() const override { return "json_extract"; }
enum Functype functype() const override { return JSON_EXTRACT_FUNC; }
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (Item_json_func::resolve_type(thd)) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
if (param_type_is_default(thd, 1, -1)) return true;
return false;
}
bool val_json(Json_wrapper *wr) override;
bool eq(const Item *item) const override;
};
/// Base class for all the functions that take a JSON document as the first
/// argument and one of more pairs of a JSON path and a value to insert into the
/// JSON document, and returns the modified JSON document.
class Item_func_modify_json_in_path : public Item_json_func {
protected:
template <typename... Args>
explicit Item_func_modify_json_in_path(Args &&...parent_args)
: Item_json_func(std::forward<Args>(parent_args)...) {
// The function does not necessarily return NULL when an argument is NULL.
// It returns NULL only if the first argument is NULL, or if one of the JSON
// path arguments is null. The set of tables for which the function is
// null-rejecting, is calculated in resolve_type() and possibly updated in
// update_used_tables().
null_on_null = false;
}
String m_doc_value;
public:
bool resolve_type(THD *thd) final;
void update_used_tables() final;
private:
/// Calculates the set of tables to return from not_used_tables(). The
/// returned value is cached by resolve_type() and update_used_tables().
table_map calculate_not_null_tables() const;
};
/**
Represents the JSON function JSON_ARRAY_APPEND()
*/
class Item_func_json_array_append final : public Item_func_modify_json_in_path {
public:
Item_func_json_array_append(THD *thd, const POS &pos, PT_item_list *a)
: Item_func_modify_json_in_path(thd, pos, a) {}
const char *func_name() const override { return "json_array_append"; }
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_INSERT()
*/
class Item_func_json_insert : public Item_func_modify_json_in_path {
public:
Item_func_json_insert(THD *thd, const POS &pos, PT_item_list *a)
: Item_func_modify_json_in_path(thd, pos, a) {}
const char *func_name() const override { return "json_insert"; }
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_ARRAY_INSERT()
*/
class Item_func_json_array_insert final : public Item_func_modify_json_in_path {
public:
Item_func_json_array_insert(THD *thd, const POS &pos, PT_item_list *a)
: Item_func_modify_json_in_path(thd, pos, a) {}
const char *func_name() const override { return "json_array_insert"; }
bool val_json(Json_wrapper *wr) override;
};
/**
Common base class for JSON_SET() and JSON_REPLACE().
*/
class Item_func_json_set_replace : public Item_func_modify_json_in_path {
/// True if this is JSON_SET, false if it is JSON_REPLACE.
const bool m_json_set;
Json_path_clone m_path;
bool can_use_in_partial_update() const override { return true; }
protected:
template <typename... Args>
explicit Item_func_json_set_replace(bool json_set, Args &&...parent_args)
: Item_func_modify_json_in_path(std::forward<Args>(parent_args)...),
m_json_set(json_set),
m_path(key_memory_JSON) {}
public:
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_SET()
*/
class Item_func_json_set final : public Item_func_json_set_replace {
public:
template <typename... Args>
explicit Item_func_json_set(Args &&...parent_args)
: Item_func_json_set_replace(true, std::forward<Args>(parent_args)...) {}
const char *func_name() const override { return "json_set"; }
};
/**
Represents the JSON function JSON_REPLACE()
*/
class Item_func_json_replace final : public Item_func_json_set_replace {
public:
template <typename... Args>
explicit Item_func_json_replace(Args &&...parent_args)
: Item_func_json_set_replace(false, std::forward<Args>(parent_args)...) {}
const char *func_name() const override { return "json_replace"; }
};
/**
Represents the JSON function JSON_ARRAY()
*/
class Item_func_json_array final : public Item_json_func {
public:
template <typename... Args>
explicit Item_func_json_array(Args &&...parent_args)
: Item_json_func(std::forward<Args>(parent_args)...) {
// Does not return NULL on NULL input. A NULL argument is interpreted as the
// JSON null literal.
null_on_null = false;
}
const char *func_name() const override { return "json_array"; }
enum Functype functype() const override { return JSON_ARRAY_FUNC; }
bool resolve_type(THD *thd) override {
if (Item_json_func::resolve_type(thd)) return true;
if (param_type_is_default(thd, 0, -1)) return true;
return false;
}
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_OBJECT()
*/
class Item_func_json_row_object final : public Item_json_func {
String tmp_key_value;
public:
Item_func_json_row_object(THD *thd, const POS &pos, PT_item_list *a)
: Item_json_func(thd, pos, a) {
// Does not return NULL on NULL input. If a key argument is NULL, an error
// is raised. If a value argument is NULL, it is interpreted as the JSON
// null literal.
null_on_null = false;
}
const char *func_name() const override { return "json_object"; }
enum Functype functype() const override { return JSON_OBJECT_FUNC; }
bool resolve_type(THD *thd) override {
if (Item_json_func::resolve_type(thd)) return true;
if (param_type_is_default(thd, 0, -1)) return true;
return false;
}
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_SEARCH()
*/
class Item_func_json_search : public Item_json_func {
String m_doc_value;
enum_one_or_all_type m_cached_ooa;
// LIKE machinery
Item_string *m_source_string_item;
Item_func_like *m_like_node;
public:
/**
Construct a JSON_SEARCH() node.
@param parent_args arguments to pass to Item_json_func's constructor
*/
template <typename... Args>
Item_func_json_search(Args &&...parent_args)
: Item_json_func(std::forward<Args>(parent_args)...),
m_cached_ooa(ooa_uninitialized) {}
const char *func_name() const override { return "json_search"; }
enum Functype functype() const override { return JSON_SEARCH_FUNC; }
bool val_json(Json_wrapper *wr) override;
/**
Bind logic for the JSON_SEARCH() node.
*/
bool fix_fields(THD *, Item **) override;
bool resolve_type(THD *thd) override {
if (Item_json_func::resolve_type(thd)) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
if (param_type_is_default(thd, 1, -1)) return true;
return false;
}
void cleanup() override;
};
/**
Represents the JSON function JSON_REMOVE()
*/
class Item_func_json_remove : public Item_json_func {
String m_doc_value;
bool can_use_in_partial_update() const override { return true; }
public:
template <typename... Args>
Item_func_json_remove(Args &&...parent_args)
: Item_json_func(std::forward<Args>(parent_args)...) {}
const char *func_name() const override { return "json_remove"; }
bool resolve_type(THD *thd) override {
if (Item_json_func::resolve_type(thd)) return true;
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_JSON)) return true;
if (param_type_is_default(thd, 1, -1)) return true;
return false;
}
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_MERGE_PRESERVE.
*/
class Item_func_json_merge_preserve : public Item_json_func {
public:
Item_func_json_merge_preserve(THD *thd, const POS &pos, PT_item_list *a)
: Item_json_func(thd, pos, a) {}
const char *func_name() const override { return "json_merge_preserve"; }
bool resolve_type(THD *thd) override {
if (Item_json_func::resolve_type(thd)) return true;
if (param_type_is_default(thd, 0, -1, MYSQL_TYPE_JSON)) return true;
return false;
}
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_MERGE. It is a deprecated alias
for JSON_MERGE_PRESERVE.
*/
class Item_func_json_merge : public Item_func_json_merge_preserve {
public:
Item_func_json_merge(THD *thd, const POS &pos, PT_item_list *a);
bool is_deprecated() const override { return true; }
};
/**
Represents the JSON function JSON_MERGE_PATCH.
*/
class Item_func_json_merge_patch : public Item_json_func {
public:
Item_func_json_merge_patch(THD *thd, const POS &pos, PT_item_list *a)
: Item_json_func(thd, pos, a) {}
const char *func_name() const override { return "json_merge_patch"; }
bool resolve_type(THD *thd) override {
if (Item_json_func::resolve_type(thd)) return true;
if (param_type_is_default(thd, 0, -1, MYSQL_TYPE_JSON)) return true;
return false;
}
bool val_json(Json_wrapper *wr) override;
};
/**
Represents the JSON function JSON_QUOTE()
*/
class Item_func_json_quote : public Item_str_func {
String m_value;
public:
Item_func_json_quote(const POS &pos, PT_item_list *a)
: Item_str_func(pos, a) {}
const char *func_name() const override { return "json_quote"; }
enum Functype functype() const override { return JSON_QUOTE_FUNC; }
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, -1)) return true;
set_nullable(true);
/*
Any interior character could be replaced by a 6 character
escape sequence. Plus we will add 2 framing quote characters.
*/
const uint32 max_char_length = (6 * args[0]->max_char_length()) + 2;
set_data_type_string(max_char_length, &my_charset_utf8mb4_bin);
return false;
}
String *val_str(String *tmpspace) override;
};
/**
Represents the JSON function JSON_UNQUOTE()
*/
class Item_func_json_unquote : public Item_str_func {
String m_value;
String m_conversion_buffer;
public:
Item_func_json_unquote(const POS &pos, PT_item_list *a)
: Item_str_func(pos, a) {}
Item_func_json_unquote(const POS &pos, Item *a) : Item_str_func(pos, a) {}
const char *func_name() const override { return "json_unquote"; }
enum Functype functype() const override { return JSON_UNQUOTE_FUNC; }
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, -1)) return true;
set_nullable(true);
set_data_type_string(args[0]->max_char_length(), &my_charset_utf8mb4_bin);
return false;
}
String *val_str(String *str) override;
};
/**
Represents the JSON_PRETTY function.
*/
class Item_func_json_pretty final : public Item_str_func {
public:
Item_func_json_pretty(const POS &pos, Item *a) : Item_str_func(pos, a) {}
const char *func_name() const override { return "json_pretty"; }
enum Functype functype() const override { return JSON_PRETTY_FUNC; }
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, -1, MYSQL_TYPE_JSON)) return true;
set_data_type_string(MAX_BLOB_WIDTH, &my_charset_utf8mb4_bin);
return false;
}
String *val_str(String *str) override;
};
/**
Class that represents the function JSON_STORAGE_SIZE.
*/
class Item_func_json_storage_size final : public Item_int_func {
public:
Item_func_json_storage_size(const POS &pos, Item *a)
: Item_int_func(pos, a) {}
const char *func_name() const override { return "json_storage_size"; }
enum Functype functype() const override { return JSON_STORAGE_SIZE_FUNC; }
bool resolve_type(THD *thd) override {
if (reject_vector_args()) return true;
if (param_type_is_default(thd, 0, -1, MYSQL_TYPE_JSON)) return true;
if (Item_int_func::resolve_type(thd)) return true;
set_nullable(true);
return false;
}
longlong val_int() override;
};
/**
Class that represents the function JSON_STORAGE_FREE.
*/
class Item_func_json_storage_free final : public Item_int_func {
public:
Item_func_json_storage_free(const POS &pos, Item *a)
: Item_int_func(pos, a) {}
const char *func_name() const override { return "json_storage_free"; }
enum Functype functype() const override { return JSON_STORAGE_FREE_FUNC; }