1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
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; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
#include <drizzled/server_includes.h>
29
A table definition from the master.
31
The responsibilities of this class is:
32
- Extract and decode table definition data from the table map event
33
- Check if table definition in table map is compatible with table
36
Currently, the only field type data available is an array of the
37
type operators that are present in the table map event.
39
@todo Add type operands to this structure to allow detection of
40
difference between, e.g., BIT(5) and BIT(10).
47
Convenience declaration of the type of the field type data in a
50
typedef unsigned char field_type;
55
@param types Array of types
56
@param size Number of elements in array 'types'
57
@param field_metadata Array of extra information about fields
58
@param metadata_size Size of the field_metadata array
59
@param null_bitmap The bitmap of fields that can be null
61
table_def(field_type *types, uint32_t size, unsigned char *field_metadata,
62
int metadata_size, unsigned char *null_bitmap)
63
: m_size(size), m_type(0), m_field_metadata_size(metadata_size),
64
m_field_metadata(0), m_null_bits(0), m_memory(NULL)
66
m_memory= (unsigned char *)my_multi_malloc(MYF(MY_WME),
69
size * sizeof(uint16_t),
70
&m_null_bits, (size + 7) / 8,
73
memset(m_field_metadata, 0, size * sizeof(uint16_t));
76
memcpy(m_type, types, size);
80
Extract the data from the table map into the field metadata array
81
iff there is field metadata. The variable metadata_size will be
82
0 if we are replicating from an older version server since no field
83
metadata was written to the table map. This can also happen if
84
there were no fields in the master that needed extra metadata.
86
if (m_size && metadata_size)
89
for (unsigned int i= 0; i < m_size; i++)
92
case DRIZZLE_TYPE_BLOB:
93
case DRIZZLE_TYPE_DOUBLE:
96
These types store a single byte.
98
m_field_metadata[i]= field_metadata[index];
102
case DRIZZLE_TYPE_ENUM:
104
uint16_t x= field_metadata[index++] << 8U; // real_type
105
x+= field_metadata[index++]; // pack or field length
106
m_field_metadata[i]= x;
109
case DRIZZLE_TYPE_VARCHAR:
112
These types store two bytes.
114
char *ptr= (char *)&field_metadata[index];
115
m_field_metadata[i]= uint2korr(ptr);
119
case DRIZZLE_TYPE_NEWDECIMAL:
121
uint16_t x= field_metadata[index++] << 8U; // precision
122
x+= field_metadata[index++]; // decimals
123
m_field_metadata[i]= x;
127
m_field_metadata[i]= 0;
132
if (m_size && null_bitmap)
133
memcpy(m_null_bits, null_bitmap, (m_size + 7) / 8);
143
Return the number of fields there is type data for.
145
@return The number of fields that there is type data for.
147
uint32_t size() const { return m_size; }
151
Return a representation of the type data for one field.
153
@param index Field index to return data for
155
@return Will return a representation of the type data for field
156
<code>index</code>. Currently, only the type identifier is
159
field_type type(uint32_t index) const
161
assert(index < m_size);
162
return m_type[index];
167
This function allows callers to get the extra field data from the
168
table map for a given field. If there is no metadata for that field
169
or there is no extra metadata at all, the function returns 0.
171
The function returns the value for the field metadata for column at
172
position indicated by index. As mentioned, if the field was a type
173
that stores field metadata, that value is returned else zero (0) is
174
returned. This method is used in the unpack() methods of the
175
corresponding fields to properly extract the data from the binary log
176
in the event that the master's field is smaller than the slave.
178
uint16_t field_metadata(uint32_t index) const
180
assert(index < m_size);
181
if (m_field_metadata_size)
182
return m_field_metadata[index];
188
This function returns whether the field on the master can be null.
189
This value is derived from field->maybe_null().
191
bool maybe_null(uint32_t index) const
193
assert(index < m_size);
194
return ((m_null_bits[(index / 8)] &
195
(1 << (index % 8))) == (1 << (index %8)));
199
This function returns the field size in raw bytes based on the type
200
and the encoded field data from the master's raw data. This method can
201
be used for situations where the slave needs to skip a column (e.g.,
202
WL#3915) or needs to advance the pointer for the fields in the raw
203
data from the master to a specific column.
205
uint32_t calc_field_size(uint32_t col, unsigned char *master_data) const;
208
Decide if the table definition is compatible with a table.
210
Compare the definition with a table to see if it is compatible
213
A table definition is compatible with a table if:
214
- the columns types of the table definition is a (not
215
necessarily proper) prefix of the column type of the table, or
216
- the other way around
218
@param rli Pointer to relay log info
219
@param table Pointer to table to compare with.
221
@retval 1 if the table definition is not compatible with @c table
222
@retval 0 if the table definition is compatible with @c table
224
int compatible_with(Relay_log_info const *rli, Table *table) const;
227
uint32_t m_size; // Number of elements in the types array
228
field_type *m_type; // Array of type descriptors
229
uint32_t m_field_metadata_size;
230
uint16_t *m_field_metadata;
231
unsigned char *m_null_bits;
232
unsigned char *m_memory;
236
Extend the normal table list with a few new fields needed by the
237
slave thread, but nowhere else.
242
bool m_tabledef_valid;
243
table_def m_tabledef;
247
/* Anonymous namespace for template functions/classes */
251
Smart pointer that will automatically call my_afree (a macro) when
252
the pointer goes out of scope. This is used so that I do not have
253
to remember to call my_afree() before each return. There is no
254
overhead associated with this, since all functions are inline.
256
I (Matz) would prefer to use the free function as a template
257
parameter, but that is not possible when the "function" is a
265
auto_afree_ptr(Obj* ptr) : m_ptr(ptr) { }
266
~auto_afree_ptr() { if (m_ptr) my_afree(m_ptr); }
267
void assign(Obj* ptr) {
268
/* Only to be called if it hasn't been given a value before. */
269
assert(m_ptr == NULL);
272
Obj* get() { return m_ptr; }
277
#endif /* RPL_UTILITY_H */