home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 July & August / PCWorld_2002-07-08_cd.bin / Komunik / MySQL / mysql / data1.cab / Development / include / config-win.h next >
C/C++ Source or Header  |  2002-02-21  |  9KB  |  307 lines

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