MySQL 9.0.0
Source Code Documentation
mysql_thd_attributes.h
Go to the documentation of this file.
1/* Copyright (c) 2021, 2024, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is designed to work with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have either included with
13the program or referenced in the documentation.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License, version 2.0, for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
22Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef MYSQL_THD_ATTRIBUTES_H
25#define MYSQL_THD_ATTRIBUTES_H
26
29
30/**
31 @ingroup group_components_services_inventory
32
33 THD Attributes service allows to obtain data associated with the THD
34 object, which keeps various attributes of the user session.
35
36 Currently, following attributes are supported:
37
38 - Query Digest Text
39 - Query Text
40 - Host or IP
41 - Schema
42 - Command String ("command" of the return mysql_cstring_with_length type)
43 - SQL Command String ("sql_command" of the return mysql_cstring_with_length
44 type)
45 - Query Character Set ("query_charset" of the return mysql_cstring_with_length
46 type)
47
48 @section thd_attributes_init Initialization
49
50 The service can be instantiated using the registry service with the
51 "mysql_thd_attributes" name.
52
53 @code
54 SERVICE_TYPE(registry) *registry = mysql_plugin_registry_acquire();
55 my_service<SERVICE_TYPE(mysql_thd_attributes)>
56 svc("mysql_thd_attributes", registry);
57 if (svc.is_valid()) {
58 // The service is ready to be used
59 }
60 @endcode
61
62 @section thd_attributes_query_digest_text Query Digest Text
63
64 Query Digest represents converted SQL statement to normalized form. The code
65 below demonstrates how query digest can be obtained from the service.
66
67 @code
68 my_h_string str;
69
70 mysql_thd_attributes->get(m_thd, "query_digest",
71 reinterpret_cast<void *>(&str));
72 @endcode
73
74 The buffer can be fetched using the code below:
75
76 @code
77 char buf[1024]; // buffer must be big enough to store the digest
78
79 mysql_string_converter->convert_to_buffer(str, buf, sizeof(buf), "utf8mb3");
80 @endcode
81
82 After the string content has been copied into another buffer, it must be
83 destroyed:
84
85 @code
86 mysql_string_factory->destroy(str);
87 @endcode
88
89 @section thd_attributes_query_text Query Text
90
91 Query text represents complete SQL text currently being executed within a
92 given session. The example code is identical to the one for Query Digest, the
93 only difference is that attribute name "sql_text" should be used in this
94 case.
95
96 @section thd_attributes_host_or_ip Host or IP
97
98 Host or IP text contains host or IP (if host unavailable) belonging to a
99 client associated with a given session. The example code is identical to the
100 one for Query Digest, the only difference is that attribute name "host_or_ip"
101 should be used in this case.
102
103 @section thd_attributes_schema Schema
104
105 Schema text contains a name of database currently in use by a
106 client associated with a given session. The example code is identical to the
107 one for Query Digest, the only difference is that attribute name "schema"
108 should be used in this case.
109*/
110
112
113/**
114 Get THD attribute.
115
116 Currently, following attributes are supported:
117
118 - Query Digest Text ("query_digest" of the returned my_h_string type)
119 - Query Text ("sql_text" of the returned my_h_string type)
120 - Host or IP ("host_or_ip" of the returned my_h_string type)
121 - Schema ("schema" of the returned my_h_string type)
122 - Is Upgrade Thread ("is_upgrade_thread" of the returned bool type)
123 - Is Init File System Thread ("is_init_file_thread" of the returned bool type)
124 - Command String ("command" of the return mysql_cstring_with_length type)
125 - SQL Command String ("sql_command" of the return mysql_cstring_with_length
126 type)
127 - Query Character Set ("query_charset" of the return mysql_cstring_with_length
128 type)
129 - status variable ("thd_status" of the returned uint16 type). if session is
130 OK, session is killed, query is killed or timeout
131 - time-zone name variable ("time_zone_name" of the returned
132 mysql_cstring_with_length type)
133 - Query execution status ("da_status" of the returned uint16 type).
134
135 @param thd Session THD object.
136 @param name Name of the attribute to be set.
137 @param[out] inout_pvalue Iterator pointer.
138
139 @return
140 @retval FALSE Succeeded.
141 @retval TRUE Failed.
142*/
143DECLARE_BOOL_METHOD(get, (MYSQL_THD thd, const char *name, void *inout_pvalue));
144
145/**
146 Set THD attribute.
147
148 Currently the implementation does not support setting of any attribute.
149
150 @param thd Session THD object.
151 @param name Name of the attribute to be set.
152 @param[out] inout_pvalue Iterator pointer.
153
154 @return The function always fail and return TRUE value.
155*/
156DECLARE_BOOL_METHOD(set, (MYSQL_THD thd, const char *name, void *inout_pvalue));
157
159
160#endif /* MYSQL_THD_ATTRIBUTES_H */
#define MYSQL_THD
Definition: backup_page_tracker.h:38
static mysql_service_status_t get(THD **thd) noexcept
Definition: mysql_current_thread_reader_all_empty.cc:31
std::set< Key, Compare, ut::allocator< Key > > set
Specialization of set which uses ut_allocator.
Definition: ut0new.h:2883
const mysql_service_mysql_thd_attributes_t * mysql_thd_attributes
Definition: rewriter_plugin.cc:59
#define END_SERVICE_DEFINITION(name)
A macro to end the last Service definition started with the BEGIN_SERVICE_DEFINITION macro.
Definition: service.h:91
#define BEGIN_SERVICE_DEFINITION(name)
Declares a new Service.
Definition: service.h:86
#define DECLARE_BOOL_METHOD(name, args)
Declares a method that returns bool as a part of the Service definition.
Definition: service.h:112
case opt name
Definition: sslopt-case.h:29