m_string.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:8k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* There may be prolems include all of theese. Try to test in
  14.    configure with ones are needed? */
  15. /*  This is needed for the definitions of strchr... on solaris */
  16. #ifndef _m_string_h
  17. #define _m_string_h
  18. #ifndef __USE_GNU
  19. #define __USE_GNU /* We want to use stpcpy */
  20. #endif
  21. #if defined(HAVE_STRINGS_H)
  22. #include <strings.h>
  23. #endif
  24. #if defined(HAVE_STRING_H)
  25. #include <string.h>
  26. #endif
  27. /* Correct some things for UNIXWARE7 */
  28. #ifdef HAVE_UNIXWARE7_THREADS
  29. #undef HAVE_STRINGS_H
  30. #undef HAVE_MEMORY_H
  31. #define HAVE_MEMCPY
  32. #ifndef HAVE_MEMMOVE
  33. #define HAVE_MEMMOVE
  34. #endif
  35. #undef HAVE_BCMP
  36. #undef bcopy
  37. #undef bcmp
  38. #undef bzero
  39. #endif /* HAVE_UNIXWARE7_THREADS */
  40. #ifdef _AIX
  41. #undef HAVE_BCMP
  42. #endif
  43. /*  This is needed for the definitions of bzero... on solaris */
  44. #if defined(HAVE_STRINGS_H) && !defined(HAVE_mit_thread)
  45. #include <strings.h>
  46. #endif
  47. /*  This is needed for the definitions of memcpy... on solaris */
  48. #if defined(HAVE_MEMORY_H) && !defined(__cplusplus)
  49. #include <memory.h>
  50. #endif
  51. #if !defined(HAVE_MEMCPY) && !defined(HAVE_MEMMOVE)
  52. # define memcpy(d, s, n) bcopy ((s), (d), (n))
  53. # define memset(A,C,B) bfill((A),(B),(C))
  54. # define memmove(d, s, n) bmove ((d), (s), (n))
  55. #elif defined(HAVE_MEMMOVE)
  56. # define bmove(d, s, n) memmove((d), (s), (n))
  57. #else
  58. # define memmove(d, s, n) bmove((d), (s), (n)) /* our bmove */
  59. #endif
  60. /* Unixware 7 */
  61. #if !defined(HAVE_BFILL)
  62. # define bfill(A,B,C)           memset((A),(C),(B))
  63. # define bmove_allign(A,B,C)    memcpy((A),(B),(C))
  64. #endif
  65. #if !defined(HAVE_BCMP)
  66. # define bcopy(s, d, n) memcpy((d), (s), (n))
  67. # define bcmp(A,B,C) memcmp((A),(B),(C))
  68. # define bzero(A,B) memset((A),0,(B))
  69. # define bmove_allign(A,B,C)    memcpy((A),(B),(C))
  70. #endif
  71. #if defined(__cplusplus) && !defined(OS2)
  72. extern "C" {
  73. #endif
  74. #if defined(HAVE_STPCPY) && !defined(HAVE_mit_thread)
  75. #define strmov(A,B) stpcpy((A),(B))
  76. #ifndef stpcpy
  77. extern char *stpcpy(char *, const char *); /* For AIX with gcc 2.95.3 */
  78. #endif
  79. #endif
  80. extern char NEAR _dig_vec[]; /* Declared in int2str() */
  81. #ifdef BAD_STRING_COMPILER
  82. #define strmov(A,B)  (memccpy(A,B,0,INT_MAX)-1)
  83. #else
  84. #define strmov_overlapp(A,B) strmov(A,B)
  85. #define strmake_overlapp(A,B,C) strmake(A,B,C)
  86. #endif
  87. #ifdef BAD_MEMCPY /* Problem with gcc on Alpha */
  88. #define memcpy_fixed(A,B,C) bmove((A),(B),(C))
  89. #else
  90. #define memcpy_fixed(A,B,C) memcpy((A),(B),(C))
  91. #endif
  92. #ifdef MSDOS
  93. #undef bmove_allign
  94. #define bmove512(A,B,C) bmove_allign(A,B,C)
  95. #define my_itoa(A,B,C) itoa(A,B,C)
  96. #define my_ltoa(A,B,C) ltoa(A,B,C)
  97. extern void bmove_allign(gptr dst,const gptr src,uint len);
  98. #endif
  99. #if (!defined(USE_BMOVE512) || defined(HAVE_purify)) && !defined(bmove512)
  100. #define bmove512(A,B,C) memcpy(A,B,C)
  101. #endif
  102. #ifdef HAVE_purify
  103. #include <assert.h>
  104. #define memcpy_overlap(A,B,C) 
  105. DBUG_ASSERT((A) == (B) || ((A)+(C)) <= (B) || ((B)+(C)) <= (A)); 
  106. bmove((byte*) key,(byte*) from,(size_t) length);
  107. #else
  108. #define memcpy_overlap(A,B,C) memcpy((A), (B), (C))
  109. #endif /* HAVE_purify */
  110. /* Prototypes for string functions */
  111. #if !defined(bfill) && !defined(HAVE_BFILL)
  112. extern void bfill(gptr dst,uint len,pchar fill);
  113. #endif
  114. #if !defined(bzero) && !defined(HAVE_BZERO)
  115. extern void bzero(gptr dst,uint len);
  116. #endif
  117. #if !defined(bcmp) && !defined(HAVE_BCMP)
  118. extern int bcmp(const char *s1,const char *s2,uint len);
  119. #endif
  120. #ifdef HAVE_purify
  121. extern int my_bcmp(const char *s1,const char *s2,uint len);
  122. #undef bcmp
  123. #define bcmp(A,B,C) my_bcmp((A),(B),(C))
  124. #endif
  125. #ifndef bmove512
  126. extern void bmove512(gptr dst,const gptr src,uint len);
  127. #endif
  128. #if !defined(HAVE_BMOVE) && !defined(bmove)
  129. extern void bmove(char *dst, const char *src,uint len);
  130. #endif
  131. extern void bmove_upp(char *dst,const char *src,uint len);
  132. extern void bchange(char *dst,uint old_len,const char *src,
  133.      uint new_len,uint tot_len);
  134. extern void strappend(char *s,uint len,pchar fill);
  135. extern char *strend(const char *s);
  136. extern  char *strcend(const char *, pchar);
  137. extern char *strfield(char *src,int fields,int chars,int blanks,
  138.    int tabch);
  139. extern char *strfill(my_string s,uint len,pchar fill);
  140. extern uint strinstr(const char *str,const char *search);
  141. extern  uint r_strinstr(reg1 my_string str,int from, reg4 my_string search);
  142. extern char *strkey(char *dst,char *head,char *tail,char *flags);
  143. extern char *strmake(char *dst,const char *src,uint length);
  144. #ifndef strmake_overlapp
  145. extern char *strmake_overlapp(char *dst,const char *src, uint length);
  146. #endif
  147. #ifndef strmov
  148. extern char *strmov(char *dst,const char *src);
  149. #endif
  150. extern char *strnmov(char *dst,const char *src,uint n);
  151. extern char *strsuff(const char *src,const char *suffix);
  152. extern char *strcont(const char *src,const char *set);
  153. extern char *strxcat _VARARGS((char *dst,const char *src, ...));
  154. extern char *strxmov _VARARGS((char *dst,const char *src, ...));
  155. extern char *strxcpy _VARARGS((char *dst,const char *src, ...));
  156. extern char *strxncat _VARARGS((char *dst,uint len, const char *src, ...));
  157. extern char *strxnmov _VARARGS((char *dst,uint len, const char *src, ...));
  158. extern char *strxncpy _VARARGS((char *dst,uint len, const char *src, ...));
  159. /* Prototypes of normal stringfunctions (with may ours) */
  160. #ifdef WANT_STRING_PROTOTYPES
  161. extern char *strcat(char *, const char *);
  162. extern char *strchr(const char *, pchar);
  163. extern char *strrchr(const char *, pchar);
  164. extern char *strcpy(char *, const char *);
  165. extern int strcmp(const char *, const char *);
  166. #ifndef __GNUC__
  167. extern size_t strlen(const char *);
  168. #endif
  169. #endif
  170. #ifndef HAVE_STRNLEN 
  171. extern uint strnlen(const char *s, uint n);
  172. #endif
  173. #if !defined(__cplusplus)
  174. #ifndef HAVE_STRPBRK
  175. extern char *strpbrk(const char *, const char *);
  176. #endif
  177. #ifndef HAVE_STRSTR
  178. extern char *strstr(const char *, const char *);
  179. #endif
  180. #endif
  181. extern int is_prefix(const char *, const char *);
  182. /* Conversion rutins */
  183. #ifdef USE_MY_ITOA
  184. extern char *my_itoa(int val,char *dst,int radix);
  185. extern char *my_ltoa(long val,char *dst,int radix);
  186. #endif
  187. extern char *llstr(longlong value,char *buff);
  188. #ifndef HAVE_STRTOUL
  189. extern long strtol(const char *str, char **ptr, int base);
  190. extern ulong strtoul(const char *str, char **ptr, int base);
  191. #endif
  192. extern char *int2str(long val,char *dst,int radix);
  193. extern char *int10_to_str(long val,char *dst,int radix);
  194. extern char *str2int(const char *src,int radix,long lower,long upper,
  195.  long *val);
  196. #if SIZEOF_LONG == SIZEOF_LONG_LONG
  197. #define longlong2str(A,B,C) int2str((A),(B),(C))
  198. #define longlong10_to_str(A,B,C) int10_to_str((A),(B),(C))
  199. #define strtoll(A,B,C) strtol((A),(B),(C))
  200. #define strtoull(A,B,C) strtoul((A),(B),(C))
  201. #ifndef HAVE_STRTOULL
  202. #define HAVE_STRTOULL
  203. #endif
  204. #else
  205. #ifdef HAVE_LONG_LONG
  206. extern char *longlong2str(longlong val,char *dst,int radix);
  207. extern char *longlong10_to_str(longlong val,char *dst,int radix);
  208. #if (!defined(HAVE_STRTOULL) || defined(HAVE_mit_thread)) || defined(NO_STRTOLL_PROTO)
  209. extern longlong strtoll(const char *str, char **ptr, int base);
  210. extern ulonglong strtoull(const char *str, char **ptr, int base);
  211. #endif
  212. #endif
  213. #endif
  214. #if defined(__cplusplus) && !defined(OS2)
  215. }
  216. #endif
  217. #endif