~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2005 MySQL 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; version 2 of the License.
6
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.
11
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 */
15
16
#include "mysql_priv.h"
17
18
#ifdef HAVE_REPLICATION
19
20
#include "rpl_tblmap.h"
21
22
#define MAYBE_TABLE_NAME(T) ((T) ? (T)->s->table_name.str : "<>")
23
#define TABLE_ID_HASH_SIZE 32
24
#define TABLE_ID_CHUNK 256
25
26
table_mapping::table_mapping()
27
  : m_free(0)
28
{
29
  /*
30
    No "free_element" function for entries passed here, as the entries are
31
    allocated in a MEM_ROOT (freed as a whole in the destructor), they cannot
32
    be freed one by one.
33
    Note that below we don't test if hash_init() succeeded. This constructor
34
    is called at startup only.
35
  */
36
  (void) hash_init(&m_table_ids,&my_charset_bin,TABLE_ID_HASH_SIZE,
37
		   offsetof(entry,table_id),sizeof(ulong),
38
		   0,0,0);
39
  /* We don't preallocate any block, this is consistent with m_free=0 above */
40
  init_alloc_root(&m_mem_root, TABLE_ID_HASH_SIZE*sizeof(entry), 0);
41
}
42
43
table_mapping::~table_mapping()
44
{
45
  hash_free(&m_table_ids);
46
  free_root(&m_mem_root, MYF(0));
47
}
48
49
st_table* table_mapping::get_table(ulong table_id)
50
{
51
  DBUG_ENTER("table_mapping::get_table(ulong)");
52
  DBUG_PRINT("enter", ("table_id: %lu", table_id));
53
  entry *e= find_entry(table_id);
54
  if (e) 
55
  {
56
    DBUG_PRINT("info", ("tid %lu -> table 0x%lx (%s)", 
57
			table_id, (long) e->table,
58
			MAYBE_TABLE_NAME(e->table)));
59
    DBUG_RETURN(e->table);
60
  }
61
62
  DBUG_PRINT("info", ("tid %lu is not mapped!", table_id));
63
  DBUG_RETURN(NULL);
64
}
65
66
/*
67
  Called when we are out of table id entries. Creates TABLE_ID_CHUNK
68
  new entries, chain them and attach them at the head of the list of free
69
  (free for use) entries.
70
*/
71
int table_mapping::expand()
72
{
73
  /*
74
    If we wanted to use "tmp= new (&m_mem_root) entry[TABLE_ID_CHUNK]",
75
    we would have to make "entry" derive from Sql_alloc but then it would not
76
    be a POD anymore and we want it to be (see rpl_tblmap.h). So we allocate
77
    in C.
78
  */
79
  entry *tmp= (entry *)alloc_root(&m_mem_root, TABLE_ID_CHUNK*sizeof(entry));
80
  if (tmp == NULL)
81
    return ERR_MEMORY_ALLOCATION; // Memory allocation failed
82
83
  /* Find the end of this fresh new array of free entries */
84
  entry *e_end= tmp+TABLE_ID_CHUNK-1;
85
  for (entry *e= tmp; e < e_end; e++)
86
    e->next= e+1;
87
  e_end->next= m_free;
88
  m_free= tmp;
89
  return 0;
90
}
91
92
int table_mapping::set_table(ulong table_id, TABLE* table)
93
{
94
  DBUG_ENTER("table_mapping::set_table(ulong,TABLE*)");
95
  DBUG_PRINT("enter", ("table_id: %lu  table: 0x%lx (%s)", 
96
		       table_id, 
97
		       (long) table, MAYBE_TABLE_NAME(table)));
98
  entry *e= find_entry(table_id);
99
  if (e == 0)
100
  {
101
    if (m_free == 0 && expand())
102
      DBUG_RETURN(ERR_MEMORY_ALLOCATION); // Memory allocation failed      
103
    e= m_free;
104
    m_free= m_free->next;
105
  }
106
  else
107
    hash_delete(&m_table_ids,(uchar *)e);
108
109
  e->table_id= table_id;
110
  e->table= table;
111
  my_hash_insert(&m_table_ids,(uchar *)e);
112
113
  DBUG_PRINT("info", ("tid %lu -> table 0x%lx (%s)", 
114
		      table_id, (long) e->table,
115
		      MAYBE_TABLE_NAME(e->table)));
116
  DBUG_RETURN(0);		// All OK
117
}
118
119
int table_mapping::remove_table(ulong table_id)
120
{
121
  entry *e= find_entry(table_id);
122
  if (e)
123
  {
124
    hash_delete(&m_table_ids,(uchar *)e);
125
    /* we add this entry to the chain of free (free for use) entries */
126
    e->next= m_free;
127
    m_free= e;
128
    return 0;			// All OK
129
  }
130
  return 1;			// No table to remove
131
}
132
133
/*
134
  Puts all entries into the list of free-for-use entries (does not free any
135
  memory), and empties the hash.
136
*/
137
void table_mapping::clear_tables()
138
{
139
  DBUG_ENTER("table_mapping::clear_tables()");
140
  for (uint i= 0; i < m_table_ids.records; i++)
141
  {
142
    entry *e= (entry *)hash_element(&m_table_ids, i);
143
    e->next= m_free;
144
    m_free= e;
145
  }
146
  my_hash_reset(&m_table_ids);
147
  DBUG_VOID_RETURN;
148
}
149
150
#endif