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

模拟服务器

开发平台:

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. /* Defines for Win32 to make it compatible for MySQL */
  18. #include <sys/locking.h>
  19. #include <windows.h>
  20. #include <math.h> /* Because of rint() */
  21. #include <fcntl.h>
  22. #include <io.h>
  23. #include <malloc.h>
  24. #if defined(__NT__)
  25. #define SYSTEM_TYPE "NT"
  26. #elif defined(__WIN2000__)
  27. #define SYSTEM_TYPE "WIN2000"
  28. #else
  29. #define SYSTEM_TYPE "Win95/Win98"
  30. #endif
  31. #ifdef _WIN64
  32. #define MACHINE_TYPE "ia64" /* Define to machine type name */
  33. #else
  34. #define MACHINE_TYPE "i32" /* Define to machine type name */
  35. #ifndef _WIN32
  36. #define _WIN32 /* Compatible with old source */
  37. #endif
  38. #ifndef __WIN32__
  39. #define __WIN32__
  40. #endif
  41. #endif /* _WIN64 */
  42. #ifndef __WIN__
  43. #define __WIN__                       /* To make it easier in VC++ */
  44. #endif
  45. /* File and lock constants */
  46. #define O_SHARE         0x1000  /* Open file in sharing mode */
  47. #ifdef __BORLANDC__
  48. #define F_RDLCK LK_NBLCK /* read lock */
  49. #define F_WRLCK LK_NBRLCK /* write lock */
  50. #define F_UNLCK LK_UNLCK /* remove lock(s) */
  51. #else
  52. #define F_RDLCK _LK_NBLCK /* read lock */
  53. #define F_WRLCK _LK_NBRLCK /* write lock */
  54. #define F_UNLCK _LK_UNLCK /* remove lock(s) */
  55. #endif
  56. #define F_EXCLUSIVE     1 /* We have only exclusive locking */
  57. #define F_TO_EOF        (INT_MAX32/2)   /* size for lock of all file */
  58. #define F_OK 0 /* parameter to access() */
  59. #define S_IROTH S_IREAD /* for my_lib */
  60. #ifdef __BORLANDC__
  61. #define FILE_BINARY O_BINARY /* my_fopen in binary mode */
  62. #define O_TEMPORARY 0
  63. #define O_SHORT_LIVED 0
  64. #define SH_DENYNO _SH_DENYNO
  65. #else
  66. #define O_BINARY        _O_BINARY       /* compability with MSDOS */
  67. #define FILE_BINARY     _O_BINARY       /* my_fopen in binary mode */
  68. #define O_TEMPORARY     _O_TEMPORARY
  69. #define O_SHORT_LIVED   _O_SHORT_LIVED
  70. #define SH_DENYNO       _SH_DENYNO
  71. #endif
  72. #define NO_OPEN_3 /* For my_create() */
  73. #define SIGQUIT SIGTERM /* No SIGQUIT */
  74. #undef _REENTRANT /* Crashes something for win32 */
  75. #undef SAFE_MUTEX /* Can't be used on windows */
  76. #define LONGLONG_MIN ((__int64) 0x8000000000000000)
  77. #define LONGLONG_MAX ((__int64) 0x7FFFFFFFFFFFFFFF)
  78. #define LL(A) ((__int64) A)
  79. /* Type information */
  80. typedef unsigned short  ushort;
  81. typedef unsigned int    uint;
  82. typedef unsigned __int64 ulonglong; /* Microsofts 64 bit types */
  83. typedef __int64 longlong;
  84. typedef int sigset_t;
  85. #define longlong_defined
  86. /* off_t should not be __int64 because of conflicts in header files;
  87.    Use my_off_t or os_off_t instead */
  88. typedef long off_t;
  89. typedef __int64 os_off_t;
  90. #ifdef _WIN64
  91. typedef UINT_PTR rf_SetTimer;
  92. #else
  93. typedef unsigned int size_t;
  94. typedef uint rf_SetTimer;
  95. #endif
  96. #define Socket_defined
  97. #define my_socket SOCKET
  98. #define bool BOOL
  99. #define SIGPIPE SIGINT
  100. #define RETQSORTTYPE void
  101. #define QSORT_TYPE_IS_VOID
  102. #define RETSIGTYPE void
  103. #define SOCKET_SIZE_TYPE int
  104. #define my_socket_defined
  105. #define bool_defined
  106. #define byte_defined
  107. #define HUGE_PTR
  108. #define STDCALL __stdcall           /* Used by libmysql.dll */
  109. #ifndef UNDEF_THREAD_HACK
  110. #define THREAD
  111. #endif
  112. #define VOID_SIGHANDLER
  113. #define SIZEOF_CHAR 1
  114. #define SIZEOF_LONG 4
  115. #define SIZEOF_LONG_LONG 8
  116. #define SIZEOF_OFF_T 8
  117. #define HAVE_BROKEN_NETINET_INCLUDES
  118. #ifdef __NT__
  119. #define HAVE_NAMED_PIPE /* We can only create pipes on NT */
  120. #endif
  121. /* Use all character sets in MySQL */
  122. #define USE_MB 1
  123. #define USE_MB_IDENT 1
  124. #define USE_STRCOLL 1
  125.  
  126. /* Convert some simple functions to Posix */
  127. #define sigset(A,B) signal((A),(B))
  128. #define finite(A) _finite(A)
  129. #define sleep(A)  Sleep((A)*1000)
  130. #ifndef __BORLANDC__
  131. #define access(A,B) _access(A,B)
  132. #endif
  133. #if defined(__cplusplus)
  134. inline double rint(double nr)
  135. {
  136.   double f = floor(nr);
  137.   double c = ceil(nr);
  138.   return (((c-nr) >= (nr-f)) ? f :c);
  139. }
  140. #ifdef _WIN64
  141. #define ulonglong2double(A) ((double) (A))
  142. #define my_off_t2double(A)  ((double) (A))
  143. #else
  144. inline double ulonglong2double(ulonglong value)
  145. {
  146.   longlong nr=(longlong) value;
  147.   if (nr >= 0)
  148.     return (double) nr;
  149.   return (18446744073709551616.0 + (double) nr);
  150. }
  151. #define my_off_t2double(A) ulonglong2double(A)
  152. #endif /* _WIN64 */
  153. #else
  154. #define inline __inline
  155. #endif /* __cplusplus */
  156. #if SIZEOF_OFF_T > 4
  157. #define lseek(A,B,C) _lseeki64((A),(longlong) (B),(C))
  158. #define tell(A) _telli64(A)
  159. #endif
  160. #define STACK_DIRECTION -1
  161. /* Optimized store functions for Intel x86 */
  162. #define sint2korr(A) (*((int16 *) (A)))
  163. #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? 
  164.   (((uint32) 255L << 24) | 
  165.    (((uint32) (uchar) (A)[2]) << 16) |
  166.    (((uint32) (uchar) (A)[1]) << 8) | 
  167.    ((uint32) (uchar) (A)[0])) : 
  168.   (((uint32) (uchar) (A)[2]) << 16) |
  169.   (((uint32) (uchar) (A)[1]) << 8) | 
  170.   ((uint32) (uchar) (A)[0])))
  171. #define sint4korr(A) (*((long *) (A)))
  172. #define uint2korr(A) (*((uint16 *) (A)))
  173. #define uint3korr(A) (long) (*((unsigned long *) (A)) & 0xFFFFFF)
  174. #define uint4korr(A) (*((unsigned long *) (A)))
  175. #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  176.     (((uint32) ((uchar) (A)[1])) << 8) +
  177.     (((uint32) ((uchar) (A)[2])) << 16) +
  178.     (((uint32) ((uchar) (A)[3])) << 24)) +
  179.       (((ulonglong) ((uchar) (A)[4])) << 32))
  180. #define uint8korr(A) (*((ulonglong *) (A)))
  181. #define sint8korr(A) (*((longlong *) (A)))
  182. #define int2store(T,A) *((uint16*) (T))= (uint16) (A)
  183. #define int3store(T,A) { *(T)=  (uchar) ((A));
  184.   *(T+1)=(uchar) (((uint) (A) >> 8));
  185.   *(T+2)=(uchar) (((A) >> 16)); }
  186. #define int4store(T,A) *((long *) (T))= (long) (A)
  187. #define int5store(T,A) { *(T)= (uchar)((A));
  188.   *((T)+1)=(uchar) (((A) >> 8));
  189.   *((T)+2)=(uchar) (((A) >> 16));
  190.   *((T)+3)=(uchar) (((A) >> 24)); 
  191.   *((T)+4)=(uchar) (((A) >> 32)); }
  192. #define int8store(T,A) *((ulonglong *) (T))= (ulonglong) (A)
  193. #define doubleget(V,M) { *((long *) &V) = *((long*) M); 
  194.   *(((long *) &V)+1) = *(((long*) M)+1); }
  195. #define doublestore(T,V) { *((long *) T) = *((long*) &V); 
  196.    *(((long *) T)+1) = *(((long*) &V)+1); }
  197. #define float4get(V,M) { *((long *) &(V)) = *((long*) (M)); }
  198. #define float8get(V,M) doubleget((V),(M))
  199. #define float4store(V,M) memcpy((byte*) V,(byte*) (&M),sizeof(float))
  200. #define float8store(V,M) doublestore((V),(M))
  201. #define HAVE_PERROR
  202. #define HAVE_VFPRINT
  203. #define HAVE_CHSIZE /* System has chsize() function */
  204. #define HAVE_RENAME /* Have rename() as function */
  205. #define HAVE_BINARY_STREAMS /* Have "b" flag in streams */
  206. #define HAVE_LONG_JMP /* Have long jump function */
  207. #define HAVE_LOCKING /* have locking() call */
  208. #define HAVE_ERRNO_AS_DEFINE /* errno is a define */
  209. #define HAVE_STDLIB /* everything is include in this file */
  210. #define HAVE_MEMCPY
  211. #define HAVE_MEMMOVE
  212. #define HAVE_GETCWD
  213. #define HAVE_TELL
  214. #define HAVE_TZNAME
  215. #define HAVE_PUTENV
  216. #define HAVE_SELECT
  217. #define HAVE_SETLOCALE
  218. #define HAVE_SOCKET /* Giangi */
  219. #define HAVE_FLOAT_H
  220. #define HAVE_LIMITS_H
  221. #define HAVE_STDDEF_H
  222. #define HAVE_RINT               /* defined in this file */
  223. #define NO_FCNTL_NONBLOCK       /* No FCNTL */
  224. #define HAVE_ALLOCA
  225. #define HAVE_STRPBRK
  226. #define HAVE_STRSTR
  227. #define HAVE_COMPRESS
  228. #ifdef NOT_USED
  229. #define HAVE_SNPRINTF /* Gave link error */
  230. #define _snprintf snprintf
  231. #endif
  232. #ifdef _MSC_VER
  233. #define HAVE_LDIV /* The optimizer breaks in zortech for ldiv */
  234. #define HAVE_ANSI_INCLUDE
  235. #define HAVE_SYS_UTIME_H
  236. #define HAVE_STRTOUL
  237. #endif
  238. #define my_reinterpret_cast(A) reinterpret_cast <A>
  239. #define my_const_cast(A) const_cast<A>
  240. /* MYSQL OPTIONS */
  241. #ifdef _CUSTOMCONFIG_
  242. #include <custom_conf.h>
  243. #else
  244. #define DEFAULT_MYSQL_HOME "c:\mysql"
  245. #define PACKAGE   "mysql"
  246. #define DEFAULT_BASEDIR "C:\"
  247. #define SHAREDIR "share"
  248. #define DEFAULT_CHARSET_HOME "C:/mysql/"
  249. #endif
  250. /* File name handling */
  251. #define FN_LIBCHAR '\'
  252. #define FN_ROOTDIR "\"
  253. #define FN_NETWORK_DRIVES /* Uses \ to indicate network drives */
  254. #define FN_NO_CASE_SENCE /* Files are not case-sensitive */
  255. #define MY_NFILE 1024
  256. #define DO_NOT_REMOVE_THREAD_WRAPPERS
  257. #define thread_safe_increment(V,L) InterlockedIncrement((long*) &(V))
  258. /* The following is only used for statistics, so it should be good enough */
  259. #ifdef __NT__  /* This should also work on Win98 but .. */
  260. #define thread_safe_add(V,C,L) InterlockedExchangeAdd((long*) &(V),(C))
  261. #define thread_safe_sub(V,C,L) InterlockedExchangeAdd((long*) &(V),-(long) (C))
  262. #define statistic_add(V,C,L) thread_safe_add((V),(C),(L))
  263. #else
  264. #define thread_safe_add(V,C,L) 
  265. pthread_mutex_lock((L)); (V)+=(C); pthread_mutex_unlock((L));
  266. #define thread_safe_sub(V,C,L) 
  267. pthread_mutex_lock((L)); (V)-=(C); pthread_mutex_unlock((L));
  268. #define statistic_add(V,C,L)     (V)+=(C)
  269. #endif
  270. #define statistic_increment(V,L) thread_safe_increment((V),(L))