MySQL 8.0.37
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
43 @section thd_attributes_init Initialization
44
45 The service can be instantiated using the registry service with the
46 "mysql_thd_attributes" name.
47
48 @code
49 SERVICE_TYPE(registry) *registry = mysql_plugin_registry_acquire();
50 my_service<SERVICE_TYPE(mysql_thd_attributes)>
51 svc("mysql_thd_attributes", registry);
52 if (svc.is_valid()) {
53 // The service is ready to be used
54 }
55 @endcode
56
57 @section thd_attributes_query_digest_text Query Digest Text
58
59 Query Digest represents converted SQL statement to normalized form. The code
60 below demonstrates how query digest can be obtained from the service.
61
62 @code
63 my_h_string str;
64
65 mysql_thd_attributes->get(m_thd, "query_digest",
66 reinterpret_cast<void *>(&str));
67 @endcode
68
69 The buffer can be fetched using the code below:
70
71 @code
72 char buf[1024]; // buffer must be big enough to store the digest
73
74 mysql_string_converter->convert_to_buffer(str, buf, sizeof(buf), "utf8mb3");
75 @endcode
76
77 After the string content has been copied into another buffer, it must be
78 destroyed:
79
80 @code
81 mysql_string_factory->destroy(str);
82 @endcode
83
84 @section thd_attributes_query_text Query Text
85
86 Query text represents complete SQL text currently being executed within a
87 given session. The example code is identical to the one for Query Digest, the
88 only difference is that attribute name "sql_text" should be used in this
89 case.
90
91 @section thd_attributes_host_or_ip Host or IP
92
93 Host or IP text contains host or IP (if host unavailable) belonging to a
94 client associated with a given session. The example code is identical to the
95 one for Query Digest, the only difference is that attribute name "host_or_ip"
96 should be used in this case.
97
98 @section thd_attributes_schema Schema
99
100 Schema text contains a name of database currently in use by a
101 client associated with a given session. The example code is identical to the
102 one for Query Digest, the only difference is that attribute name "schema"
103 should be used in this case.
104*/
106
107/**
108 Get THD attribute.
109
110 Currently, following attributes are supported:
111
112 - Query Digest Text ("query_digest" of the returned my_h_string type)
113 - Query Text ("sql_text" of the returned my_h_string type)
114 - Host or IP ("host_or_ip" of the returned my_h_string type)
115 - Schema ("schema" of the returned my_h_string type)
116 - Is Upgrade Thread ("is_upgrade_thread" of the returned bool type)
117 - Is Init File System Thread ("is_init_file_thread" of the returned bool type)
118
119 @param thd Session THD object.
120 @param name Name of the attribute to be set.
121 @param[out] inout_pvalue Iterator pointer.
122
123 @return
124 @retval FALSE Succeeded.
125 @retval TRUE Failed.
126*/
127DECLARE_BOOL_METHOD(get, (MYSQL_THD thd, const char *name, void *inout_pvalue));
128
129/**
130 Set THD attribute.
131
132 Currently the implementation does not support setting of any attribute.
133
134 @param thd Session THD object.
135 @param name Name of the attribute to be set.
136 @param[out] inout_pvalue Iterator pointer.
137
138 @return The function always fail and return TRUE value.
139*/
140DECLARE_BOOL_METHOD(set, (MYSQL_THD thd, const char *name, void *inout_pvalue));
141
143
144#endif /* MYSQL_THD_ATTRIBUTES_H */
#define MYSQL_THD
Definition: backup_page_tracker.h:38
void get(PSI_field *, PSI_longlong *) noexcept
Definition: pfs_plugin_column_bigint_v1_all_empty.cc:32
std::set< Key, Compare, ut::allocator< Key > > set
Specialization of set which uses ut_allocator.
Definition: ut0new.h:2882
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:33