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

模拟服务器

开发平台:

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. /* This is the main include file that should included 'first' in every
  18.    C file. */
  19. #ifndef _global_h
  20. #define _global_h
  21. #if defined( __EMX__) && !defined( MYSQL_SERVER)
  22. /* moved here to use below VOID macro redefinition */
  23. #define INCL_BASE
  24. #define INCL_NOPMAPI
  25. #include <os2.h>
  26. #endif /* __EMX__ */
  27. #ifdef __CYGWIN__
  28. /* We use a Unix API, so pretend it's not Windows */
  29. #undef WIN
  30. #undef WIN32
  31. #undef _WIN
  32. #undef _WIN32
  33. #undef _WIN64
  34. #undef __WIN__
  35. #undef __WIN32__
  36. #define HAVE_ERRNO_AS_DEFINE
  37. #endif /* __CYGWIN__ */
  38. #if defined(_WIN32) || defined(_WIN64) || defined(__WIN32__) || defined(WIN32)
  39. #include <config-win.h>
  40. #elif defined(OS2)
  41. #include <config-os2.h>
  42. #else
  43. #include <my_config.h>
  44. #if defined(__cplusplus) && defined(inline)
  45. #undef inline /* fix configure problem */
  46. #endif
  47. #endif /* _WIN32... */
  48. /* Fix problem with S_ISLNK() on Linux */
  49. #if defined(HAVE_LINUXTHREADS)
  50. #undef  _GNU_SOURCE
  51. #define _GNU_SOURCE 1
  52. #endif
  53. /* The client defines this to avoid all thread code */
  54. #if defined(UNDEF_THREADS_HACK)
  55. #undef THREAD
  56. #undef HAVE_mit_thread
  57. #undef HAVE_LINUXTHREADS
  58. #undef HAVE_UNIXWARE7_THREADS
  59. #endif
  60. #ifdef HAVE_THREADS_WITHOUT_SOCKETS
  61. /* MIT pthreads does not work with unix sockets */
  62. #undef HAVE_SYS_UN_H
  63. #endif
  64. #define __EXTENSIONS__ 1 /* We want some extension */
  65. #ifndef __STDC_EXT__
  66. #define __STDC_EXT__ 1          /* To get large file support on hpux */
  67. #endif
  68. #if defined(THREAD) && !defined(__WIN__) && !defined(OS2)
  69. #ifndef _POSIX_PTHREAD_SEMANTICS
  70. #define _POSIX_PTHREAD_SEMANTICS /* We want posix threads */
  71. #endif
  72. /* was #if defined(HAVE_LINUXTHREADS) || defined(HAVE_DEC_THREADS) || defined(HPUX) */
  73. #if !defined(SCO)
  74. #define _REENTRANT 1 /* Some thread libraries require this */
  75. #endif
  76. #if !defined(_THREAD_SAFE) && !defined(_AIX)
  77. #define _THREAD_SAFE            /* Required for OSF1 */
  78. #endif
  79. #ifndef HAVE_mit_thread
  80. #ifdef HAVE_UNIXWARE7_THREADS
  81. #include <thread.h>
  82. #else
  83. #include <pthread.h> /* AIX must have this included first */
  84. #endif /* HAVE_UNIXWARE7_THREADS */
  85. #endif /* HAVE_mit_thread */
  86. #if !defined(SCO) && !defined(_REENTRANT)
  87. #define _REENTRANT 1 /* Threads requires reentrant code */
  88. #endif
  89. #endif /* THREAD */
  90. /* Go around some bugs in different OS and compilers */
  91. #ifdef _AIX /* By soren@t.dk */
  92. #define _H_STRINGS
  93. #define _SYS_STREAM_H
  94. #define _AIX32_CURSES
  95. #define ulonglong2double(A) my_ulonglong2double(A)
  96. #define my_off_t2double(A)  my_ulonglong2double(A)
  97. #ifdef __cplusplus
  98. extern "C" {
  99. #endif
  100. double my_ulonglong2double(unsigned long long A);
  101. #ifdef __cplusplus
  102. }
  103. #endif
  104. #endif /* _AIX */
  105. #ifdef HAVE_BROKEN_SNPRINTF /* HPUX 10.20 don't have this defined */
  106. #undef HAVE_SNPRINTF
  107. #endif
  108. #ifdef HAVE_BROKEN_PREAD /* These doesn't work on HPUX 11.x */
  109. #undef HAVE_PREAD
  110. #undef HAVE_PWRITE
  111. #endif
  112. #if defined(HAVE_BROKEN_INLINE) && !defined(__cplusplus)
  113. #undef inline
  114. #define inline
  115. #endif
  116. #ifdef UNDEF_HAVE_GETHOSTBYNAME_R /* For OSF4.x */
  117. #undef HAVE_GETHOSTBYNAME_R
  118. #endif
  119. #ifdef UNDEF_HAVE_INITGROUPS /* For AIX 4.3 */
  120. #undef HAVE_INITGROUPS
  121. #endif
  122. /* Fix a bug in gcc 2.8.0 on IRIX 6.2 */
  123. #if SIZEOF_LONG == 4 && defined(__LONG_MAX__)
  124. #undef __LONG_MAX__             /* Is a longlong value in gcc 2.8.0 ??? */
  125. #define __LONG_MAX__ 2147483647
  126. #endif
  127. /* Fix problem when linking c++ programs with gcc 3.x */
  128. #ifdef DEFINE_CXA_PURE_VIRTUAL
  129. #define FIX_GCC_LINKING_PROBLEM extern "C" { int __cxa_pure_virtual() {return 0;} }
  130. #else
  131. #define FIX_GCC_LINKING_PROBLEM
  132. #endif
  133. /* egcs 1.1.2 has a problem with memcpy on Alpha */
  134. #if defined(__GNUC__) && defined(__alpha__) && ! (__GNUC__ > 2 || (__GNUC__ == 2 &&  __GNUC_MINOR__ >= 95))
  135. #define BAD_MEMCPY
  136. #endif
  137. /* In Linux-alpha we have atomic.h if we are using gcc */
  138. #if defined(HAVE_LINUXTHREADS) && defined(__GNUC__) && defined(__alpha__) && (__GNUC__ > 2 || ( __GNUC__ == 2 &&  __GNUC_MINOR__ >= 95)) && !defined(HAVE_ATOMIC_ADD)
  139. #define HAVE_ATOMIC_ADD
  140. #define HAVE_ATOMIC_SUB
  141. #endif
  142. /* In Linux-ia64 including atomic.h will give us an error */
  143. #if (defined(HAVE_LINUXTHREADS) && defined(__GNUC__) && (defined(__ia64__) || defined(__powerpc64__))) || !defined(THREAD)
  144. #undef HAVE_ATOMIC_ADD
  145. #undef HAVE_ATOMIC_SUB
  146. #endif
  147. #if defined(_lint) && !defined(lint)
  148. #define lint
  149. #endif
  150. #if SIZEOF_LONG_LONG > 4 && !defined(_LONG_LONG)
  151. #define _LONG_LONG 1 /* For AIX string library */
  152. #endif
  153. #ifndef stdin
  154. #include <stdio.h>
  155. #endif
  156. #ifdef HAVE_STDLIB_H
  157. #include <stdlib.h>
  158. #endif
  159. #ifdef HAVE_STDDEF_H
  160. #include <stddef.h>
  161. #endif
  162. #include <math.h>
  163. #ifdef HAVE_LIMITS_H
  164. #include <limits.h>
  165. #endif
  166. #ifdef HAVE_FLOAT_H
  167. #include <float.h>
  168. #endif
  169. #ifdef HAVE_SYS_TYPES_H
  170. #include <sys/types.h>
  171. #endif
  172. #ifdef HAVE_FCNTL_H
  173. #include <fcntl.h>
  174. #endif
  175. #ifdef HAVE_SYS_TIMEB_H
  176. #include <sys/timeb.h> /* Avoid warnings on SCO */
  177. #endif
  178. #if TIME_WITH_SYS_TIME
  179. # include <sys/time.h>
  180. # include <time.h>
  181. #else
  182. # if HAVE_SYS_TIME_H
  183. #  include <sys/time.h>
  184. # else
  185. #  include <time.h>
  186. # endif
  187. #endif /* TIME_WITH_SYS_TIME */
  188. #ifdef HAVE_UNISTD_H
  189. #include <unistd.h>
  190. #endif
  191. #if defined(__cplusplus) && defined(NO_CPLUSPLUS_ALLOCA)
  192. #undef HAVE_ALLOCA
  193. #undef HAVE_ALLOCA_H
  194. #endif
  195. #ifdef HAVE_ALLOCA_H
  196. #include <alloca.h>
  197. #endif
  198. #ifdef HAVE_ATOMIC_ADD
  199. #define __SMP__
  200. #define CONFIG_SMP
  201. #include <asm/atomic.h>
  202. #endif
  203. /* Go around some bugs in different OS and compilers */
  204. #if defined(_HPUX_SOURCE) && defined(HAVE_SYS_STREAM_H)
  205. #include <sys/stream.h> /* HPUX 10.20 defines ulong here. UGLY !!! */
  206. #define HAVE_ULONG
  207. #endif
  208. #ifdef DONT_USE_FINITE /* HPUX 11.x has is_finite() */
  209. #undef HAVE_FINITE
  210. #endif
  211. #if defined(HPUX) && defined(_LARGEFILE64_SOURCE) && defined(THREAD)
  212. /* Fix bug in setrlimit */
  213. #undef setrlimit
  214. #define setrlimit cma_setrlimit64
  215. #endif
  216. /* We can not live without these */
  217. #define USE_MYFUNC 1 /* Must use syscall indirection */
  218. #define MASTER 1 /* Compile without unireg */
  219. #define ENGLISH 1 /* Messages in English */
  220. #define POSIX_MISTAKE 1 /* regexp: Fix stupid spec error */
  221. #define USE_REGEX 1 /* We want the use the regex library */
  222. /* Do not define for ultra sparcs */
  223. #ifndef OS2
  224. #define USE_BMOVE512 1 /* Use this unless the system bmove is faster */
  225. #endif
  226. /* Paranoid settings. Define I_AM_PARANOID if you are paranoid */
  227. #ifdef I_AM_PARANOID
  228. #define DONT_ALLOW_USER_CHANGE 1
  229. #define DONT_USE_MYSQL_PWD 1
  230. #endif
  231. /* #define USE_some_charset 1 was deprecated by changes to configure */
  232. /* my_ctype my_to_upper, my_to_lower, my_sort_order gain theit right value */
  233. /* automagically during configuration */
  234. /* Does the system remember a signal handler after a signal ? */
  235. #ifndef HAVE_BSD_SIGNALS
  236. #define DONT_REMEMBER_SIGNAL
  237. #endif
  238. /* Define void to stop lint from generating "null effekt" comments */
  239. #ifndef DONT_DEFINE_VOID
  240. #ifdef _lint
  241. int __void__;
  242. #define VOID(X) (__void__ = (int) (X))
  243. #else
  244. #undef VOID
  245. #define VOID(X) (X)
  246. #endif
  247. #endif /* DONT_DEFINE_VOID */
  248. #if defined(_lint) || defined(FORCE_INIT_OF_VARS)
  249. #define LINT_INIT(var) var=0 /* No uninitialize-warning */
  250. #else
  251. #define LINT_INIT(var)
  252. #endif
  253. /* Define some useful general macros */
  254. #if defined(__cplusplus) && defined(__GNUC__)
  255. #define max(a, b) ((a) >? (b))
  256. #define min(a, b) ((a) <? (b))
  257. #elif !defined(max)
  258. #define max(a, b) ((a) > (b) ? (a) : (b))
  259. #define min(a, b) ((a) < (b) ? (a) : (b))
  260. #endif
  261. #if defined(__EMX__) || !defined(HAVE_UINT)
  262. typedef unsigned int uint;
  263. typedef unsigned short ushort;
  264. #endif
  265. #define sgn(a) (((a) < 0) ? -1 : ((a) > 0) ? 1 : 0)
  266. #define swap(t,a,b) { register t dummy; dummy = a; a = b; b = dummy; }
  267. #define test(a) ((a) ? 1 : 0)
  268. #define set_if_bigger(a,b)  { if ((a) < (b)) (a)=(b); }
  269. #define set_if_smaller(a,b) { if ((a) > (b)) (a)=(b); }
  270. #define test_all_bits(a,b) (((a) & (b)) == (b))
  271. #define set_bits(type, bit_count) (sizeof(type)*8 <= (bit_count) ? ~(type) 0 : ((((type) 1) << (bit_count)) - (type) 1))
  272. #define array_elements(A) ((uint) (sizeof(A)/sizeof(A[0])))
  273. #ifndef HAVE_RINT
  274. #define rint(A) floor((A)+0.5)
  275. #endif
  276. /* Define some general constants */
  277. #ifndef TRUE
  278. #define TRUE (1) /* Logical true */
  279. #define FALSE (0) /* Logical false */
  280. #endif
  281. #if defined(__GNUC__)
  282. #define function_volatile volatile
  283. #define my_reinterpret_cast(A) reinterpret_cast<A>
  284. #define my_const_cast(A) const_cast<A>
  285. #elif !defined(my_reinterpret_cast)
  286. #define my_reinterpret_cast(A) (A)
  287. #define my_const_cast(A) (A)
  288. #endif
  289. #if !defined(__attribute__) && (defined(__cplusplus) || !defined(__GNUC__)  || __GNUC__ == 2 && __GNUC_MINOR__ < 8)
  290. #define __attribute__(A)
  291. #endif
  292. /* From old s-system.h */
  293. /*
  294.   Support macros for non ansi & other old compilers. Since such
  295.   things are no longer supported we do nothing. We keep then since
  296.   some of our code may still be needed to upgrade old customers.
  297. */
  298. #define _VARARGS(X) X
  299. #define _STATIC_VARARGS(X) X
  300. #define _PC(X) X
  301. #if defined(DBUG_ON) && defined(DBUG_OFF)
  302. #undef DBUG_OFF
  303. #endif
  304. #if defined(_lint) && !defined(DBUG_OFF)
  305. #define DBUG_OFF
  306. #endif
  307. #include <dbug.h>
  308. #ifndef DBUG_OFF
  309. #define dbug_assert(A) assert(A)
  310. #else
  311. #define dbug_assert(A)
  312. #endif
  313. #define MIN_ARRAY_SIZE 0 /* Zero or One. Gcc allows zero*/
  314. #define ASCII_BITS_USED 8 /* Bit char used */
  315. #define NEAR_F /* No near function handling */
  316. /* Some types that is different between systems */
  317. typedef int File; /* File descriptor */
  318. #ifndef Socket_defined
  319. typedef int my_socket; /* File descriptor for sockets */
  320. #define INVALID_SOCKET -1
  321. #endif
  322. /* Type for fuctions that handles signals */
  323. #define sig_handler RETSIGTYPE
  324. typedef void (*sig_return)();/* Returns type from signal */
  325. #if defined(__GNUC__) && !defined(_lint)
  326. typedef char pchar; /* Mixed prototypes can take char */
  327. typedef char puchar; /* Mixed prototypes can take char */
  328. typedef char pbool; /* Mixed prototypes can take char */
  329. typedef short pshort; /* Mixed prototypes can take short int */
  330. typedef float pfloat; /* Mixed prototypes can take float */
  331. #else
  332. typedef int pchar; /* Mixed prototypes can't take char */
  333. typedef uint puchar; /* Mixed prototypes can't take char */
  334. typedef int pbool; /* Mixed prototypes can't take char */
  335. typedef int pshort; /* Mixed prototypes can't take short int */
  336. typedef double pfloat; /* Mixed prototypes can't take float */
  337. #endif
  338. typedef int (*qsort_cmp)(const void *,const void *);
  339. #ifdef HAVE_mit_thread
  340. #define qsort_t void
  341. #undef QSORT_TYPE_IS_VOID
  342. #define QSORT_TYPE_IS_VOID
  343. #else
  344. #define qsort_t RETQSORTTYPE /* Broken GCC cant handle typedef !!!! */
  345. #endif
  346. #ifdef HAVE_mit_thread
  347. #define size_socket socklen_t /* Type of last arg to accept */
  348. #else
  349. #ifdef HAVE_SYS_SOCKET_H
  350. #include <sys/socket.h>
  351. #endif
  352. typedef SOCKET_SIZE_TYPE size_socket;
  353. #endif
  354. #ifndef SOCKOPT_OPTLEN_TYPE
  355. #define SOCKOPT_OPTLEN_TYPE size_socket
  356. #endif
  357. /* file create flags */
  358. #ifndef O_SHARE
  359. #define O_SHARE 0 /* Flag to my_open for shared files */
  360. #ifndef O_BINARY
  361. #define O_BINARY 0 /* Flag to my_open for binary files */
  362. #endif
  363. #define FILE_BINARY 0 /* Flag to my_fopen for binary streams */
  364. #ifdef HAVE_FCNTL
  365. #define HAVE_FCNTL_LOCK
  366. #define F_TO_EOF 0L /* Param to lockf() to lock rest of file */
  367. #endif
  368. #endif /* O_SHARE */
  369. #ifndef O_TEMPORARY
  370. #define O_TEMPORARY 0
  371. #endif
  372. #ifndef O_SHORT_LIVED
  373. #define O_SHORT_LIVED 0
  374. #endif
  375. /* #define USE_RECORD_LOCK */
  376. /* Unsigned types supported by the compiler */
  377. #define UNSINT8 /* unsigned int8 (char) */
  378. #define UNSINT16 /* unsigned int16 */
  379. #define UNSINT32 /* unsigned int32 */
  380. /* General constants */
  381. #define SC_MAXWIDTH 256 /* Max width of screen (for error messages) */
  382. #define FN_LEN 256 /* Max file name len */
  383. #define FN_HEADLEN 253 /* Max length of filepart of file name */
  384. #define FN_EXTLEN 20 /* Max length of extension (part of FN_LEN) */
  385. #define FN_REFLEN 512 /* Max length of full path-name */
  386. #define FN_EXTCHAR '.'
  387. #define FN_HOMELIB '~' /* ~/ is used as abbrev for home dir */
  388. #define FN_CURLIB '.' /* ./ is used as abbrev for current dir */
  389. #define FN_PARENTDIR ".." /* Parentdirectory; Must be a string */
  390. #define FN_DEVCHAR ':'
  391. #ifndef FN_LIBCHAR
  392. #ifdef __EMX__
  393. #define FN_LIBCHAR '\'
  394. #define FN_ROOTDIR "\"
  395. #else
  396. #define FN_LIBCHAR '/'
  397. #define FN_ROOTDIR "/"
  398. #endif
  399. #define MY_NFILE 1024 /* This is only used to save filenames */
  400. #endif
  401. /* #define EXT_IN_LIBNAME     */
  402. /* #define FN_NO_CASE_SENCE   */
  403. /* #define FN_UPPER_CASE TRUE */
  404. /*
  405.   Io buffer size; Must be a power of 2 and a multiple of 512. May be
  406.   smaller what the disk page size. This influences the speed of the
  407.   isam btree library. eg to big to slow.
  408. */
  409. #define IO_SIZE 4096
  410. /*
  411.   How much overhead does malloc have. The code often allocates
  412.   something like 1024-MALLOC_OVERHEAD bytes
  413. */
  414. #ifdef SAFEMALLOC
  415. #define MALLOC_OVERHEAD (8+24+4)
  416. #else
  417. #define MALLOC_OVERHEAD 8
  418. #endif
  419. /* get memory in huncs */
  420. #define ONCE_ALLOC_INIT (uint) (4096-MALLOC_OVERHEAD)
  421. /* Typical record cash */
  422. #define RECORD_CACHE_SIZE (uint) (64*1024-MALLOC_OVERHEAD)
  423. /* Typical key cash */
  424. #define KEY_CACHE_SIZE (uint) (8*1024*1024-MALLOC_OVERHEAD)
  425. /* Some things that this system doesn't have */
  426. #define ONLY_OWN_DATABASES /* We are using only databases by monty */
  427. #define NO_PISAM /* Not needed anymore */
  428. #define NO_MISAM /* Not needed anymore */
  429. #define NO_HASH /* Not needed anymore */
  430. #ifdef __WIN__
  431. #define NO_DIR_LIBRARY /* Not standar dir-library */
  432. #define USE_MY_STAT_STRUCT /* For my_lib */
  433. #endif
  434. /* Some things that this system does have */
  435. #ifndef HAVE_ITOA
  436. #define USE_MY_ITOA /* There is no itoa */
  437. #endif
  438. /* Some defines of functions for portability */
  439. #ifndef HAVE_ATOD
  440. #define atod atof
  441. #endif
  442. #ifdef USE_MY_ATOF
  443. #define atof my_atof
  444. extern void init_my_atof(void);
  445. extern double my_atof(const char*);
  446. #endif
  447. #undef remove /* Crashes MySQL on SCO 5.0.0 */
  448. #ifndef __WIN__
  449. #ifdef OS2
  450. #define closesocket(A) soclose(A)
  451. #else
  452. #define closesocket(A) close(A)
  453. #endif
  454. #ifndef ulonglong2double
  455. #define ulonglong2double(A) ((double) (A))
  456. #define my_off_t2double(A)  ((double) (A))
  457. #endif
  458. #endif
  459. #ifndef offsetof
  460. #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
  461. #endif
  462. #define ulong_to_double(X) ((double) (ulong) (X))
  463. #define SET_STACK_SIZE(X) /* Not needed on real machines */
  464. #if !defined(HAVE_mit_thread) && !defined(HAVE_STRTOK_R)
  465. #define strtok_r(A,B,C) strtok((A),(B))
  466. #endif
  467. #ifdef HAVE_LINUXTHREADS
  468. /* #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C)) */
  469. /* #define sigset(A,B) signal((A),(B)) */
  470. #endif
  471. /* Remove some things that mit_thread break or doesn't support */
  472. #if defined(HAVE_mit_thread) && defined(THREAD)
  473. #undef HAVE_PREAD
  474. #undef HAVE_REALPATH
  475. #undef HAVE_MLOCK
  476. #undef HAVE_TEMPNAM /* Use ours */
  477. #undef HAVE_PTHREAD_SETPRIO
  478. #undef HAVE_FTRUNCATE
  479. #undef HAVE_READLINK
  480. #endif
  481. /* This is from the old m-machine.h file */
  482. #if SIZEOF_LONG_LONG > 4
  483. #define HAVE_LONG_LONG 1
  484. #endif
  485. #if defined(HAVE_LONG_LONG) && !defined(LONGLONG_MIN)
  486. #define LONGLONG_MIN ((long long) 0x8000000000000000LL)
  487. #define LONGLONG_MAX ((long long) 0x7FFFFFFFFFFFFFFFLL)
  488. #endif
  489. #if SIZEOF_LONG == 4
  490. #define INT_MIN32 (long) 0x80000000L
  491. #define INT_MAX32 (long) 0x7FFFFFFFL
  492. #define INT_MIN24 ((long) 0xff800000L)
  493. #define INT_MAX24 0x007fffffL
  494. #define INT_MIN16 ((short int) 0x8000)
  495. #define INT_MAX16 0x7FFF
  496. #define INT_MIN8 ((char) 0x80)
  497. #define INT_MAX8 ((char) 0x7F)
  498. #else  /* Probably Alpha */
  499. #define INT_MIN32 ((long) (int) 0x80000000)
  500. #define INT_MAX32 ((long) (int) 0x7FFFFFFF)
  501. #define INT_MIN24 ((long) (int) 0xff800000)
  502. #define INT_MAX24 ((long) (int) 0x007fffff)
  503. #define INT_MIN16 ((short int) 0xffff8000)
  504. #define INT_MAX16 ((short int) 0x00007FFF)
  505. #endif
  506. /* From limits.h instead */
  507. #ifndef DBL_MIN
  508. #define DBL_MIN 4.94065645841246544e-324
  509. #define FLT_MIN ((float)1.40129846432481707e-45)
  510. #endif
  511. #ifndef DBL_MAX
  512. #define DBL_MAX 1.79769313486231470e+308
  513. #define FLT_MAX ((float)3.40282346638528860e+38)
  514. #endif
  515. /*
  516.   Max size that must be added to a so that we know Size to make
  517.   adressable obj.
  518. */
  519. typedef long my_ptrdiff_t;
  520. #define MY_ALIGN(A,L) (((A) + (L) - 1) & ~((L) - 1))
  521. #define ALIGN_SIZE(A) MY_ALIGN((A),sizeof(double))
  522. /* Size to make adressable obj. */
  523. #define ALIGN_PTR(A, t) ((t*) MY_ALIGN((A),sizeof(t)))
  524.  /* Offset of filed f in structure t */
  525. #define OFFSET(t, f) ((size_t)(char *)&((t *)0)->f)
  526. #define ADD_TO_PTR(ptr,size,type) (type) ((byte*) (ptr)+size)
  527. #define PTR_BYTE_DIFF(A,B) (my_ptrdiff_t) ((byte*) (A) - (byte*) (B))
  528. #define NullS (char *) 0
  529. /* Nowdays we do not support MessyDos */
  530. #ifndef NEAR
  531. #define NEAR /* Who needs segments ? */
  532. #define FAR /* On a good machine */
  533. #ifndef HUGE_PTR
  534. #define HUGE_PTR
  535. #endif
  536. #endif
  537. #if defined(__IBMC__) || defined(__IBMCPP__)
  538. #define STDCALL _System _Export
  539. #elif !defined( STDCALL)
  540. #define STDCALL
  541. #endif
  542. /* Typdefs for easyier portability */
  543. #if defined(VOIDTYPE)
  544. typedef void *gptr; /* Generic pointer */
  545. #else
  546. typedef char *gptr; /* Generic pointer */
  547. #endif
  548. #ifndef HAVE_INT_8_16_32
  549. typedef char int8; /* Signed integer >= 8 bits */
  550. typedef short int16; /* Signed integer >= 16 bits */
  551. #endif
  552. #ifndef HAVE_UCHAR
  553. typedef unsigned char uchar; /* Short for unsigned char */
  554. #endif
  555. typedef unsigned char uint8; /* Short for unsigned integer >= 8  bits */
  556. typedef unsigned short uint16; /* Short for unsigned integer >= 16 bits */
  557. #if SIZEOF_INT == 4
  558. #ifndef HAVE_INT_8_16_32
  559. typedef int int32;
  560. #endif
  561. typedef unsigned int uint32; /* Short for unsigned integer >= 32 bits */
  562. #elif SIZEOF_LONG == 4
  563. #ifndef HAVE_INT_8_16_32
  564. typedef long int32;
  565. #endif
  566. typedef unsigned long uint32; /* Short for unsigned integer >= 32 bits */
  567. #else
  568. error "Neither int or long is of 4 bytes width"
  569. #endif
  570. #if !defined(HAVE_ULONG) && !defined(HAVE_LINUXTHREADS) && !defined(__USE_MISC)
  571. typedef unsigned long ulong; /* Short for unsigned long */
  572. #endif
  573. #ifndef longlong_defined
  574. #if defined(HAVE_LONG_LONG) && SIZEOF_LONG != 8
  575. typedef unsigned long long int ulonglong; /* ulong or unsigned long long */
  576. typedef long long int longlong;
  577. #else
  578. typedef unsigned long ulonglong; /* ulong or unsigned long long */
  579. typedef long longlong;
  580. #endif
  581. #endif
  582. #ifdef USE_RAID
  583. /*
  584.   The following is done with a if to not get problems with pre-processors
  585.   with late define evaluation
  586. */
  587. #if SIZEOF_OFF_T == 4
  588. #define SYSTEM_SIZEOF_OFF_T 4
  589. #else
  590. #define SYSTEM_SIZEOF_OFF_T 8
  591. #endif
  592. #undef  SIZEOF_OFF_T
  593. #define SIZEOF_OFF_T     8
  594. #else
  595. #define SYSTEM_SIZEOF_OFF_T SIZEOF_OFF_T
  596. #endif /* USE_RAID */
  597. #if SIZEOF_OFF_T > 4
  598. typedef ulonglong my_off_t;
  599. #else
  600. typedef unsigned long my_off_t;
  601. #endif
  602. #define MY_FILEPOS_ERROR (~(my_off_t) 0)
  603. #if !defined(__WIN__) && !defined(OS2)
  604. typedef off_t os_off_t;
  605. #endif
  606. #if defined(__WIN__)
  607. #define socket_errno WSAGetLastError()
  608. #define SOCKET_EINTR WSAEINTR 
  609. #define SOCKET_EAGAIN WSAEINPROGRESS
  610. #define SOCKET_ENFILE ENFILE
  611. #define SOCKET_EMFILE EMFILE
  612. #elif defined(OS2)
  613. #define socket_errno sock_errno()
  614. #define SOCKET_EINTR SOCEINTR 
  615. #define SOCKET_EAGAIN SOCEINPROGRESS
  616. #define SOCKET_EWOULDBLOCK SOCEWOULDBLOCK
  617. #define SOCKET_ENFILE SOCENFILE
  618. #define SOCKET_EMFILE SOCEMFILE
  619. #define closesocket(A) soclose(A)
  620. #else /* Unix */
  621. #define socket_errno errno
  622. #define closesocket(A) close(A)
  623. #define SOCKET_EINTR EINTR
  624. #define SOCKET_EAGAIN EAGAIN
  625. #define SOCKET_EWOULDBLOCK EWOULDBLOCK
  626. #define SOCKET_ENFILE ENFILE
  627. #define SOCKET_EMFILE EMFILE
  628. #endif
  629. typedef uint8 int7; /* Most effective integer 0 <= x <= 127 */
  630. typedef short int15; /* Most effective integer 0 <= x <= 32767 */
  631. typedef char *my_string; /* String of characters */
  632. typedef unsigned long size_s; /* Size of strings (In string-funcs) */
  633. typedef int myf; /* Type of MyFlags in my_funcs */
  634. #ifndef byte_defined
  635. typedef char byte; /* Smallest addressable unit */
  636. #endif
  637. typedef char my_bool; /* Small bool */
  638. #if !defined(bool) && !defined(bool_defined) && (!defined(HAVE_BOOL) || !defined(__cplusplus))
  639. typedef char bool; /* Ordinary boolean values 0 1 */
  640. #endif
  641. /* Macros for converting *constants* to the right type */
  642. #define INT8(v) (int8) (v)
  643. #define INT16(v) (int16) (v)
  644. #define INT32(v) (int32) (v)
  645. #define MYF(v) (myf) (v)
  646. /*
  647.   Defines to make it possible to prioritize register assignments. No
  648.   longer that important with modern compilers.
  649. */
  650. #ifndef USING_X
  651. #define reg1 register
  652. #define reg2 register
  653. #define reg3 register
  654. #define reg4 register
  655. #define reg5 register
  656. #define reg6 register
  657. #define reg7 register
  658. #define reg8 register
  659. #define reg9 register
  660. #define reg10 register
  661. #define reg11 register
  662. #define reg12 register
  663. #define reg13 register
  664. #define reg14 register
  665. #define reg15 register
  666. #define reg16 register
  667. #endif
  668. /* Defines for time function */
  669. #define SCALE_SEC 100
  670. #define SCALE_USEC 10000
  671. #define MY_HOW_OFTEN_TO_ALARM 2 /* How often we want info on screen */
  672. #define MY_HOW_OFTEN_TO_WRITE 1000 /* How often we want info on screen */
  673. /*
  674. ** Define-funktions for reading and storing in machine independent format
  675. **  (low byte first)
  676. */
  677. /* Optimized store functions for Intel x86 */
  678. #ifdef __i386__
  679. #define sint2korr(A) (*((int16 *) (A)))
  680. #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? 
  681.   (((uint32) 255L << 24) | 
  682.    (((uint32) (uchar) (A)[2]) << 16) |
  683.    (((uint32) (uchar) (A)[1]) << 8) | 
  684.    ((uint32) (uchar) (A)[0])) : 
  685.   (((uint32) (uchar) (A)[2]) << 16) |
  686.   (((uint32) (uchar) (A)[1]) << 8) | 
  687.   ((uint32) (uchar) (A)[0])))
  688. #define sint4korr(A) (*((long *) (A)))
  689. #define uint2korr(A) (*((uint16 *) (A)))
  690. #define uint3korr(A) (long) (*((unsigned long *) (A)) & 0xFFFFFF)
  691. #define uint4korr(A) (*((unsigned long *) (A)))
  692. #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  693.     (((uint32) ((uchar) (A)[1])) << 8) +
  694.     (((uint32) ((uchar) (A)[2])) << 16) +
  695.     (((uint32) ((uchar) (A)[3])) << 24)) +
  696.       (((ulonglong) ((uchar) (A)[4])) << 32))
  697. #define uint8korr(A) (*((ulonglong *) (A)))
  698. #define sint8korr(A) (*((longlong *) (A)))
  699. #define int2store(T,A) *((uint16*) (T))= (uint16) (A)
  700. #define int3store(T,A) { *(T)=  (uchar) ((A));
  701.   *(T+1)=(uchar) (((uint) (A) >> 8));
  702.   *(T+2)=(uchar) (((A) >> 16)); }
  703. #define int4store(T,A) *((long *) (T))= (long) (A)
  704. #define int5store(T,A) { *(T)= (uchar)((A));
  705.   *((T)+1)=(uchar) (((A) >> 8));
  706.   *((T)+2)=(uchar) (((A) >> 16));
  707.   *((T)+3)=(uchar) (((A) >> 24)); 
  708.   *((T)+4)=(uchar) (((A) >> 32)); }
  709. #define int8store(T,A) *((ulonglong *) (T))= (ulonglong) (A)
  710. typedef union {
  711.   double v;
  712.   long m[2];
  713. } doubleget_union;
  714. #define doubleget(V,M) { ((doubleget_union *)&V)->m[0] = *((long*) M); 
  715.   ((doubleget_union *)&V)->m[1] = *(((long*) M)+1); }
  716. #define doublestore(T,V) { *((long *) T) = ((doubleget_union *)&V)->m[0]; 
  717.    *(((long *) T)+1) = ((doubleget_union *)&V)->m[1]; }
  718. #define float4get(V,M) { *((long *) &(V)) = *((long*) (M)); }
  719. #define float8get(V,M) doubleget((V),(M))
  720. #define float4store(V,M) memcpy((byte*) V,(byte*) (&M),sizeof(float))
  721. #define float8store(V,M) doublestore((V),(M))
  722. #endif /* __i386__ */ 
  723. #ifndef sint2korr
  724. #define sint2korr(A) (int16) (((int16) ((uchar) (A)[0])) +
  725.  ((int16) ((int16) (A)[1]) << 8))
  726. #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? 
  727.   (((uint32) 255L << 24) | 
  728.    (((uint32) (uchar) (A)[2]) << 16) |
  729.    (((uint32) (uchar) (A)[1]) << 8) | 
  730.    ((uint32) (uchar) (A)[0])) : 
  731.   (((uint32) (uchar) (A)[2]) << 16) |
  732.   (((uint32) (uchar) (A)[1]) << 8) | 
  733.   ((uint32) (uchar) (A)[0])))
  734. #define sint4korr(A) (int32) (((int32) ((uchar) (A)[0])) +
  735. (((int32) ((uchar) (A)[1]) << 8)) +
  736. (((int32) ((uchar) (A)[2]) << 16)) +
  737. (((int32) ((int16) (A)[3]) << 24)))
  738. #define sint8korr(A) (longlong) uint8korr(A)
  739. #define uint2korr(A) (uint16) (((uint16) ((uchar) (A)[0])) +
  740.   ((uint16) ((uchar) (A)[1]) << 8))
  741. #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +
  742.   (((uint32) ((uchar) (A)[1])) << 8) +
  743.   (((uint32) ((uchar) (A)[2])) << 16))
  744. #define uint4korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +
  745.   (((uint32) ((uchar) (A)[1])) << 8) +
  746.   (((uint32) ((uchar) (A)[2])) << 16) +
  747.   (((uint32) ((uchar) (A)[3])) << 24))
  748. #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  749.     (((uint32) ((uchar) (A)[1])) << 8) +
  750.     (((uint32) ((uchar) (A)[2])) << 16) +
  751.     (((uint32) ((uchar) (A)[3])) << 24)) +
  752.       (((ulonglong) ((uchar) (A)[4])) << 32))
  753. #define uint8korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  754.     (((uint32) ((uchar) (A)[1])) << 8) +
  755.     (((uint32) ((uchar) (A)[2])) << 16) +
  756.     (((uint32) ((uchar) (A)[3])) << 24)) +
  757. (((ulonglong) (((uint32) ((uchar) (A)[4])) +
  758.     (((uint32) ((uchar) (A)[5])) << 8) +
  759.     (((uint32) ((uchar) (A)[6])) << 16) +
  760.     (((uint32) ((uchar) (A)[7])) << 24))) <<
  761.       32))
  762. #define int2store(T,A) { uint def_temp= (uint) (A) ;
  763.   *((uchar*) (T))=  (uchar)(def_temp); 
  764.   *((uchar*) (T+1))=(uchar)((def_temp >> 8)); }
  765. #define int3store(T,A) { /*lint -save -e734 */
  766.   *((T))=(char) ((A));
  767.   *((T)+1)=(char) (((A) >> 8));
  768.   *((T)+2)=(char) (((A) >> 16)); 
  769.   /*lint -restore */}
  770. #define int4store(T,A) { *(T)=(char) ((A));
  771.   *((T)+1)=(char) (((A) >> 8));
  772.   *((T)+2)=(char) (((A) >> 16));
  773.   *((T)+3)=(char) (((A) >> 24)); }
  774. #define int5store(T,A) { *(T)=((A));
  775.   *((T)+1)=(((A) >> 8));
  776.   *((T)+2)=(((A) >> 16));
  777.   *((T)+3)=(((A) >> 24)); 
  778.   *((T)+4)=(((A) >> 32)); }
  779. #define int8store(T,A) { uint def_temp= (uint) (A), def_temp2= (uint) ((A) >> 32); 
  780.   int4store((T),def_temp); 
  781.   int4store((T+4),def_temp2); 
  782. }
  783. #ifdef WORDS_BIGENDIAN
  784. #define float4store(T,A)    { *(T)= ((byte *) &A)[3];
  785.                               *((T)+1)=(char) ((byte *) &A)[2];
  786.                               *((T)+2)=(char) ((byte *) &A)[1];
  787.                               *((T)+3)=(char) ((byte *) &A)[0]; }
  788. #define float4get(V,M)      { float def_temp;
  789.                               ((byte*) &def_temp)[0]=(M)[3];
  790.                               ((byte*) &def_temp)[1]=(M)[2];
  791.                               ((byte*) &def_temp)[2]=(M)[1];
  792.                               ((byte*) &def_temp)[3]=(M)[0];
  793.                               (V)=def_temp; }
  794. #define float8store(T,V)    { *(T)= ((byte *) &V)[7];
  795.                               *((T)+1)=(char) ((byte *) &V)[6];
  796.                               *((T)+2)=(char) ((byte *) &V)[5];
  797.                               *((T)+3)=(char) ((byte *) &V)[4];
  798.                               *((T)+4)=(char) ((byte *) &V)[3];
  799.                               *((T)+5)=(char) ((byte *) &V)[2];
  800.                               *((T)+6)=(char) ((byte *) &V)[1];
  801.                               *((T)+7)=(char) ((byte *) &V)[0]; }
  802. #define float8get(V,M)     { double def_temp;
  803.                               ((byte*) &def_temp)[0]=(M)[7];
  804.                               ((byte*) &def_temp)[1]=(M)[6];
  805.                               ((byte*) &def_temp)[2]=(M)[5];
  806.                               ((byte*) &def_temp)[3]=(M)[4];
  807.                               ((byte*) &def_temp)[4]=(M)[3];
  808.                               ((byte*) &def_temp)[5]=(M)[2];
  809.                               ((byte*) &def_temp)[6]=(M)[1];
  810.                               ((byte*) &def_temp)[7]=(M)[0];
  811.       (V) = def_temp; }
  812. #else
  813. #define float4get(V,M)   memcpy_fixed((byte*) &V,(byte*) (M),sizeof(float))
  814. #define float4store(V,M) memcpy_fixed((byte*) V,(byte*) (&M),sizeof(float))
  815. #if defined(__FLOAT_WORD_ORDER) && (__FLOAT_WORD_ORDER == __BIG_ENDIAN)
  816. #define doublestore(T,V)    { *(T)= ((byte *) &V)[4];
  817.                               *((T)+1)=(char) ((byte *) &V)[5];
  818.                               *((T)+2)=(char) ((byte *) &V)[6];
  819.                               *((T)+3)=(char) ((byte *) &V)[7];
  820.                               *((T)+4)=(char) ((byte *) &V)[0];
  821.                               *((T)+5)=(char) ((byte *) &V)[1];
  822.                               *((T)+6)=(char) ((byte *) &V)[2];
  823.                               *((T)+7)=(char) ((byte *) &V)[3]; }
  824. #define doubleget(V,M) { double def_temp;
  825.                               ((byte*) &def_temp)[0]=(M)[4];
  826.                               ((byte*) &def_temp)[1]=(M)[5];
  827.                               ((byte*) &def_temp)[2]=(M)[6];
  828.                               ((byte*) &def_temp)[3]=(M)[7];
  829.                               ((byte*) &def_temp)[4]=(M)[0];
  830.                               ((byte*) &def_temp)[5]=(M)[1];
  831.                               ((byte*) &def_temp)[6]=(M)[2];
  832.                               ((byte*) &def_temp)[7]=(M)[3];
  833.       (V) = def_temp; }
  834. #endif /* __FLOAT_WORD_ORDER */
  835. #define float8get(V,M)   doubleget((V),(M))
  836. #define float8store(V,M) doublestore((V),(M))
  837. #endif /* WORDS_BIGENDIAN */
  838. #endif /* sint2korr */
  839. /*
  840.   Define-funktions for reading and storing in machine format from/to
  841.   short/long to/from some place in memory V should be a (not
  842.   register) variable, M is a pointer to byte
  843. */
  844. #ifdef WORDS_BIGENDIAN
  845. #define ushortget(V,M) { V = (uint16) (((uint16) ((uchar) (M)[1]))+
  846. ((uint16) ((uint16) (M)[0]) << 8)); }
  847. #define shortget(V,M) { V = (short) (((short) ((uchar) (M)[1]))+
  848.        ((short) ((short) (M)[0]) << 8)); }
  849. #define longget(V,M) { int32 def_temp;
  850.   ((byte*) &def_temp)[0]=(M)[0];
  851.   ((byte*) &def_temp)[1]=(M)[1];
  852.   ((byte*) &def_temp)[2]=(M)[2];
  853.   ((byte*) &def_temp)[3]=(M)[3];
  854.     (V)=def_temp; }
  855. #define ulongget(V,M) { uint32 def_temp;
  856.   ((byte*) &def_temp)[0]=(M)[0];
  857.   ((byte*) &def_temp)[1]=(M)[1];
  858.   ((byte*) &def_temp)[2]=(M)[2];
  859.   ((byte*) &def_temp)[3]=(M)[3];
  860.     (V)=def_temp; }
  861. #define shortstore(T,A) { uint def_temp=(uint) (A) ;
  862.   *(T+1)=(char)(def_temp); 
  863.   *(T+0)=(char)(def_temp >> 8); }
  864. #define longstore(T,A) { *((T)+3)=((A));
  865.   *((T)+2)=(((A) >> 8));
  866.   *((T)+1)=(((A) >> 16));
  867.   *((T)+0)=(((A) >> 24)); }
  868. #define doubleget(V,M)  memcpy((byte*) &V,(byte*) (M),sizeof(double))
  869. #define doublestore(T,V) memcpy((byte*) (T),(byte*) &V,sizeof(double))
  870. #define longlongget(V,M) memcpy((byte*) &V,(byte*) (M),sizeof(ulonglong))
  871. #define longlongstore(T,V) memcpy((byte*) (T),(byte*) &V,sizeof(ulonglong))
  872. #else
  873. #define ushortget(V,M) { V = uint2korr(M); }
  874. #define shortget(V,M) { V = sint2korr(M); }
  875. #define longget(V,M) { V = sint4korr(M); }
  876. #define ulongget(V,M)   { V = uint4korr(M); }
  877. #define shortstore(T,V) int2store(T,V)
  878. #define longstore(T,V) int4store(T,V)
  879. #ifndef doubleget
  880. #define doubleget(V,M)  memcpy_fixed((byte*) &V,(byte*) (M),sizeof(double))
  881. #define doublestore(T,V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(double))
  882. #endif /* doubleget */
  883. #define longlongget(V,M) memcpy_fixed((byte*) &V,(byte*) (M),sizeof(ulonglong))
  884. #define longlongstore(T,V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(ulonglong))
  885. #endif /* WORDS_BIGENDIAN */
  886. /* sprintf does not always return the number of bytes :- */
  887. #ifdef SPRINTF_RETURNS_INT
  888. #define my_sprintf(buff,args) sprintf args
  889. #else
  890. #ifdef SPRINTF_RETURNS_PTR
  891. #define my_sprintf(buff,args) ((int)(sprintf args - buff))
  892. #else
  893. #define my_sprintf(buff,args) sprintf args,strlen(buff)
  894. #endif
  895. #endif
  896. #ifndef THREAD
  897. #define thread_safe_increment(V,L) (V)++
  898. #define thread_safe_add(V,C,L)     (V)+=(C)
  899. #define thread_safe_sub(V,C,L)     (V)-=(C)
  900. #define statistic_increment(V,L)   (V)++
  901. #define statistic_add(V,C,L)       (V)+=(C)
  902. #endif
  903. #endif /* _global_h */