~drizzle-trunk/drizzle/development

390.1.2 by Monty Taylor
Fixed copyright headers in drizzled/
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 Sun Microsystems
5
 *
6
 *  This program is free software; you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation; either version 2 of the License, or
9
 *  (at your option) any later version.
10
 *
11
 *  This program is distributed in the hope that it will be useful,
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 *  GNU General Public License for more details.
15
 *
16
 *  You should have received a copy of the GNU General Public License
17
 *  along with this program; if not, write to the Free Software
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 */
1 by brian
clean slate
20
21
/*  Extra functions used by unireg library */
22
670.2.4 by Monty Taylor
Removed more stuff from the headers.
23
#ifndef DRIZZLED_UNIREG_H
24
#define DRIZZLED_UNIREG_H
25
26
#include <drizzled/structs.h>				/* All structs we need */
988.1.1 by Jay Pipes
Changes libserialize to libdrizzledmessage per ML discussion. All GPB messages are now in the drizzled::message namespace.
27
#include <drizzled/message/table.pb.h>
28
int drizzle_read_table_proto(const char* path, drizzled::message::Table* table);
896.4.9 by Stewart Smith
No longer write the FRM. just use proto.
29
int table_proto_exists(const char *path);
30
int copy_table_proto_file(const char *from, const char* to);
670.2.4 by Monty Taylor
Removed more stuff from the headers.
31
32
#if defined(__cplusplus)
33
extern "C" {
34
#endif
1 by brian
clean slate
35
36
#ifndef NO_ALARM_LOOP
37
#define NO_ALARM_LOOP		/* lib5 and popen can't use alarm */
38
#endif
39
549 by Monty Taylor
Took gettext.h out of header files.
40
1 by brian
clean slate
41
#define LIBLEN FN_REFLEN-FN_LEN			/* Max l{ngd p} dev */
42
/* extra 4+4 bytes for slave tmp tables */
43
#define MAX_DBKEY_LENGTH (NAME_LEN*2+1+1+4+4)
44
#define MAX_ALIAS_NAME 256
45
#define MAX_FIELD_NAME 34			/* Max colum name length +2 */
46
#define MAX_SYS_VAR_LENGTH 32
47
#define MAX_KEY MAX_INDEXES                     /* Max used keys */
48
#define MAX_REF_PARTS 16			/* Max parts used as ref */
49
#define MAX_KEY_LENGTH 4096			/* max possible key */
50
#define MAX_KEY_LENGTH_DECIMAL_WIDTH 4          /* strlen("4096") */
51
#if SIZEOF_OFF_T > 4
52
#define MAX_REFLENGTH 8				/* Max length for record ref */
53
#else
54
#define MAX_REFLENGTH 4				/* Max length for record ref */
55
#endif
56
#define MAX_HOSTNAME  61			/* len+1 in mysql.user */
57
58
#define MAX_MBWIDTH		4		/* Max multibyte sequence */
59
#define MAX_FIELD_CHARLENGTH	255
60
#define MAX_FIELD_VARCHARLENGTH	65535
61
#define CONVERT_IF_BIGGER_TO_BLOB 512		/* Used for CREATE ... SELECT */
62
63
/* Max column width +1 */
64
#define MAX_FIELD_WIDTH		(MAX_FIELD_CHARLENGTH*MAX_MBWIDTH+1)
65
66
#define MAX_DATE_WIDTH		10	/* YYYY-MM-DD */
67
#define MAX_TIME_WIDTH		23	/* -DDDDDD HH:MM:SS.###### */
68
#define MAX_DATETIME_FULL_WIDTH 29	/* YYYY-MM-DD HH:MM:SS.###### AM */
69
#define MAX_DATETIME_WIDTH	19	/* YYYY-MM-DD HH:MM:SS */
70
#define MAX_DATETIME_COMPRESSED_WIDTH 14  /* YYYYMMDDHHMMSS */
71
72
#define MAX_TABLES	(sizeof(table_map)*8-3)	/* Max tables in join */
73
#define PARAM_TABLE_BIT	(((table_map) 1) << (sizeof(table_map)*8-3))
74
#define OUTER_REF_TABLE_BIT	(((table_map) 1) << (sizeof(table_map)*8-2))
75
#define RAND_TABLE_BIT	(((table_map) 1) << (sizeof(table_map)*8-1))
76
#define PSEUDO_TABLE_BITS (PARAM_TABLE_BIT | OUTER_REF_TABLE_BIT | \
77
                           RAND_TABLE_BIT)
