MySQL 8.3.0
Source Code Documentation
ctype-cp932.cc File Reference
#include <cstddef>
#include <cstdint>
#include "my_compiler.h"
#include "mysql/strings/m_ctype.h"
#include "strings/m_ctype_internals.h"
#include "template_utils.h"

Macros

#define iscp932head(c)    ((0x81 <= (c) && (c) <= 0x9f) || ((0xe0 <= (c)) && (c) <= 0xfc))
 
#define iscp932tail(c)    ((0x40 <= (c) && (c) <= 0x7e) || (0x80 <= (c) && (c) <= 0xfc))
 
#define cp932code(c, d)    ((((unsigned)(uint8_t)(c)) << 8) | (unsigned)(uint8_t)(d))
 

Functions

static unsigned ismbchar_cp932 (const CHARSET_INFO *cs, const char *p, const char *e)
 
static unsigned mbcharlen_cp932 (const CHARSET_INFO *cs, unsigned c)
 
static int my_strnncoll_cp932_internal (const CHARSET_INFO *cs, const uint8_t **a_res, size_t a_length, const uint8_t **b_res, size_t b_length)
 
static int my_strnncoll_cp932 (const CHARSET_INFO *cs, const uint8_t *a, size_t a_length, const uint8_t *b, size_t b_length, bool b_is_prefix)
 
static int my_strnncollsp_cp932 (const CHARSET_INFO *cs, const uint8_t *a, size_t a_length, const uint8_t *b, size_t b_length)
 
static int my_mb_wc_cp932 (const CHARSET_INFO *cs, my_wc_t *pwc, const uint8_t *s, const uint8_t *e)
 Scans a CP932 character from the input string and converts to Unicode code point. More...
 
static int my_wc_mb_cp932 (const CHARSET_INFO *cs, my_wc_t wc, uint8_t *s, uint8_t *e)
 Puts the given Unicode character into a CP932 string. More...
 
static size_t my_numcells_cp932 (const CHARSET_INFO *cs, const char *str, const char *str_end)
 
static size_t my_well_formed_len_cp932 (const CHARSET_INFO *cs, const char *b, const char *e, size_t pos, int *error)
 

Variables

static const uint8_t ctype_cp932 [257]
 
static const uint8_t to_lower_cp932 []
 
static const uint8_t to_upper_cp932 []
 
static const uint8_t sort_order_cp932 []
 
static const MY_UNICASE_CHARACTER c81 [256]
 
static const MY_UNICASE_CHARACTER c82 [256]
 
static const MY_UNICASE_CHARACTER c83 [256]
 
static const MY_UNICASE_CHARACTER c84 [256]
 
static const MY_UNICASE_CHARACTER c87 [256]
 
static const MY_UNICASE_CHARACTER cEE [256]
 
static const MY_UNICASE_CHARACTER cFA [256]
 
static const MY_UNICASE_CHARACTERmy_caseinfo_pages_cp932 [256]
 
MY_UNICASE_INFO my_caseinfo_cp932 = {0xFFFF, my_caseinfo_pages_cp932}
 
static const uint16_t cp932_to_unicode [65536]
 
static const uint16_t unicode_to_cp932 [65536]
 
static MY_COLLATION_HANDLER my_collation_ci_handler
 
static MY_CHARSET_HANDLER my_charset_handler
 
CHARSET_INFO my_charset_cp932_japanese_ci
 
CHARSET_INFO my_charset_cp932_bin
 

Macro Definition Documentation

◆ cp932code

#define cp932code (   c,
 
)     ((((unsigned)(uint8_t)(c)) << 8) | (unsigned)(uint8_t)(d))

◆ iscp932head

#define iscp932head (   c)     ((0x81 <= (c) && (c) <= 0x9f) || ((0xe0 <= (c)) && (c) <= 0xfc))

◆ iscp932tail

#define iscp932tail (   c)     ((0x40 <= (c) && (c) <= 0x7e) || (0x80 <= (c) && (c) <= 0xfc))

Function Documentation

◆ ismbchar_cp932()

static unsigned ismbchar_cp932 ( const CHARSET_INFO cs,
const char *  p,
const char *  e 
)
static

◆ mbcharlen_cp932()

static unsigned mbcharlen_cp932 ( const CHARSET_INFO cs,
unsigned  c 
)
static

◆ my_mb_wc_cp932()

static int my_mb_wc_cp932 ( const CHARSET_INFO cs,
my_wc_t pwc,
const uint8_t *  s,
const uint8_t *  e 
)
static

Scans a CP932 character from the input string and converts to Unicode code point.

Parameters
[in]csCharacter set info, unused
[out]pwcUnicode code point
[in]sBeginning of the input string
[in]eEnd of the input string
Return values
MY_CS_TOOSMALLIf the string was too short to scan a character
1If a 1-byte character was scanned
2If a 2-byte character was scanned
-2If a 2-byte unassigned character was scanned
MY_CS_ILSEQIf a wrong byte sequence was found

◆ my_numcells_cp932()

