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