home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / unireg.h < prev    next >
C/C++ Source or Header  |  2000-11-17  |  6KB  |  139 lines

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