forked from wangmh/mysql-replication-listener
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathfield_iterator.cpp
101 lines (88 loc) · 2.99 KB
/
field_iterator.cpp
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights
reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2 of
the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
#include "field_iterator.h"
//Row_iterator Row_iterator::end() const
//{ return Row_iterator(); }
namespace mysql
{
bool is_null(unsigned char *bitmap, int index)
{
unsigned char *byte= bitmap + (index / 8);
unsigned bit= 1 << ((index) & 7);
return ((*byte) & bit) != 0;
}
uint16_t extract_metadata(const Table_map_event *map, int col_no)
{
int offset= 0;
for (int i=0; i < col_no; ++i)
{
unsigned int type= (unsigned int)map->columns[i]&0xFF;
offset += lookup_metadata_field_size((enum mysql::system::enum_field_types)type);
}
uint16_t metadata= 0;
unsigned int type= (unsigned int)map->columns[col_no]&0xFF;
switch(lookup_metadata_field_size((enum mysql::system::enum_field_types)type))
{
case 1:
metadata = (unsigned char)map->metadata[offset];
break;
case 2:
{
metadata = ((unsigned char)map->metadata[offset]) & 0xFF;
metadata += ((((unsigned char)map->metadata[offset+1]) & 0xFF) << 8);
}
break;
}
return metadata;
}
int lookup_metadata_field_size(enum mysql::system::enum_field_types field_type)
{
switch(field_type)
{
case mysql::system::MYSQL_TYPE_DOUBLE:
case mysql::system::MYSQL_TYPE_FLOAT:
case mysql::system::MYSQL_TYPE_BLOB:
case mysql::system::MYSQL_TYPE_GEOMETRY:
return 1;
case mysql::system::MYSQL_TYPE_BIT:
case mysql::system::MYSQL_TYPE_VARCHAR:
case mysql::system::MYSQL_TYPE_NEWDECIMAL:
case mysql::system::MYSQL_TYPE_STRING:
case mysql::system::MYSQL_TYPE_VAR_STRING:
return 2;
case mysql::system::MYSQL_TYPE_DECIMAL:
case mysql::system::MYSQL_TYPE_SET:
case mysql::system::MYSQL_TYPE_ENUM:
case mysql::system::MYSQL_TYPE_YEAR:
case mysql::system::MYSQL_TYPE_TINY:
case mysql::system::MYSQL_TYPE_SHORT:
case mysql::system::MYSQL_TYPE_INT24:
case mysql::system::MYSQL_TYPE_LONG:
case mysql::system::MYSQL_TYPE_NULL:
case mysql::system::MYSQL_TYPE_NEWDATE:
case mysql::system::MYSQL_TYPE_DATE:
case mysql::system::MYSQL_TYPE_TIME:
case mysql::system::MYSQL_TYPE_TIMESTAMP:
case mysql::system::MYSQL_TYPE_DATETIME:
case mysql::system::MYSQL_TYPE_TINY_BLOB:
case mysql::system::MYSQL_TYPE_MEDIUM_BLOB:
case mysql::system::MYSQL_TYPE_LONG_BLOB:
default:
return 0;
}
}
} // end namespace mysql