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
|
#ifndef MB_WC_INCLUDED
#define MB_WC_INCLUDED
/* Copyright (c) 2016, 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.
Without limiting anything contained in the foregoing, this file,
which is part of C Driver for MySQL (Connector/C), is also subject to the
Universal FOSS Exception, version 1.0, a copy of which can be found at
http://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 */
/**
@file mb_wc.h
Definitions of mb_wc (multibyte to wide character, ie., effectively
“parse a UTF-8 character”) functions for UTF-8 (both three- and four-byte).
These are available both as inline functions, as C-style thunks so that they
can fit into MY_CHARSET_HANDLER, and as functors.
The functors exist so that you can specialize a class on them and get them
inlined instead of having to call them through the function pointer in
MY_CHARSET_HANDLER; mb_wc is in itself so cheap (the most common case is
just a single byte load and a predictable compare) that the call overhead
in a tight loop is significant, and these routines tend to take up a lot
of CPU time when sorting. Typically, at the outermost level, you'd simply
compare cs->cset->mb_wc with my_mb_wc_{utf8mb3,utf8mb4}_thunk, and if so,
instantiate your function with the given class. If it doesn't match,
you can use Mb_wc_through_function_pointer, which calls through the
function pointer as usual. (It will cache the function pointer for you,
which is typically faster than looking it up all the time -- the compiler
cannot always figure out on its own that it doesn't change.)
The Mb_wc_* classes should be sent by _value_, not by reference, since
they are never larger than two pointers (and usually simply zero).
*/
#include "m_ctype.h"
#include "my_compiler.h"
#include "my_config.h"
template <bool RANGE_CHECK, bool SUPPORT_MB4>
static int my_mb_wc_utf8_prototype(my_wc_t *pwc, const uchar *s,
const uchar *e);
static int my_mb_wc_utf8mb3(my_wc_t *pwc, const uchar *s, const uchar *e);
static int my_mb_wc_utf8mb4(my_wc_t *pwc, const uchar *s, const uchar *e);
/**
Functor that converts a UTF-8 multibyte sequence (up to three bytes)
to a wide character.
*/
struct Mb_wc_utf8mb3 {
Mb_wc_utf8mb3() = default;
ALWAYS_INLINE
int operator()(my_wc_t *pwc, const uchar *s, const uchar *e) const {
return my_mb_wc_utf8mb3(pwc, s, e);
}
};
/**
Functor that converts a UTF-8 multibyte sequence (up to four bytes)
to a wide character.
*/
struct Mb_wc_utf8mb4 {
Mb_wc_utf8mb4() = default;
ALWAYS_INLINE
int operator()(my_wc_t *pwc, const uchar *s, const uchar *e) const {
return my_mb_wc_utf8mb4(pwc, s, e);
}
};
/**
Functor that uses a function pointer to convert a multibyte sequence
to a wide character.
*/
class Mb_wc_through_function_pointer {
public:
explicit Mb_wc_through_function_pointer(const CHARSET_INFO *cs)
: m_funcptr(cs->cset->mb_wc), m_cs(cs) {}
int operator()(my_wc_t *pwc, const uchar *s, const uchar *e) const {
return m_funcptr(m_cs, pwc, s, e);
}
private:
typedef int (*mbwc_func_t)(const CHARSET_INFO *, my_wc_t *, const uchar *,
const uchar *);
const mbwc_func_t m_funcptr;
const CHARSET_INFO *const m_cs;
};
template <bool RANGE_CHECK, bool SUPPORT_MB4>
static ALWAYS_INLINE int my_mb_wc_utf8_prototype(my_wc_t *pwc, const uchar *s,
const uchar *e) {
if (RANGE_CHECK && s >= e) return MY_CS_TOOSMALL;
uchar c = s[0];
if (c < 0x80) {
*pwc = c;
return 1;
}
if (c < 0xe0) {
if (c < 0xc2) // Resulting code point would be less than 0x80.
return MY_CS_ILSEQ;
if (RANGE_CHECK && s + 2 > e) return MY_CS_TOOSMALL2;
if ((s[1] & 0xc0) != 0x80) // Next byte must be a continuation byte.
return MY_CS_ILSEQ;
*pwc = ((my_wc_t)(c & 0x1f) << 6) + (my_wc_t)(s[1] & 0x3f);
return 2;
}
if (c < 0xf0) {
if (RANGE_CHECK && s + 3 > e) return MY_CS_TOOSMALL3;
// Next two bytes must be continuation bytes.
uint16 two_bytes;
memcpy(&two_bytes, s + 1, sizeof(two_bytes));
if ((two_bytes & 0xc0c0) != 0x8080) // Endianness does not matter.
return MY_CS_ILSEQ;
*pwc = ((my_wc_t)(c & 0x0f) << 12) + ((my_wc_t)(s[1] & 0x3f) << 6) +
(my_wc_t)(s[2] & 0x3f);
if (*pwc < 0x800) return MY_CS_ILSEQ;
/*
According to RFC 3629, UTF-8 should prohibit characters between
U+D800 and U+DFFF, which are reserved for surrogate pairs and do
not directly represent characters.
*/
if (*pwc >= 0xd800 && *pwc <= 0xdfff) return MY_CS_ILSEQ;
return 3;
}
if (SUPPORT_MB4) {
if (RANGE_CHECK && s + 4 > e) /* We need 4 characters */
return MY_CS_TOOSMALL4;
/*
This byte must be of the form 11110xxx, and the next three bytes
must be continuation bytes.
*/
uint32 four_bytes;
memcpy(&four_bytes, s, sizeof(four_bytes));
#ifdef WORDS_BIGENDIAN
if ((four_bytes & 0xf8c0c0c0) != 0xf0808080)
#else
if ((four_bytes & 0xc0c0c0f8) != 0x808080f0)
#endif
return MY_CS_ILSEQ;
*pwc = ((my_wc_t)(c & 0x07) << 18) + ((my_wc_t)(s[1] & 0x3f) << 12) +
((my_wc_t)(s[2] & 0x3f) << 6) + (my_wc_t)(s[3] & 0x3f);
if (*pwc < 0x10000 || *pwc > 0x10ffff) return MY_CS_ILSEQ;
return 4;
}
return MY_CS_ILSEQ;
}
/**
Parses a single UTF-8 character from a byte string.
@param[out] pwc the parsed character, if any
@param s the string to read from
@param e the end of the string; will not read past this
@return the number of bytes read from s, or a value <= 0 for failure
(see m_ctype.h)
*/
static inline int my_mb_wc_utf8mb3(my_wc_t *pwc, const uchar *s,
const uchar *e) {
return my_mb_wc_utf8_prototype</*RANGE_CHECK=*/true, /*SUPPORT_MB4=*/false>(
pwc, s, e);
}
/**
Parses a single UTF-8 character from a byte string. The difference
between this and my_mb_wc_utf8mb3 is that this function also can handle
four-byte UTF-8 characters.
@param[out] pwc the parsed character, if any
@param s the string to read from
@param e the end of the string; will not read past this
@return the number of bytes read from s, or a value <= 0 for failure
(see m_ctype.h)
*/
static ALWAYS_INLINE int my_mb_wc_utf8mb4(my_wc_t *pwc, const uchar *s,
const uchar *e) {
return my_mb_wc_utf8_prototype</*RANGE_CHECK=*/true, /*SUPPORT_MB4=*/true>(
pwc, s, e);
}
// Non-inlined versions of the above. These are used as function pointers
// in MY_CHARSET_HANDLER structs, and you can compare against them to see
// if using the Mb_wc_utf8* functors would be appropriate.
extern "C" int my_mb_wc_utf8mb3_thunk(const CHARSET_INFO *cs, my_wc_t *pwc,
const uchar *s, const uchar *e);
extern "C" int my_mb_wc_utf8mb4_thunk(const CHARSET_INFO *cs, my_wc_t *pwc,
const uchar *s, const uchar *e);
#endif // MB_WC_INCLUDED
|