- Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathsettings.h
427 lines (324 loc) · 9.49 KB
/
settings.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
/*
* Copyright (c) 2017, 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.
*
* Without limiting anything contained in the foregoing, this file,
* which is part of Connector/C++, is also subject to the
* Universal FOSS Exception, version 1.0, a copy of which can be found at
* https://oss.oracle.com/licenses/universal-foss-exception.
*
* 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
*/
#ifndef MYSQLX_COMMON_SETTINGS_H
#defineMYSQLX_COMMON_SETTINGS_H
/*
Classes and code handling session settings. They are used to process session
creation options, check their consistency and present the settings in the
form expected by CDK.
Known session options and their values are defined
in mysql_common_constants.h header as SESSION_OPTION_LIST() and accompanying
macros.
*/
#include"../common_constants.h"
#include"value.h"
PUSH_SYS_WARNINGS
#include<vector>
#include<map>
#include<bitset>
#include<sstream>
POP_SYS_WARNINGS
namespacecdk {
namespaceds {
classMulti_source;
structAttr_processor;
}}
namespacemysqlx {
MYSQLX_ABI_BEGIN(2,0)
namespacecommon {
/*
Class for storing session configuration settings.
*/
classPUBLIC_API Settings_impl
{
public:
/*
Enumerations with available session options and their values.
*/
#defineSETTINGS_OPT_ENUM_str(X,N) X = N,
#defineSETTINGS_OPT_ENUM_num(X,N) X = N,
#defineSETTINGS_OPT_ENUM_any(X,N) X = N,
#defineSETTINGS_OPT_ENUM_bool(X,N) X = N,
enum Session_option_impl{
SESSION_OPTION_LIST(SETTINGS_OPT_ENUM)
LAST
};
/*
Enumerations with available client options and their values.
*/
#defineCLIENT_OPT_IMPL_ENUM_str(X,N) X = -N,
#defineCLIENT_OPT_IMPL_ENUM_bool(X,N) X = -N,
#defineCLIENT_OPT_IMPL_ENUM_num(X,N) X = -N,
#defineCLIENT_OPT_IMPL_ENUM_any(X,N) X = -N,
enum Client_option_impl {
CLIENT_OPTION_LIST(CLIENT_OPT_IMPL_ENUM)
};
staticconstchar* option_name(int opt);
#defineSETTINGS_VAL_ENUM(X,N) X = N,
enumclassSSL_mode {
SSL_MODE_LIST(SETTINGS_VAL_ENUM)
LAST
};
staticconstchar* ssl_mode_name(SSL_mode mode);
enumclassAuth_method {
AUTH_METHOD_LIST(SETTINGS_VAL_ENUM)
LAST
};
staticconstchar* auth_method_name(Auth_method method);
enumclassCompression_mode {
COMPRESSION_MODE_LIST(SETTINGS_VAL_ENUM)
LAST
};
staticconstchar* compression_mode_name(Compression_mode mode);
protected:
using Value = common::Value;
usingopt_val_t = std::pair<int, Value>;
// TODO: use multimap instead?
usingoption_list_t = std::vector<opt_val_t>;
using connection_attr = std::map<std::string,std::string>;
using iterator = option_list_t::const_iterator;
public:
/*
Examine settings stored in this object.
*/
boolhas_option(int) const;
const Value& get(int) const;
// Iterating over options stored in this object.
iterator begin() const
{
return m_data.m_options.cbegin();
}
iterator end() const
{
return m_data.m_options.cend();
}
/*
Clear individual or all settings.
*/
voidclear();
voiderase(int);
/*
Session options include connection options that specify data source
(one or many) for which given session is created. This method initializes
CDK Multi_source object to describe the data source(s) based on the
connection options.
*/
voidget_data_source(cdk::ds::Multi_source&);
voidget_attributes(cdk::ds::Attr_processor&);
// Set options based on URI
voidset_from_uri(const std::string &);
// Set Client options based on JSON object
voidset_client_opts(const std::string &);
// Set Client options from othe Settings object
voidset_client_opts(const Settings_impl &);
/*
Public API has no methods to directly set individual options. Instead,
to change session settings implementation should create a Setter object
and use its methods to do the changes. A Settings_impl::Setter object
provides "transactional" semantics for changing session options -- only
consistent option changes modify the original Settings_impl object.
Note: This Setter class is defined in "implementation" header
common/settings.h. The public API leaves it undefined.
*/
classSetter;
protected:
structPUBLIC_API Data
{
Data()
{
init_connection_attr();
}
DLL_WARNINGS_PUSH
option_list_t m_options;
connection_attr m_connection_attr;
DLL_WARNINGS_POP
unsigned m_host_cnt = 0;
bool m_user_priorities = false;
bool m_ssl_ca = false;
SSL_mode m_ssl_mode = SSL_mode::LAST;
bool m_tcpip = false; // set to true if TCPIP connection was specified
bool m_sock = false; // set to true if socket connection was specified
bool m_tls_vers = false;
bool m_tls_ciphers = false;
bool m_compression_algorithms = false;
voiderase(int);
voidinit_connection_attr();
voidclear_connection_attr();
};
Data m_data;
};
#defineSETTINGS_OPT_NAME_str(X,N) case N: return #X;
#defineSETTINGS_OPT_NAME_bool(X,N) case N: return #X;
#defineSETTINGS_OPT_NAME_num(X,N) case N: return #X;
#defineSETTINGS_OPT_NAME_any(X,N) case N: return #X;
#defineSETTINGS_OPT_NAME_bool(X,N) case N: return #X;
#defineCLIENT_OPT_NAME_str(X,N) case -N: return #X;
#defineCLIENT_OPT_NAME_bool(X,N) case -N: return #X;
#defineCLIENT_OPT_NAME_num(X,N) case -N: return #X;
#defineCLIENT_OPT_NAME_any(X,N) case -N: return #X;
inline
constchar* Settings_impl::option_name(int opt)
{
switch (opt)
{
SESSION_OPTION_LIST(SETTINGS_OPT_NAME)
CLIENT_OPTION_LIST(CLIENT_OPT_NAME)
default:
returnnullptr;
}
}
#defineSETTINGS_VAL_NAME(X,N) case N: return #X;
inline
constchar* Settings_impl::ssl_mode_name(SSL_mode mode)
{
switch (unsigned(mode))
{
SSL_MODE_LIST(SETTINGS_VAL_NAME)
default:
returnnullptr;
}
}
inline
constchar* Settings_impl::auth_method_name(Auth_method method)
{
switch (unsigned(method))
{
AUTH_METHOD_LIST(SETTINGS_VAL_NAME)
default:
returnnullptr;
}
}
inline
constchar* Settings_impl::compression_mode_name(Compression_mode mode)
{
switch (unsigned(mode))
{
COMPRESSION_MODE_LIST(SETTINGS_VAL_NAME)
default:
returnnullptr;
}
}
/*
Note: For options that can repeat, returns the last value.
*/
inline
const common::Value& Settings_impl::get(int opt) const
{
using std::find_if;
auto it = find_if(m_data.m_options.crbegin(), m_data.m_options.crend(),
[opt](opt_val_t el) -> bool { return el.first == opt; }
);
static Value null_value;
if (it == m_data.m_options.crend())
return null_value;
return it->second;
}
inline
boolSettings_impl::has_option(int opt) const
{
// For options whose value is a list, we return true if we know the option
// was set even if no actual values are stored in m_options, which is the
// case when option value is an empty list.
switch (opt)
{
case Session_option_impl::TLS_VERSIONS:
if (m_data.m_tls_vers)
returntrue;
break;
case Session_option_impl::TLS_CIPHERSUITES:
if (m_data.m_tls_ciphers)
returntrue;
break;
case Session_option_impl::COMPRESSION_ALGORITHMS:
if (m_data.m_compression_algorithms)
returntrue;
break;
default:
break;
}
return m_data.m_options.cend() !=
find_if(m_data.m_options.cbegin(), m_data.m_options.cend(),
[opt](opt_val_t el) -> bool { return el.first == opt; }
);
}
inline
voidSettings_impl::erase(int opt)
{
m_data.erase(opt);
}
/*
Note: Removes all occurrences of the given option. Also updates the context
used for checking option consistency.
*/
inline
voidSettings_impl::Data::erase(int opt)
{
remove_from(m_options,
[opt](opt_val_t el) -> bool
{
return el.first == opt;
}
);
/*
TODO: removing HOST from multi-host settings can leave "orphaned"
PORT/PRIORITY settings. Do we correctly detect that?
*/
switch (opt)
{
case Session_option_impl::HOST:
m_host_cnt = 0;
FALLTHROUGH;
case Session_option_impl::PORT:
if (0 == m_host_cnt)
m_tcpip = false;
break;
case Session_option_impl::SOCKET:
m_sock = false;
break;
case Session_option_impl::PRIORITY:
m_user_priorities = false;
break;
case Session_option_impl::SSL_CA:
m_ssl_ca = false;
break;
case Session_option_impl::SSL_MODE:
m_ssl_mode = SSL_mode::LAST;
break;
case Session_option_impl::CONNECTION_ATTRIBUTES:
clear_connection_attr();
break;
default:
break;
}
}
} // common namespace
MYSQLX_ABI_END(2,0)
} // mysqlx namespace
#endif