~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/unireg.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
/*  Extra functions used by unireg library */
22
22
 
23
 
#ifndef DRIZZLED_UNIREG_H
24
 
#define DRIZZLED_UNIREG_H
25
 
 
26
 
namespace drizzled
27
 
{
28
 
 
29
 
void unireg_end(void) __attribute__((noreturn));
30
 
void unireg_abort(int exit_code) __attribute__((noreturn));
31
 
 
32
 
} /* namespace drizzled */
33
 
 
34
 
#endif /* DRIZZLED_UNIREG_H */
 
23
#ifndef _unireg_h
 
24
 
 
25
#include <libdrizzle/gettext.h>
 
26
 
 
27
#ifndef NO_ALARM_LOOP
 
28
#define NO_ALARM_LOOP           /* lib5 and popen can't use alarm */
 
29
#endif
 
30
 
 
31
#define ER(X) _(drizzled_error_messages[(X) - ER_ERROR_FIRST])
 
32
#define ER_SAFE(X) (((X) >= ER_ERROR_FIRST && (X) <= ER_ERROR_LAST) ? ER(X) : _("Invalid error code"))
 
33
 
 
34
 
 
35
#define ERRMAPP 1                               /* Errormap f|r my_error */
 
36
#define LIBLEN FN_REFLEN-FN_LEN                 /* Max l{ngd p} dev */
 
37
/* extra 4+4 bytes for slave tmp tables */
 
38
#define MAX_DBKEY_LENGTH (NAME_LEN*2+1+1+4+4)
 
39
#define MAX_ALIAS_NAME 256
 
40
#define MAX_FIELD_NAME 34                       /* Max colum name length +2 */
 
41
#define MAX_SYS_VAR_LENGTH 32
 
42
#define MAX_KEY MAX_INDEXES                     /* Max used keys */
 
43
#define MAX_REF_PARTS 16                        /* Max parts used as ref */
 
44
#define MAX_KEY_LENGTH 4096                     /* max possible key */
 
45
#define MAX_KEY_LENGTH_DECIMAL_WIDTH 4          /* strlen("4096") */
 
46
#if SIZEOF_OFF_T > 4
 
47
#define MAX_REFLENGTH 8                         /* Max length for record ref */
 
48
#else
 
49
#define MAX_REFLENGTH 4                         /* Max length for record ref */
 
50
#endif
 
51
#define MAX_HOSTNAME  61                        /* len+1 in mysql.user */
 
52
 
 
53
#define MAX_MBWIDTH             4               /* Max multibyte sequence */
 
54
#define MAX_FIELD_CHARLENGTH    255
 
55
#define MAX_FIELD_VARCHARLENGTH 65535
 
56
#define CONVERT_IF_BIGGER_TO_BLOB 512           /* Used for CREATE ... SELECT */
 
57
 
 
58
/* Max column width +1 */
 
59
#define MAX_FIELD_WIDTH         (MAX_FIELD_CHARLENGTH*MAX_MBWIDTH+1)
 
60
 
 
61
#define MAX_BIT_FIELD_LENGTH    64      /* Max length in bits for bit fields */
 
62
 
 
63
#define MAX_DATE_WIDTH          10      /* YYYY-MM-DD */
 
64
#define MAX_TIME_WIDTH          23      /* -DDDDDD HH:MM:SS.###### */
 
65
#define MAX_DATETIME_FULL_WIDTH 29      /* YYYY-MM-DD HH:MM:SS.###### AM */
 
66
#define MAX_DATETIME_WIDTH      19      /* YYYY-MM-DD HH:MM:SS */
 
67
#define MAX_DATETIME_COMPRESSED_WIDTH 14  /* YYYYMMDDHHMMSS */
 
68
 
 
69
#define MAX_TABLES      (sizeof(table_map)*8-3) /* Max tables in join */
 
70
#define PARAM_TABLE_BIT (((table_map) 1) << (sizeof(table_map)*8-3))
 
71
#define OUTER_REF_TABLE_BIT     (((table_map) 1) << (sizeof(table_map)*8-2))
 
72
#define RAND_TABLE_BIT  (((table_map) 1) << (sizeof(table_map)*8-1))
 
73
#define PSEUDO_TABLE_BITS (PARAM_TABLE_BIT | OUTER_REF_TABLE_BIT | \
 
74
                           RAND_TABLE_BIT)
 
75
#define MAX_FIELDS      4096                    /* Limit in the .frm file */
 
76
 
 
77
#define MAX_SELECT_NESTING (sizeof(nesting_map)*8-1)
 
78
 
 
79
#define MAX_SORT_MEMORY (2048*1024-MALLOC_OVERHEAD)
 
80
#define MIN_SORT_MEMORY (32*1024-MALLOC_OVERHEAD)
 
81
 
 
82
/* Memory allocated when parsing a statement / saving a statement */
 
83
#define MEM_ROOT_BLOCK_SIZE       8192
 
84
#define MEM_ROOT_PREALLOC         8192
 
85
#define TRANS_MEM_ROOT_BLOCK_SIZE 4096
 
86
#define TRANS_MEM_ROOT_PREALLOC   4096
 
87
 
 
88
#define DEFAULT_ERROR_COUNT     64
 
89
#define EXTRA_RECORDS   10                      /* Extra records in sort */
 
