m_ctype.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:6k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18.   A better inplementation of the UNIX ctype(3) library.
  19.   Notes:   global.h should be included before ctype.h
  20. */
  21. #ifndef _m_ctype_h
  22. #define _m_ctype_h
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #define CHARSET_DIR "charsets/"
  27. typedef struct charset_info_st
  28. {
  29.     uint      number;
  30.     const char *name;
  31.     uchar    *ctype;
  32.     uchar    *to_lower;
  33.     uchar    *to_upper;
  34.     uchar    *sort_order;
  35.     uint      strxfrm_multiply;
  36.     int     (*strcoll)(const uchar *, const uchar *);
  37.     int     (*strxfrm)(uchar *, const uchar *, int);
  38.     int     (*strnncoll)(const uchar *, int, const uchar *, int);
  39.     int     (*strnxfrm)(uchar *, const uchar *, int, int);
  40.     my_bool (*like_range)(const char *, uint, pchar, uint,
  41.                           char *, char *, uint *, uint *);
  42.     uint      mbmaxlen;
  43.     int     (*ismbchar)(const char *, const char *);
  44.     my_bool (*ismbhead)(uint);
  45.     int     (*mbcharlen)(uint);
  46. } CHARSET_INFO;
  47. /* strings/ctype.c */
  48. extern CHARSET_INFO *default_charset_info;
  49. extern CHARSET_INFO *find_compiled_charset(uint cs_number);
  50. extern CHARSET_INFO *find_compiled_charset_by_name(const char *name);
  51. extern CHARSET_INFO  compiled_charsets[];
  52. #define MY_CHARSET_UNDEFINED 0
  53. #define MY_CHARSET_CURRENT (default_charset_info->number)
  54. #ifdef __WIN__
  55. #include <ctype.h>
  56. #endif
  57. /* Don't include std ctype.h when this is included */
  58. #define _CTYPE_H
  59. #define _CTYPE_INCLUDED
  60. #define __CTYPE_INCLUDED
  61. #define _CTYPE_USING   /* Don't put names in global namespace. */
  62. #define _U 01 /* Upper case */
  63. #define _L 02 /* Lower case */
  64. #define _N 04 /* Numeral (digit) */
  65. #define _S 010 /* Spacing character */
  66. #define _P 020 /* Punctuation */
  67. #define _C 040 /* Control character */
  68. #define _B 0100 /* Blank */
  69. #define _X 0200 /* heXadecimal digit */
  70. #define my_ctype (default_charset_info->ctype)
  71. #define my_to_upper (default_charset_info->to_upper)
  72. #define my_to_lower (default_charset_info->to_lower)
  73. #define my_sort_order (default_charset_info->sort_order)
  74. #ifndef __WIN__
  75. #define _toupper(c) (char) my_to_upper[(uchar) (c)]
  76. #define _tolower(c) (char) my_to_lower[(uchar) (c)]
  77. #define toupper(c) (char) my_to_upper[(uchar) (c)]
  78. #define tolower(c) (char) my_to_lower[(uchar) (c)]
  79. #define isalpha(c) ((my_ctype+1)[(uchar) (c)] & (_U | _L))
  80. #define isupper(c) ((my_ctype+1)[(uchar) (c)] & _U)
  81. #define islower(c) ((my_ctype+1)[(uchar) (c)] & _L)
  82. #define isdigit(c) ((my_ctype+1)[(uchar) (c)] & _N)
  83. #define isxdigit(c) ((my_ctype+1)[(uchar) (c)] & _X)
  84. #define isalnum(c) ((my_ctype+1)[(uchar) (c)] & (_U | _L | _N))
  85. #define isspace(c) ((my_ctype+1)[(uchar) (c)] & _S)
  86. #define ispunct(c) ((my_ctype+1)[(uchar) (c)] & _P)
  87. #define isprint(c) ((my_ctype+1)[(uchar) (c)] & (_P | _U | _L | _N | _B))
  88. #define isgraph(c) ((my_ctype+1)[(uchar) (c)] & (_P | _U | _L | _N))
  89. #define iscntrl(c) ((my_ctype+1)[(uchar) (c)] & _C)
  90. #define isascii(c) (!((c) & ~0177))
  91. #define toascii(c) ((c) & 0177)
  92. #ifdef ctype
  93. #undef ctype
  94. #endif /* ctype */
  95. #endif /* __WIN__ */
  96. #define my_isalpha(s, c)  (((s)->ctype+1)[(uchar) (c)] & (_U | _L))
  97. #define my_isupper(s, c)  (((s)->ctype+1)[(uchar) (c)] & _U)
  98. #define my_islower(s, c)  (((s)->ctype+1)[(uchar) (c)] & _L)
  99. #define my_isdigit(s, c)  (((s)->ctype+1)[(uchar) (c)] & _N)
  100. #define my_isxdigit(s, c) (((s)->ctype+1)[(uchar) (c)] & _X)
  101. #define my_isalnum(s, c)  (((s)->ctype+1)[(uchar) (c)] & (_U | _L | _N))
  102. #define my_isspace(s, c)  (((s)->ctype+1)[(uchar) (c)] & _S)
  103. #define my_ispunct(s, c)  (((s)->ctype+1)[(uchar) (c)] & _P)
  104. #define my_isprint(s, c)  (((s)->ctype+1)[(uchar) (c)] & (_P | _U | _L | _N | _B))
  105. #define my_isgraph(s, c)  (((s)->ctype+1)[(uchar) (c)] & (_P | _U | _L | _N))
  106. #define my_iscntrl(s, c)  (((s)->ctype+1)[(uchar) (c)] & _C)
  107. #define use_strcoll(s)                ((s)->strcoll != NULL)
  108. #define MY_STRXFRM_MULTIPLY           (default_charset_info->strxfrm_multiply)
  109. #define my_strnxfrm(s, a, b, c, d)    ((s)->strnxfrm((a), (b), (c), (d)))
  110. #define my_strnncoll(s, a, b, c, d)   ((s)->strnncoll((a), (b), (c), (d)))
  111. #define my_strxfrm(s, a, b, c, d)     ((s)->strnxfrm((a), (b), (c)))
  112. #define my_strcoll(s, a, b)           ((s)->strcoll((a), (b)))
  113. #define my_like_range(s, a, b, c, d, e, f, g, h) 
  114.                 ((s)->like_range((a), (b), (c), (d), (e), (f), (g), (h)))
  115. #define use_mb(s)                     ((s)->ismbchar != NULL)
  116. #define MBMAXLEN                      (default_charset_info->mbmaxlen)
  117. #define my_ismbchar(s, a, b)          ((s)->ismbchar((a), (b)))
  118. #define my_ismbhead(s, a)             ((s)->ismbhead((a)))
  119. #define my_mbcharlen(s, a)            ((s)->mbcharlen((a)))
  120. /* Some macros that should be cleaned up a little */
  121. #define isvar(c) (isalnum(c) || (c) == '_')
  122. #define isvar_start(c) (isalpha(c) || (c) == '_')
  123. #define tocntrl(c) ((c) & 31)
  124. #define toprint(c) ((c) | 64)
  125. /* XXX: still need to take care of this one */
  126. #ifdef MY_CHARSET_TIS620
  127. #error The TIS620 charset is broken at the moment.  Tell tim to fix it.
  128. #define USE_TIS620
  129. #include "t_ctype.h"
  130. #endif
  131. #ifdef __cplusplus
  132. }
  133. #endif
  134. #endif /* _m_ctype_h */