-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathproperties.cc
222 lines (156 loc) · 7.26 KB
/
properties.cc
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
/* Copyright (c) 2018, 2025, 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 "sql/dd/properties.h"
#include <cassert>
#include <limits>
#include "my_sys.h" // strmake_root
#include "mysql/strings/my_strtoll10.h"
#include "sql/dd/types/table.h" // enum_row_format
#include "sql/field.h" // geometry_type
#include "sql/handler.h" // row_type
namespace dd {
template <typename T>
bool Properties::from_str(const String_type &number, T *value) {
assert(value != nullptr);
// The target type must be an integer.
if (!(std::numeric_limits<T>::is_integer)) return true;
// Do the conversion to an 8 byte signed integer.
int error_code;
int64 tmp = 0;
tmp = my_strtoll10(number.c_str(), nullptr, &error_code);
// Check for conversion errors, including boundaries for 8 byte integers.
if (error_code != 0 && error_code != -1) return true;
// Signs must match.
if (error_code == -1 && !std::numeric_limits<T>::is_signed) return true;
// Overflow if positive source, negative result and signed target type.
if (error_code == 0 && tmp < 0 && std::numeric_limits<T>::is_signed)
return true;
// If the target type is less than 8 bytes, check boundaries.
auto trg_min = static_cast<int64>(std::numeric_limits<T>::min());
auto trg_max = static_cast<int64>(std::numeric_limits<T>::max());
if (sizeof(T) < 8 && (tmp < trg_min || tmp > trg_max)) return true;
// Finally, cast to target type.
*value = static_cast<T>(tmp);
return false;
}
bool Properties::from_str(const String_type &bool_str, bool *value) {
assert(value != nullptr);
if (bool_str == "true") {
*value = true;
return false;
}
if (bool_str == "false" || bool_str == "0") {
*value = false;
return false;
}
// We already tested for "0" above. Now, check if invalid number.
uint64 tmp_uint64 = 0;
int64 tmp_int64 = 0;
if (from_str(bool_str, &tmp_uint64) && from_str(bool_str, &tmp_int64))
return true;
// Valid number, signed or unsigned, != 0 => interpret as true.
*value = true;
return false;
}
template <class T>
String_type Properties::to_str(T value) {
Stringstream_type ostream;
ostream << value;
return ostream.str();
}
template <typename Lex_type>
bool Properties::get(const String_type &key, Lex_type *value,
MEM_ROOT *mem_root) const {
assert(value != nullptr);
assert(mem_root != nullptr);
String_type str;
if (get(key, &str)) return true;
value->length = str.length();
value->str =
static_cast<char *>(strmake_root(mem_root, str.c_str(), str.length()));
return false;
}
template <typename Value_type>
bool Properties::get(const String_type &key, Value_type *value) const {
String_type str;
if (get(key, &str)) return true;
if (from_str(str, value)) {
assert(false); /* purecov: inspected */
return true;
}
return false;
}
// Doxygen gets confused by this.
/**
@cond
*/
template bool Properties::get<bool>(const String_type &, bool *) const;
template bool Properties::get<unsigned short>(const String_type &,
unsigned short *) const;
template bool Properties::get<unsigned int>(const String_type &,
unsigned int *) const;
template bool Properties::get<unsigned long>(const String_type &,
unsigned long *) const;
template bool Properties::get<unsigned long long>(const String_type &,
unsigned long long *) const;
template bool Properties::get<MYSQL_LEX_STRING>(const String_type &,
MYSQL_LEX_STRING *,
MEM_ROOT *) const;
template bool Properties::get<MYSQL_LEX_CSTRING>(const String_type &,
MYSQL_LEX_CSTRING *,
MEM_ROOT *) const;
template bool Properties::get<short>(const String_type &, short *) const;
template bool Properties::get<int>(const String_type &, int *) const;
template bool Properties::get<long>(const String_type &, long *) const;
template bool Properties::get<long long>(const String_type &,
long long *) const;
template bool Properties::from_str<short>(const String_type &, short *);
template bool Properties::from_str<unsigned short>(const String_type &,
unsigned short *);
template bool Properties::from_str<int>(const String_type &, int *);
template bool Properties::from_str<unsigned int>(const String_type &,
unsigned int *);
template bool Properties::from_str<long>(const String_type &, long *);
template bool Properties::from_str<unsigned long>(const String_type &,
unsigned long *);
template bool Properties::from_str<long long>(const String_type &, long long *);
template bool Properties::from_str<unsigned long long>(const String_type &,
unsigned long long *);
template String_type Properties::to_str<bool>(bool);
template String_type Properties::to_str<short>(short);
template String_type Properties::to_str<int>(int);
template String_type Properties::to_str<long>(long);
template String_type Properties::to_str<long long>(long long);
template String_type Properties::to_str<unsigned short>(unsigned short);
template String_type Properties::to_str<unsigned int>(unsigned int);
template String_type Properties::to_str<unsigned long>(unsigned long);
template String_type Properties::to_str<unsigned long long>(unsigned long long);
template String_type Properties::to_str<char const *>(char const *);
template String_type Properties::to_str<Field::geometry_type>(
Field::geometry_type);
template String_type Properties::to_str<row_type>(row_type);
template String_type Properties::to_str<dd::Table::enum_row_format>(
dd::Table::enum_row_format);
template String_type Properties::to_str<enum_stats_auto_recalc>(
enum_stats_auto_recalc);
template String_type Properties::to_str<ha_storage_media>(ha_storage_media);
/**
@endcond
*/
} // namespace dd