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

模拟服务器

开发平台:

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