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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program 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
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /*  Extra functions used by unireg library */
  17. #ifndef _unireg_h
  18. #ifndef NO_ALARM_LOOP
  19. #define NO_ALARM_LOOP /* lib5 and popen can't use alarm */
  20. #endif
  21. /* These paths are converted to other systems (WIN95) before use */
  22. #define LANGUAGE "english/"
  23. #define ERRMSG_FILE "errmsg.sys"
  24. #define TEMP_PREFIX "MY"
  25. #define LOG_PREFIX "ML"
  26. #define PROGDIR "bin/"
  27. #ifndef DATADIR
  28. #define DATADIR "data/"
  29. #endif
  30. #ifndef SHAREDIR
  31. #define SHAREDIR "share/"
  32. #endif
  33. #define ER(X) errmesg[(X)-1000]
  34. #define ERRMAPP 1 /* Errormap f|r my_error */
  35. #define LIBLEN FN_REFLEN-FN_LEN /* Max l{ngd p} dev */
  36. #define MAX_DBKEY_LENGTH (FN_LEN*2+6)           /* extra 4 bytes for slave tmp
  37.  * tables */
  38. #define MAX_FIELD_NAME 34 /* Max colum name length +2 */
  39. #define MAX_KEY 32 /* Max used keys */
  40. #define MAX_REF_PARTS 16 /* Max parts used as ref */
  41. #define MAX_KEY_LENGTH 500 /* max possible key */
  42. #if SIZEOF_OFF_T > 4
  43. #define MAX_REFLENGTH 8 /* Max length for record ref */
  44. #else
  45. #define MAX_REFLENGTH 4 /* Max length for record ref */
  46. #endif
  47. #define MAX_FIELD_WIDTH 256 /* Max column width +1 */
  48. #define MAX_TABLES (sizeof(table_map)*8-1) /* Max tables in join */
  49. #define RAND_TABLE_BIT (((table_map) 1) << (sizeof(table_map)*8-1))
  50. #define MAX_FIELDS 4096 /* Limit in the .frm file */
  51. #define MAX_SORT_MEMORY (2048*1024-MALLOC_OVERHEAD)
  52. #define MIN_SORT_MEMORY (32*1024-MALLOC_OVERHEAD)
  53. #define EXTRA_RECORDS 10 /* Extra records in sort */
  54. #define SCROLL_EXTRA 5 /* Extra scroll-rows. */
  55. #define FIELD_NAME_USED ((uint) 32768) /* Bit set if fieldname used */
  56. #define FORM_NAME_USED ((uint) 16384) /* Bit set if formname used */
  57. #define FIELD_NR_MASK 16383 /* To get fieldnumber */
  58. #define FERR -1 /* Error from my_functions */
  59. #define CREATE_MODE 0 /* Default mode on new files */
  60. #define NAMES_SEP_CHAR '377' /* Char to sep. names */
  61. #ifdef MSDOS
  62. #define EXTRA_FIELD_CHAR (char) '234' /* Interchangebly with '#' */
  63. #else
  64. #define EXTRA_FIELD_CHAR '#' /* Interchangebly with '#' */
  65. #endif
  66. #define READ_RECORD_BUFFER (uint) (IO_SIZE*8) /* Pointer_buffer_size */
  67. #define DISK_BUFFER_SIZE (uint) (IO_SIZE*16) /* Size of diskbuffer */
  68. #define POSTFIX_ERROR DBL_MAX
  69. #define ME_INFO (ME_HOLDTANG+ME_OLDWIN+ME_NOREFRESH)
  70. #define ME_ERROR (ME_BELL+ME_OLDWIN+ME_NOREFRESH)
  71. #define MYF_RW MYF(MY_WME+MY_NABP) /* Vid my_read & my_write */
  72. #define SPECIAL_USE_LOCKS 1 /* Lock used databases */
  73. #define SPECIAL_NO_NEW_FUNC 2 /* Skipp new functions */
  74. #define SPECIAL_NEW_FUNC 4 /* New nonstandard functions */
  75. #define SPECIAL_WAIT_IF_LOCKED 8 /* Wait if locked database */
  76. #define SPECIAL_SAME_DB_NAME   16 /* form name = file name */
  77. #define SPECIAL_ENGLISH        32 /* English error messages */
  78. #define SPECIAL_NO_RESOLVE     64 /* Don't use gethostname */
  79. #define SPECIAL_NO_PRIOR 128 /* Don't prioritize threads */
  80. #define SPECIAL_BIG_SELECTS 256 /* Don't use heap tables */
  81. #define SPECIAL_NO_HOST_CACHE 512 /* Don't cache hosts */
  82. #define SPECIAL_LONG_LOG_FORMAT 1024
  83. #define SPECIAL_SAFE_MODE 2048
  84. #define SPECIAL_SKIP_SHOW_DB 4096 /* Don't allow 'show db' */
  85. /* Extern defines */
  86. #define store_record(A,B) bmove_allign((A)->record[B],(A)->record[0],(size_t) (A)->reclength)
  87. #define restore_record(A,B) bmove_allign((A)->record[0],(A)->record[B],(size_t) (A)->reclength)
  88. #define cmp_record(A,B) memcmp((A)->record[0],(A)->record[B],(size_t) (A)->reclength)
  89. #define empty_record(A) { 
  90. bmove_allign((A)->record[0],(A)->record[2],(size_t) (A)->reclength); 
  91. bfill((A)->null_flags,(A)->null_bytes,255);
  92. }
  93. /* Defines for use with openfrm, openprt and openfrd */
  94. #define READ_ALL 1 /* openfrm: Read all parameters */
  95. #define CHANGE_FRM 2 /* openfrm: open .frm as O_RDWR */
  96. #define READ_KEYINFO 4 /* L{s nyckeldata fr}n filen */
  97. #define EXTRA_RECORD 8 /* Reservera plats f|r extra record */
  98. #define DONT_OPEN_TABLES 8 /* Don't open database-files (frd) */
  99. #define DONT_OPEN_MASTER_REG 16 /* Don't open first reg-file (prt) */
  100. #define EXTRA_LONG_RECORD 16 /* Plats f|r dubbel s|k-record */
  101. #define COMPUTE_TYPES 32 /* Kontrollera type f|r f{ltena */
  102. #define SEARCH_PRG 64 /* S|k efter registret i 'prg_dev' */
  103. #define READ_USED_NAMES 128 /* L{s anv{nda formul{rnamn */
  104. #define DONT_GIVE_ERROR 256 /* Don't do frm_error on openfrm  */
  105. #define READ_SCREENS 1024 /* Read screens, info and helpfile */
  106. #define DELAYED_OPEN 4096 /* Open table later */
  107. #define SC_INFO_LENGTH 4 /* Form format constant */
  108. #define TE_INFO_LENGTH 3
  109. #define MTYP_NOEMPTY_BIT 128
  110. /* Include prototypes for unireg */
  111. #include "mysqld_error.h"
  112. #include "structs.h" /* All structs we need */
  113. #endif