dict0mem.c 6.41 KB
Newer Older
osku's avatar
osku committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
/**********************************************************************
Data dictionary memory object creation

(c) 1996 Innobase Oy

Created 1/8/1996 Heikki Tuuri
***********************************************************************/

#include "dict0mem.h"

#ifdef UNIV_NONINL
#include "dict0mem.ic"
#endif

#include "rem0rec.h"
#include "data0type.h"
#include "mach0data.h"
#include "dict0dict.h"
#include "que0que.h"
#include "pars0pars.h"
#include "lock0lock.h"

#define	DICT_HEAP_SIZE		100	/* initial memory heap size when
					creating a table or index object */

/**************************************************************************
Creates a table memory object. */

dict_table_t*
dict_mem_table_create(
/*==================*/
				/* out, own: table object */
	const char*	name,	/* in: table name */
	ulint		space,	/* in: space where the clustered index of
				the table is placed; this parameter is
				ignored if the table is made a member of
				a cluster */
	ulint		n_cols,	/* in: number of columns */
39
	ulint		flags)	/* in: table flags */
osku's avatar
osku committed
40 41 42
{
	dict_table_t*	table;
	mem_heap_t*	heap;
43

osku's avatar
osku committed
44
	ut_ad(name);
45
	ut_ad(!(flags & ~DICT_TF_COMPACT));
osku's avatar
osku committed
46 47 48 49 50 51 52

	heap = mem_heap_create(DICT_HEAP_SIZE);

	table = mem_heap_alloc(heap, sizeof(dict_table_t));

	table->heap = heap;

53
	table->flags = flags;
osku's avatar
osku committed
54 55 56 57 58 59 60 61 62 63
	table->name = mem_heap_strdup(heap, name);
	table->dir_path_of_temp_table = NULL;
	table->space = space;
	table->ibd_file_missing = FALSE;
	table->tablespace_discarded = FALSE;
	table->n_def = 0;
	table->n_cols = n_cols + DATA_N_SYS_COLS;

	table->n_mysql_handles_opened = 0;
	table->n_foreign_key_checks_running = 0;
64

osku's avatar
osku committed
65
	table->cached = FALSE;
66

osku's avatar
osku committed
67
	table->cols = mem_heap_alloc(heap, (n_cols + DATA_N_SYS_COLS)
68
				     * sizeof(dict_col_t));
osku's avatar
osku committed
69 70 71 72 73 74 75 76 77 78
	UT_LIST_INIT(table->indexes);

	table->auto_inc_lock = mem_heap_alloc(heap, lock_get_size());

	table->query_cache_inv_trx_id = ut_dulint_zero;

	UT_LIST_INIT(table->locks);
	UT_LIST_INIT(table->foreign_list);
	UT_LIST_INIT(table->referenced_list);

79
#ifdef UNIV_DEBUG
osku's avatar
osku committed
80
	table->does_not_fit_in_memory = FALSE;
81
#endif /* UNIV_DEBUG */
osku's avatar
osku committed
82 83 84 85

	table->stat_initialized = FALSE;

	table->stat_modified_counter = 0;
86

87
	table->big_rows = 0;
osku's avatar
osku committed
88

89
	mutex_create(&table->autoinc_mutex, SYNC_DICT_AUTOINC_MUTEX);
osku's avatar
osku committed
90 91

	table->autoinc_inited = FALSE;
92
#ifdef UNIV_DEBUG
osku's avatar
osku committed
93
	table->magic_n = DICT_TABLE_MAGIC_N;
94
#endif /* UNIV_DEBUG */
osku's avatar
osku committed
95 96 97
	return(table);
}

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
/********************************************************************
Free a table memory object. */

void
dict_mem_table_free(
/*================*/
	dict_table_t*	table)		/* in: table */
{
	ut_ad(table);
	ut_ad(table->magic_n == DICT_TABLE_MAGIC_N);

	mutex_free(&(table->autoinc_mutex));
	mem_heap_free(table->heap);
}

osku's avatar
osku committed
113 114 115 116 117 118 119 120 121 122
/**************************************************************************
Adds a column definition to a table. */

void
dict_mem_table_add_col(
/*===================*/
	dict_table_t*	table,	/* in: table */
	const char*	name,	/* in: column name */
	ulint		mtype,	/* in: main datatype */
	ulint		prtype,	/* in: precise type */
123
	ulint		len)	/* in: precision */