78
#define MAX_FIELDS	4096			/* Limit in the .frm file */
79
80
#define MAX_SELECT_NESTING (sizeof(nesting_map)*8-1)
81
82
#define MAX_SORT_MEMORY (2048*1024-MALLOC_OVERHEAD)
83
#define MIN_SORT_MEMORY (32*1024-MALLOC_OVERHEAD)
84
85
/* Memory allocated when parsing a statement / saving a statement */
86
#define MEM_ROOT_BLOCK_SIZE       8192
87
#define MEM_ROOT_PREALLOC         8192
88
#define TRANS_MEM_ROOT_BLOCK_SIZE 4096
89
#define TRANS_MEM_ROOT_PREALLOC   4096
90
91
#define DEFAULT_ERROR_COUNT	64
92
#define EXTRA_RECORDS	10			/* Extra records in sort */
93
#define SCROLL_EXTRA	5			/* Extra scroll-rows. */
895 by Brian Aker
Completion (?) of uint conversion.
94
#define FIELD_NAME_USED ((uint32_t) 32768)		/* Bit set if fieldname used */
1 by brian
clean slate
95
#define FIELD_NR_MASK	16383			/* To get fieldnumber */
96
#define FERR		-1			/* Error from my_functions */
97
#define CREATE_MODE	0			/* Default mode on new files */
98
#define NAMES_SEP_CHAR	'\377'			/* Char to sep. names */
99
895 by Brian Aker
Completion (?) of uint conversion.
100
#define READ_RECORD_BUFFER	(uint32_t) (IO_SIZE*8) /* Pointer_buffer_size */
101
#define DISK_BUFFER_SIZE	(uint32_t) (IO_SIZE*16) /* Size of diskbuffer */
1 by brian
clean slate
102
103
#define ME_INFO (ME_HOLDTANG+ME_OLDWIN+ME_NOREFRESH)
104
#define ME_ERROR (ME_BELL+ME_OLDWIN+ME_NOREFRESH)
105
#define MYF_RW MYF(MY_WME+MY_NABP)		/* Vid my_read & my_write */
106
107
	/* Extern defines */
212.6.3 by Mats Kindahl
Removing deprecated functions from code and replacing them with C99 equivalents:
108
#define store_record(A,B) memcpy((A)->B,(A)->record[0],(size_t) (A)->s->reclength)
109
#define restore_record(A,B) memcpy((A)->record[0],(A)->B,(size_t) (A)->s->reclength)
1 by brian
clean slate
110
#define cmp_record(A,B) memcmp((A)->record[0],(A)->B,(size_t) (A)->s->reclength)
212.6.3 by Mats Kindahl
Removing deprecated functions from code and replacing them with C99 equivalents:
111
#define empty_record(A)                                 \
112
  do {                                                  \
113
    restore_record((A),s->default_values);              \
114
    memset((A)->null_flags, 255, (A)->s->null_bytes);   \
115
  } while (0)
1 by brian
clean slate
116
117
/**
118
  This flag is used in function get_all_tables() which fills
119
  I_S tables with data which are retrieved from frm files and storage engine
120
  The flag means that we need to open FRM file only to get necessary data.
121
*/
122
#define OPEN_FRM_FILE_ONLY     32768
123
/**
124
  This flag is used in function get_all_tables() which fills
125
  I_S tables with data which are retrieved from frm files and storage engine
126
  The flag means that we need to process tables only to get necessary data.
127
  Views are not processed.
128
*/
129
#define OPEN_TABLE_ONLY        OPEN_FRM_FILE_ONLY*2
130
131
#define SC_INFO_LENGTH 4		/* Form format constant */
132
#define TE_INFO_LENGTH 3
133
546 by Monty Taylor
Cleaned up version.h. (And by cleaned, I mean removed)
134
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
135
#define DRIZZLE_VERSION_TABLESPACE_IN_FRM_CGE 50120
136
#define DRIZZLE_VERSION_TABLESPACE_IN_FRM 50205
137
#define DRIZZLE_VERSION_TABLESPACE_IN_FRM_STR "50205"
1 by brian
clean slate
138
139
/*
140
  Minimum length pattern before Turbo Boyer-Moore is used
141
  for SELECT "text" LIKE "%pattern%", excluding the two
142
  wildcards in class Item_func_like.
143
*/
144
#define MIN_TURBOBM_PATTERN_LEN 3
145
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
146
/*
1 by brian
clean slate
147
   Defines for binary logging.
148
   Do not decrease the value of BIN_LOG_HEADER_SIZE.
149
   Do not even increase it before checking code.
150
*/
151
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
152
#define BIN_LOG_HEADER_SIZE    4
1 by brian
clean slate
153
154
#define DEFAULT_KEY_CACHE_NAME "default"
155
156
#define STORAGE_TYPE_MASK 7
157
#define COLUMN_FORMAT_MASK 7
158
#define COLUMN_FORMAT_SHIFT 3
159
670.2.4 by Monty Taylor
Removed more stuff from the headers.
160
void unireg_end(void) __attribute__((noreturn));
161
void unireg_abort(int exit_code) __attribute__((noreturn));
162
163
int rea_create_table(Session *session, const char *path,
164
                     const char *db, const char *table_name,
165
                     HA_CREATE_INFO *create_info,
166
                     List<Create_field> &create_field,
167
                     uint32_t key_count,KEY *key_info,
757 by Brian Aker
Fix for multple execution path for FRM creation.
168
                     handler *file, bool is_like);
670.2.4 by Monty Taylor
Removed more stuff from the headers.
169
170
171
#if defined(__cplusplus)
172
}
173
#endif
174
1 by brian
clean slate
175
176
#endif