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
|
#ifndef SQL_ITEM_REGEXP_FUNC_H_
#define SQL_ITEM_REGEXP_FUNC_H_
/* Copyright (c) 2017, 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 */
/**
@file item_regexp_func.h
The function classes for regular expression functions. They have a common
base class Item_func_regexp, which is also the prefix of their class
names. After the %Item_func prefix comes the name of the SQL function,
e.g. Item_func_regexp_instr represents the SQL function `REGEXP_INSTR`.
Type resolution
===============
The type and name resolution procedure is hooked into by the
Item_func_regexp class, which implement both
Item_result_field::resolve_type() and Item::fix_fields().
Collations
==========
The regular expression library doesn't deal with collations at all, but we
need them because the 'winning' collation of the pattern and the subject
strings dictates case-sensitivity. The winning collation is defined by
coercion rules, and we don't delve into that here. See
Item_func::agg_arg_charsets_for_comparison(). The call to this function is
done in resolve_type() as this appears to be an unwritten convention.
Implementation
==============
All communication with the regular expression library is done through a
Regexp_facade object, instantiated in Item_func_regexp::fix_fields().
@todo We now clean up ICU heap memory in Item_func_regexp::cleanup. Should
it be done more rarely? On session close?
*/
#include <assert.h>
#include <unicode/uregex.h>
#include <optional>
#include <string>
// assert
#include "my_inttypes.h" // MY_INT32_NUM_DECIMAL_DIGITS
#include "sql/item_cmpfunc.h"
#include "sql/item_strfunc.h"
#include "sql/mysqld.h" // make_unique_destroy_only
#include "sql/regexp/regexp_facade.h"
#include "sql_string.h" // String
// GCC bug 80635.
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
/**
Base class for all regular expression function classes. Is responsible for
creating the Regexp_facade object.
*/
class Item_func_regexp : public Item_func {
public:
Item_func_regexp(const POS &pos, PT_item_list *opt_list)
: Item_func(pos, opt_list) {}
/**
Resolves the collation to use for comparison. The type resolution is done
in the subclass constructors.
For all regular expression functions, i.e. REGEXP_INSTR, REGEXP_LIKE,
REGEXP_REPLACE and REGEXP_SUBSTR, it goes that the first two arguments
have to agree on a common collation. This collation is used to control
case-sensitivity.
@see fix_fields()
*/
bool resolve_type(THD *) override;
/// Decides on the mode for matching, case sensitivity etc.
bool fix_fields(THD *thd, Item **) override;
/// The expression for the subject string.
Item *subject() const { return args[0]; }
/// The expression for the pattern string.
Item *pattern() const { return args[1]; }
/// The value of the `position` argument, or its default if absent.
std::optional<int> position() const {
int the_index = pos_arg_pos();
if (the_index != -1 && arg_count >= static_cast<uint>(the_index) + 1) {
int value = args[the_index]->val_int();
/*
Note: Item::null_value() can't be trusted alone here; there are cases
(for the DATE data type in particular) where we can have it set
without Item::m_nullable being set! This really should be cleaned up,
but until that happens, we need to have a more conservative check.
*/
if (args[the_index]->is_nullable() && args[the_index]->null_value)
return {};
else
return value;
}
return 1;
}
/// The value of the `occurrence` argument, or its default if absent.
std::optional<int> occurrence() const {
int the_index = occ_arg_pos();
if (the_index != -1 && arg_count >= static_cast<uint>(the_index) + 1) {
int value = args[the_index]->val_int();
/*
Note: Item::null_value() can't be trusted alone here; there are cases
(for the DATE data type in particular) where we can have it set
without Item::maybe_null being set! This really should be cleaned up,
but until that happens, we need to have a more conservative check.
*/
if (args[the_index]->is_nullable() && args[the_index]->null_value)
return {};
else
return value;
}
return 0;
}
/// The value of the `match_parameter` argument, or an empty string if absent.
std::optional<std::string> match_parameter() const {
int the_index = match_arg_pos();
if (the_index != -1 && arg_count >= static_cast<uint>(the_index) + 1) {
StringBuffer<5> buf; // Longer match_parameter doesn't make sense.
String *s = args[the_index]->val_str(&buf);
if (s != nullptr)
return to_string(*s);
else
return {};
}
return std::string{};
}
void cleanup() override;
protected:
String *convert_int_to_str(String *str) {
assert(fixed == 1);
longlong nr = val_int();
if (null_value) return nullptr;
str->set_int(nr, unsigned_flag, collation.collation);
return str;
}
my_decimal *convert_int_to_decimal(my_decimal *value) {
assert(fixed == 1);
longlong nr = val_int();
if (null_value) return nullptr; /* purecov: inspected */
int2my_decimal(E_DEC_FATAL_ERROR, nr, unsigned_flag, value);
return value;
}
double convert_int_to_real() {
assert(fixed == 1);
return val_int();
}
double convert_str_to_real() {
assert(fixed == 1);
int err_not_used;
const char *end_not_used;
String *res = val_str(&str_value);
if (res == nullptr) return 0.0;
return my_strntod(res->charset(), res->ptr(), res->length(), &end_not_used,
&err_not_used);
}
longlong convert_str_to_int() {
assert(fixed == 1);
int err;
String *res = val_str(&str_value);
if (res == nullptr) return 0;
return my_strntoll(res->charset(), res->ptr(), res->length(), 10, nullptr,
&err);
}
/**
The position in the argument list of 'position'. -1 means that the default
should be used.
*/
virtual int pos_arg_pos() const = 0;
/**
The position in the argument list of 'occurrence'. -1 means that the default
should be used.
*/
virtual int occ_arg_pos() const = 0;
/// The position in the argument list of match_parameter.
virtual int match_arg_pos() const = 0;
bool set_pattern();
unique_ptr_destroy_only<regexp::Regexp_facade> m_facade;
};
class Item_func_regexp_instr : public Item_func_regexp {
public:
Item_func_regexp_instr(const POS &pos, PT_item_list *opt_list)
: Item_func_regexp(pos, opt_list) {
set_data_type_longlong();
}
Item_result result_type() const override { return INT_RESULT; }
bool fix_fields(THD *thd, Item **arguments) override;
String *val_str(String *str) override { return convert_int_to_str(str); }
double val_real() override { return convert_int_to_real(); }
longlong val_int() override;
const char *func_name() const override { return "regexp_instr"; }
/// The value of the `return_option` argument, or its default if absent.
std::optional<int> return_option() const {
int the_index = retopt_arg_pos();
if (the_index != -1 && arg_count >= static_cast<uint>(the_index) + 1) {
int value = args[the_index]->val_int();
if (args[the_index]->null_value)
return std::optional<int>();
else
return value;
}
return 0;
}
/**
@{
Copy-pasted from Item_int_func. Usually, an SQL function returning INTEGER
just inherits Item_int_func and thus the implementation, but these classes
need to have Item_func_regexp as base class because of fix_fields().
*/
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_int(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *t) override { return get_time_from_int(t); }
/// @}
protected:
int pos_arg_pos() const override { return 2; }
int occ_arg_pos() const override { return 3; }
/// The position in the argument list of `occurrence`.
int retopt_arg_pos() const { return 4; }
int match_arg_pos() const override { return 5; }
private:
bool resolve_type(THD *) final;
};
class Item_func_regexp_like : public Item_func_regexp {
public:
Item_func_regexp_like(const POS &pos, PT_item_list *opt_list)
: Item_func_regexp(pos, opt_list) {
set_data_type_bool();
}
Item_result result_type() const override { return INT_RESULT; }
String *val_str(String *str) override { return convert_int_to_str(str); }
double val_real() override { return convert_int_to_real(); }
longlong val_int() override;
const char *func_name() const override { return "regexp_like"; }
bool is_bool_func() const override { return true; }
/**
@{
Copy-pasted from Item_int_func. Usually, an SQL function returning INTEGER
just inherits Item_int_func and thus the implementation, but these classes
need to have Item_func_regexp as base class because of fix_fields().
*/
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_int(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *t) override { return get_time_from_int(t); }
/// @}
protected:
int pos_arg_pos() const override { return -1; }
int occ_arg_pos() const override { return -1; }
int match_arg_pos() const override { return 2; }
private:
bool resolve_type(THD *) final;
};
class Item_func_regexp_replace : public Item_func_regexp {
public:
Item_func_regexp_replace(const POS &pos, PT_item_list *item_list)
: Item_func_regexp(pos, item_list) {}
Item_result result_type() const override { return STRING_RESULT; }
bool resolve_type(THD *) final;
Item *replacement() { return args[2]; }
longlong val_int() override { return convert_str_to_int(); }
String *val_str(String *result) override;
double val_real() override { return convert_str_to_real(); }
const char *func_name() const override { return "regexp_replace"; }
/**
@{
Copy-pasted from Item_str_func. Usually, an SQL function returning INTEGER
just inherits Item_str_func and thus the implementation, but these classes
need to have Item_func_regexp as base class because of fix_fields().
*/
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_string(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *t) override { return get_time_from_string(t); }
/// @}
protected:
int pos_arg_pos() const override { return 3; }
int occ_arg_pos() const override { return 4; }
int match_arg_pos() const override { return 5; }
};
class Item_func_regexp_substr : public Item_func_regexp {
public:
Item_func_regexp_substr(const POS &pos, PT_item_list *item_list)
: Item_func_regexp(pos, item_list) {}
Item_result result_type() const override { return STRING_RESULT; }
bool resolve_type(THD *) final;
longlong val_int() override { return convert_str_to_int(); }
String *val_str(String *result) override;
double val_real() override { return convert_str_to_real(); }
const char *func_name() const override { return "regexp_substr"; }
/**
@{
Copy-pasted from Item_str_func. Usually, an SQL function returning INTEGER
just inherits Item_str_func and thus the implementation, but these classes
need to have Item_func_regexp as base class because of fix_fields().
*/
bool get_date(MYSQL_TIME *ltime, my_time_flags_t fuzzydate) override {
return get_date_from_string(ltime, fuzzydate);
}
bool get_time(MYSQL_TIME *t) override { return get_time_from_string(t); }
/// @}
protected:
int pos_arg_pos() const override { return 2; }
int occ_arg_pos() const override { return 3; }
int match_arg_pos() const override { return 4; }
};
class Item_func_icu_version final : public Item_static_string_func {
using super = Item_static_string_func;
public:
explicit Item_func_icu_version(const POS &pos);
bool itemize(Parse_context *pc, Item **res) override;
};
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic pop
#endif
#endif // SQL_ITEM_REGEXP_FUNC_H_
|