MySQL 8.0.37
Source Code Documentation
ctype-gbk.cc File Reference
#include <stddef.h>
#include <sys/types.h>
#include <algorithm>
#include "m_ctype.h"
#include "my_compiler.h"
#include "my_inttypes.h"
#include "my_macros.h"

Macros

#define isgbkhead(c)   (0x81 <= (uchar)(c) && (uchar)(c) <= 0xfe)
 
#define isgbktail(c)
 
#define isgbkcode(c, d)   (isgbkhead(c) && isgbktail(d))
 
#define gbkcode(c, d)   ((((uint)(uchar)(c)) << 8) | (uchar)(d))
 
#define gbkhead(e)   ((uchar)(e >> 8))
 
#define gbktail(e)   ((uchar)(e & 0xff))
 

Functions

static uint16 gbksortorder (uint16 i)
 
static int my_strnncoll_gbk_internal (const uchar **a_res, const uchar **b_res, size_t length)
 
static int my_strnncoll_gbk (const CHARSET_INFO *cs, const uchar *a, size_t a_length, const uchar *b, size_t b_length, bool b_is_prefix)
 
static int my_strnncollsp_gbk (const CHARSET_INFO *cs, const uchar *a, size_t a_length, const uchar *b, size_t b_length)
 
static size_t my_strnxfrm_gbk (const CHARSET_INFO *cs, uchar *dst, size_t dstlen, uint nweights, const uchar *src, size_t srclen, uint flags)
 
static uint ismbchar_gbk (const CHARSET_INFO *cs, const char *p, const char *e)
 
static uint mbcharlen_gbk (const CHARSET_INFO *cs, uint c)
 
static int func_gbk_uni_onechar (int code)
 
static int func_uni_gbk_onechar (int code)
 
static int my_wc_mb_gbk (const CHARSET_INFO *cs, my_wc_t wc, uchar *s, uchar *e)
 
static int my_mb_wc_gbk (const CHARSET_INFO *cs, my_wc_t *pwc, const uchar *s, const uchar *e)
 
static size_t my_well_formed_len_gbk (const CHARSET_INFO *cs, const char *b, const char *e, size_t pos, int *error)
 

Variables

static const uchar ctype_gbk [257]
 
static const uchar to_lower_gbk []
 
static const uchar to_upper_gbk []
 
static const MY_UNICASE_CHARACTER cA2 [256]
 
static const MY_UNICASE_CHARACTER cA3 [256]
 
static const MY_UNICASE_CHARACTER cA6 [256]
 
static const MY_UNICASE_CHARACTER cA7 [256]
 
static const MY_UNICASE_CHARACTERmy_caseinfo_pages_gbk [256]
 
static MY_UNICASE_INFO my_caseinfo_gbk = {0xFFFF, my_caseinfo_pages_gbk}
 
static const uchar sort_order_gbk []
 
static const uint16 gbk_order []
 
static const uint16 tab_gbk_uni0 []
 
static const uint16 tab_uni_gbk0 []
 
static const uint16 tab_uni_gbk1 []
 
static const uint16 tab_uni_gbk2 []
 
static const uint16 tab_uni_gbk3 []
 
static const uint16 tab_uni_gbk4 []
 
static const uint16 tab_uni_gbk5 []
 
static const uint16 tab_uni_gbk6 []
 
static const uint16 tab_uni_gbk7 []
 
static const uint16 tab_uni_gbk8 []
 
static MY_COLLATION_HANDLER my_collation_ci_handler
 
static MY_CHARSET_HANDLER my_charset_handler
 
CHARSET_INFO my_charset_gbk_chinese_ci
 
CHARSET_INFO my_charset_gbk_bin
 

Macro Definition Documentation

◆ gbkcode

#define gbkcode (   c,
 
)    ((((uint)(uchar)(c)) << 8) | (uchar)(d))

◆ gbkhead

#define gbkhead (   e)    ((uchar)(e >> 8))

◆ gbktail

#define gbktail (   e)    ((uchar)(e & 0xff))

◆ isgbkcode

