-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathsql_udf.h
154 lines (136 loc) · 5.17 KB
/
sql_udf.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
#ifndef SQL_UDF_INCLUDED
#define SQL_UDF_INCLUDED
/* Copyright (c) 2000, 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 */
/* This file defines structures needed by udf functions */
#include <stddef.h>
#include <sys/types.h>
#include "lex_string.h"
#include "my_inttypes.h"
#include "my_table_map.h"
#include "mysql/udf_registration_types.h"
class Item;
class Item_result_field;
class String;
class THD;
class my_decimal;
struct CHARSET_INFO;
struct udf_func {
LEX_STRING name;
Item_result returns;
Item_udftype type;
char *dl;
void *dlhandle;
Udf_func_any func;
Udf_func_init func_init;
Udf_func_deinit func_deinit;
Udf_func_clear func_clear;
Udf_func_add func_add;
ulong usage_count;
};
/*
A structure of extension attributes for a UDF argument.
The extension pointer of UDF_ARGS may point to the object of this
structure. There are udf_extension component services to set and get
the extension attributes of argument.
*/
struct Udf_args_extension {
Udf_args_extension() : charset_info(nullptr) {}
const CHARSET_INFO **charset_info;
};
/*
A structure of extension attributes for return value of UDF.
The extension pointer of UDF_INIT may point to the object of this
structure. There are udf_extension component services to set and get
the extension attributes of return value.
*/
struct Udf_return_value_extension {
Udf_return_value_extension(const CHARSET_INFO *charset_info = nullptr,
Item_result result_type = INVALID_RESULT)
: charset_info(charset_info), result_type(result_type) {}
const CHARSET_INFO *charset_info;
Item_result result_type;
};
class udf_handler {
protected:
udf_func *u_d;
String *buffers{nullptr};
String *arg_buffers{nullptr};
UDF_ARGS f_args;
UDF_INIT initid;
char *num_buffer{nullptr};
uchar error{0};
uchar is_null{0};
/// True when handler has been initialized and use count incremented
bool m_initialized{false};
/// True when init function has been called
bool m_init_func_called{false};
Item **args;
Udf_args_extension m_args_extension; /**< A struct that holds the extension
arguments for each UDF argument */
Udf_return_value_extension
m_return_value_extension; /**< A struct that holds the extension arguments
for return value */
public:
table_map used_tables_cache{0};
bool m_original{true};
udf_handler(udf_func *udf_arg);
udf_handler(const udf_handler &) = default;
udf_handler(udf_handler &&) = default;
udf_handler &operator=(const udf_handler &) = default;
udf_handler &operator=(udf_handler &&) = default;
// Clean up string buffers
void clean_buffers();
void free_handler();
bool is_initialized() const { return m_initialized; }
const char *name() const { return u_d ? u_d->name.str : "?"; }
Item_result result_type() const {
return (Item_result)(u_d ? (u_d->returns) : STRING_RESULT);
}
bool fix_fields(THD *thd, Item_result_field *item, uint arg_count,
Item **args);
void cleanup();
bool call_init_func();
double val_real(bool *null_value);
longlong val_int(bool *null_value);
my_decimal *val_decimal(bool *null_value, my_decimal *dec_buf);
String *val_str(String *str, String *save_str);
void clear();
void add(bool *null_value);
private:
bool get_arguments();
String *result_string(const char *res, size_t res_length, String *str,
String *save_str);
void get_string(uint index);
bool get_and_convert_string(uint index);
};
void udf_init_globals();
void udf_read_functions_table();
void udf_unload_udfs();
void udf_deinit_globals();
udf_func *find_udf(const char *name, size_t len = 0, bool mark_used = false);
void free_udf(udf_func *udf);
bool mysql_create_function(THD *thd, udf_func *udf, bool if_not_exists);
bool mysql_drop_function(THD *thd, const LEX_STRING *name);
ulong udf_hash_size(void);
void udf_hash_rlock(void);
void udf_hash_unlock(void);
typedef void udf_hash_for_each_func_t(udf_func *, void *);
void udf_hash_for_each(udf_hash_for_each_func_t *func, void *arg);
#endif /* SQL_UDF_INCLUDED */