forked from wangmh/mysql-replication-listener
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbasic-1.cpp
61 lines (51 loc) · 1.73 KB
/
basic-1.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
#include "binlog_api.h"
/**
@file basic-1
@author Mats Kindahl <mats.kindahl@oracle.com>
modified by ideal <idealities@gmail.com>
This is a basic example that just opens a binary log either from a
file or a server and print out what events are found. It uses a
simple event loop and checks information in the events using a
switch.
*/
// Actually namespace mysql has been using in many headers like rowset.h
// and rowset.h is included by binlog_api.h 。。。。
//using mysql::Binary_log;
using mysql::system::create_transport;
int main(int argc, char** argv) {
if (argc != 2) {
std::cerr << "Usage: basic-1 <uri>" << std::endl;
exit(2);
}
Binary_log binlog(create_transport(argv[1]));
binlog.connect();
Converter converter;
Binary_log_event *event;
Table_map_event *tmev;
while (true) {
int result = binlog.wait_for_next_event(&event);
if (result == ERR_EOF)
break;
std::cout << "Found event of type "
<< event->get_event_type();
int event_type = event->get_event_type();
if (event_type == mysql::TABLE_MAP_EVENT) {
tmev = (mysql::Table_map_event *)event;
}
if (event_type == mysql::WRITE_ROWS_EVENT) {
mysql::Row_event *row_event = (mysql::Row_event *)event;
mysql::Row_event_set rows(row_event, tmev);
mysql::Row_event_set::iterator itor = rows.begin();
do {
mysql::Row_of_fields fields = *itor;
mysql::Row_of_fields::iterator it = fields.begin();
do {
std::string out;
converter.to(out, *it);
std::cout << "\t" << out;
} while(++it != fields.end());
} while (++itor != rows.end());
}
std::cout << std::endl;
}
}