#define isgbkcode (   c,
 
)    (isgbkhead(c) && isgbktail(d))

◆ isgbkhead

#define isgbkhead (   c)    (0x81 <= (uchar)(c) && (uchar)(c) <= 0xfe)

◆ isgbktail

#define isgbktail (   c)
Value:
((0x40 <= (uchar)(c) && (uchar)(c) <= 0x7e) || \
(0x80 <= (uchar)(c) && (uchar)(c) <= 0xfe))
unsigned char uchar
Definition: my_inttypes.h:52

Function Documentation

◆ func_gbk_uni_onechar()

static int func_gbk_uni_onechar ( int  code)
static

◆ func_uni_gbk_onechar()

static int func_uni_gbk_onechar ( int  code)
static

◆ gbksortorder()

static uint16 gbksortorder ( uint16  i)
static

◆ ismbchar_gbk()

static uint ismbchar_gbk ( const CHARSET_INFO cs,
const char *  p,
const char *  e 
)
static

◆ mbcharlen_gbk()

static uint mbcharlen_gbk ( const CHARSET_INFO cs,
uint  c 
)
static

◆ my_mb_wc_gbk()

static int my_mb_wc_gbk ( const CHARSET_INFO cs,
my_wc_t pwc,
const uchar s,
const uchar e 
)
static

◆ my_strnncoll_gbk()

static int my_strnncoll_gbk ( const CHARSET_INFO cs,
const uchar a,
size_t  a_length,
const uchar b,
size_t  b_length,
bool  b_is_prefix 
)
static

◆ my_strnncoll_gbk_internal()

static int my_strnncoll_gbk_internal ( const uchar **  a_res,
const uchar **  b_res,
size_t  length 
)
static

◆ my_strnncollsp_gbk()

static int my_strnncollsp_gbk ( const CHARSET_INFO cs,
const uchar a,
size_t  a_length,
const uchar b,
size_t  b_length 
)
static

◆ my_strnxfrm_gbk()

static size_t my_strnxfrm_gbk ( const CHARSET_INFO cs,
uchar dst,
size_t  dstlen,
uint  nweights,
const uchar src,
size_t  srclen,
uint  flags 
)
static

◆ my_wc_mb_gbk()

static int my_wc_mb_gbk ( const CHARSET_INFO cs,
my_wc_t  wc,
uchar s,
uchar e 
)
static

◆ my_well_formed_len_gbk()

static size_t my_well_formed_len_gbk ( const CHARSET_INFO cs,
const char *  b,
const char *  e,
size_t  pos,
int *  error 
)
static

Variable Documentation

◆ cA2

const MY_UNICASE_CHARACTER cA2[256]
static

◆ cA3

const MY_UNICASE_CHARACTER cA3[256]
static

◆ cA6

const MY_UNICASE_CHARACTER cA6[256]
static

◆ cA7

const MY_UNICASE_CHARACTER cA7[256]
static

◆ ctype_gbk

const uchar ctype_gbk[257]
static
Initial value:
= {
0,
32, 32, 32, 32, 32, 32, 32, 32, 32, 40, 40, 40, 40, 40, 32, 32,
32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
72, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16,
132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 16, 16, 16, 16, 16, 16,
16, 129, 129, 129, 129, 129, 129, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 16, 16, 16, 16, 16,
16, 130, 130, 130, 130, 130, 130, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 16, 16, 16, 16, 32,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0,
}

◆ gbk_order

const uint16 gbk_order[]
static

◆ my_caseinfo_gbk

MY_UNICASE_INFO my_caseinfo_gbk = {0xFFFF, my_caseinfo_pages_gbk}
static

◆ my_caseinfo_pages_gbk

const MY_UNICASE_CHARACTER* my_caseinfo_pages_gbk[256]
static

◆ my_charset_gbk_bin

CHARSET_INFO my_charset_gbk_bin

◆ my_charset_gbk_chinese_ci

CHARSET_INFO my_charset_gbk_chinese_ci

◆ my_charset_handler