static size_t my_numcells_cp932 ( const CHARSET_INFO cs,
const char *  str,
const char *  str_end 
)
static

◆ my_strnncoll_cp932()

static int my_strnncoll_cp932 ( const CHARSET_INFO cs,
const uint8_t *  a,
size_t  a_length,
const uint8_t *  b,
size_t  b_length,
bool  b_is_prefix 
)
static

◆ my_strnncoll_cp932_internal()

static int my_strnncoll_cp932_internal ( const CHARSET_INFO cs,
const uint8_t **  a_res,
size_t  a_length,
const uint8_t **  b_res,
size_t  b_length 
)
static

◆ my_strnncollsp_cp932()

static int my_strnncollsp_cp932 ( const CHARSET_INFO cs,
const uint8_t *  a,
size_t  a_length,
const uint8_t *  b,
size_t  b_length 
)
static

◆ my_wc_mb_cp932()

static int my_wc_mb_cp932 ( const CHARSET_INFO cs,
my_wc_t  wc,
uint8_t *  s,
uint8_t *  e 
)
static

Puts the given Unicode character into a CP932 string.

Parameters
[in]csCharacter set info, unused
[in]wcUnicode code point
[in]sBeginning of the out string
[in]eEnd of the out string
Return values
MY_CS_TOOSMALLIf the string was too short to put a character
1If a 1-byte character was put
2If a 2-byte character was put
MY_CS_ILUNIIf the Unicode character does not exist in CP932

◆ my_well_formed_len_cp932()

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

Variable Documentation

◆ c81

const MY_UNICASE_CHARACTER c81[256]
static

◆ c82

const MY_UNICASE_CHARACTER c82[256]
static

◆ c83

const MY_UNICASE_CHARACTER c83[256]
static

◆ c84

const MY_UNICASE_CHARACTER c84[256]
static

◆ c87

const MY_UNICASE_CHARACTER c87[256]
static

◆ cEE

const MY_UNICASE_CHARACTER cEE[256]
static

◆ cFA

const MY_UNICASE_CHARACTER cFA[256]
static

◆ cp932_to_unicode

const uint16_t cp932_to_unicode[65536]
static

◆ ctype_cp932

const uint8_t ctype_cp932[257]
static
Initial value:
= {
0,
0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
0040, 0050, 0050, 0050, 0050, 0050, 0040, 0040,
0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
0110, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0204, 0204, 0204, 0204, 0204, 0204, 0204, 0204,
0204, 0204, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0201, 0201, 0201, 0201, 0201, 0201, 0001,
0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001,
0001, 0001, 0001, 0001, 0001, 0001, 0001, 0001,
0001, 0001, 0001, 0020, 0020, 0020, 0020, 0020,
0020, 0202, 0202, 0202, 0202, 0202, 0202, 0002,
0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
0002, 0002, 0002, 0002, 0002, 0002, 0002, 0002,
0002, 0002, 0002, 0020, 0020, 0020, 0020, 0040,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020, 0020,
0020, 0020, 0020, 0020, 0020, 0000, 0000, 0000}

◆ my_caseinfo_cp932

MY_UNICASE_INFO my_caseinfo_cp932 = {0xFFFF, my_caseinfo_pages_cp932}

◆ my_caseinfo_pages_cp932

const MY_UNICASE_CHARACTER* my_caseinfo_pages_cp932[256]
static

◆ my_charset_cp932_bin

CHARSET_INFO my_charset_cp932_bin

◆ my_charset_cp932_japanese_ci

CHARSET_INFO my_charset_cp932_japanese_ci

◆ my_charset_handler

