1
/* Copyright (C) 2005 MySQL AB
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; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
#include <drizzled/server_includes.h>
18
#include "rpl_tblmap.h"
20
#define TABLE_ID_HASH_SIZE 32
21
#define TABLE_ID_CHUNK 256
23
table_mapping::table_mapping()
27
No "free_element" function for entries passed here, as the entries are
28
allocated in a MEM_ROOT (freed as a whole in the destructor), they cannot
30
Note that below we don't test if hash_init() succeeded. This constructor
31
is called at startup only.
33
(void) hash_init(&m_table_ids,&my_charset_bin,TABLE_ID_HASH_SIZE,
34
offsetof(entry,table_id),sizeof(ulong),
36
/* We don't preallocate any block, this is consistent with m_free=0 above */
37
init_alloc_root(&m_mem_root, TABLE_ID_HASH_SIZE*sizeof(entry), 0);
40
table_mapping::~table_mapping()
42
hash_free(&m_table_ids);
43
free_root(&m_mem_root, MYF(0));
46
Table* table_mapping::get_table(ulong table_id)
48
entry *e= find_entry(table_id);
58
Called when we are out of table id entries. Creates TABLE_ID_CHUNK
59
new entries, chain them and attach them at the head of the list of free
60
(free for use) entries.
62
int table_mapping::expand()
65
If we wanted to use "tmp= new (&m_mem_root) entry[TABLE_ID_CHUNK]",
66
we would have to make "entry" derive from Sql_alloc but then it would not
67
be a POD anymore and we want it to be (see rpl_tblmap.h). So we allocate
70
entry *tmp= (entry *)alloc_root(&m_mem_root, TABLE_ID_CHUNK*sizeof(entry));
72
return ERR_MEMORY_ALLOCATION; // Memory allocation failed
74
/* Find the end of this fresh new array of free entries */
75
entry *e_end= tmp+TABLE_ID_CHUNK-1;
76
for (entry *e= tmp; e < e_end; e++)
83
int table_mapping::set_table(ulong table_id, Table* table)
85
entry *e= find_entry(table_id);
88
if (m_free == 0 && expand())
89
return(ERR_MEMORY_ALLOCATION); // Memory allocation failed
94
hash_delete(&m_table_ids,(unsigned char *)e);
96
e->table_id= table_id;
98
my_hash_insert(&m_table_ids,(unsigned char *)e);
103
int table_mapping::remove_table(ulong table_id)
105
entry *e= find_entry(table_id);
108
hash_delete(&m_table_ids,(unsigned char *)e);
109
/* we add this entry to the chain of free (free for use) entries */
114
return 1; // No table to remove
118
Puts all entries into the list of free-for-use entries (does not free any
119
memory), and empties the hash.
121
void table_mapping::clear_tables()
123
for (uint32_t i= 0; i < m_table_ids.records; i++)
125
entry *e= (entry *)hash_element(&m_table_ids, i);
129
my_hash_reset(&m_table_ids);