osku's avatar
osku committed
124 125 126
{
	dict_col_t*	col;
	dtype_t*	type;
127

osku's avatar
osku committed
128 129
	ut_ad(table && name);
	ut_ad(table->magic_n == DICT_TABLE_MAGIC_N);
130

osku's avatar
osku committed
131 132
	table->n_def++;

133
	col = dict_table_get_nth_col(table, table->n_def - 1);
osku's avatar
osku committed
134 135 136 137 138 139 140

	col->ind = table->n_def - 1;
	col->name = mem_heap_strdup(table->heap, name);
	col->ord_part = 0;

	type = dict_col_get_type(col);

141
	dtype_set(type, mtype, prtype, len);
osku's avatar
osku committed
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
}

/**************************************************************************
Creates an index memory object. */

dict_index_t*
dict_mem_index_create(
/*==================*/
					/* out, own: index object */
	const char*	table_name,	/* in: table name */
	const char*	index_name,	/* in: index name */
	ulint		space,		/* in: space where the index tree is
					placed, ignored if the index is of
					the clustered type */
	ulint		type,		/* in: DICT_UNIQUE,
					DICT_CLUSTERED, ... ORed */
	ulint		n_fields)	/* in: number of fields */
{
	dict_index_t*	index;
	mem_heap_t*	heap;
162

osku's avatar
osku committed
163 164 165 166 167 168
	ut_ad(table_name && index_name);

	heap = mem_heap_create(DICT_HEAP_SIZE);
	index = mem_heap_alloc(heap, sizeof(dict_index_t));

	index->heap = heap;
169

osku's avatar
osku committed
170 171
	index->type = type;
	index->space = space;
172
	index->page = 0;
osku's avatar
osku committed
173 174 175 176 177 178
	index->name = mem_heap_strdup(heap, index_name);
	index->table_name = table_name;
	index->table = NULL;
	index->n_def = index->n_nullable = 0;
	index->n_fields = n_fields;
	index->fields = mem_heap_alloc(heap, 1 + n_fields
179 180 181
				       * sizeof(dict_field_t));
	/* The '1 +' above prevents allocation
	of an empty mem block */
osku's avatar
osku committed
182 183 184
	index->stat_n_diff_key_vals = NULL;

	index->cached = FALSE;
185
	memset(&index->lock, 0, sizeof index->lock);
186
#ifdef UNIV_DEBUG
osku's avatar
osku committed
187
	index->magic_n = DICT_INDEX_MAGIC_N;
188
#endif /* UNIV_DEBUG */
osku's avatar
osku committed
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
	return(index);
}

/**************************************************************************
Creates and initializes a foreign constraint memory object. */

dict_foreign_t*
dict_mem_foreign_create(void)
/*=========================*/
				/* out, own: foreign constraint struct */
{
	dict_foreign_t*	foreign;
	mem_heap_t*	heap;

	heap = mem_heap_create(100);

	foreign = mem_heap_alloc(heap, sizeof(dict_foreign_t));

	foreign->heap = heap;

	foreign->id = NULL;

	foreign->type = 0;
	foreign->foreign_table_name = NULL;
	foreign->foreign_table = NULL;
	foreign->foreign_col_names = NULL;

	foreign->referenced_table_name = NULL;
	foreign->referenced_table = NULL;
	foreign->referenced_col_names = NULL;

	foreign->n_fields = 0;

	foreign->foreign_index = NULL;
	foreign->referenced_index = NULL;

	return(foreign);
}

/**************************************************************************
Adds a field definition to an index. NOTE: does not take a copy
of the column name if the field is a column. The memory occupied
by the column name may be released only after publishing the index. */

void
dict_mem_index_add_field(
/*=====================*/
	dict_index_t*	index,		/* in: index */
	const char*	name,		/* in: column name */
	ulint		prefix_len)	/* in: 0 or the column prefix length
					in a MySQL index like
					INDEX (textcol(25)) */
{
	dict_field_t*	field;
243

osku's avatar
osku committed
244 245
	ut_ad(index && name);
	ut_ad(index->magic_n == DICT_INDEX_MAGIC_N);
246

osku's avatar
osku committed
247 248
	index->n_def++;

249
	field = dict_index_get_nth_field(index, index->n_def - 1);
osku's avatar
osku committed
250 251 252 253 254 255 256 257 258 259 260 261 262

	field->name = name;
	field->prefix_len = prefix_len;
}

/**************************************************************************
Frees an index memory object. */

void
dict_mem_index_free(
/*================*/
	dict_index_t*	index)	/* in: index */
{
263 264 265
	ut_ad(index);
	ut_ad(index->magic_n == DICT_INDEX_MAGIC_N);

osku's avatar
osku committed
266 267
	mem_heap_free(index->heap);
}