MY_CHARSET_HANDLER my_charset_handler
static
Initial value:
= {nullptr,
static int my_mb_wc_gbk(const CHARSET_INFO *cs, my_wc_t *pwc, const uchar *s, const uchar *e)
Definition: ctype-gbk.cc:9954
static int my_wc_mb_gbk(const CHARSET_INFO *cs, my_wc_t wc, uchar *s, uchar *e)
Definition: ctype-gbk.cc:9934
static uint mbcharlen_gbk(const CHARSET_INFO *cs, uint c)
Definition: ctype-gbk.cc:3611
static uint ismbchar_gbk(const CHARSET_INFO *cs, const char *p, const char *e)
Definition: ctype-gbk.cc:3606
static size_t my_well_formed_len_gbk(const CHARSET_INFO *cs, const char *b, const char *e, size_t pos, int *error)
Definition: ctype-gbk.cc:9977
size_t my_casedn_str_mb(const CHARSET_INFO *, char *)
Definition: ctype-mb.cc:61
size_t my_charpos_mb3(const CHARSET_INFO *, const char *b, const char *e, size_t pos)
Definition: ctype-mb.cc:331
double my_strntod_8bit(const CHARSET_INFO *, const char *s, size_t l, const char **e, int *err)
Definition: ctype-simple.cc:646
size_t my_snprintf_8bit(const CHARSET_INFO *, char *to, size_t n, const char *fmt,...)
Definition: ctype-simple.cc:281
ulonglong my_strntoull10rnd_8bit(const CHARSET_INFO *cs, const char *str, size_t length, int unsigned_fl, const char **endptr, int *error)
Definition: ctype-simple.cc:1235
ulong my_strntoul_8bit(const CHARSET_INFO *, const char *s, size_t l, int base, const char **e, int *err)
Definition: ctype-simple.cc:397
size_t my_caseup_mb(const CHARSET_INFO *, char *src, size_t srclen, char *dst, size_t dstlen)
Definition: ctype-mb.cc:88
void my_fill_8bit(const CHARSET_INFO *cs, char *to, size_t l, int fill)
Definition: ctype-simple.cc:907
size_t my_casedn_mb(const CHARSET_INFO *, char *src, size_t srclen, char *dst, size_t dstlen)
Definition: ctype-mb.cc:115
size_t my_caseup_str_mb(const CHARSET_INFO *, char *)
Definition: ctype-mb.cc:44
size_t my_longlong10_to_str_8bit(const CHARSET_INFO *, char *to, size_t l, int radix, longlong val)
Definition: ctype-simple.cc:695
size_t my_numchars_mb(const CHARSET_INFO *, const char *b, const char *e)
Definition: ctype-mb.cc:320
int my_mb_ctype_mb(const CHARSET_INFO *, int *, const uchar *, const uchar *)
Definition: ctype-mb.cc:1324
long my_strntol_8bit(const CHARSET_INFO *, const char *s, size_t l, int base, const char **e, int *err)
Definition: ctype-simple.cc:318
size_t my_lengthsp_8bit(const CHARSET_INFO *cs, const char *ptr, size_t length)
Definition: ctype-simple.cc:936
longlong my_strtoll10_8bit(const CHARSET_INFO *cs, const char *nptr, const char **endptr, int *error)
Definition: ctype-simple.cc:1139
size_t my_numcells_8bit(const CHARSET_INFO *, const char *b, const char *e)
Definition: ctype-simple.cc:917
size_t my_long10_to_str_8bit(const CHARSET_INFO *, char *to, size_t l, int radix, long int val)
Definition: ctype-simple.cc:659
ulonglong my_strntoull_8bit(const CHARSET_INFO *, const char *s, size_t l, int base, const char **e, int *err)
Definition: ctype-simple.cc:549
size_t my_scan_8bit(const CHARSET_INFO *cs, const char *b, const char *e, int sq)
Definition: ctype-simple.cc:885
longlong my_strntoll_8bit(const CHARSET_INFO *, const char *s, size_t l, int base, const char **e, int *err)
Definition: ctype-simple.cc:470

◆ my_collation_ci_handler

MY_COLLATION_HANDLER my_collation_ci_handler
static
Initial value:
= {nullptr,
nullptr,
static int my_strnncoll_gbk(const CHARSET_INFO *cs, const uchar *a, size_t a_length, const uchar *b, size_t b_length, bool b_is_prefix)
Definition: ctype-gbk.cc:3546
static int my_strnncollsp_gbk(const CHARSET_INFO *cs, const uchar *a, size_t a_length, const uchar *b, size_t b_length)
Definition: ctype-gbk.cc:3554
static size_t my_strnxfrm_gbk(const CHARSET_INFO *cs, uchar *dst, size_t dstlen, uint nweights, const uchar *src, size_t srclen, uint flags)
Definition: ctype-gbk.cc:3581
size_t my_strnxfrmlen_simple(const CHARSET_INFO *, size_t)
Definition: ctype-simple.cc:64
uint my_instr_mb(const CHARSET_INFO *, const char *b, size_t b_length, const char *s, size_t s_length, my_match_t *match, uint nmatch)
Definition: ctype-mb.cc:362
int my_wildcmp_mb(const CHARSET_INFO *, const char *str, const char *str_end, const char *wildstr, const char *wildend, int escape, int w_one, int w_many)
Definition: ctype-mb.cc:313
void my_hash_sort_simple(const CHARSET_INFO *cs, const uchar *key, size_t len, uint64 *nr1, uint64 *nr2)
Definition: ctype-simple.cc:291
int my_strcasecmp_mb(const CHARSET_INFO *cs, const char *, const char *)
Definition: ctype-mb.cc:197
bool my_like_range_mb(const CHARSET_INFO *cs, const char *ptr, size_t ptr_length, char escape, char w_one, char w_many, size_t res_length, char *min_str, char *max_str, size_t *min_length, size_t *max_length)
Definition: ctype-mb.cc:661
bool my_propagate_simple(const CHARSET_INFO *cs, const uchar *str, size_t len)
Definition: ctype-simple.cc:1484

◆ sort_order_gbk

const uchar sort_order_gbk[]
static

◆ tab_gbk_uni0

const uint16 tab_gbk_uni0[]
static

◆ tab_uni_gbk0

const uint16 tab_uni_gbk0[]
static

◆ tab_uni_gbk1

const uint16 tab_uni_gbk1[]
static

◆ tab_uni_gbk2

const uint16 tab_uni_gbk2[]
static

◆ tab_uni_gbk3

const uint16 tab_uni_gbk3[]
static

◆ tab_uni_gbk4

const uint16 tab_uni_gbk4[]
static
Initial value:
= {
0xA2E5, 0xA2E6, 0xA2E7, 0xA2E8, 0xA2E9, 0xA2EA, 0xA2EB, 0xA2EC, 0xA2ED,
0xA2EE, 0, 0, 0, 0, 0, 0, 0, 0xA95A,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0xA949}

◆ tab_uni_gbk5

const uint16 tab_uni_gbk5[]
static
Initial value:
= {
0xA94A, 0xA94B, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0xA94C, 0xA94D, 0xA94E, 0, 0, 0xA94F, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0xA950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xA951,
0, 0, 0xA952, 0xA953, 0, 0, 0xA954}

◆ tab_uni_gbk6

const uint16 tab_uni_gbk6[]
static

◆ tab_uni_gbk7

const uint16 tab_uni_gbk7[]
static
Initial value:
= {
0xFD9C, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0xFD9D, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0xFD9E, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0xFD9F, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0xFDA0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0xFE40,
0xFE41, 0xFE42, 0xFE43, 0, 0xFE44, 0, 0xFE45, 0xFE46, 0,
0, 0, 0xFE47, 0, 0, 0, 0, 0, 0,
0xFE48, 0xFE49, 0xFE4A, 0, 0xFE4B, 0xFE4C, 0, 0, 0xFE4D,
0xFE4E, 0xFE4F}

◆ tab_uni_gbk8

const uint16 tab_uni_gbk8[]
static

◆ to_lower_gbk

const uchar to_lower_gbk[]
static

◆ to_upper_gbk

const uchar to_upper_gbk[]
static