90
#define SCROLL_EXTRA    5                       /* Extra scroll-rows. */
 
91
#define FIELD_NAME_USED ((uint) 32768)          /* Bit set if fieldname used */
 
92
#define FORM_NAME_USED  ((uint) 16384)          /* Bit set if formname used */
 
93
#define FIELD_NR_MASK   16383                   /* To get fieldnumber */
 
94
#define FERR            -1                      /* Error from my_functions */
 
95
#define CREATE_MODE     0                       /* Default mode on new files */
 
96
#define NAMES_SEP_CHAR  '\377'                  /* Char to sep. names */
 
97
 
 
98
#define READ_RECORD_BUFFER      (uint) (IO_SIZE*8) /* Pointer_buffer_size */
 
99
#define DISK_BUFFER_SIZE        (uint) (IO_SIZE*16) /* Size of diskbuffer */
 
100
 
 
101
#define ME_INFO (ME_HOLDTANG+ME_OLDWIN+ME_NOREFRESH)
 
102
#define ME_ERROR (ME_BELL+ME_OLDWIN+ME_NOREFRESH)
 
103
#define MYF_RW MYF(MY_WME+MY_NABP)              /* Vid my_read & my_write */
 
104
 
 
105
        /* Extern defines */
 
106
#define store_record(A,B) memcpy((A)->B,(A)->record[0],(size_t) (A)->s->reclength)
 
107
#define restore_record(A,B) memcpy((A)->record[0],(A)->B,(size_t) (A)->s->reclength)
 
108
#define cmp_record(A,B) memcmp((A)->record[0],(A)->B,(size_t) (A)->s->reclength)
 
109
#define empty_record(A)                                 \
 
110
  do {                                                  \
 
111
    restore_record((A),s->default_values);              \
 
112
    memset((A)->null_flags, 255, (A)->s->null_bytes);   \
 
113
  } while (0)
 
114
 
 
115
/**
 
116
  This flag is used in function get_all_tables() which fills
 
117
  I_S tables with data which are retrieved from frm files and storage engine
 
118
  The flag means that we need to open FRM file only to get necessary data.
 
119
*/
 
120
#define OPEN_FRM_FILE_ONLY     32768
 
121
/**
 
122
  This flag is used in function get_all_tables() which fills
 
123
  I_S tables with data which are retrieved from frm files and storage engine
 
124
  The flag means that we need to process tables only to get necessary data.
 
125
  Views are not processed.
 
126
*/
 
127
#define OPEN_TABLE_ONLY        OPEN_FRM_FILE_ONLY*2
 
128
/**
 
129
  This flag is used in function get_all_tables() which fills
 
130
  I_S tables with data which are retrieved from frm files and storage engine
 
131
  The flag means that we need to process views only to get necessary data.
 
132
  Tables are not processed.
 
133
*/
 
134
#define OPEN_VIEW_ONLY         OPEN_TABLE_ONLY*2
 
135
/**
 
136
  This flag is used in function get_all_tables() which fills
 
137
  I_S tables with data which are retrieved from frm files and storage engine.
 
138
  The flag means that we need to open a view using
 
139
  open_normal_and_derived_tables() function.
 
140
*/
 
141
#define OPEN_VIEW_FULL         OPEN_VIEW_ONLY*2
 
142
/**
 
143
  This flag is used in function get_all_tables() which fills
 
144
  I_S tables with data which are retrieved from frm files and storage engine.
 
145
  The flag means that I_S table uses optimization algorithm.
 
146
*/
 
147
#define OPTIMIZE_I_S_TABLE     OPEN_VIEW_FULL*2
 
148
 
 
149
#define SC_INFO_LENGTH 4                /* Form format constant */
 
150
#define TE_INFO_LENGTH 3
 
151
#define MTYP_NOEMPTY_BIT 128
 
152
 
 
153
#define FRM_VER_TRUE_VARCHAR (FRM_VER+4) /* 10 */
 
154
#define DRIZZLE_VERSION_TABLESPACE_IN_FRM_CGE 50120
 
155
#define DRIZZLE_VERSION_TABLESPACE_IN_FRM 50205
 
156
#define DRIZZLE_VERSION_TABLESPACE_IN_FRM_STR "50205"
 
157
 
 
158
/*
 
159
  Minimum length pattern before Turbo Boyer-Moore is used
 
160
  for SELECT "text" LIKE "%pattern%", excluding the two
 
161
  wildcards in class Item_func_like.
 
162
*/
 
163
#define MIN_TURBOBM_PATTERN_LEN 3
 
164
 
 
165
/* 
 
166
   Defines for binary logging.
 
167
   Do not decrease the value of BIN_LOG_HEADER_SIZE.
 
168
   Do not even increase it before checking code.
 
169
*/
 
170
 
 
171
#define BIN_LOG_HEADER_SIZE    4 
 
172
 
 
173
#define DEFAULT_KEY_CACHE_NAME "default"
 
174
 
 
175
#define STORAGE_TYPE_MASK 7
 
176
#define COLUMN_FORMAT_MASK 7
 
177
#define COLUMN_FORMAT_SHIFT 3
 
178
 
 
179
/* Include prototypes for unireg */
 
180
 
 
181
#include <drizzled/error.h>
 
182
#include "structs.h"                            /* All structs we need */
 
183
 
 
184
#endif