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
|
#ifndef ITEM_INETFUNC_INCLUDED
#define ITEM_INETFUNC_INCLUDED
/* Copyright (c) 2011, 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 "m_ctype.h"
#include "my_inttypes.h"
#include "sql/item_cmpfunc.h" // Item_bool_func
#include "sql/item_func.h"
#include "sql/item_strfunc.h" // Item_str_func
#include "sql/parse_location.h" // POS
class Item;
class String;
class THD;
/*************************************************************************
Item_func_inet_aton implements INET_ATON() SQL-function.
*************************************************************************/
class Item_func_inet_aton : public Item_int_func {
public:
inline Item_func_inet_aton(const POS &pos, Item *arg)
: Item_int_func(pos, arg) {}
public:
longlong val_int() override;
const char *func_name() const override { return "inet_aton"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
set_nullable(true);
unsigned_flag = true;
return false;
}
};
/*************************************************************************
Item_func_inet_ntoa implements INET_NTOA() SQL-function.
*************************************************************************/
class Item_func_inet_ntoa : public Item_str_func {
public:
inline Item_func_inet_ntoa(const POS &pos, Item *arg)
: Item_str_func(pos, arg) {}
public:
String *val_str(String *str) override;
const char *func_name() const override { return "inet_ntoa"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1, MYSQL_TYPE_LONGLONG)) return true;
set_data_type_string(3 * 8 + 7, default_charset());
set_nullable(true);
return false;
}
};
/*************************************************************************
Item_func_inet_bool_base implements common code for INET6/IP-related
functions returning boolean value.
*************************************************************************/
class Item_func_inet_bool_base : public Item_bool_func {
public:
Item_func_inet_bool_base(const POS &pos, Item *ip_addr)
: Item_bool_func(pos, ip_addr) {
null_value = false;
}
public:
longlong val_int() override;
protected:
virtual bool calc_value(const String *arg) const = 0;
};
/*************************************************************************
Item_func_inet_str_base implements common code for INET6/IP-related
functions returning string value.
*************************************************************************/
class Item_func_inet_str_base : public Item_str_ascii_func {
public:
Item_func_inet_str_base(const POS &pos, Item *arg)
: Item_str_ascii_func(pos, arg) {}
public:
String *val_str_ascii(String *buffer) override;
protected:
virtual bool calc_value(String *arg, String *buffer) = 0;
};
/*************************************************************************
Item_func_inet6_aton implements INET6_ATON() SQL-function.
*************************************************************************/
class Item_func_inet6_aton : public Item_func_inet_str_base {
public:
Item_func_inet6_aton(const POS &pos, Item *ip_addr)
: Item_func_inet_str_base(pos, ip_addr) {}
public:
const char *func_name() const override { return "inet6_aton"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
set_data_type_string(16, &my_charset_bin);
set_nullable(true);
return false;
}
protected:
bool calc_value(String *arg, String *buffer) override;
};
/*************************************************************************
Item_func_inet6_ntoa implements INET6_NTOA() SQL-function.
*************************************************************************/
class Item_func_inet6_ntoa : public Item_func_inet_str_base {
public:
Item_func_inet6_ntoa(const POS &pos, Item *ip_addr)
: Item_func_inet_str_base(pos, ip_addr) {}
public:
const char *func_name() const override { return "inet6_ntoa"; }
bool resolve_type(THD *thd) override {
if (param_type_is_default(thd, 0, 1)) return true;
// max length: IPv6-address -- 16 bytes
// 16 bytes / 2 bytes per group == 8 groups => 7 delimiter
// 4 symbols per group
set_data_type_string(8 * 4 + 7, default_charset());
set_nullable(true);
return false;
}
protected:
bool calc_value(String *arg, String *buffer) override;
};
/*************************************************************************
Item_func_is_ipv4 implements IS_IPV4() SQL-function.
*************************************************************************/
class Item_func_is_ipv4 : public Item_func_inet_bool_base {
public:
Item_func_is_ipv4(const POS &pos, Item *ip_addr)
: Item_func_inet_bool_base(pos, ip_addr) {}
public:
const char *func_name() const override { return "is_ipv4"; }
protected:
bool calc_value(const String *arg) const override;
};
/*************************************************************************
Item_func_is_ipv6 implements IS_IPV6() SQL-function.
*************************************************************************/
class Item_func_is_ipv6 : public Item_func_inet_bool_base {
public:
Item_func_is_ipv6(const POS &pos, Item *ip_addr)
: Item_func_inet_bool_base(pos, ip_addr) {}
public:
const char *func_name() const override { return "is_ipv6"; }
protected:
bool calc_value(const String *arg) const override;
};
/*************************************************************************
Item_func_is_ipv4_compat implements IS_IPV4_COMPAT() SQL-function.
*************************************************************************/
class Item_func_is_ipv4_compat : public Item_func_inet_bool_base {
public:
Item_func_is_ipv4_compat(const POS &pos, Item *ip_addr)
: Item_func_inet_bool_base(pos, ip_addr) {}
public:
const char *func_name() const override { return "is_ipv4_compat"; }
protected:
bool calc_value(const String *arg) const override;
};
/*************************************************************************
Item_func_is_ipv4_mapped implements IS_IPV4_MAPPED() SQL-function.
*************************************************************************/
class Item_func_is_ipv4_mapped : public Item_func_inet_bool_base {
public:
Item_func_is_ipv4_mapped(const POS &pos, Item *ip_addr)
: Item_func_inet_bool_base(pos, ip_addr) {}
public:
const char *func_name() const override { return "is_ipv4_mapped"; }
protected:
bool calc_value(const String *arg) const override;
};
#endif // ITEM_INETFUNC_INCLUDED
|