global.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:29k
源码类别:

MySQL数据库

开发平台:

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