|
1
|
|
|
<?php |
|
2
|
|
|
declare(strict_types=1); |
|
3
|
|
|
|
|
4
|
|
|
namespace MySQLReplication\Event; |
|
5
|
|
|
|
|
6
|
|
|
use MySQLReplication\BinaryDataReader\BinaryDataReader; |
|
7
|
|
|
use MySQLReplication\BinaryDataReader\BinaryDataReaderException; |
|
8
|
|
|
use MySQLReplication\BinLog\BinLogException; |
|
9
|
|
|
use MySQLReplication\BinLog\BinLogServerInfo; |
|
10
|
|
|
use MySQLReplication\BinLog\BinLogSocketConnect; |
|
11
|
|
|
use MySQLReplication\Config\Config; |
|
12
|
|
|
use MySQLReplication\Definitions\ConstEventType; |
|
13
|
|
|
use MySQLReplication\Event\DTO\EventDTO; |
|
14
|
|
|
use MySQLReplication\Event\DTO\FormatDescriptionEventDTO; |
|
15
|
|
|
use MySQLReplication\Event\DTO\HeartbeatDTO; |
|
16
|
|
|
use MySQLReplication\Event\DTO\QueryDTO; |
|
17
|
|
|
use MySQLReplication\Event\RowEvent\RowEventFactory; |
|
18
|
|
|
use MySQLReplication\Exception\MySQLReplicationException; |
|
19
|
|
|
use MySQLReplication\JsonBinaryDecoder\JsonBinaryDecoderException; |
|
20
|
|
|
use MySQLReplication\Socket\SocketException; |
|
21
|
|
|
use Psr\SimpleCache\CacheInterface; |
|
22
|
|
|
use Psr\SimpleCache\InvalidArgumentException; |
|
23
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
|
24
|
|
|
|
|
25
|
|
|
class Event |
|
26
|
|
|
{ |
|
27
|
|
|
private const MARIADB_DUMMY_QUERY = '# Dum'; |
|
28
|
|
|
private const EOF_HEADER_VALUE = 254; |
|
29
|
|
|
|
|
30
|
|
|
private $binLogSocketConnect; |
|
31
|
|
|
private $rowEventFactory; |
|
32
|
|
|
private $eventDispatcher; |
|
33
|
|
|
private $cache; |
|
34
|
|
|
|
|
35
|
58 |
|
public function __construct( |
|
36
|
|
|
BinLogSocketConnect $binLogSocketConnect, |
|
37
|
|
|
RowEventFactory $rowEventFactory, |
|
38
|
|
|
EventDispatcherInterface $eventDispatcher, |
|
39
|
|
|
CacheInterface $cache |
|
40
|
|
|
) { |
|
41
|
58 |
|
$this->binLogSocketConnect = $binLogSocketConnect; |
|
42
|
58 |
|
$this->rowEventFactory = $rowEventFactory; |
|
43
|
58 |
|
$this->eventDispatcher = $eventDispatcher; |
|
44
|
58 |
|
$this->cache = $cache; |
|
45
|
58 |
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* @throws BinaryDataReaderException |
|
49
|
|
|
* @throws BinLogException |
|
50
|
|
|
* @throws MySQLReplicationException |
|
51
|
|
|
* @throws JsonBinaryDecoderException |
|
52
|
|
|
* @throws InvalidArgumentException |
|
53
|
|
|
* @throws SocketException |
|
54
|
|
|
*/ |
|
55
|
58 |
|
public function consume(): void |
|
56
|
|
|
{ |
|
57
|
58 |
|
$binaryDataReader = new BinaryDataReader($this->binLogSocketConnect->getResponse()); |
|
58
|
|
|
|
|
59
|
|
|
// check EOF_Packet -> https://dev.mysql.com/doc/internals/en/packet-EOF_Packet.html |
|
60
|
58 |
|
if (self::EOF_HEADER_VALUE === $binaryDataReader->readUInt8()) { |
|
61
|
|
|
return; |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
// decode all events data |
|
65
|
58 |
|
$eventInfo = $this->createEventInfo($binaryDataReader); |
|
66
|
|
|
|
|
67
|
58 |
|
$eventDTO = null; |
|
68
|
|
|
|
|
69
|
|
|
// we always need this events to clean table maps and for BinLogCurrent class to keep track of binlog position |
|
70
|
|
|
// always parse table map event but propagate when needed (we need this for creating table cache) |
|
71
|
58 |
|
if (ConstEventType::TABLE_MAP_EVENT === $eventInfo->getType()) { |
|
72
|
54 |
|
$eventDTO = $this->rowEventFactory->makeRowEvent($binaryDataReader, $eventInfo)->makeTableMapDTO(); |
|
73
|
58 |
|
} else if (ConstEventType::ROTATE_EVENT === $eventInfo->getType()) { |
|
74
|
1 |
|
$this->cache->clear(); |
|
75
|
1 |
|
$eventDTO = (new RotateEvent($eventInfo, $binaryDataReader))->makeRotateEventDTO(); |
|
76
|
58 |
|
} else if (ConstEventType::GTID_LOG_EVENT === $eventInfo->getType()) { |
|
77
|
|
|
$eventDTO = (new GtidEvent($eventInfo, $binaryDataReader))->makeGTIDLogDTO(); |
|
78
|
58 |
|
} else if (ConstEventType::HEARTBEAT_LOG_EVENT === $eventInfo->getType()) { |
|
79
|
|
|
$eventDTO = new HeartbeatDTO($eventInfo); |
|
80
|
58 |
|
} else if (ConstEventType::MARIA_GTID_EVENT === $eventInfo->getType()) { |
|
81
|
|
|
$eventDTO = (new MariaDbGtidEvent($eventInfo, $binaryDataReader))->makeMariaDbGTIDLogDTO(); |
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
|
|
// check for ignore and permitted events |
|
85
|
58 |
|
if (!Config::checkEvent($eventInfo->getType())) { |
|
86
|
4 |
|
return; |
|
87
|
|
|
} |
|
88
|
|
|
|
|
89
|
58 |
|
if (in_array($eventInfo->getType(), [ConstEventType::UPDATE_ROWS_EVENT_V1, ConstEventType::UPDATE_ROWS_EVENT_V2], true)) { |
|
90
|
1 |
|
$eventDTO = $this->rowEventFactory->makeRowEvent($binaryDataReader, $eventInfo)->makeUpdateRowsDTO(); |
|
91
|
58 |
|
} else if (in_array($eventInfo->getType(), [ConstEventType::WRITE_ROWS_EVENT_V1, ConstEventType::WRITE_ROWS_EVENT_V2], true)) { |
|
92
|
53 |
|
$eventDTO = $this->rowEventFactory->makeRowEvent($binaryDataReader, $eventInfo)->makeWriteRowsDTO(); |
|
93
|
58 |
|
} else if (in_array($eventInfo->getType(), [ConstEventType::DELETE_ROWS_EVENT_V1, ConstEventType::DELETE_ROWS_EVENT_V2], true)) { |
|
94
|
1 |
|
$eventDTO = $this->rowEventFactory->makeRowEvent($binaryDataReader, $eventInfo)->makeDeleteRowsDTO(); |
|
95
|
58 |
|
} else if (ConstEventType::XID_EVENT === $eventInfo->getType()) { |
|
96
|
3 |
|
$eventDTO = (new XidEvent($eventInfo, $binaryDataReader))->makeXidDTO(); |
|
97
|
58 |
|
} else if (ConstEventType::QUERY_EVENT === $eventInfo->getType()) { |
|
98
|
58 |
|
$eventDTO = $this->filterDummyMariaDbEvents((new QueryEvent($eventInfo, $binaryDataReader))->makeQueryDTO()); |
|
99
|
58 |
|
} else if (ConstEventType::FORMAT_DESCRIPTION_EVENT === $eventInfo->getType()) { |
|
100
|
58 |
|
$eventDTO = new FormatDescriptionEventDTO($eventInfo); |
|
101
|
|
|
} |
|
102
|
|
|
|
|
103
|
58 |
|
$this->dispatch($eventDTO); |
|
104
|
58 |
|
} |
|
105
|
|
|
|
|
106
|
58 |
|
private function createEventInfo(BinaryDataReader $binaryDataReader): EventInfo |
|
107
|
|
|
{ |
|
108
|
58 |
|
return new EventInfo( |
|
109
|
58 |
|
$binaryDataReader->readInt32(), |
|
110
|
58 |
|
$binaryDataReader->readUInt8(), |
|
111
|
58 |
|
$binaryDataReader->readInt32(), |
|
112
|
58 |
|
$binaryDataReader->readInt32(), |
|
113
|
58 |
|
$binaryDataReader->readInt32(), |
|
114
|
58 |
|
$binaryDataReader->readUInt16(), |
|
115
|
58 |
|
$this->binLogSocketConnect->getCheckSum(), |
|
116
|
58 |
|
$this->binLogSocketConnect->getBinLogCurrent() |
|
117
|
|
|
); |
|
118
|
|
|
} |
|
119
|
|
|
|
|
120
|
58 |
|
private function filterDummyMariaDbEvents(QueryDTO $queryDTO): ?QueryDTO |
|
121
|
|
|
{ |
|
122
|
58 |
|
if (BinLogServerInfo::isMariaDb() && false !== strpos($queryDTO->getQuery(), self::MARIADB_DUMMY_QUERY)) { |
|
123
|
|
|
return null; |
|
124
|
|
|
} |
|
125
|
|
|
|
|
126
|
58 |
|
return $queryDTO; |
|
127
|
|
|
} |
|
128
|
|
|
|
|
129
|
58 |
|
private function dispatch(EventDTO $eventDTO = null): void |
|
130
|
|
|
{ |
|
131
|
58 |
|
if (null !== $eventDTO) { |
|
132
|
58 |
|
$this->eventDispatcher->dispatch($eventDTO, $eventDTO->getType()); |
|
133
|
|
|
} |
|
134
|
58 |
|
} |
|
135
|
|
|
} |
|
136
|
|
|
|