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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /*  Extra functions used by unireg library */
  14. #ifndef _unireg_h
  15. #ifndef NO_ALARM_LOOP
  16. #define NO_ALARM_LOOP /* lib5 and popen can't use alarm */
  17. #endif
  18. /* These paths are converted to other systems (WIN95) before use */
  19. #define LANGUAGE "english/"
  20. #define ERRMSG_FILE "errmsg.sys"
  21. #define TEMP_PREFIX "MY"
  22. #define LOG_PREFIX "ML"
  23. #define PROGDIR "bin/"
  24. #ifndef DATADIR
  25. #define DATADIR "data/"
  26. #endif
  27. #ifndef SHAREDIR
  28. #define SHAREDIR "share/"
  29. #endif
  30. #define ER(X) errmesg[(X)-1000]
  31. #define ER_SAFE(X) (((X) >= 1000 && (X) < ER_ERROR_MESSAGES + 1000) ? ER(X) : "Invalid error code")
  32. #define ERRMAPP 1 /* Errormap f|r my_error */
  33. #define LIBLEN FN_REFLEN-FN_LEN /* Max l{ngd p} dev */
  34. #define MAX_DBKEY_LENGTH (FN_LEN*2+1+1+4+4)     /* extra 4+4 bytes for slave tmp
  35.  * tables */
  36. #define MAX_ALIAS_NAME 256
  37. #define MAX_FIELD_NAME 34 /* Max colum name length +2 */
  38. #define MAX_SYS_VAR_LENGTH 32
  39. #define MAX_KEY 64 /* Max used keys */
  40. #define MAX_REF_PARTS 16 /* Max parts used as ref */
  41. #define MAX_KEY_LENGTH 1024 /* 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_HOSTNAME  61 /* len+1 in mysql.user */
  48. #define MAX_MBWIDTH 3 /* Max multibyte sequence */
  49. #define MAX_FIELD_CHARLENGTH 255
  50. /* Max column width +1 */
  51. #define MAX_FIELD_WIDTH (MAX_FIELD_CHARLENGTH*MAX_MBWIDTH+1)
  52. #define MAX_DATE_WIDTH 10 /* YYYY-MM-DD */
  53. #define MAX_TIME_WIDTH 23 /* -DDDDDD HH:MM:SS.###### */
  54. #define MAX_DATETIME_FULL_WIDTH 29 /* YYYY-MM-DD HH:MM:SS.###### AM */
  55. #define MAX_DATETIME_WIDTH 19 /* YYYY-MM-DD HH:MM:SS */
  56. #define MAX_TABLES (sizeof(table_map)*8-3) /* Max tables in join */
  57. #define PARAM_TABLE_BIT (((table_map) 1) << (sizeof(table_map)*8-3))
  58. #define OUTER_REF_TABLE_BIT (((table_map) 1) << (sizeof(table_map)*8-2))
  59. #define RAND_TABLE_BIT (((table_map) 1) << (sizeof(table_map)*8-1))
  60. #define PSEUDO_TABLE_BITS (PARAM_TABLE_BIT | OUTER_REF_TABLE_BIT | 
  61.                            RAND_TABLE_BIT)
  62. #define MAX_FIELDS 4096 /* Limit in the .frm file */
  63. #define MAX_SORT_MEMORY (2048*1024-MALLOC_OVERHEAD)
  64. #define MIN_SORT_MEMORY (32*1024-MALLOC_OVERHEAD)
  65. /* Memory allocated when parsing a statement / saving a statement */
  66. #define MEM_ROOT_BLOCK_SIZE       8192
  67. #define MEM_ROOT_PREALLOC         8192
  68. #define TRANS_MEM_ROOT_BLOCK_SIZE 4096
  69. #define TRANS_MEM_ROOT_PREALLOC   4096
  70. #define DEFAULT_ERROR_COUNT 64
  71. #define EXTRA_RECORDS 10 /* Extra records in sort */
  72. #define SCROLL_EXTRA 5 /* Extra scroll-rows. */
  73. #define FIELD_NAME_USED ((uint) 32768) /* Bit set if fieldname used */
  74. #define FORM_NAME_USED ((uint) 16384) /* Bit set if formname used */
  75. #define FIELD_NR_MASK 16383 /* To get fieldnumber */
  76. #define FERR -1 /* Error from my_functions */
  77. #define CREATE_MODE 0 /* Default mode on new files */
  78. #define NAMES_SEP_CHAR '377' /* Char to sep. names */
  79. #define READ_RECORD_BUFFER (uint) (IO_SIZE*8) /* Pointer_buffer_size */
  80. #define DISK_BUFFER_SIZE (uint) (IO_SIZE*16) /* Size of diskbuffer */
  81. #define POSTFIX_ERROR DBL_MAX
  82. #define ME_INFO (ME_HOLDTANG+ME_OLDWIN+ME_NOREFRESH)
  83. #define ME_ERROR (ME_BELL+ME_OLDWIN+ME_NOREFRESH)
  84. #define MYF_RW MYF(MY_WME+MY_NABP) /* Vid my_read & my_write */
  85. #define SPECIAL_USE_LOCKS 1 /* Lock used databases */
  86. #define SPECIAL_NO_NEW_FUNC 2 /* Skip new functions */
  87. #define SPECIAL_SKIP_SHOW_DB    4               /* Don't allow 'show db' */
  88. #define SPECIAL_WAIT_IF_LOCKED 8 /* Wait if locked database */
  89. #define SPECIAL_SAME_DB_NAME   16 /* form name = file name */
  90. #define SPECIAL_ENGLISH        32 /* English error messages */
  91. #define SPECIAL_NO_RESOLVE     64 /* Don't use gethostname */
  92. #define SPECIAL_NO_PRIOR 128 /* Don't prioritize threads */
  93. #define SPECIAL_BIG_SELECTS 256 /* Don't use heap tables */
  94. #define SPECIAL_NO_HOST_CACHE 512 /* Don't cache hosts */
  95. #define SPECIAL_SHORT_LOG_FORMAT 1024
  96. #define SPECIAL_SAFE_MODE 2048
  97. #define SPECIAL_LOG_QUERIES_NOT_USING_INDEXES 4096 /* Log q not using indexes */
  98. /* Extern defines */
  99. #define store_record(A,B) bmove_align((A)->B,(A)->record[0],(size_t) (A)->reclength)
  100. #define restore_record(A,B) bmove_align((A)->record[0],(A)->B,(size_t) (A)->reclength)
  101. #define cmp_record(A,B) memcmp((A)->record[0],(A)->B,(size_t) (A)->reclength)
  102. #define empty_record(A) { 
  103.                           restore_record((A),default_values); 
  104.                           bfill((A)->null_flags,(A)->null_bytes,255);
  105.                         }
  106. /* Defines for use with openfrm, openprt and openfrd */
  107. #define READ_ALL 1 /* openfrm: Read all parameters */
  108. #define CHANGE_FRM 2 /* openfrm: open .frm as O_RDWR */
  109. #define READ_KEYINFO 4 /* L{s nyckeldata fr}n filen */
  110. #define EXTRA_RECORD 8 /* Reservera plats f|r extra record */
  111. #define DONT_OPEN_TABLES 8 /* Don't open database-files (frd) */
  112. #define DONT_OPEN_MASTER_REG 16 /* Don't open first reg-file (prt) */
  113. #define EXTRA_LONG_RECORD 16 /* Plats f|r dubbel s|k-record */
  114. #define COMPUTE_TYPES 32 /* Kontrollera type f|r f{ltena */
  115. #define SEARCH_PRG 64 /* S|k efter registret i 'prg_dev' */
  116. #define READ_USED_NAMES 128 /* L{s anv{nda formul{rnamn */
  117. #define DONT_GIVE_ERROR 256 /* Don't do frm_error on openfrm  */
  118. #define READ_SCREENS 1024 /* Read screens, info and helpfile */
  119. #define DELAYED_OPEN 4096 /* Open table later */
  120. #define SC_INFO_LENGTH 4 /* Form format constant */
  121. #define TE_INFO_LENGTH 3
  122. #define MTYP_NOEMPTY_BIT 128
  123. /*
  124.   Minimum length pattern before Turbo Boyer-Moore is used
  125.   for SELECT "text" LIKE "%pattern%", excluding the two
  126.   wildcards in class Item_func_like.
  127. */
  128. #define MIN_TURBOBM_PATTERN_LEN 3
  129. /* 
  130.    Defines for binary logging.
  131.    Do not decrease the value of BIN_LOG_HEADER_SIZE.
  132.    Do not even increase it before checking code.
  133. */
  134. #define BIN_LOG_HEADER_SIZE    4 
  135. #define FLOATING_POINT_BUFFER 331
  136. #define DEFAULT_KEY_CACHE_NAME "default"
  137. /* Include prototypes for unireg */
  138. #include "mysqld_error.h"
  139. #include "structs.h" /* All structs we need */
  140. #endif