forked from jackc/pglogrepl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.go
636 lines (530 loc) · 15.5 KB
/
message.go
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
package pglogrepl
import (
"bytes"
"encoding/binary"
"fmt"
"strconv"
"time"
)
// MessageType indicates type of a logical replication message.
type MessageType uint8
func (t MessageType) String() string {
switch t {
case MessageTypeBegin:
return "Begin"
case MessageTypeCommit:
return "Commit"
case MessageTypeOrigin:
return "Origin"
case MessageTypeRelation:
return "Relation"
case MessageTypeType:
return "Type"
case MessageTypeInsert:
return "Insert"
case MessageTypeUpdate:
return "Update"
case MessageTypeDelete:
return "Delete"
case MessageTypeTruncate:
return "Truncate"
default:
return "Unknown"
}
}
// List of types of logical replication messages.
const (
MessageTypeBegin MessageType = 'B'
MessageTypeCommit = 'C'
MessageTypeOrigin = 'O'
MessageTypeRelation = 'R'
MessageTypeType = 'Y'
MessageTypeInsert = 'I'
MessageTypeUpdate = 'U'
MessageTypeDelete = 'D'
MessageTypeTruncate = 'T'
)
// Message is a message received from server.
type Message interface {
Type() MessageType
}
// MessageDecoder decodes meessage into struct.
type MessageDecoder interface {
Decode([]byte) error
}
type baseMessage struct {
msgType MessageType
}
// Type returns message type.
func (m *baseMessage) Type() MessageType {
return m.msgType
}
// Decode parse src into message struct. The src must contain the complete message starts after
// the first message type byte.
func (m *baseMessage) Decode(src []byte) error {
return fmt.Errorf("message decode not implemented")
}
func (m *baseMessage) lengthError(name string, expectedLen, actualLen int) error {
return fmt.Errorf("%s must have %d bytes, got %d bytes", name, expectedLen, actualLen)
}
func (m *baseMessage) decodeStringError(name, field string) error {
return fmt.Errorf("%s.%s decode string error", name, field)
}
func (m *baseMessage) decodeTupleDataError(name, field string, e error) error {
return fmt.Errorf("%s.%s decode tuple error: %s", name, field, e.Error())
}
func (m *baseMessage) invalidTupleTypeError(name, field string, e string, a byte) error {
return fmt.Errorf("%s.%s invalid tuple type value, expect %s, actual %c", name, field, e, a)
}
// decodeString decode a string from src and returns the length of bytes being parsed.
//
// String type definition: https://www.postgresql.org/docs/current/protocol-message-types.html
// String(s)
// A null-terminated string (C-style string). There is no specific length limitation on strings.
// If s is specified it is the exact value that will appear, otherwise the value is variable.
// Eg. String, String("user").
//
// If there is no null byte in src, return -1.
func (m *baseMessage) decodeString(src []byte) (string, int) {
end := bytes.IndexByte(src, byte(0))
if end == -1 {
return "", -1
}
// Trim the last null byte before converting it to a Golang string, then we can
// compare the result string with a Golang string literal.
return string(src[:end]), end + 1
}
func (m *baseMessage) decodeLSN(src []byte) (LSN, int) {
return LSN(binary.BigEndian.Uint64(src)), 8
}
func (m *baseMessage) decodeTime(src []byte) (time.Time, int) {
return pgTimeToTime(int64(binary.BigEndian.Uint64(src))), 8
}
func (m *baseMessage) decodeUint16(src []byte) (uint16, int) {
return binary.BigEndian.Uint16(src), 2
}
func (m *baseMessage) decodeUint32(src []byte) (uint32, int) {
return binary.BigEndian.Uint32(src), 4
}
func (m *baseMessage) decodeUint64(src []byte) (uint64, int) {
return binary.BigEndian.Uint64(src), 8
}
// BeginMessage is a begin message.
type BeginMessage struct {
baseMessage
//FinalLSN is the final LSN of the transaction.
FinalLSN LSN
// CommitTime is the commit timestamp of the transaction.
CommitTime time.Time
// Xid of the transaction.
Xid uint32
}
// Decode decodes the message from src.
func (m *BeginMessage) Decode(src []byte) error {
if len(src) < 20 {
return m.lengthError("BeginMessage", 20, len(src))
}
var low, used int
m.FinalLSN, used = m.decodeLSN(src)
low += used
m.CommitTime, used = m.decodeTime(src[low:])
low += used
m.Xid = binary.BigEndian.Uint32(src[low:])
m.msgType = MessageTypeBegin
return nil
}
// CommitMessage is a commit message.
type CommitMessage struct {
baseMessage
// Flags currently unused (must be 0).
Flags uint8
// CommitLSN is the LSN of the commit.
CommitLSN LSN
// TransactionEndLSN is the end LSN of the transaction.
TransactionEndLSN LSN
// CommitTime is the commit timestamp of the transaction
CommitTime time.Time
}
// Decode decodes the message from src.
func (m *CommitMessage) Decode(src []byte) error {
if len(src) < 25 {
return m.lengthError("CommitMessage", 25, len(src))
}
var low, used int
m.Flags = src[0]
low += 1
m.CommitLSN, used = m.decodeLSN(src[low:])
low += used
m.TransactionEndLSN, used = m.decodeLSN(src[low:])
low += used
m.CommitTime, _ = m.decodeTime(src[low:])
m.msgType = MessageTypeCommit
return nil
}
// OriginMessage is a origin message.
type OriginMessage struct {
baseMessage
// CommitLSN is the LSN of the commit on the origin server.
CommitLSN LSN
Name string
}
// Decode decodes to message from src.
func (m *OriginMessage) Decode(src []byte) error {
if len(src) < 8 {
return m.lengthError("OriginMessage", 9, len(src))
}
var low, used int
m.CommitLSN, used = m.decodeLSN(src)
low += used
m.Name, used = m.decodeString(src[low:])
if used < 0 {
return m.decodeStringError("OriginMessage", "Name")
}
m.msgType = MessageTypeOrigin
return nil
}
// RelationMessageColumn is one column in a RelationMessage.
type RelationMessageColumn struct {
// Flags for the column. Currently can be either 0 for no flags or 1 which marks the column as part of the key.
Flags uint8
Name string
// DataType is the ID of the column's data type.
DataType uint32
// TypeModifier is type modifier of the column (atttypmod).
TypeModifier uint32
}
// RelationMessage is a relation message.
type RelationMessage struct {
baseMessage
RelationID uint32
Namespace string
RelationName string
ReplicaIdentity uint8
ColumnNum uint16
Columns []*RelationMessageColumn
}
// Decode decodes to message from src.
func (m *RelationMessage) Decode(src []byte) error {
if len(src) < 7 {
return m.lengthError("RelationMessage", 7, len(src))
}
var low, used int
m.RelationID, used = m.decodeUint32(src)
low += used
m.Namespace, used = m.decodeString(src[low:])
if used < 0 {
return m.decodeStringError("RelationMessage", "Namespace")
}
low += used
m.RelationName, used = m.decodeString(src[low:])
if used < 0 {
return m.decodeStringError("RelationMessage", "RelationName")
}
low += used
m.ReplicaIdentity = uint8(src[low])
low++
m.ColumnNum, used = m.decodeUint16(src[low:])
low += used
for i := 0; i < int(m.ColumnNum); i++ {
column := new(RelationMessageColumn)
column.Flags = uint8(src[low])
low++
column.Name, used = m.decodeString(src[low:])
if used < 0 {
return m.decodeStringError("RelationMessage", fmt.Sprintf("Column[%d].Name", i))
}
low += used
column.DataType, used = m.decodeUint32(src[low:])
low += used
column.TypeModifier, used = m.decodeUint32(src[low:])
low += used
m.Columns = append(m.Columns, column)
}
m.msgType = MessageTypeRelation
return nil
}
// TypeMessage is a type message.
type TypeMessage struct {
baseMessage
DataType uint32
Namespace string
Name string
}
// Decode decodes to message from src.
func (m *TypeMessage) Decode(src []byte) error {
if len(src) < 6 {
return m.lengthError("TypeMessage", 6, len(src))
}
var low, used int
m.DataType, used = m.decodeUint32(src)
low += used
m.Namespace, used = m.decodeString(src[low:])
if used < 0 {
return m.decodeStringError("TypeMessage", "Namespace")
}
low += used
m.Name, used = m.decodeString(src[low:])
if used < 0 {
return m.decodeStringError("TypeMessage", "Name")
}
m.msgType = MessageTypeType
return nil
}
// List of types of data in a tuple.
const (
TupleDataTypeNull = uint8('n')
TupleDataTypeToast = uint8('u')
TupleDataTypeText = uint8('t')
)
// TupleDataColumn is a column in a TupleData.
type TupleDataColumn struct {
// DataType indicates the how does the data is stored.
// Byte1('n') Identifies the data as NULL value.
// Or
// Byte1('u') Identifies unchanged TOASTed value (the actual value is not sent).
// Or
// Byte1('t') Identifies the data as text formatted value.
DataType uint8
Length uint32
// Data is th value of the column, in text format. (A future release might support additional formats.) n is the above length.
Data []byte
}
// Int64 parse column data as an int64 integer.
func (c *TupleDataColumn) Int64() (int64, error) {
if c.DataType != TupleDataTypeText {
return 0, fmt.Errorf("invalid column's data type, expect %c, actual %c",
TupleDataTypeText, c.DataType)
}
return strconv.ParseInt(string(c.Data), 10, 64)
}
// TupleData contains row change information.
type TupleData struct {
baseMessage
ColumnNum uint16
Columns []*TupleDataColumn
}
// Decode decodes to message from src.
func (m *TupleData) Decode(src []byte) (int, error) {
var low, used int
m.ColumnNum, used = m.decodeUint16(src)
low += used
for i := 0; i < int(m.ColumnNum); i++ {
column := new(TupleDataColumn)
column.DataType = uint8(src[low])
low += 1
switch column.DataType {
case TupleDataTypeText:
column.Length, used = m.decodeUint32(src[low:])
low += used
column.Data = make([]byte, int(column.Length))
for j := 0; j < int(column.Length); j++ {
column.Data[j] = src[low+j]
}
low += int(column.Length)
case TupleDataTypeNull, TupleDataTypeToast:
}
m.Columns = append(m.Columns, column)
}
return low, nil
}
// InsertMessage is a insert message
type InsertMessage struct {
baseMessage
// RelationID is the ID of the relation corresponding to the ID in the relation message.
RelationID uint32
Tuple *TupleData
}
// Decode decodes to message from src.
func (m *InsertMessage) Decode(src []byte) error {
if len(src) < 8 {
return m.lengthError("InsertMessage", 8, len(src))
}
var low, used int
m.RelationID, used = m.decodeUint32(src)
low += used
tupleType := uint8(src[low])
low += 1
if tupleType != 'N' {
return m.invalidTupleTypeError("InsertMessage", "TupleType", "N", tupleType)
}
m.Tuple = new(TupleData)
_, err := m.Tuple.Decode(src[low:])
if err != nil {
return m.decodeTupleDataError("InsertMessage", "TupleData", err)
}
m.msgType = MessageTypeInsert
return nil
}
// List of types of UpdateMessage tuples.
const (
UpdateMessageTupleTypeNone = uint8(0)
UpdateMessageTupleTypeKey = uint8('K')
UpdateMessageTupleTypeOld = uint8('O')
UpdateMessageTupleTypeNew = uint8('N')
)
// UpdateMessage is a update message.
type UpdateMessage struct {
baseMessage
RelationID uint32
// OldTupleType
// Byte1('K'):
// Identifies the following TupleData submessage as a key.
// This field is optional and is only present if the update changed data
// in any of the column(s) that are part of the REPLICA IDENTITY index.
//
// Byte1('O'):
// Identifies the following TupleData submessage as an old tuple.
// This field is optional and is only present if table in which the update happened
// has REPLICA IDENTITY set to FULL.
//
// The Update message may contain either a 'K' message part or an 'O' message part
// or neither of them, but never both of them.
OldTupleType uint8
OldTuple *TupleData
// NewTuple is the contents of a new tuple.
// Byte1('N'): Identifies the following TupleData message as a new tuple.
NewTuple *TupleData
}
// Decode decodes to message from src.
func (m *UpdateMessage) Decode(src []byte) (err error) {
if len(src) < 6 {
return m.lengthError("UpdateMessage", 6, len(src))
}
var low, used int
m.RelationID, used = m.decodeUint32(src)
low += used
tupleType := uint8(src[low])
low++
switch tupleType {
case UpdateMessageTupleTypeKey, UpdateMessageTupleTypeOld:
m.OldTupleType = tupleType
m.OldTuple = new(TupleData)
used, err = m.OldTuple.Decode(src[low:])
if err != nil {
return m.decodeTupleDataError("UpdateMessage", "OldTuple", err)
}
low += used
tupleType = uint8(src[low])
low++
fallthrough
case UpdateMessageTupleTypeNew:
m.NewTuple = new(TupleData)
_, err = m.NewTuple.Decode(src[low:])
if err != nil {
return m.decodeTupleDataError("UpdateMessage", "NewTuple", err)
}
default:
return m.invalidTupleTypeError("UpdateMessage", "Tuple", "K/O/N", tupleType)
}
m.msgType = MessageTypeUpdate
return nil
}
// List of types of DeleteMessage tuples.
const (
DeleteMessageTupleTypeKey = uint8('K')
DeleteMessageTupleTypeOld = uint8('O')
)
// DeleteMessage is a delete message.
type DeleteMessage struct {
baseMessage
RelationID uint32
// OldTupleType
// Byte1('K'):
// Identifies the following TupleData submessage as a key.
// This field is present if the table in which the delete has happened uses an index
// as REPLICA IDENTITY.
//
// Byte1('O')
// Identifies the following TupleData message as a old tuple.
// This field is present if the table in which the delete has happened has
// REPLICA IDENTITY set to FULL.
//
// The Delete message may contain either a 'K' message part or an 'O' message part,
// but never both of them.
OldTupleType uint8
OldTuple *TupleData
}
// Decode decodes a message from src.
func (m *DeleteMessage) Decode(src []byte) (err error) {
if len(src) < 4 {
return m.lengthError("DeleteMessage", 4, len(src))
}
var low, used int
m.RelationID, used = m.decodeUint32(src)
low += used
m.OldTupleType = uint8(src[low])
low++
switch m.OldTupleType {
case DeleteMessageTupleTypeKey, DeleteMessageTupleTypeOld:
m.OldTuple = new(TupleData)
_, err = m.OldTuple.Decode(src[low:])
if err != nil {
return m.decodeTupleDataError("DeleteMessage", "OldTuple", err)
}
default:
return m.invalidTupleTypeError("DeleteMessage", "OldTupleType", "K/O", m.OldTupleType)
}
m.msgType = MessageTypeDelete
return nil
}
// List of truncate options.
const (
TruncateOptionCascade = uint8(1) << iota
TruncateOptionRestartIdentity
)
// TruncateMessage is a truncate message.
type TruncateMessage struct {
baseMessage
RelationNum uint32
Option uint8
RelationIDs []uint32
}
// Decode decodes to message from src.
func (m *TruncateMessage) Decode(src []byte) (err error) {
if len(src) < 9 {
return m.lengthError("TruncateMessage", 9, len(src))
}
var low, used int
m.RelationNum, used = m.decodeUint32(src)
low += used
m.Option = uint8(src[low])
low++
m.RelationIDs = make([]uint32, m.RelationNum)
for i := 0; i < int(m.RelationNum); i++ {
m.RelationIDs[i], used = m.decodeUint32(src[low:])
low += used
}
m.msgType = MessageTypeTruncate
return nil
}
// Parse parse a logical replicaton message.
func Parse(data []byte) (m Message, err error) {
var decoder MessageDecoder
msgType := MessageType(data[0])
switch msgType {
case MessageTypeBegin:
decoder = new(BeginMessage)
case MessageTypeCommit:
decoder = new(CommitMessage)
case MessageTypeOrigin:
decoder = new(OriginMessage)
case MessageTypeRelation:
decoder = new(RelationMessage)
case MessageTypeType:
decoder = new(TypeMessage)
case MessageTypeInsert:
decoder = new(InsertMessage)
case MessageTypeUpdate:
decoder = new(UpdateMessage)
case MessageTypeDelete:
decoder = new(DeleteMessage)
case MessageTypeTruncate:
decoder = new(TruncateMessage)
}
if decoder != nil {
if err = decoder.Decode(data[1:]); err != nil {
return nil, err
}
}
return decoder.(Message), nil
}