-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwal2mongo.c
972 lines (850 loc) · 25.8 KB
/
wal2mongo.c
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
/*-------------------------------------------------------------------------
*
* wal2mongo.c
* logical decoding output plugin for MongoDB
*
* Copyright (c) 2019-2020, Highgo Global Development Center
*
* IDENTIFICATION
* when build under PostgreSQL source code tree,
* contrib/wal2mongo/wal2mongo.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "catalog/pg_type.h"
#include "replication/logical.h"
#include "replication/origin.h"
#include "commands/dbcommands.h"
#include "utils/builtins.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/rel.h"
#include "utils/guc.h"
#include "common/jsonapi.h"
#include "utils/datetime.h"
#include "utils/json.h"
#include "miscadmin.h"
PG_MODULE_MAGIC;
/* These must be available to pg_dlsym() */
extern void _PG_init(void);
extern void _PG_output_plugin_init(OutputPluginCallbacks *cb);
typedef struct
{
bool insert;
bool update;
bool delete;
bool truncate;
} Wal2MongoAction;
typedef struct
{
MemoryContext context;
bool skip_empty_xacts;
bool xact_wrote_changes;
bool only_local;
bool use_transaction;
bool include_cluster_name;
bool regress;
Wal2MongoAction actions;
} Wal2MongoData;
static void pg_w2m_decode_startup(LogicalDecodingContext *ctx,
OutputPluginOptions *opt,
bool is_init);
static void pg_w2m_decode_shutdown(LogicalDecodingContext *ctx);
static void pg_w2m_decode_begin_txn(LogicalDecodingContext *ctx,
ReorderBufferTXN *txn);
static void pg_w2m_decode_begin(LogicalDecodingContext *ctx,
Wal2MongoData *data,
ReorderBufferTXN *txn);
static void pg_w2m_decode_commit_txn(LogicalDecodingContext *ctx,
ReorderBufferTXN *txn, XLogRecPtr commit_lsn);
static void pg_w2m_decode_change(LogicalDecodingContext *ctx,
ReorderBufferTXN *txn, Relation rel,
ReorderBufferChange *change);
static void pg_w2m_decode_truncate(LogicalDecodingContext *ctx,
ReorderBufferTXN *txn,
int nrelations, Relation relations[],
ReorderBufferChange *change);
static bool pg_w2m_decode_filter(LogicalDecodingContext *ctx,
RepOriginId origin_id);
static void pg_w2m_decode_message(LogicalDecodingContext *ctx,
ReorderBufferTXN *txn, XLogRecPtr message_lsn,
bool transactional, const char *prefix,
Size sz, const char *message);
static bool split_string_to_list(char *rawstring, char separator, List **sl);
/* Will be called immediately after loaded */
void
_PG_init(void)
{
}
/* Initialize callback functions */
void
_PG_output_plugin_init(OutputPluginCallbacks *cb)
{
AssertVariableIsOfType(&_PG_output_plugin_init, LogicalOutputPluginInit);
cb->startup_cb = pg_w2m_decode_startup;
cb->begin_cb = pg_w2m_decode_begin_txn;
cb->change_cb = pg_w2m_decode_change;
cb->truncate_cb = pg_w2m_decode_truncate;
cb->commit_cb = pg_w2m_decode_commit_txn;
cb->filter_by_origin_cb = pg_w2m_decode_filter;
cb->shutdown_cb = pg_w2m_decode_shutdown;
cb->message_cb = pg_w2m_decode_message;
}
/* Initialize this plugin's resources */
static void
pg_w2m_decode_startup(LogicalDecodingContext *ctx, OutputPluginOptions *opt,
bool is_init)
{
ListCell *option;
Wal2MongoData *data;
data = palloc0(sizeof(Wal2MongoData));
data->context = AllocSetContextCreate(ctx->context,
"wal2mongo context",
ALLOCSET_DEFAULT_SIZES);
data->skip_empty_xacts = false;
data->only_local = false;
data->use_transaction = false;
data->include_cluster_name = true;
data->regress = false;
data->actions.delete = true;
data->actions.insert = true;
data->actions.update = true;
data->actions.truncate = true;
ctx->output_plugin_private = data;
opt->output_type = OUTPUT_PLUGIN_TEXTUAL_OUTPUT;
opt->receive_rewrites = false;
foreach(option, ctx->output_plugin_options)
{
DefElem *elem = lfirst(option);
Assert(elem->arg == NULL || IsA(elem->arg, String));
if (strcmp(elem->defname, "skip_empty_xacts") == 0)
{
/* if option value is NULL then assume that value is false */
if (elem->arg == NULL)
data->skip_empty_xacts = false;
else if (!parse_bool(strVal(elem->arg), &data->skip_empty_xacts))
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("could not parse value \"%s\" for parameter \"%s\"",
strVal(elem->arg), elem->defname)));
}
else if (strcmp(elem->defname, "only_local") == 0)
{
/* if option value is NULL then assume that value is false */
if (elem->arg == NULL)
data->only_local = false;
else if (!parse_bool(strVal(elem->arg), &data->only_local))
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("could not parse value \"%s\" for parameter \"%s\"",
strVal(elem->arg), elem->defname)));
}
else if (strcmp(elem->defname, "use_transaction") == 0)
{
/* if option value is NULL then assume that value is false */
if (elem->arg == NULL)
data->use_transaction = false;
else if (!parse_bool(strVal(elem->arg), &data->use_transaction))
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("could not parse value \"%s\" for parameter \"%s\"",
strVal(elem->arg), elem->defname)));
}
else if (strcmp(elem->defname, "force_binary") == 0)
{
bool force_binary;
if (elem->arg == NULL)
continue;
else if (!parse_bool(strVal(elem->arg), &force_binary))
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("could not parse value \"%s\" for parameter \"%s\"",
strVal(elem->arg), elem->defname)));
if (force_binary)
opt->output_type = OUTPUT_PLUGIN_BINARY_OUTPUT;
}
else if (strcmp(elem->defname, "include_cluster_name") == 0)
{
/* if option value is NULL then assume that value is false */
if (elem->arg == NULL)
data->include_cluster_name = false;
else if (!parse_bool(strVal(elem->arg), &data->include_cluster_name))
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("could not parse value \"%s\" for parameter \"%s\"",
strVal(elem->arg), elem->defname)));
}
else if (strcmp(elem->defname, "regress") == 0)
{
/* if option value is NULL then assume that value is false */
if (elem->arg == NULL)
data->regress = false;
else if (!parse_bool(strVal(elem->arg), &data->regress))
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("could not parse value \"%s\" for parameter \"%s\"",
strVal(elem->arg), elem->defname)));
}
else if (strcmp(elem->defname, "actions") == 0)
{
char *rawstr;
if (elem->arg == NULL)
{
elog(DEBUG1, "actions argument is null");
/* argument null means default; nothing to do here */
}
else
{
List *selected_actions = NIL;
ListCell *lc;
rawstr = pstrdup(strVal(elem->arg));
if (!split_string_to_list(rawstr, ',', &selected_actions))
{
pfree(rawstr);
ereport(ERROR,
(errcode(ERRCODE_INVALID_NAME),
errmsg("could not parse value \"%s\" for parameter \"%s\"",
strVal(elem->arg), elem->defname)));
}
data->actions.insert = false;
data->actions.update = false;
data->actions.delete = false;
data->actions.truncate = false;
foreach(lc, selected_actions)
{
char *p = lfirst(lc);
if (strcmp(p, "insert") == 0)
data->actions.insert = true;
else if (strcmp(p, "update") == 0)
data->actions.update = true;
else if (strcmp(p, "delete") == 0)
data->actions.delete = true;
else if (strcmp(p, "truncate") == 0)
data->actions.truncate = true;
else
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("could not parse value \"%s\" for parameter \"%s\"",
p, elem->defname)));
}
pfree(rawstr);
list_free_deep(selected_actions);
}
}
else
{
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("option \"%s\" = \"%s\" is unknown",
elem->defname,
elem->arg ? strVal(elem->arg) : "(null)")));
}
}
}
/* Cleanup this plugin's resources */
static void
pg_w2m_decode_shutdown(LogicalDecodingContext *ctx)
{
Wal2MongoData *data = ctx->output_plugin_private;
/* cleanup our own resources via memory context reset */
MemoryContextDelete(data->context);
}
/* BEGIN callback */
static void
pg_w2m_decode_begin_txn(LogicalDecodingContext *ctx, ReorderBufferTXN *txn)
{
Wal2MongoData *data = ctx->output_plugin_private;
data->xact_wrote_changes = false;
if (data->skip_empty_xacts)
return;
pg_w2m_decode_begin(ctx, data, txn);
}
static void pg_w2m_decode_begin(LogicalDecodingContext *ctx,
Wal2MongoData *data,
ReorderBufferTXN *txn)
{
/* Skip this callback if transaction mode is not enabled */
if(!data->use_transaction)
return;
/* first write the session variable for Mongo */
OutputPluginPrepareWrite(ctx, false);
appendStringInfo(ctx->out, "session%u%s = db.getMongo().startSession();",
data->regress == true? 0 : txn->xid, ctx->slot->data.name.data);
OutputPluginWrite(ctx, false);
/* then write transaction start */
OutputPluginPrepareWrite(ctx, true);
appendStringInfo(ctx->out, "session%u%s.startTransaction();",
data->regress == true? 0 : txn->xid, ctx->slot->data.name.data);
OutputPluginWrite(ctx, true);
}
/* COMMIT callback */
static void
pg_w2m_decode_commit_txn(LogicalDecodingContext *ctx, ReorderBufferTXN *txn,
XLogRecPtr commit_lsn)
{
Wal2MongoData *data = ctx->output_plugin_private;
/* Skip this callback if it is an empty transaction */
if (data->skip_empty_xacts && !data->xact_wrote_changes)
return;
/* Skip this callback if transaction mode is not enabled */
if(!data->use_transaction)
return;
/* first write the commit transaction cmd */
OutputPluginPrepareWrite(ctx, false);
appendStringInfo(ctx->out, "session%u%s.commitTransaction();",
data->regress == true? 0 : txn->xid, ctx->slot->data.name.data);
OutputPluginWrite(ctx, false);
/* then write session termination */
OutputPluginPrepareWrite(ctx, true);
appendStringInfo(ctx->out, "session%u%s.endSession();",
data->regress == true? 0 : txn->xid, ctx->slot->data.name.data);
OutputPluginWrite(ctx, true);
}
/* Generic message callback */
static bool
pg_w2m_decode_filter(LogicalDecodingContext *ctx,
RepOriginId origin_id)
{
Wal2MongoData *data = ctx->output_plugin_private;
if (data->only_local && origin_id != InvalidRepOriginId)
return true;
return false;
}
/* Postgres data types to MongoDB data types conversion
* if input data has already been quoted, then use false to skip quotation
* if input data hasn't been quoted yet, then use true to request a quotation
*/
static void
print_w2m_data_type(StringInfo s, char *outputstr, const char *type, bool quotation)
{
const char *valptr;
for (valptr = outputstr; *valptr; valptr++)
{
char ch = *valptr;
if(ch == '{')
{
appendStringInfo(s, "[%s(", type);
if (quotation)
appendStringInfo(s, "\"");
}
else if(ch == ',')
{
if (quotation)
appendStringInfo(s, "\"");
appendStringInfo(s, "),%s(", type);
if (quotation)
appendStringInfo(s, "\"");
}
else if(ch == '}')
{
if (quotation)
appendStringInfo(s, "\"");
appendStringInfo(s, ")]");
}
else
appendStringInfoChar(s, ch);
}
}
/* PG to MG data conversion */
static void
print_w2m_literal(StringInfo s, Oid typid, char *outputstr)
{
const char *valptr;
switch (typid)
{
case INT2OID:
case INT4OID:
appendStringInfo(s, " NumberInt(\"%s\")", outputstr);
break;
case FLOAT4OID:
appendStringInfoString(s, outputstr);
break;
case INT8OID:
case OIDOID:
appendStringInfo(s, " NumberLong(\"%s\")", outputstr);
break;
case FLOAT8OID:
case NUMERICOID:
appendStringInfo(s, " NumberDecimal(\"%s\")", outputstr);
break;
case BITOID:
case VARBITOID:
appendStringInfo(s, "B'%s'", outputstr);
break;
case BOOLOID:
if (strcmp(outputstr, "t") == 0)
appendStringInfoString(s, "true");
else
appendStringInfoString(s, "false");
break;
case TIMESTAMPTZOID:
appendStringInfo(s, " ISODate(\"%s\")", outputstr);
break;
case UUIDOID:
appendStringInfo(s, " UUID(\"%s\")", outputstr);
break;
case BYTEAOID:
appendStringInfo(s, " HexData(0, \"");
for (valptr = outputstr+2; *valptr; valptr++)
{
char ch = *valptr;
appendStringInfoChar(s, ch);
}
appendStringInfo(s, "\")");
break;
/* Array data type */
case BOOLARRAYOID:
for (valptr = outputstr; *valptr; valptr++)
{
char ch = *valptr;
if(ch == '{')
appendStringInfoChar(s, '[');
else if(ch == ',')
appendStringInfoChar(s, ',');
else if(ch == '}')
appendStringInfoChar(s, ']');
else
{
if (ch == 't')
appendStringInfoString(s, "true");
else
appendStringInfoString(s, "false");
}
}
break;
case INT2ARRAYOID:
case INT4ARRAYOID:
print_w2m_data_type(s, outputstr, "NumberInt", false);
break;
case FLOAT4ARRAYOID:
for (valptr = outputstr; *valptr; valptr++)
{
char ch = *valptr;
if(ch == '{')
appendStringInfoChar(s, '[');
else if(ch == ',')
appendStringInfoChar(s, ',');
else if(ch == '}')
appendStringInfoChar(s, ']');
else
{
if (SQL_STR_DOUBLE(ch, false))
appendStringInfoChar(s, ch);
appendStringInfoChar(s, ch);
}
}
break;
case INT8ARRAYOID:
print_w2m_data_type(s, outputstr, "NumberLong", false);
break;
case TIMESTAMPTZARRAYOID:
print_w2m_data_type(s, outputstr, "ISODate", false);
break;
case FLOAT8ARRAYOID:
case NUMERICARRAYOID:
print_w2m_data_type(s, outputstr, "NumberDecimal", true);
break;
case UUIDARRAYOID:
print_w2m_data_type(s, outputstr, "UUID", true);
break;
case CHARARRAYOID:
case NAMEARRAYOID:
case TEXTARRAYOID:
case BPCHARARRAYOID:
case VARCHARARRAYOID:
for (valptr = outputstr; *valptr; valptr++)
{
char ch = *valptr;
if(ch == '{')
if(*(valptr+1) == '{' || *(valptr+1) == '"')
appendStringInfoChar(s, '[');
else
appendStringInfo(s, "[\"");
else if(ch == ',')
if(*(valptr+1) == '{' || *(valptr+1) == '"')
appendStringInfoChar(s, ',');
else
appendStringInfo(s, "\",\"");
else if(ch == '}')
if(*(valptr-1) != '}' && *(valptr-1) != '"')
appendStringInfo(s, "\"]");
else
appendStringInfoChar(s, ']');
else
{
if (SQL_STR_DOUBLE(ch, false))
appendStringInfoChar(s, ch);
appendStringInfoChar(s, ch);
}
}
break;
/* Array data type */
case JSONOID:
case JSONBOID:
appendStringInfo(s, "%s", outputstr);
break;
case JSONPATHOID:
appendStringInfoChar(s, '\"');
for (valptr = outputstr; *valptr; valptr++)
{
char ch = *valptr;
if(ch != '"')
appendStringInfoChar(s, ch);
}
appendStringInfoChar(s, '\"');
break;
case JSONARRAYOID:
case JSONBARRAYOID:
/* For JSON arrays, we need to strip first and last curly brackets and
* replace them with square brackets in order to be accepted by Mongodb
*/
outputstr = outputstr + 1;
outputstr[strlen(outputstr) - 1] = '\0';
appendStringInfoChar(s, '[');
for (valptr = outputstr; *valptr; valptr++)
{
char ch = *valptr;
if(ch == '\\' && (valptr+1) != NULL && *(valptr+1) == '"' )
{
/* replace all \" with " */
appendStringInfoChar(s, '"');
}
else if(ch == '"')
{
/* ignore all the double quote without backslash escape */
}
else
{
appendStringInfoChar(s, ch);
}
}
appendStringInfoChar(s, ']');
break;
case XMLOID:
appendStringInfoChar(s, '\"');
for (valptr = outputstr; *valptr; valptr++)
{
char ch = *valptr;
if (ch == '\n')
continue;
if ((ch == '"') && (*(valptr+1) != '\0'))
appendStringInfoChar(s, '\\');
if (SQL_STR_DOUBLE(ch, false))
appendStringInfoChar(s, ch);
appendStringInfoChar(s, ch);
}
appendStringInfoChar(s, '\"');
break;
default:
appendStringInfoChar(s, '\"');
for (valptr = outputstr; *valptr; valptr++)
{
char ch = *valptr;
if (SQL_STR_DOUBLE(ch, false))
appendStringInfoChar(s, ch);
appendStringInfoChar(s, ch);
}
appendStringInfoChar(s, '\"');
break;
}
}
/* print the tuple 'tuple' into the StringInfo s */
static void
tuple_to_stringinfo(StringInfo s, TupleDesc tupdesc, HeapTuple tuple, bool skip_nulls,
Bitmapset * pkAttrs)
{
int natt;
appendStringInfoString(s, " \{ ");
/* print all columns individually */
for (natt = 0; natt < tupdesc->natts; natt++)
{
Form_pg_attribute attr; /* the attribute itself */
Oid typid; /* type of current attribute */
Oid typoutput; /* output function */
bool typisvarlena;
Datum origval; /* possibly toasted Datum */
bool isnull; /* column is null? */
attr = TupleDescAttr(tupdesc, natt);
/*
* don't print dropped columns, we can't be sure everything is
* available for them
*/
if (attr->attisdropped)
continue;
/*
* Don't print system columns, oid will already have been printed if
* present.
*/
if (attr->attnum < 0)
continue;
typid = attr->atttypid;
/*
* if pkAttrs is valid and not empty. Check if the current attribute is
* a member of the pkAttrs. If not a member, continue to next attribute.
*/
if(pkAttrs && !bms_is_empty(pkAttrs) &&
!bms_is_member(natt + 1 - FirstLowInvalidHeapAttributeNumber,
pkAttrs))
continue;
/* get Datum from tuple */
origval = heap_getattr(tuple, natt + 1, tupdesc, &isnull);
if (isnull && skip_nulls)
continue;
/* print attribute name */
if ( natt != 0 )
appendStringInfoString(s, ", ");
appendStringInfoString(s, quote_identifier(NameStr(attr->attname)));
/* print separator */
appendStringInfoChar(s, ':');
/* query output function */
getTypeOutputInfo(typid,
&typoutput, &typisvarlena);
/* print data */
if (isnull)
appendStringInfoString(s, "null");
else if (typisvarlena && VARATT_IS_EXTERNAL_ONDISK(origval))
appendStringInfoString(s, "unchanged-toast-datum");
else if (!typisvarlena)
{
if (typid == TIMESTAMPTZOID || typid == TIMESTAMPTZARRAYOID)
{
char buf[MAXDATELEN + 1];
JsonEncodeDateTime(buf, origval, TIMESTAMPTZOID, NULL);
print_w2m_literal(s, typid, buf);
}
else
print_w2m_literal(s, typid,
OidOutputFunctionCall(typoutput, origval));
}
else
{
Datum val; /* definitely detoasted Datum */
char *result;
char *rp;
val = PointerGetDatum(PG_DETOAST_DATUM(origval));
if (typid == BYTEAOID )
{
/* Print hex format */
rp = result = palloc(VARSIZE_ANY_EXHDR(val) * 2 + 2 + 1);
*rp++ = '\\';
*rp++ = 'x';
rp += hex_encode(VARDATA_ANY(val), VARSIZE_ANY_EXHDR(val), rp);
*rp = '\0';
print_w2m_literal(s, typid, result);
}
else
print_w2m_literal(s, typid, OidOutputFunctionCall(typoutput, val));
}
}
appendStringInfoString(s, " }");
}
/*
* callback for individual changed tuples
*/
static void
pg_w2m_decode_change(LogicalDecodingContext *ctx, ReorderBufferTXN *txn,
Relation relation, ReorderBufferChange *change)
{
Wal2MongoData *data;
Form_pg_class class_form;
TupleDesc tupdesc;
MemoryContext old;
Bitmapset *pkAttrs;
data = ctx->output_plugin_private;
/* output BEGIN if we haven't yet */
if (data->skip_empty_xacts && !data->xact_wrote_changes)
{
pg_w2m_decode_begin(ctx, data, txn);
}
data->xact_wrote_changes = true;
class_form = RelationGetForm(relation);
tupdesc = RelationGetDescr(relation);
/* Avoid leaking memory by using and resetting our own context */
old = MemoryContextSwitchTo(data->context);
/* write the db switch command */
OutputPluginPrepareWrite(ctx, false);
/* Here we are concatenating ClusterName, DatabaseName, and SlotName to form
* a unified database name in MongoDB's perspective, so Mongo knows the changes
* are streamed from which cluster, which database and via which slot
*
* TODO: we will introduce more configurable options to fine-tune this output style
* behaviors.
*/
if(data->include_cluster_name)
{
char *cluster_name = GetConfigOptionByName("cluster_name", NULL, true);
appendStringInfo(ctx->out, "use %s_%s_%s;",
data->regress == true ? "mycluster" : (cluster_name[0] == '\0' ? "mycluster" : cluster_name),
data->regress == true ? "mydb" : get_database_name(MyDatabaseId),
ctx->slot->data.name.data[0] == '\0' ? "myslot" :
ctx->slot->data.name.data);
}
else
{
appendStringInfo(ctx->out, "use %s_%s;",
data->regress == true ? "mydb" : get_database_name(MyDatabaseId),
ctx->slot->data.name.data[0] == '\0' ? "myslot" :
ctx->slot->data.name.data);
}
OutputPluginWrite(ctx, false);
OutputPluginPrepareWrite(ctx, true);
appendStringInfoString(ctx->out,
quote_qualified_identifier("db", class_form->relrewrite ?
get_rel_name(class_form->relrewrite) :
NameStr(class_form->relname)));
switch (change->action)
{
case REORDER_BUFFER_CHANGE_INSERT:
appendStringInfoString(ctx->out, ".insertOne(");
if (change->data.tp.newtuple == NULL)
appendStringInfoString(ctx->out, " (no-tuple-data)");
else
tuple_to_stringinfo(ctx->out, tupdesc,
&change->data.tp.newtuple->tuple,
true, NULL);
appendStringInfoString(ctx->out, " );");
break;
case REORDER_BUFFER_CHANGE_UPDATE:
appendStringInfoString(ctx->out, ".updateOne(");
if (change->data.tp.oldtuple != NULL)
{
/*
* the old tuple will contain the old value of primary key if it has been changed under DEFAULT replica identity
* the old tuple will contain all old values regardless if they have bee changed under FULL replica identity
* either way, find the primary key columns and print them only.
*/
pkAttrs = RelationGetIndexAttrBitmap(relation,
INDEX_ATTR_BITMAP_PRIMARY_KEY);
tuple_to_stringinfo(ctx->out, tupdesc,
&change->data.tp.oldtuple->tuple,
true, pkAttrs);
bms_free(pkAttrs);
}
else
{
/*
* the old tuple is NULL case. This means primary key has not been changed and the replica identity is not set to FULL.
* we need to figure out the primary key column from new tuple
*/
if (change->data.tp.newtuple != NULL)
{
pkAttrs = RelationGetIndexAttrBitmap(relation,
INDEX_ATTR_BITMAP_PRIMARY_KEY);
if (!pkAttrs)
{
/* old tuple is NULL and no primary key is present in newtuple: Write null */
appendStringInfoString(ctx->out, "{ selector: \"null\" }");
}
else
{
tuple_to_stringinfo(ctx->out, tupdesc,
&change->data.tp.newtuple->tuple,
true, pkAttrs);
bms_free(pkAttrs);
}
}
}
if (change->data.tp.newtuple != NULL)
{
appendStringInfoString(ctx->out, ", \{ $set: ");
tuple_to_stringinfo(ctx->out, tupdesc,
&change->data.tp.newtuple->tuple,
false, NULL);
appendStringInfoString(ctx->out, " }");
}
appendStringInfoString(ctx->out, " );");
break;
case REORDER_BUFFER_CHANGE_DELETE:
appendStringInfoString(ctx->out, ".deleteOne(");
/* if there was no PK, we only know that a delete happened */
if (change->data.tp.oldtuple == NULL)
appendStringInfoString(ctx->out, " (no-tuple-data)");
/* In DELETE, only the replica identity is present; display that */
else
{
/* For delete, we looked up the primary key attribute bitmap for use
* in the subsequent tuple_to_stringinfo() call so the output will only
* contain primary key columns in the oldtuple instead of all columns.
*/
pkAttrs = RelationGetIndexAttrBitmap(relation,
INDEX_ATTR_BITMAP_PRIMARY_KEY);
tuple_to_stringinfo(ctx->out, tupdesc,
&change->data.tp.oldtuple->tuple,
true, pkAttrs);
bms_free(pkAttrs);
}
appendStringInfoString(ctx->out, " );");
break;
default:
Assert(false);
}
MemoryContextSwitchTo(old);
MemoryContextReset(data->context);
OutputPluginWrite(ctx, true);
}
static void
pg_w2m_decode_truncate(LogicalDecodingContext *ctx, ReorderBufferTXN *txn,
int nrelations, Relation relations[], ReorderBufferChange *change)
{
/* TODO: to be supported in future version */
elog(DEBUG1, "TRUNCATE replication is not supported\n");
}
static void
pg_w2m_decode_message(LogicalDecodingContext *ctx,
ReorderBufferTXN *txn, XLogRecPtr lsn, bool transactional,
const char *prefix, Size sz, const char *message)
{
/* message decoding not supported */
elog(DEBUG1, "message decoding is not supported\n");
}
static bool
split_string_to_list(char *rawstring, char separator, List **sl)
{
char *nextp;
bool done = false;
nextp = rawstring;
while (isspace(*nextp))
nextp++; /* skip leading whitespace */
if (*nextp == '\0')
return true; /* allow empty string */
/* At the top of the loop, we are at start of a new identifier. */
do
{
char *curname;
char *endp;
char *pname;
curname = nextp;
while (*nextp && *nextp != separator && !isspace(*nextp))
{
if (*nextp == '\\')
nextp++; /* ignore next character because of escape */
nextp++;
}
endp = nextp;
if (curname == nextp)
return false; /* empty unquoted name not allowed */
while (isspace(*nextp))
nextp++; /* skip trailing whitespace */
if (*nextp == separator)
{
nextp++;
while (isspace(*nextp))
nextp++; /* skip leading whitespace for next */
/* we expect another name, so done remains false */
}
else if (*nextp == '\0')
done = true;
else
return false; /* invalid syntax */
/* Now safe to overwrite separator with a null */
*endp = '\0';
/*
* Finished isolating current name --- add it to list
*/
pname = pstrdup(curname);
*sl = lappend(*sl, pname);
/* Loop back if we didn't reach end of string */
} while (!done);
return true;
}