MY_CHARSET_HANDLER my_charset_handler
static
Initial value:
= {nullptr,
static size_t my_well_formed_len_cp932(const CHARSET_INFO *cs, const char *b, const char *e, size_t pos, int *error)
Definition: ctype-cp932.cc:18743
static int my_wc_mb_cp932(const CHARSET_INFO *cs, my_wc_t wc, uint8_t *s, uint8_t *e)
Puts the given Unicode character into a CP932 string.
Definition: ctype-cp932.cc:18685
static size_t my_numcells_cp932(const CHARSET_INFO *cs, const char *str, const char *str_end)
Definition: ctype-cp932.cc:18717
static unsigned mbcharlen_cp932(const CHARSET_INFO *cs, unsigned c)
Definition: ctype-cp932.cc:258
static int my_mb_wc_cp932(const CHARSET_INFO *cs, my_wc_t *pwc, const uint8_t *s, const uint8_t *e)
Scans a CP932 character from the input string and converts to Unicode code point.
Definition: ctype-cp932.cc:18646
static unsigned ismbchar_cp932(const CHARSET_INFO *cs, const char *p, const char *e)
Definition: ctype-cp932.cc:251
int my_mb_ctype_mb(const CHARSET_INFO *cs, int *ctype, const uint8_t *s, const uint8_t *e)
Definition: ctype-mb.cc:1321
size_t my_numchars_mb(const CHARSET_INFO *cs, const char *pos, const char *end)
Definition: ctype-mb.cc:314
size_t my_casedn_mb(const CHARSET_INFO *cs, char *src, size_t srclen, char *dst, size_t dstlen)
Definition: ctype-mb.cc:111
size_t my_casedn_str_mb(const CHARSET_INFO *cs, char *str)
Definition: ctype-mb.cc:57
size_t my_caseup_mb(const CHARSET_INFO *cs, char *src, size_t srclen, char *dst, size_t dstlen)
Definition: ctype-mb.cc:84
size_t my_charpos_mb3(const CHARSET_INFO *cs, const char *pos, const char *end, size_t length)
Definition: ctype-mb.cc:325
size_t my_caseup_str_mb(const CHARSET_INFO *cs, char *str)
Definition: ctype-mb.cc:40
long long my_strtoll10_8bit(const CHARSET_INFO *cs, const char *nptr, const char **endptr, int *error)
Definition: ctype-simple.cc:1124
unsigned long long my_strntoull10rnd_8bit(const CHARSET_INFO *cs, const char *str, size_t length, int unsigned_flag, const char **endptr, int *error)
Definition: ctype-simple.cc:1220
double my_strntod_8bit(const CHARSET_INFO *cs, const char *str, size_t length, const char **end, int *err)
Definition: ctype-simple.cc:635
long long my_strntoll_8bit(const CHARSET_INFO *cs, const char *nptr, size_t l, int base, const char **endptr, int *err)
Definition: ctype-simple.cc:460
size_t my_longlong10_to_str_8bit(const CHARSET_INFO *cs, char *dst, size_t len, int radix, long long val)
Definition: ctype-simple.cc:685
size_t my_long10_to_str_8bit(const CHARSET_INFO *cs, char *dst, size_t len, int radix, long int val)
Definition: ctype-simple.cc:649
size_t my_lengthsp_8bit(const CHARSET_INFO *cs, const char *ptr, size_t length)
Definition: ctype-simple.cc:926
unsigned long long my_strntoull_8bit(const CHARSET_INFO *cs, const char *nptr, size_t l, int base, const char **endptr, int *err)
Definition: ctype-simple.cc:538
size_t my_snprintf_8bit(const CHARSET_INFO *cs, char *to, size_t n, const char *fmt,...)
Definition: ctype-simple.cc:277
void my_fill_8bit(const CHARSET_INFO *cs, char *s, size_t l, int fill)
Definition: ctype-simple.cc:897
unsigned long my_strntoul_8bit(const CHARSET_INFO *cs, const char *nptr, size_t l, int base, const char **endptr, int *err)
Definition: ctype-simple.cc:388
long my_strntol_8bit(const CHARSET_INFO *cs, const char *nptr, size_t l, int base, const char **endptr, int *err)
Definition: ctype-simple.cc:310
size_t my_scan_8bit(const CHARSET_INFO *cs, const char *str, const char *end, int sq)
Definition: ctype-simple.cc:875

◆ my_collation_ci_handler

MY_COLLATION_HANDLER my_collation_ci_handler
static
Initial value:
= {
nullptr,
nullptr,
static int my_strnncollsp_cp932(const CHARSET_INFO *cs, const uint8_t *a, size_t a_length, const uint8_t *b, size_t b_length)
Definition: ctype-cp932.cc:2199
static int my_strnncoll_cp932(const CHARSET_INFO *cs, const uint8_t *a, size_t a_length, const uint8_t *b, size_t b_length, bool b_is_prefix)
Definition: ctype-cp932.cc:2191
unsigned my_instr_mb(const CHARSET_INFO *cs, const char *b, size_t b_length, const char *s, size_t s_length, my_match_t *match, unsigned nmatch)
Definition: ctype-mb.cc:356
int my_wildcmp_mb(const CHARSET_INFO *cs, 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:307
size_t my_strnxfrm_mb(const CHARSET_INFO *cs, uint8_t *dst, size_t dstlen, unsigned nweights, const uint8_t *src, size_t srclen, unsigned flags)
Definition: ctype-mb.cc:495
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:656
bool my_propagate_simple(const CHARSET_INFO *cs, const uint8_t *str, size_t length)
Definition: ctype-simple.cc:1473
int my_strcasecmp_8bit(const CHARSET_INFO *cs, const char *s, const char *t)
Definition: ctype-simple.cc:240
size_t my_strnxfrmlen_simple(const CHARSET_INFO *cs, size_t len)
Definition: ctype-simple.cc:61
void my_hash_sort_simple(const CHARSET_INFO *cs, const uint8_t *key, size_t len, uint64_t *nr1, uint64_t *nr2)
Definition: ctype-simple.cc:287

◆ sort_order_cp932

const uint8_t sort_order_cp932[]
static

◆ to_lower_cp932

const uint8_t to_lower_cp932[]
static

◆ to_upper_cp932

const uint8_t to_upper_cp932[]
static

◆ unicode_to_cp932

const uint16_t unicode_to_cp932[65536]
static