my_global.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:38k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* This is the include file that should be included 'first' in every C file. */
  14. #ifndef _global_h
  15. #define _global_h
  16. #ifndef EMBEDDED_LIBRARY
  17. #define HAVE_REPLICATION
  18. #define HAVE_EXTERNAL_CLIENT
  19. #endif
  20. #if defined( __EMX__) && !defined( MYSQL_SERVER)
  21. /* moved here to use below VOID macro redefinition */
  22. #define INCL_BASE
  23. #define INCL_NOPMAPI
  24. #include <os2.h>
  25. #endif /* __EMX__ */
  26. #ifdef __CYGWIN__
  27. /* We use a Unix API, so pretend it's not Windows */
  28. #undef WIN
  29. #undef WIN32
  30. #undef _WIN
  31. #undef _WIN32
  32. #undef _WIN64
  33. #undef __WIN__
  34. #undef __WIN32__
  35. #define HAVE_ERRNO_AS_DEFINE
  36. #endif /* __CYGWIN__ */
  37. /* to make command line shorter we'll define USE_PRAGMA_INTERFACE here */
  38. #ifdef USE_PRAGMA_IMPLEMENTATION
  39. #define USE_PRAGMA_INTERFACE
  40. #endif
  41. #if defined(i386) && !defined(__i386__)
  42. #define __i386__
  43. #endif
  44. /* Macros to make switching between C and C++ mode easier */
  45. #ifdef __cplusplus
  46. #define C_MODE_START    extern "C" {
  47. #define C_MODE_END }
  48. #else
  49. #define C_MODE_START
  50. #define C_MODE_END
  51. #endif
  52. #if defined(_WIN32) || defined(_WIN64) || defined(__WIN32__) || defined(WIN32)
  53. #include <config-win.h>
  54. #elif defined(OS2)
  55. #include <config-os2.h>
  56. #elif defined(__NETWARE__)
  57. #include <my_config.h>
  58. #include <config-netware.h>
  59. #if defined(__cplusplus) && defined(inline)
  60. #undef inline /* fix configure problem */
  61. #endif
  62. #else
  63. #include <my_config.h>
  64. #if defined(__cplusplus) && defined(inline)
  65. #undef inline /* fix configure problem */
  66. #endif
  67. #endif /* _WIN32... */
  68. /* Some defines to avoid ifdefs in the code */
  69. #ifndef NETWARE_YIELD
  70. #define NETWARE_YIELD
  71. #define NETWARE_SET_SCREEN_MODE(A)
  72. #endif
  73. /*
  74.   The macros below are borrowed from include/linux/compiler.h in the
  75.   Linux kernel. Use them to indicate the likelyhood of the truthfulness
  76.   of a condition. This serves two purposes - newer versions of gcc will be
  77.   able to optimize for branch predication, which could yield siginficant
  78.   performance gains in frequently executed sections of the code, and the
  79.   other reason to use them is for documentation
  80. */
  81. #if !defined(__GNUC__) || (__GNUC__ == 2 && __GNUC_MINOR__ < 96)
  82. #define __builtin_expect(x, expected_value) (x)
  83. #endif
  84. #define likely(x) __builtin_expect((x),1)
  85. #define unlikely(x) __builtin_expect((x),0)
  86. /* Fix problem with S_ISLNK() on Linux */
  87. #if defined(TARGET_OS_LINUX)
  88. #undef  _GNU_SOURCE
  89. #define _GNU_SOURCE 1
  90. #endif
  91. /* The client defines this to avoid all thread code */
  92. #if defined(UNDEF_THREADS_HACK)
  93. #undef THREAD
  94. #undef HAVE_mit_thread
  95. #undef HAVE_LINUXTHREADS
  96. #undef HAVE_NPTL
  97. #undef HAVE_UNIXWARE7_THREADS
  98. #endif
  99. #ifdef HAVE_THREADS_WITHOUT_SOCKETS
  100. /* MIT pthreads does not work with unix sockets */
  101. #undef HAVE_SYS_UN_H
  102. #endif
  103. #define __EXTENSIONS__ 1 /* We want some extension */
  104. #ifndef __STDC_EXT__
  105. #define __STDC_EXT__ 1          /* To get large file support on hpux */
  106. #endif
  107. #if defined(THREAD) && !defined(__WIN__) && !defined(OS2)
  108. #ifndef _POSIX_PTHREAD_SEMANTICS
  109. #define _POSIX_PTHREAD_SEMANTICS /* We want posix threads */
  110. #endif
  111. #if !defined(SCO)
  112. #define _REENTRANT 1 /* Some thread libraries require this */
  113. #endif
  114. #if !defined(_THREAD_SAFE) && !defined(_AIX)
  115. #define _THREAD_SAFE            /* Required for OSF1 */
  116. #endif
  117. #ifndef HAVE_mit_thread
  118. #ifdef HAVE_UNIXWARE7_THREADS
  119. #include <thread.h>
  120. #else
  121. #if defined(HPUX10) || defined(HPUX11)
  122. C_MODE_START /* HPUX needs this, signal.h bug */
  123. #include <pthread.h>
  124. C_MODE_END
  125. #else
  126. #include <pthread.h> /* AIX must have this included first */
  127. #endif
  128. #endif /* HAVE_UNIXWARE7_THREADS */
  129. #endif /* HAVE_mit_thread */
  130. #if !defined(SCO) && !defined(_REENTRANT)
  131. #define _REENTRANT 1 /* Threads requires reentrant code */
  132. #endif
  133. #endif /* THREAD */
  134. /* Go around some bugs in different OS and compilers */
  135. #ifdef _AIX /* By soren@t.dk */
  136. #define _H_STRINGS
  137. #define _SYS_STREAM_H
  138. /* #define _AIX32_CURSES */ /* XXX: this breaks AIX 4.3.3 (others?). */
  139. #define ulonglong2double(A) my_ulonglong2double(A)
  140. #define my_off_t2double(A)  my_ulonglong2double(A)
  141. C_MODE_START
  142. double my_ulonglong2double(unsigned long long A);
  143. C_MODE_END
  144. #endif /* _AIX */
  145. #ifdef HAVE_BROKEN_SNPRINTF /* HPUX 10.20 don't have this defined */
  146. #undef HAVE_SNPRINTF
  147. #endif
  148. #ifdef HAVE_BROKEN_PREAD
  149. /*
  150.   pread()/pwrite() are not 64 bit safe on HP-UX 11.0 without
  151.   installing the kernel patch PHKL_20349 or greater
  152. */
  153. #undef HAVE_PREAD
  154. #undef HAVE_PWRITE
  155. #endif
  156. #if defined(HAVE_BROKEN_INLINE) && !defined(__cplusplus)
  157. #undef inline
  158. #define inline
  159. #endif
  160. #ifdef UNDEF_HAVE_GETHOSTBYNAME_R /* For OSF4.x */
  161. #undef HAVE_GETHOSTBYNAME_R
  162. #endif
  163. #ifdef UNDEF_HAVE_INITGROUPS /* For AIX 4.3 */
  164. #undef HAVE_INITGROUPS
  165. #endif
  166. /* gcc/egcs issues */
  167. #if defined(__GNUC) && defined(__EXCEPTIONS)
  168. #error "Please add -fno-exceptions to CXXFLAGS and reconfigure/recompile"
  169. #endif
  170. /* Fix a bug in gcc 2.8.0 on IRIX 6.2 */
  171. #if SIZEOF_LONG == 4 && defined(__LONG_MAX__)
  172. #undef __LONG_MAX__             /* Is a longlong value in gcc 2.8.0 ??? */
  173. #define __LONG_MAX__ 2147483647
  174. #endif
  175. /* Fix problem when linking c++ programs with gcc 3.x */
  176. #ifdef DEFINE_CXA_PURE_VIRTUAL
  177. #define FIX_GCC_LINKING_PROBLEM 
  178. C_MODE_START int __cxa_pure_virtual() {
  179.   DBUG_ASSERT("Pure virtual method called." == "Aborted");
  180.   return 0;
  181. } C_MODE_END
  182. #else
  183. #define FIX_GCC_LINKING_PROBLEM
  184. #endif
  185. /* egcs 1.1.2 has a problem with memcpy on Alpha */
  186. #if defined(__GNUC__) && defined(__alpha__) && ! (__GNUC__ > 2 || (__GNUC__ == 2 &&  __GNUC_MINOR__ >= 95))
  187. #define BAD_MEMCPY
  188. #endif
  189. #if defined(_lint) && !defined(lint)
  190. #define lint
  191. #endif
  192. #if SIZEOF_LONG_LONG > 4 && !defined(_LONG_LONG)
  193. #define _LONG_LONG 1 /* For AIX string library */
  194. #endif
  195. #ifndef stdin
  196. #include <stdio.h>
  197. #endif
  198. #ifdef HAVE_STDLIB_H
  199. #include <stdlib.h>
  200. #endif
  201. #ifdef HAVE_STDDEF_H
  202. #include <stddef.h>
  203. #endif
  204. #include <math.h>
  205. #ifdef HAVE_LIMITS_H
  206. #include <limits.h>
  207. #endif
  208. #ifdef HAVE_FLOAT_H
  209. #include <float.h>
  210. #endif
  211. #ifdef HAVE_SYS_TYPES_H
  212. #include <sys/types.h>
  213. #endif
  214. #ifdef HAVE_FCNTL_H
  215. #include <fcntl.h>
  216. #endif
  217. #ifdef HAVE_SYS_TIMEB_H
  218. #include <sys/timeb.h> /* Avoid warnings on SCO */
  219. #endif
  220. #if TIME_WITH_SYS_TIME
  221. # include <sys/time.h>
  222. # include <time.h>
  223. #else
  224. # if HAVE_SYS_TIME_H
  225. #  include <sys/time.h>
  226. # else
  227. #  include <time.h>
  228. # endif
  229. #endif /* TIME_WITH_SYS_TIME */
  230. #ifdef HAVE_UNISTD_H
  231. #include <unistd.h>
  232. #endif
  233. #if defined(__cplusplus) && defined(NO_CPLUSPLUS_ALLOCA)
  234. #undef HAVE_ALLOCA
  235. #undef HAVE_ALLOCA_H
  236. #endif
  237. #ifdef HAVE_ALLOCA_H
  238. #include <alloca.h>
  239. #endif
  240. #ifdef HAVE_ATOMIC_ADD
  241. #define new my_arg_new
  242. #define need_to_restore_new 1
  243. C_MODE_START
  244. #include <asm/atomic.h>
  245. C_MODE_END
  246. #ifdef need_to_restore_new /* probably safer than #ifdef new */
  247. #undef new
  248. #undef need_to_restore_new
  249. #endif
  250. #endif
  251. #include <errno.h> /* Recommended by debian */
  252. /* We need the following to go around a problem with openssl on solaris */
  253. #if defined(HAVE_CRYPT_H)
  254. #include <crypt.h>
  255. #endif
  256. /*
  257.   A lot of our programs uses asserts, so better to always include it
  258.   This also fixes a problem when people uses DBUG_ASSERT without including
  259.   assert.h
  260. */
  261. #include <assert.h>
  262. /* Go around some bugs in different OS and compilers */
  263. #if defined(_HPUX_SOURCE) && defined(HAVE_SYS_STREAM_H)
  264. #include <sys/stream.h> /* HPUX 10.20 defines ulong here. UGLY !!! */
  265. #define HAVE_ULONG
  266. #endif
  267. #ifdef DONT_USE_FINITE /* HPUX 11.x has is_finite() */
  268. #undef HAVE_FINITE
  269. #endif
  270. #if defined(HPUX10) && defined(_LARGEFILE64_SOURCE) && defined(THREAD)
  271. /* Fix bug in setrlimit */
  272. #undef setrlimit
  273. #define setrlimit cma_setrlimit64
  274. #endif
  275. /* Declare madvise where it is not declared for C++, like Solaris */
  276. #if HAVE_MADVISE && !HAVE_DECL_MADVISE && defined(__cplusplus)
  277. extern "C" int madvise(void *addr, size_t len, int behav);
  278. #endif
  279. #ifdef __QNXNTO__
  280. /* This has to be after include limits.h */
  281. #define HAVE_ERRNO_AS_DEFINE
  282. #define HAVE_FCNTL_LOCK
  283. #undef  HAVE_FINITE
  284. #undef  LONGLONG_MIN            /* These get wrongly defined in QNX 6.2 */
  285. #undef  LONGLONG_MAX            /* standard system library 'limits.h' */
  286. #ifdef __cplusplus
  287. #define HAVE_RINT               /* rint() and isnan() functions are not */
  288. #define rint(a) std::rint(a)    /* visible in C++ scope due to an error */
  289. #define isnan(a) std::isnan(a)  /* in the usr/include/math.h on QNX     */
  290. #endif
  291. #endif
  292. /* We can not live without the following defines */
  293. #define USE_MYFUNC 1 /* Must use syscall indirection */
  294. #define MASTER 1 /* Compile without unireg */
  295. #define ENGLISH 1 /* Messages in English */
  296. #define POSIX_MISTAKE 1 /* regexp: Fix stupid spec error */
  297. #define USE_REGEX 1 /* We want the use the regex library */
  298. /* Do not define for ultra sparcs */
  299. #ifndef OS2
  300. #define USE_BMOVE512 1 /* Use this unless system bmove is faster */
  301. #endif
  302. #define QUOTE_ARG(x) #x /* Quote argument (before cpp) */
  303. #define STRINGIFY_ARG(x) QUOTE_ARG(x) /* Quote argument, after cpp */
  304. /* Paranoid settings. Define I_AM_PARANOID if you are paranoid */
  305. #ifdef I_AM_PARANOID
  306. #define DONT_ALLOW_USER_CHANGE 1
  307. #define DONT_USE_MYSQL_PWD 1
  308. #endif
  309. /* Does the system remember a signal handler after a signal ? */
  310. #ifndef HAVE_BSD_SIGNALS
  311. #define DONT_REMEMBER_SIGNAL
  312. #endif
  313. /* Define void to stop lint from generating "null effekt" comments */
  314. #ifndef DONT_DEFINE_VOID
  315. #ifdef _lint
  316. int __void__;
  317. #define VOID(X) (__void__ = (int) (X))
  318. #else
  319. #undef VOID
  320. #define VOID(X) (X)
  321. #endif
  322. #endif /* DONT_DEFINE_VOID */
  323. #if defined(_lint) || defined(FORCE_INIT_OF_VARS)
  324. #define LINT_INIT(var) var=0 /* No uninitialize-warning */
  325. #else
  326. #define LINT_INIT(var)
  327. #endif
  328. #if defined(_lint) || defined(FORCE_INIT_OF_VARS) || defined(HAVE_purify)
  329. #define PURIFY_OR_LINT_INIT(var) var=0
  330. #else
  331. #define PURIFY_OR_LINT_INIT(var)
  332. #endif
  333. /* Define some useful general macros */
  334. #if !defined(max)
  335. #define max(a, b) ((a) > (b) ? (a) : (b))
  336. #define min(a, b) ((a) < (b) ? (a) : (b))
  337. #endif
  338. #if defined(__EMX__) || !defined(HAVE_UINT)
  339. #undef HAVE_UINT
  340. #define HAVE_UINT
  341. typedef unsigned int uint;
  342. typedef unsigned short ushort;
  343. #endif
  344. #define CMP_NUM(a,b)    (((a) < (b)) ? -1 : ((a) == (b)) ? 0 : 1)
  345. #define sgn(a) (((a) < 0) ? -1 : ((a) > 0) ? 1 : 0)
  346. #define swap_variables(t, a, b) { register t dummy; dummy= a; a= b; b= dummy; }
  347. #define test(a) ((a) ? 1 : 0)
  348. #define set_if_bigger(a,b)  do { if ((a) < (b)) (a)=(b); } while(0)
  349. #define set_if_smaller(a,b) do { if ((a) > (b)) (a)=(b); } while(0)
  350. #define test_all_bits(a,b) (((a) & (b)) == (b))
  351. #define set_bits(type, bit_count) (sizeof(type)*8 <= (bit_count) ? ~(type) 0 : ((((type) 1) << (bit_count)) - (type) 1))
  352. #define array_elements(A) ((uint) (sizeof(A)/sizeof(A[0])))
  353. #ifndef HAVE_RINT
  354. #define rint(A) floor((A)+(((A) < 0)? -0.5 : 0.5))
  355. #endif
  356. /* Define some general constants */
  357. #ifndef TRUE
  358. #define TRUE (1) /* Logical true */
  359. #define FALSE (0) /* Logical false */
  360. #endif
  361. #if defined(__GNUC__)
  362. #define function_volatile volatile
  363. #define my_reinterpret_cast(A) reinterpret_cast<A>
  364. #define my_const_cast(A) const_cast<A>
  365. #elif !defined(my_reinterpret_cast)
  366. #define my_reinterpret_cast(A) (A)
  367. #define my_const_cast(A) (A)
  368. #endif
  369. #if !defined(__attribute__) && (defined(__cplusplus) || !defined(__GNUC__)  || __GNUC__ == 2 && __GNUC_MINOR__ < 8)
  370. #define __attribute__(A)
  371. #endif
  372. /* From old s-system.h */
  373. /*
  374.   Support macros for non ansi & other old compilers. Since such
  375.   things are no longer supported we do nothing. We keep then since
  376.   some of our code may still be needed to upgrade old customers.
  377. */
  378. #define _VARARGS(X) X
  379. #define _STATIC_VARARGS(X) X
  380. #define _PC(X) X
  381. #if defined(DBUG_ON) && defined(DBUG_OFF)
  382. #undef DBUG_OFF
  383. #endif
  384. #if defined(_lint) && !defined(DBUG_OFF)
  385. #define DBUG_OFF
  386. #endif
  387. #include <my_dbug.h>
  388. #define MIN_ARRAY_SIZE 0 /* Zero or One. Gcc allows zero*/
  389. #define ASCII_BITS_USED 8 /* Bit char used */
  390. #define NEAR_F /* No near function handling */
  391. /* Some types that is different between systems */
  392. typedef int File; /* File descriptor */
  393. #ifndef Socket_defined
  394. typedef int my_socket; /* File descriptor for sockets */
  395. #define INVALID_SOCKET -1
  396. #endif
  397. /* Type for fuctions that handles signals */
  398. #define sig_handler RETSIGTYPE
  399. C_MODE_START
  400. typedef void (*sig_return)();/* Returns type from signal */
  401. C_MODE_END
  402. #if defined(__GNUC__) && !defined(_lint)
  403. typedef char pchar; /* Mixed prototypes can take char */
  404. typedef char puchar; /* Mixed prototypes can take char */
  405. typedef char pbool; /* Mixed prototypes can take char */
  406. typedef short pshort; /* Mixed prototypes can take short int */
  407. typedef float pfloat; /* Mixed prototypes can take float */
  408. #else
  409. typedef int pchar; /* Mixed prototypes can't take char */
  410. typedef uint puchar; /* Mixed prototypes can't take char */
  411. typedef int pbool; /* Mixed prototypes can't take char */
  412. typedef int pshort; /* Mixed prototypes can't take short int */
  413. typedef double pfloat; /* Mixed prototypes can't take float */
  414. #endif
  415. C_MODE_START
  416. typedef int (*qsort_cmp)(const void *,const void *);
  417. typedef int (*qsort_cmp2)(void*, const void *,const void *);
  418. C_MODE_END
  419. #ifdef HAVE_mit_thread
  420. #define qsort_t void
  421. #undef QSORT_TYPE_IS_VOID
  422. #define QSORT_TYPE_IS_VOID
  423. #else
  424. #define qsort_t RETQSORTTYPE /* Broken GCC cant handle typedef !!!! */
  425. #endif
  426. #ifdef HAVE_mit_thread
  427. #define size_socket socklen_t /* Type of last arg to accept */
  428. #else
  429. #ifdef HAVE_SYS_SOCKET_H
  430. #include <sys/socket.h>
  431. #endif
  432. typedef SOCKET_SIZE_TYPE size_socket;
  433. #endif
  434. #ifndef SOCKOPT_OPTLEN_TYPE
  435. #define SOCKOPT_OPTLEN_TYPE size_socket
  436. #endif
  437. /* file create flags */
  438. #ifndef O_SHARE /* Probably not windows */
  439. #define O_SHARE 0 /* Flag to my_open for shared files */
  440. #ifndef O_BINARY
  441. #define O_BINARY 0 /* Flag to my_open for binary files */
  442. #endif
  443. #ifndef FILE_BINARY
  444. #define FILE_BINARY O_BINARY /* Flag to my_fopen for binary streams */
  445. #endif
  446. #ifdef HAVE_FCNTL
  447. #define HAVE_FCNTL_LOCK
  448. #define F_TO_EOF 0L /* Param to lockf() to lock rest of file */
  449. #endif
  450. #endif /* O_SHARE */
  451. #ifndef O_TEMPORARY
  452. #define O_TEMPORARY 0
  453. #endif
  454. #ifndef O_SHORT_LIVED
  455. #define O_SHORT_LIVED 0
  456. #endif
  457. #ifndef O_NOFOLLOW
  458. #define O_NOFOLLOW      0
  459. #endif
  460. /* #define USE_RECORD_LOCK */
  461. /* Unsigned types supported by the compiler */
  462. #define UNSINT8 /* unsigned int8 (char) */
  463. #define UNSINT16 /* unsigned int16 */
  464. #define UNSINT32 /* unsigned int32 */
  465. /* General constants */
  466. #define SC_MAXWIDTH 256 /* Max width of screen (for error messages) */
  467. #define FN_LEN 256 /* Max file name len */
  468. #define FN_HEADLEN 253 /* Max length of filepart of file name */
  469. #define FN_EXTLEN 20 /* Max length of extension (part of FN_LEN) */
  470. #ifdef PATH_MAX
  471. #define FN_REFLEN       PATH_MAX/* Max length of full path-name */
  472. #else
  473. #define FN_REFLEN 512 /* Max length of full path-name */
  474. #endif
  475. #define FN_EXTCHAR '.'
  476. #define FN_HOMELIB '~' /* ~/ is used as abbrev for home dir */
  477. #define FN_CURLIB '.' /* ./ is used as abbrev for current dir */
  478. #define FN_PARENTDIR ".." /* Parent directory; Must be a string */
  479. #define FN_DEVCHAR ':'
  480. #ifndef FN_LIBCHAR
  481. #ifdef __EMX__
  482. #define FN_LIBCHAR '\'
  483. #define FN_ROOTDIR "\"
  484. #else
  485. #define FN_LIBCHAR '/'
  486. #define FN_ROOTDIR "/"
  487. #endif
  488. #endif
  489. #define MY_NFILE 64 /* This is only used to save filenames */
  490. #ifndef OS_FILE_LIMIT
  491. #define OS_FILE_LIMIT 65535
  492. #endif
  493. /* #define EXT_IN_LIBNAME     */
  494. /* #define FN_NO_CASE_SENCE   */
  495. /* #define FN_UPPER_CASE TRUE */
  496. /*
  497.   Io buffer size; Must be a power of 2 and a multiple of 512. May be
  498.   smaller what the disk page size. This influences the speed of the
  499.   isam btree library. eg to big to slow.
  500. */
  501. #define IO_SIZE 4096
  502. /*
  503.   How much overhead does malloc have. The code often allocates
  504.   something like 1024-MALLOC_OVERHEAD bytes
  505. */
  506. #ifdef SAFEMALLOC
  507. #define MALLOC_OVERHEAD (8+24+4)
  508. #else
  509. #define MALLOC_OVERHEAD 8
  510. #endif
  511. /* get memory in huncs */
  512. #define ONCE_ALLOC_INIT (uint) (4096-MALLOC_OVERHEAD)
  513. /* Typical record cash */
  514. #define RECORD_CACHE_SIZE (uint) (64*1024-MALLOC_OVERHEAD)
  515. /* Typical key cash */
  516. #define KEY_CACHE_SIZE (uint) (8*1024*1024-MALLOC_OVERHEAD)
  517. /* Default size of a key cache block  */
  518. #define KEY_CACHE_BLOCK_SIZE (uint) 1024
  519. /* Some things that this system doesn't have */
  520. #define NO_HASH /* Not needed anymore */
  521. #ifdef __WIN__
  522. #define NO_DIR_LIBRARY /* Not standar dir-library */
  523. #define USE_MY_STAT_STRUCT /* For my_lib */
  524. #endif
  525. /* Some defines of functions for portability */
  526. #undef remove /* Crashes MySQL on SCO 5.0.0 */
  527. #ifndef __WIN__
  528. #ifdef OS2
  529. #define closesocket(A) soclose(A)
  530. #else
  531. #define closesocket(A) close(A)
  532. #endif
  533. #ifndef ulonglong2double
  534. #define ulonglong2double(A) ((double) (ulonglong) (A))
  535. #define my_off_t2double(A)  ((double) (my_off_t) (A))
  536. #endif
  537. #endif
  538. #ifndef offsetof
  539. #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
  540. #endif
  541. #define ulong_to_double(X) ((double) (ulong) (X))
  542. #define SET_STACK_SIZE(X) /* Not needed on real machines */
  543. #if !defined(HAVE_mit_thread) && !defined(HAVE_STRTOK_R)
  544. #define strtok_r(A,B,C) strtok((A),(B))
  545. #endif
  546. /* Remove some things that mit_thread break or doesn't support */
  547. #if defined(HAVE_mit_thread) && defined(THREAD)
  548. #undef HAVE_PREAD
  549. #undef HAVE_REALPATH
  550. #undef HAVE_MLOCK
  551. #undef HAVE_TEMPNAM /* Use ours */
  552. #undef HAVE_PTHREAD_SETPRIO
  553. #undef HAVE_FTRUNCATE
  554. #undef HAVE_READLINK
  555. #endif
  556. /* This is from the old m-machine.h file */
  557. #if SIZEOF_LONG_LONG > 4
  558. #define HAVE_LONG_LONG 1
  559. #endif
  560. /*
  561.   Some pre-ANSI-C99 systems like AIX 5.1 and Linux/GCC 2.95 define
  562.   ULONGLONG_MAX, LONGLONG_MIN, LONGLONG_MAX; we use them if they're defined.
  563.   Also on Windows we define these constants by hand in config-win.h.
  564. */
  565. #if defined(HAVE_LONG_LONG) && !defined(LONGLONG_MIN)
  566. #define LONGLONG_MIN ((long long) 0x8000000000000000LL)
  567. #define LONGLONG_MAX ((long long) 0x7FFFFFFFFFFFFFFFLL)
  568. #endif
  569. #if defined(HAVE_LONG_LONG) && !defined(ULONGLONG_MAX)
  570. /* First check for ANSI C99 definition: */
  571. #ifdef ULLONG_MAX
  572. #define ULONGLONG_MAX  ULLONG_MAX
  573. #else
  574. #define ULONGLONG_MAX ((unsigned long long)(~0ULL))
  575. #endif
  576. #endif /* defined (HAVE_LONG_LONG) && !defined(ULONGLONG_MAX)*/
  577. #define INT_MIN32       (~0x7FFFFFFFL)
  578. #define INT_MAX32       0x7FFFFFFFL
  579. #define UINT_MAX32      0xFFFFFFFFL
  580. #define INT_MIN24       (~0x007FFFFF)
  581. #define INT_MAX24       0x007FFFFF
  582. #define UINT_MAX24      0x00FFFFFF
  583. #define INT_MIN16       (~0x7FFF)
  584. #define INT_MAX16       0x7FFF
  585. #define UINT_MAX16      0xFFFF
  586. #define INT_MIN8        (~0x7F)
  587. #define INT_MAX8        0x7F
  588. /* From limits.h instead */
  589. #ifndef DBL_MIN
  590. #define DBL_MIN 4.94065645841246544e-324
  591. #define FLT_MIN ((float)1.40129846432481707e-45)
  592. #endif
  593. #ifndef DBL_MAX
  594. #define DBL_MAX 1.79769313486231470e+308
  595. #define FLT_MAX ((float)3.40282346638528860e+38)
  596. #endif
  597. #if !defined(HAVE_ISINF) && !defined(isinf)
  598. #define isinf(X)    0
  599. #endif
  600. /*
  601.   Max size that must be added to a so that we know Size to make
  602.   adressable obj.
  603. */
  604. #if SIZEOF_CHARP == 4
  605. typedef long my_ptrdiff_t;
  606. #else
  607. typedef long long my_ptrdiff_t;
  608. #endif
  609. #define MY_ALIGN(A,L) (((A) + (L) - 1) & ~((L) - 1))
  610. #define ALIGN_SIZE(A) MY_ALIGN((A),sizeof(double))
  611. /* Size to make adressable obj. */
  612. #define ALIGN_PTR(A, t) ((t*) MY_ALIGN((A),sizeof(t)))
  613.  /* Offset of field f in structure t */
  614. #define OFFSET(t, f) ((size_t)(char *)&((t *)0)->f)
  615. #define ADD_TO_PTR(ptr,size,type) (type) ((byte*) (ptr)+size)
  616. #define PTR_BYTE_DIFF(A,B) (my_ptrdiff_t) ((byte*) (A) - (byte*) (B))
  617. #define NullS (char *) 0
  618. /* Nowdays we do not support MessyDos */
  619. #ifndef NEAR
  620. #define NEAR /* Who needs segments ? */
  621. #define FAR /* On a good machine */
  622. #ifndef HUGE_PTR
  623. #define HUGE_PTR
  624. #endif
  625. #endif
  626. #if defined(__IBMC__) || defined(__IBMCPP__)
  627. /* This was  _System _Export but caused a lot of warnings on _AIX43 */
  628. #define STDCALL
  629. #elif !defined( STDCALL)
  630. #define STDCALL
  631. #endif
  632. /* Typdefs for easyier portability */
  633. #if defined(VOIDTYPE)
  634. typedef void *gptr; /* Generic pointer */
  635. #else
  636. typedef char *gptr; /* Generic pointer */
  637. #endif
  638. #ifndef HAVE_INT_8_16_32
  639. typedef signed char int8;       /* Signed integer >= 8  bits */
  640. typedef short int16; /* Signed integer >= 16 bits */
  641. #endif
  642. #ifndef HAVE_UCHAR
  643. typedef unsigned char uchar; /* Short for unsigned char */
  644. #endif
  645. typedef unsigned char uint8; /* Short for unsigned integer >= 8  bits */
  646. typedef unsigned short uint16; /* Short for unsigned integer >= 16 bits */
  647. #if SIZEOF_INT == 4
  648. #ifndef HAVE_INT_8_16_32
  649. typedef int int32;
  650. #endif
  651. typedef unsigned int uint32; /* Short for unsigned integer >= 32 bits */
  652. #elif SIZEOF_LONG == 4
  653. #ifndef HAVE_INT_8_16_32
  654. typedef long int32;
  655. #endif
  656. typedef unsigned long uint32; /* Short for unsigned integer >= 32 bits */
  657. #else
  658. error "Neither int or long is of 4 bytes width"
  659. #endif
  660. #if !defined(HAVE_ULONG) && !defined(TARGET_OS_LINUX) && !defined(__USE_MISC)
  661. typedef unsigned long ulong;   /* Short for unsigned long */
  662. #endif
  663. #ifndef longlong_defined
  664. #if defined(HAVE_LONG_LONG) && SIZEOF_LONG != 8
  665. typedef unsigned long long int ulonglong; /* ulong or unsigned long long */
  666. typedef long long int longlong;
  667. #else
  668. typedef unsigned long ulonglong;   /* ulong or unsigned long long */
  669. typedef long longlong;
  670. #endif
  671. #endif
  672. #if defined(NO_CLIENT_LONG_LONG)
  673. typedef unsigned long my_ulonglong;
  674. #elif defined (__WIN__)
  675. typedef unsigned __int64 my_ulonglong;
  676. #else
  677. typedef unsigned long long my_ulonglong;
  678. #endif
  679. #ifdef USE_RAID
  680. /*
  681.   The following is done with a if to not get problems with pre-processors
  682.   with late define evaluation
  683. */
  684. #if SIZEOF_OFF_T == 4
  685. #define SYSTEM_SIZEOF_OFF_T 4
  686. #else
  687. #define SYSTEM_SIZEOF_OFF_T 8
  688. #endif
  689. #undef  SIZEOF_OFF_T
  690. #define SIZEOF_OFF_T     8
  691. #else
  692. #define SYSTEM_SIZEOF_OFF_T SIZEOF_OFF_T
  693. #endif /* USE_RAID */
  694. #if SIZEOF_OFF_T > 4
  695. typedef ulonglong my_off_t;
  696. #else
  697. typedef unsigned long my_off_t;
  698. #endif
  699. #define MY_FILEPOS_ERROR (~(my_off_t) 0)
  700. #if !defined(__WIN__) && !defined(OS2)
  701. typedef off_t os_off_t;
  702. #endif
  703. #if defined(__WIN__)
  704. #define socket_errno WSAGetLastError()
  705. #define SOCKET_EINTR WSAEINTR
  706. #define SOCKET_EAGAIN WSAEINPROGRESS
  707. #define SOCKET_ETIMEDOUT WSAETIMEDOUT
  708. #define SOCKET_EWOULDBLOCK WSAEWOULDBLOCK
  709. #define SOCKET_ENFILE ENFILE
  710. #define SOCKET_EMFILE EMFILE
  711. #elif defined(OS2)
  712. #define socket_errno sock_errno()
  713. #define SOCKET_EINTR SOCEINTR
  714. #define SOCKET_EAGAIN SOCEINPROGRESS
  715. #define SOCKET_ETIMEDOUT SOCKET_EINTR
  716. #define SOCKET_EWOULDBLOCK SOCEWOULDBLOCK
  717. #define SOCKET_ENFILE SOCENFILE
  718. #define SOCKET_EMFILE SOCEMFILE
  719. #define closesocket(A) soclose(A)
  720. #else /* Unix */
  721. #define socket_errno errno
  722. #define closesocket(A) close(A)
  723. #define SOCKET_EINTR EINTR
  724. #define SOCKET_EAGAIN EAGAIN
  725. #define SOCKET_ETIMEDOUT SOCKET_EINTR
  726. #define SOCKET_EWOULDBLOCK EWOULDBLOCK
  727. #define SOCKET_ENFILE ENFILE
  728. #define SOCKET_EMFILE EMFILE
  729. #endif
  730. typedef uint8 int7; /* Most effective integer 0 <= x <= 127 */
  731. typedef short int15; /* Most effective integer 0 <= x <= 32767 */
  732. typedef char *my_string; /* String of characters */
  733. typedef unsigned long size_s; /* Size of strings (In string-funcs) */
  734. typedef int myf; /* Type of MyFlags in my_funcs */
  735. #ifndef byte_defined
  736. typedef char byte; /* Smallest addressable unit */
  737. #endif
  738. typedef char my_bool; /* Small bool */
  739. #if !defined(bool) && !defined(bool_defined) && (!defined(HAVE_BOOL) || !defined(__cplusplus))
  740. typedef char bool; /* Ordinary boolean values 0 1 */
  741. #endif
  742. /* Macros for converting *constants* to the right type */
  743. #define INT8(v) (int8) (v)
  744. #define INT16(v) (int16) (v)
  745. #define INT32(v) (int32) (v)
  746. #define MYF(v) (myf) (v)
  747. #ifndef LL
  748. #ifdef HAVE_LONG_LONG
  749. #define LL(A) A ## LL
  750. #else
  751. #define LL(A) A ## L
  752. #endif
  753. #endif
  754. #ifndef ULL
  755. #ifdef HAVE_LONG_LONG
  756. #define ULL(A) A ## ULL
  757. #else
  758. #define ULL(A) A ## UL
  759. #endif
  760. #endif
  761. /*
  762.   Defines to make it possible to prioritize register assignments. No
  763.   longer that important with modern compilers.
  764. */
  765. #ifndef USING_X
  766. #define reg1 register
  767. #define reg2 register
  768. #define reg3 register
  769. #define reg4 register
  770. #define reg5 register
  771. #define reg6 register
  772. #define reg7 register
  773. #define reg8 register
  774. #define reg9 register
  775. #define reg10 register
  776. #define reg11 register
  777. #define reg12 register
  778. #define reg13 register
  779. #define reg14 register
  780. #define reg15 register
  781. #define reg16 register
  782. #endif
  783. /*
  784.   Sometimes we want to make sure that the variable is not put into
  785.   a register in debugging mode so we can see its value in the core
  786. */
  787. #ifndef DBUG_OFF
  788. #define dbug_volatile volatile
  789. #else
  790. #define dbug_volatile
  791. #endif
  792. /* Defines for time function */
  793. #define SCALE_SEC 100
  794. #define SCALE_USEC 10000
  795. #define MY_HOW_OFTEN_TO_ALARM 2 /* How often we want info on screen */
  796. #define MY_HOW_OFTEN_TO_WRITE 1000 /* How often we want info on screen */
  797. #ifndef set_timespec
  798. #ifdef HAVE_TIMESPEC_TS_SEC
  799. #define set_timespec(ABSTIME,SEC) { (ABSTIME).ts_sec=time(0) + (time_t) (SEC); (ABSTIME).ts_nsec=0; }
  800. #else
  801. #define set_timespec(ABSTIME,SEC) 
  802. {
  803.   struct timeval tv;
  804.   gettimeofday(&tv,0);
  805.   (ABSTIME).tv_sec=tv.tv_sec+(time_t) (SEC);
  806.   (ABSTIME).tv_nsec=tv.tv_usec*1000;
  807. }
  808. #endif /* HAVE_TIMESPEC_TS_SEC */
  809. #endif /* set_timespec */
  810. /*
  811.   Define-funktions for reading and storing in machine independent format
  812.   (low byte first)
  813. */
  814. /* Optimized store functions for Intel x86 */
  815. #if defined(__i386__) && !defined(_WIN64)
  816. #define sint2korr(A) (*((int16 *) (A)))
  817. #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? 
  818.   (((uint32) 255L << 24) | 
  819.    (((uint32) (uchar) (A)[2]) << 16) |
  820.    (((uint32) (uchar) (A)[1]) << 8) | 
  821.    ((uint32) (uchar) (A)[0])) : 
  822.   (((uint32) (uchar) (A)[2]) << 16) |
  823.   (((uint32) (uchar) (A)[1]) << 8) | 
  824.   ((uint32) (uchar) (A)[0])))
  825. #define sint4korr(A) (*((long *) (A)))
  826. #define uint2korr(A) (*((uint16 *) (A)))
  827. #ifdef HAVE_purify
  828. #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +
  829.   (((uint32) ((uchar) (A)[1])) << 8) +
  830.   (((uint32) ((uchar) (A)[2])) << 16))
  831. #else
  832. /*
  833.    ATTENTION !
  834.    
  835.     Please, note, uint3korr reads 4 bytes (not 3) !
  836.     It means, that you have to provide enough allocated space !
  837. */
  838. #define uint3korr(A) (long) (*((unsigned int *) (A)) & 0xFFFFFF)
  839. #endif
  840. #define uint4korr(A) (*((unsigned long *) (A)))
  841. #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  842.     (((uint32) ((uchar) (A)[1])) << 8) +
  843.     (((uint32) ((uchar) (A)[2])) << 16) +
  844.     (((uint32) ((uchar) (A)[3])) << 24)) +
  845.     (((ulonglong) ((uchar) (A)[4])) << 32))
  846. #define uint8korr(A) (*((ulonglong *) (A)))
  847. #define sint8korr(A) (*((longlong *) (A)))
  848. #define int2store(T,A) *((uint16*) (T))= (uint16) (A)
  849. #define int3store(T,A)  do { *(T)=  (uchar) ((A));
  850.                             *(T+1)=(uchar) (((uint) (A) >> 8));
  851.                             *(T+2)=(uchar) (((A) >> 16)); } while (0)
  852. #define int4store(T,A) *((long *) (T))= (long) (A)
  853. #define int5store(T,A)  do { *(T)= (uchar)((A));
  854.                              *((T)+1)=(uchar) (((A) >> 8));
  855.                              *((T)+2)=(uchar) (((A) >> 16));
  856.                              *((T)+3)=(uchar) (((A) >> 24)); 
  857.                              *((T)+4)=(uchar) (((A) >> 32)); } while(0)
  858. #define int8store(T,A) *((ulonglong *) (T))= (ulonglong) (A)
  859. typedef union {
  860.   double v;
  861.   long m[2];
  862. } doubleget_union;
  863. #define doubleget(V,M)
  864. do { doubleget_union _tmp; 
  865.      _tmp.m[0] = *((long*)(M)); 
  866.      _tmp.m[1] = *(((long*) (M))+1); 
  867.      (V) = _tmp.v; } while(0)
  868. #define doublestore(T,V) do { *((long *) T) = ((doubleget_union *)&V)->m[0]; 
  869.      *(((long *) T)+1) = ((doubleget_union *)&V)->m[1]; 
  870.                          } while (0)
  871. #define float4get(V,M) do { *((long *) &(V)) = *((long*) (M)); } while(0)
  872. #define float8get(V,M) doubleget((V),(M))
  873. #define float4store(V,M) memcpy((byte*) V,(byte*) (&M),sizeof(float))
  874. #define floatstore(T,V)  memcpy((byte*)(T), (byte*)(&V),sizeof(float))
  875. #define floatget(V,M)    memcpy((byte*) &V,(byte*) (M),sizeof(float))
  876. #define float8store(V,M) doublestore((V),(M))
  877. #endif /* __i386__ */
  878. #ifndef sint2korr
  879. /*
  880.   We're here if it's not a IA-32 architecture (Win32 and UNIX IA-32 defines
  881.   were done before)
  882. */
  883. #define sint2korr(A) (int16) (((int16) ((uchar) (A)[0])) +
  884.  ((int16) ((int16) (A)[1]) << 8))
  885. #define sint3korr(A) ((int32) ((((uchar) (A)[2]) & 128) ? 
  886.   (((uint32) 255L << 24) | 
  887.    (((uint32) (uchar) (A)[2]) << 16) |
  888.    (((uint32) (uchar) (A)[1]) << 8) | 
  889.    ((uint32) (uchar) (A)[0])) : 
  890.   (((uint32) (uchar) (A)[2]) << 16) |
  891.   (((uint32) (uchar) (A)[1]) << 8) | 
  892.   ((uint32) (uchar) (A)[0])))
  893. #define sint4korr(A) (int32) (((int32) ((uchar) (A)[0])) +
  894. (((int32) ((uchar) (A)[1]) << 8)) +
  895. (((int32) ((uchar) (A)[2]) << 16)) +
  896. (((int32) ((int16) (A)[3]) << 24)))
  897. #define sint8korr(A) (longlong) uint8korr(A)
  898. #define uint2korr(A) (uint16) (((uint16) ((uchar) (A)[0])) +
  899.   ((uint16) ((uchar) (A)[1]) << 8))
  900. #define uint3korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +
  901.   (((uint32) ((uchar) (A)[1])) << 8) +
  902.   (((uint32) ((uchar) (A)[2])) << 16))
  903. #define uint4korr(A) (uint32) (((uint32) ((uchar) (A)[0])) +
  904.   (((uint32) ((uchar) (A)[1])) << 8) +
  905.   (((uint32) ((uchar) (A)[2])) << 16) +
  906.   (((uint32) ((uchar) (A)[3])) << 24))
  907. #define uint5korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  908.     (((uint32) ((uchar) (A)[1])) << 8) +
  909.     (((uint32) ((uchar) (A)[2])) << 16) +
  910.     (((uint32) ((uchar) (A)[3])) << 24)) +
  911.     (((ulonglong) ((uchar) (A)[4])) << 32))
  912. #define uint8korr(A) ((ulonglong)(((uint32) ((uchar) (A)[0])) +
  913.     (((uint32) ((uchar) (A)[1])) << 8) +
  914.     (((uint32) ((uchar) (A)[2])) << 16) +
  915.     (((uint32) ((uchar) (A)[3])) << 24)) +
  916. (((ulonglong) (((uint32) ((uchar) (A)[4])) +
  917.     (((uint32) ((uchar) (A)[5])) << 8) +
  918.     (((uint32) ((uchar) (A)[6])) << 16) +
  919.     (((uint32) ((uchar) (A)[7])) << 24))) <<
  920.     32))
  921. #define int2store(T,A)       do { uint def_temp= (uint) (A) ;
  922.                                   *((uchar*) (T))=  (uchar)(def_temp); 
  923.                                    *((uchar*) (T)+1)=(uchar)((def_temp >> 8)); 
  924.                              } while(0)
  925. #define int3store(T,A)       do { /*lint -save -e734 */
  926.                                   *((uchar*)(T))=(uchar) ((A));
  927.                                   *((uchar*) (T)+1)=(uchar) (((A) >> 8));
  928.                                   *((uchar*)(T)+2)=(uchar) (((A) >> 16)); 
  929.                                   /*lint -restore */} while(0)
  930. #define int4store(T,A)       do { *((char *)(T))=(char) ((A));
  931.                                   *(((char *)(T))+1)=(char) (((A) >> 8));
  932.                                   *(((char *)(T))+2)=(char) (((A) >> 16));
  933.                                   *(((char *)(T))+3)=(char) (((A) >> 24)); } while(0)
  934. #define int5store(T,A)       do { *((char *)(T))=((A));
  935.                                   *(((char *)(T))+1)=(((A) >> 8));
  936.                                   *(((char *)(T))+2)=(((A) >> 16));
  937.                                   *(((char *)(T))+3)=(((A) >> 24)); 
  938.                                   *(((char *)(T))+4)=(((A) >> 32)); } while(0)
  939. #define int8store(T,A)       do { uint def_temp= (uint) (A), def_temp2= (uint) ((A) >> 32); 
  940.                                   int4store((T),def_temp); 
  941.                                   int4store((T+4),def_temp2); } while(0)
  942. #ifdef WORDS_BIGENDIAN
  943. #define float4store(T,A) do { *(T)= ((byte *) &A)[3];
  944.                               *((T)+1)=(char) ((byte *) &A)[2];
  945.                               *((T)+2)=(char) ((byte *) &A)[1];
  946.                               *((T)+3)=(char) ((byte *) &A)[0]; } while(0)
  947. #define float4get(V,M)   do { float def_temp;
  948.                               ((byte*) &def_temp)[0]=(M)[3];
  949.                               ((byte*) &def_temp)[1]=(M)[2];
  950.                               ((byte*) &def_temp)[2]=(M)[1];
  951.                               ((byte*) &def_temp)[3]=(M)[0];
  952.                               (V)=def_temp; } while(0)
  953. #define float8store(T,V) do { *(T)= ((byte *) &V)[7];
  954.                               *((T)+1)=(char) ((byte *) &V)[6];
  955.                               *((T)+2)=(char) ((byte *) &V)[5];
  956.                               *((T)+3)=(char) ((byte *) &V)[4];
  957.                               *((T)+4)=(char) ((byte *) &V)[3];
  958.                               *((T)+5)=(char) ((byte *) &V)[2];
  959.                               *((T)+6)=(char) ((byte *) &V)[1];
  960.                               *((T)+7)=(char) ((byte *) &V)[0]; } while(0)
  961. #define float8get(V,M)   do { double def_temp;
  962.                               ((byte*) &def_temp)[0]=(M)[7];
  963.                               ((byte*) &def_temp)[1]=(M)[6];
  964.                               ((byte*) &def_temp)[2]=(M)[5];
  965.                               ((byte*) &def_temp)[3]=(M)[4];
  966.                               ((byte*) &def_temp)[4]=(M)[3];
  967.                               ((byte*) &def_temp)[5]=(M)[2];
  968.                               ((byte*) &def_temp)[6]=(M)[1];
  969.                               ((byte*) &def_temp)[7]=(M)[0];
  970.                               (V) = def_temp; } while(0)
  971. #else
  972. #define float4get(V,M)   memcpy_fixed((byte*) &V,(byte*) (M),sizeof(float))
  973. #define float4store(V,M) memcpy_fixed((byte*) V,(byte*) (&M),sizeof(float))
  974. #if defined(__FLOAT_WORD_ORDER) && (__FLOAT_WORD_ORDER == __BIG_ENDIAN)
  975. #define doublestore(T,V) do { *(((char*)T)+0)=(char) ((byte *) &V)[4];
  976.                               *(((char*)T)+1)=(char) ((byte *) &V)[5];
  977.                               *(((char*)T)+2)=(char) ((byte *) &V)[6];
  978.                               *(((char*)T)+3)=(char) ((byte *) &V)[7];
  979.                               *(((char*)T)+4)=(char) ((byte *) &V)[0];
  980.                               *(((char*)T)+5)=(char) ((byte *) &V)[1];
  981.                               *(((char*)T)+6)=(char) ((byte *) &V)[2];
  982.                               *(((char*)T)+7)=(char) ((byte *) &V)[3]; }
  983.                          while(0)
  984. #define doubleget(V,M)   do { double def_temp;
  985.                               ((byte*) &def_temp)[0]=(M)[4];
  986.                               ((byte*) &def_temp)[1]=(M)[5];
  987.                               ((byte*) &def_temp)[2]=(M)[6];
  988.                               ((byte*) &def_temp)[3]=(M)[7];
  989.                               ((byte*) &def_temp)[4]=(M)[0];
  990.                               ((byte*) &def_temp)[5]=(M)[1];
  991.                               ((byte*) &def_temp)[6]=(M)[2];
  992.                               ((byte*) &def_temp)[7]=(M)[3];
  993.                               (V) = def_temp; } while(0)
  994. #endif /* __FLOAT_WORD_ORDER */
  995. #define float8get(V,M)   doubleget((V),(M))
  996. #define float8store(V,M) doublestore((V),(M))
  997. #endif /* WORDS_BIGENDIAN */
  998. #endif /* sint2korr */
  999. /*
  1000.   Macro for reading 32-bit integer from network byte order (big-endian)
  1001.   from unaligned memory location.
  1002. */
  1003. #define int4net(A)        (int32) (((uint32) ((uchar) (A)[3]))        |
  1004.   (((uint32) ((uchar) (A)[2])) << 8)  |
  1005.   (((uint32) ((uchar) (A)[1])) << 16) |
  1006.   (((uint32) ((uchar) (A)[0])) << 24))
  1007. /*
  1008.   Define-funktions for reading and storing in machine format from/to
  1009.   short/long to/from some place in memory V should be a (not
  1010.   register) variable, M is a pointer to byte
  1011. */
  1012. #ifdef WORDS_BIGENDIAN
  1013. #define ushortget(V,M)  do { V = (uint16) (((uint16) ((uchar) (M)[1]))+
  1014.                                  ((uint16) ((uint16) (M)[0]) << 8)); } while(0)
  1015. #define shortget(V,M)   do { V = (short) (((short) ((uchar) (M)[1]))+
  1016.                                  ((short) ((short) (M)[0]) << 8)); } while(0)
  1017. #define longget(V,M)    do { int32 def_temp;
  1018.                              ((byte*) &def_temp)[0]=(M)[0];
  1019.                              ((byte*) &def_temp)[1]=(M)[1];
  1020.                              ((byte*) &def_temp)[2]=(M)[2];
  1021.                              ((byte*) &def_temp)[3]=(M)[3];
  1022.                              (V)=def_temp; } while(0)
  1023. #define ulongget(V,M)   do { uint32 def_temp;
  1024.                             ((byte*) &def_temp)[0]=(M)[0];
  1025.                             ((byte*) &def_temp)[1]=(M)[1];
  1026.                             ((byte*) &def_temp)[2]=(M)[2];
  1027.                             ((byte*) &def_temp)[3]=(M)[3];
  1028.                             (V)=def_temp; } while(0)
  1029. #define shortstore(T,A) do { uint def_temp=(uint) (A) ;
  1030.                              *(((char*)T)+1)=(char)(def_temp); 
  1031.                              *(((char*)T)+0)=(char)(def_temp >> 8); } while(0)
  1032. #define longstore(T,A)  do { *(((char*)T)+3)=((A));
  1033.                              *(((char*)T)+2)=(((A) >> 8));
  1034.                              *(((char*)T)+1)=(((A) >> 16));
  1035.                              *(((char*)T)+0)=(((A) >> 24)); } while(0)
  1036. #define floatget(V,M)    memcpy_fixed((byte*) &V,(byte*) (M),sizeof(float))
  1037. #define floatstore(T,V)  memcpy_fixed((byte*) (T),(byte*)(&V),sizeof(float))
  1038. #define doubleget(V,M)  memcpy_fixed((byte*) &V,(byte*) (M),sizeof(double))
  1039. #define doublestore(T,V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(double))
  1040. #define longlongget(V,M) memcpy_fixed((byte*) &V,(byte*) (M),sizeof(ulonglong))
  1041. #define longlongstore(T,V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(ulonglong))
  1042. #else
  1043. #define ushortget(V,M) do { V = uint2korr(M); } while(0)
  1044. #define shortget(V,M) do { V = sint2korr(M); } while(0)
  1045. #define longget(V,M) do { V = sint4korr(M); } while(0)
  1046. #define ulongget(V,M)   do { V = uint4korr(M); } while(0)
  1047. #define shortstore(T,V) int2store(T,V)
  1048. #define longstore(T,V) int4store(T,V)
  1049. #ifndef floatstore
  1050. #define floatstore(T,V)  memcpy_fixed((byte*) (T),(byte*) (&V),sizeof(float))
  1051. #define floatget(V,M)    memcpy_fixed((byte*) &V, (byte*) (M), sizeof(float))
  1052. #endif
  1053. #ifndef doubleget
  1054. #define doubleget(V,M)  memcpy_fixed((byte*) &V,(byte*) (M),sizeof(double))
  1055. #define doublestore(T,V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(double))
  1056. #endif /* doubleget */
  1057. #define longlongget(V,M) memcpy_fixed((byte*) &V,(byte*) (M),sizeof(ulonglong))
  1058. #define longlongstore(T,V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(ulonglong))
  1059. #endif /* WORDS_BIGENDIAN */
  1060. /* sprintf does not always return the number of bytes :- */
  1061. #ifdef SPRINTF_RETURNS_INT
  1062. #define my_sprintf(buff,args) sprintf args
  1063. #else
  1064. #ifdef SPRINTF_RETURNS_PTR
  1065. #define my_sprintf(buff,args) ((int)(sprintf args - buff))
  1066. #else
  1067. #define my_sprintf(buff,args) ((ulong) sprintf args, (ulong) strlen(buff))
  1068. #endif
  1069. #endif
  1070. #ifndef THREAD
  1071. #define thread_safe_increment(V,L) (V)++
  1072. #define thread_safe_add(V,C,L)     (V)+=(C)
  1073. #define thread_safe_sub(V,C,L)     (V)-=(C)
  1074. #define statistic_increment(V,L)   (V)++
  1075. #define statistic_add(V,C,L)       (V)+=(C)
  1076. #endif
  1077. #ifdef HAVE_CHARSET_utf8
  1078. #define MYSQL_UNIVERSAL_CLIENT_CHARSET "utf8"
  1079. #else
  1080. #define MYSQL_UNIVERSAL_CLIENT_CHARSET MYSQL_DEFAULT_CHARSET_NAME
  1081. #endif
  1082. #if defined(EMBEDDED_LIBRARY) && !defined(HAVE_EMBEDDED_PRIVILEGE_CONTROL)
  1083. #define NO_EMBEDDED_ACCESS_CHECKS
  1084. #endif
  1085. #endif /* my_global_h */