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
|
/*-------------------------------------------------------------------------
*
* pglogical_proto_native.c
* pglogical binary protocol functions
*
* Copyright (c) 2015, PostgreSQL Global Development Group
*
* IDENTIFICATION
* pglogical_proto_native.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "access/sysattr.h"
#if PG_VERSION_NUM >= 130000
#include "access/detoast.h"
#else
#include "access/tuptoaster.h"
#endif
#include "catalog/pg_type.h"
#include "libpq/pqformat.h"
#include "nodes/parsenodes.h"
#include "replication/reorderbuffer.h"
#include "utils/lsyscache.h"
#include "utils/rel.h"
#include "utils/syscache.h"
#include "pglogical_output_plugin.h"
#include "pglogical_output_proto.h"
#include "pglogical_proto_native.h"
#define IS_REPLICA_IDENTITY 1
static void pglogical_write_attrs(StringInfo out, Relation rel,
Bitmapset *att_list);
static void pglogical_write_tuple(StringInfo out, PGLogicalOutputData *data,
Relation rel, HeapTuple tuple,
Bitmapset *att_list);
static char decide_datum_transfer(Form_pg_attribute att,
Form_pg_type typclass,
bool allow_internal_basetypes,
bool allow_binary_basetypes);
static void pglogical_read_attrs(StringInfo in, char ***attrnames,
int *nattrnames);
static void pglogical_read_tuple(StringInfo in, PGLogicalRelation *rel,
PGLogicalTupleData *tuple);
/*
* Write functions
*/
/*
* Write relation description to the output stream.
*/
void
pglogical_write_rel(StringInfo out, PGLogicalOutputData *data, Relation rel,
Bitmapset *att_list)
{
char *nspname;
uint8 nspnamelen;
const char *relname;
uint8 relnamelen;
uint8 flags = 0;
pq_sendbyte(out, 'R'); /* sending RELATION */
/* send the flags field */
pq_sendbyte(out, flags);
/* use Oid as relation identifier */
pq_sendint(out, RelationGetRelid(rel), 4);
nspname = get_namespace_name(rel->rd_rel->relnamespace);
if (nspname == NULL)
elog(ERROR, "cache lookup failed for namespace %u",
rel->rd_rel->relnamespace);
nspnamelen = strlen(nspname) + 1;
relname = NameStr(rel->rd_rel->relname);
relnamelen = strlen(relname) + 1;
pq_sendbyte(out, nspnamelen); /* schema name length */
pq_sendbytes(out, nspname, nspnamelen);
pq_sendbyte(out, relnamelen); /* table name length */
pq_sendbytes(out, relname, relnamelen);
/* send the attribute info */
pglogical_write_attrs(out, rel, att_list);
pfree(nspname);
}
/*
* Write relation attributes to the outputstream.
*/
static void
pglogical_write_attrs(StringInfo out, Relation rel, Bitmapset *att_list)
{
TupleDesc desc;
int i;
uint16 nliveatts = 0;
Bitmapset *idattrs;
desc = RelationGetDescr(rel);
pq_sendbyte(out, 'A'); /* sending ATTRS */
/* send number of live attributes */
for (i = 0; i < desc->natts; i++)
{
Form_pg_attribute att = TupleDescAttr(desc,i);
if (att->attisdropped)
continue;
if (att_list &&
!bms_is_member(att->attnum - FirstLowInvalidHeapAttributeNumber,
att_list))
continue;
nliveatts++;
}
pq_sendint(out, nliveatts, 2);
/* fetch bitmap of REPLICATION IDENTITY attributes */
idattrs = RelationGetIndexAttrBitmap(rel, INDEX_ATTR_BITMAP_IDENTITY_KEY);
/* send the attributes */
for (i = 0; i < desc->natts; i++)
{
Form_pg_attribute att = TupleDescAttr(desc,i);
uint8 flags = 0;
uint16 len;
const char *attname;
if (att->attisdropped)
continue;
if (att_list &&
!bms_is_member(att->attnum - FirstLowInvalidHeapAttributeNumber,
att_list))
continue;
if (bms_is_member(att->attnum - FirstLowInvalidHeapAttributeNumber,
idattrs))
flags |= IS_REPLICA_IDENTITY;
pq_sendbyte(out, 'C'); /* column definition follows */
pq_sendbyte(out, flags);
pq_sendbyte(out, 'N'); /* column name block follows */
attname = NameStr(att->attname);
len = strlen(attname) + 1;
pq_sendint(out, len, 2);
pq_sendbytes(out, attname, len); /* data */
}
bms_free(idattrs);
}
/*
* Write BEGIN to the output stream.
*/
void
pglogical_write_begin(StringInfo out, PGLogicalOutputData *data,
ReorderBufferTXN *txn)
{
uint8 flags = 0;
pq_sendbyte(out, 'B'); /* BEGIN */
/* send the flags field its self */
pq_sendbyte(out, flags);
/* fixed fields */
pq_sendint64(out, txn->final_lsn);
#if PG_VERSION_NUM >= 150000
pq_sendint64(out, txn->xact_time.commit_time);
#else
pq_sendint64(out, txn->commit_time);
#endif
pq_sendint(out, txn->xid, 4);
}
/*
* Write COMMIT to the output stream.
*/
void
pglogical_write_commit(StringInfo out, PGLogicalOutputData *data,
ReorderBufferTXN *txn, XLogRecPtr commit_lsn)
{
uint8 flags = 0;
pq_sendbyte(out, 'C'); /* sending COMMIT */
/* send the flags field */
pq_sendbyte(out, flags);
/* send fixed fields */
pq_sendint64(out, commit_lsn);
pq_sendint64(out, txn->end_lsn);
#if PG_VERSION_NUM >= 150000
pq_sendint64(out, txn->xact_time.commit_time);
#else
pq_sendint64(out, txn->commit_time);
#endif
}
/*
* Write ORIGIN to the output stream.
*/
void
pglogical_write_origin(StringInfo out, const char *origin,
XLogRecPtr origin_lsn)
{
uint8 flags = 0;
uint8 len;
Assert(strlen(origin) < 255);
pq_sendbyte(out, 'O'); /* ORIGIN */
/* send the flags field its self */
pq_sendbyte(out, flags);
/* fixed fields */
pq_sendint64(out, origin_lsn);
/* origin */
len = strlen(origin) + 1;
pq_sendbyte(out, len);
pq_sendbytes(out, origin, len);
}
/*
* Write INSERT to the output stream.
*/
void
pglogical_write_insert(StringInfo out, PGLogicalOutputData *data,
Relation rel, HeapTuple newtuple,
Bitmapset *att_list)
{
uint8 flags = 0;
pq_sendbyte(out, 'I'); /* action INSERT */
/* send the flags field */
pq_sendbyte(out, flags);
/* use Oid as relation identifier */
pq_sendint(out, RelationGetRelid(rel), 4);
pq_sendbyte(out, 'N'); /* new tuple follows */
pglogical_write_tuple(out, data, rel, newtuple, att_list);
}
/*
* Write UPDATE to the output stream.
*/
void
pglogical_write_update(StringInfo out, PGLogicalOutputData *data,
Relation rel, HeapTuple oldtuple, HeapTuple newtuple,
Bitmapset *att_list)
{
uint8 flags = 0;
pq_sendbyte(out, 'U'); /* action UPDATE */
/* send the flags field */
pq_sendbyte(out, flags);
/* use Oid as relation identifier */
pq_sendint(out, RelationGetRelid(rel), 4);
/*
* TODO: support whole tuple (O tuple type)
*
* Right now we can only write the key-part since logical decoding
* doesn't know how to record the whole old tuple for us in WAL.
* We can't use REPLICA IDENTITY FULL for this, since that makes
* the key-part the whole tuple, causing issues with conflict
* resultion and index lookups. We need a separate decoding option
* to record whole tuples.
*/
if (oldtuple != NULL)
{
pq_sendbyte(out, 'K'); /* old key follows */
pglogical_write_tuple(out, data, rel, oldtuple, att_list);
}
pq_sendbyte(out, 'N'); /* new tuple follows */
pglogical_write_tuple(out, data, rel, newtuple, att_list);
}
/*
* Write DELETE to the output stream.
*/
void
pglogical_write_delete(StringInfo out, PGLogicalOutputData *data,
Relation rel, HeapTuple oldtuple,
Bitmapset *att_list)
{
uint8 flags = 0;
pq_sendbyte(out, 'D'); /* action DELETE */
/* send the flags field */
pq_sendbyte(out, flags);
/* use Oid as relation identifier */
pq_sendint(out, RelationGetRelid(rel), 4);
/*
* TODO support whole tuple ('O' tuple type)
*
* See notes on update for details
*/
pq_sendbyte(out, 'K'); /* old key follows */
pglogical_write_tuple(out, data, rel, oldtuple, att_list);
}
/*
* Most of the brains for startup message creation lives in
* pglogical_config.c, so this presently just sends the set of key/value pairs.
*/
void
write_startup_message(StringInfo out, List *msg)
{
ListCell *lc;
pq_sendbyte(out, 'S'); /* message type field */
pq_sendbyte(out, PGLOGICAL_STARTUP_MSG_FORMAT_FLAT); /* startup message version */
foreach (lc, msg)
{
DefElem *param = (DefElem*)lfirst(lc);
Assert(IsA(param->arg, String) && strVal(param->arg) != NULL);
/* null-terminated key and value pairs, in client_encoding */
pq_sendstring(out, param->defname);
pq_sendstring(out, strVal(param->arg));
}
}
/*
* Write a tuple to the outputstream, in the most efficient format possible.
*/
static void
pglogical_write_tuple(StringInfo out, PGLogicalOutputData *data,
Relation rel, HeapTuple tuple, Bitmapset *att_list)
{
TupleDesc desc;
Datum values[MaxTupleAttributeNumber];
bool isnull[MaxTupleAttributeNumber];
int i;
uint16 nliveatts = 0;
desc = RelationGetDescr(rel);
pq_sendbyte(out, 'T'); /* sending TUPLE */
for (i = 0; i < desc->natts; i++)
{
Form_pg_attribute att = TupleDescAttr(desc,i);
if (att->attisdropped)
continue;
if (att_list &&
!bms_is_member(att->attnum - FirstLowInvalidHeapAttributeNumber,
att_list))
continue;
nliveatts++;
}
pq_sendint(out, nliveatts, 2);
/* try to allocate enough memory from the get go */
enlargeStringInfo(out, tuple->t_len +
nliveatts * (1 + 4));
/*
* XXX: should this prove to be a relevant bottleneck, it might be
* interesting to inline heap_deform_tuple() here, we don't actually need
* the information in the form we get from it.
*/
heap_deform_tuple(tuple, desc, values, isnull);
for (i = 0; i < desc->natts; i++)
{
HeapTuple typtup;
Form_pg_type typclass;
Form_pg_attribute att = TupleDescAttr(desc,i);
char transfer_type;
/* skip dropped columns */
if (att->attisdropped)
continue;
if (att_list &&
!bms_is_member(att->attnum - FirstLowInvalidHeapAttributeNumber,
att_list))
continue;
if (isnull[i])
{
pq_sendbyte(out, 'n'); /* null column */
continue;
}
else if (att->attlen == -1 && VARATT_IS_EXTERNAL_ONDISK(values[i]))
{
pq_sendbyte(out, 'u'); /* unchanged toast column */
continue;
}
typtup = SearchSysCache1(TYPEOID, ObjectIdGetDatum(att->atttypid));
if (!HeapTupleIsValid(typtup))
elog(ERROR, "cache lookup failed for type %u", att->atttypid);
typclass = (Form_pg_type) GETSTRUCT(typtup);
transfer_type = decide_datum_transfer(att, typclass,
data->allow_internal_basetypes,
data->allow_binary_basetypes);
switch (transfer_type)
{
case 'i':
pq_sendbyte(out, 'i'); /* internal-format binary data follows */
/* pass by value */
if (att->attbyval)
{
pq_sendint(out, att->attlen, 4); /* length */
enlargeStringInfo(out, att->attlen);
store_att_byval(out->data + out->len, values[i],
att->attlen);
out->len += att->attlen;
out->data[out->len] = '\0';
}
/* fixed length non-varlena pass-by-reference type */
else if (att->attlen > 0)
{
pq_sendint(out, att->attlen, 4); /* length */
appendBinaryStringInfo(out, DatumGetPointer(values[i]),
att->attlen);
}
/* varlena type */
else if (att->attlen == -1)
{
char *data = DatumGetPointer(values[i]);
/* send indirect datums inline */
if (VARATT_IS_EXTERNAL_INDIRECT(values[i]))
{
struct varatt_indirect redirect;
VARATT_EXTERNAL_GET_POINTER(redirect, data);
data = (char *) redirect.pointer;
}
Assert(!VARATT_IS_EXTERNAL(data));
pq_sendint(out, VARSIZE_ANY(data), 4); /* length */
appendBinaryStringInfo(out, data, VARSIZE_ANY(data));
}
else
elog(ERROR, "unsupported tuple type");
break;
case 'b':
{
bytea *outputbytes;
int len;
pq_sendbyte(out, 'b'); /* binary send/recv data follows */
outputbytes = OidSendFunctionCall(typclass->typsend,
values[i]);
len = VARSIZE(outputbytes) - VARHDRSZ;
pq_sendint(out, len, 4); /* length */
pq_sendbytes(out, VARDATA(outputbytes), len); /* data */
pfree(outputbytes);
}
break;
default:
{
char *outputstr;
int len;
pq_sendbyte(out, 't'); /* 'text' data follows */
outputstr = OidOutputFunctionCall(typclass->typoutput,
values[i]);
len = strlen(outputstr) + 1;
pq_sendint(out, len, 4); /* length */
appendBinaryStringInfo(out, outputstr, len); /* data */
pfree(outputstr);
}
}
ReleaseSysCache(typtup);
}
}
/*
* Make the executive decision about which protocol to use.
*/
static char
decide_datum_transfer(Form_pg_attribute att, Form_pg_type typclass,
bool allow_internal_basetypes,
bool allow_binary_basetypes)
{
/*
* Use the binary protocol, if allowed, for builtin & plain datatypes.
*/
if (allow_internal_basetypes &&
typclass->typtype == 'b' &&
att->atttypid < FirstNormalObjectId &&
typclass->typelem == InvalidOid)
{
return 'i';
}
/*
* Use send/recv, if allowed, if the type is plain or builtin.
*
* XXX: we can't use send/recv for array or composite types for now due to
* the embedded oids.
*/
else if (allow_binary_basetypes &&
OidIsValid(typclass->typreceive) &&
(att->atttypid < FirstNormalObjectId || typclass->typtype != 'c') &&
(att->atttypid < FirstNormalObjectId || typclass->typelem == InvalidOid))
{
return 'b';
}
return 't';
}
/*
* Read functions.
*/
/*
* Read transaction BEGIN from the stream.
*/
void
pglogical_read_begin(StringInfo in, XLogRecPtr *remote_lsn,
TimestampTz *committime, TransactionId *remote_xid)
{
/* read flags */
uint8 flags = pq_getmsgbyte(in);
Assert(flags == 0);
(void) flags; /* unused */
/* read fields */
*remote_lsn = pq_getmsgint64(in);
Assert(*remote_lsn != InvalidXLogRecPtr);
*committime = pq_getmsgint64(in);
*remote_xid = pq_getmsgint(in, 4);
}
/*
* Read transaction COMMIT from the stream.
*/
void
pglogical_read_commit(StringInfo in, XLogRecPtr *commit_lsn,
XLogRecPtr *end_lsn, TimestampTz *committime)
{
/* read flags */
uint8 flags = pq_getmsgbyte(in);
Assert(flags == 0);
(void) flags; /* unused */
/* read fields */
*commit_lsn = pq_getmsgint64(in);
*end_lsn = pq_getmsgint64(in);
*committime = pq_getmsgint64(in);
}
/*
* Read ORIGIN from the output stream.
*/
char *
pglogical_read_origin(StringInfo in, XLogRecPtr *origin_lsn)
{
uint8 flags;
uint8 len;
/* read the flags */
flags = pq_getmsgbyte(in);
Assert(flags == 0);
(void) flags; /* unused */
/* fixed fields */
*origin_lsn = pq_getmsgint64(in);
/* origin */
len = pq_getmsgbyte(in);
return pnstrdup(pq_getmsgbytes(in, len), len);
}
/*
* Read INSERT from stream.
*
* Fills the new tuple.
*/
PGLogicalRelation *
pglogical_read_insert(StringInfo in, LOCKMODE lockmode,
PGLogicalTupleData *newtup)
{
char action;
uint32 relid;
uint8 flags;
PGLogicalRelation *rel;
/* read the flags */
flags = pq_getmsgbyte(in);
Assert(flags == 0);
(void) flags; /* unused */
/* read the relation id */
relid = pq_getmsgint(in, 4);
action = pq_getmsgbyte(in);
if (action != 'N')
elog(ERROR, "expected new tuple but got %d",
action);
rel = pglogical_relation_open(relid, lockmode);
pglogical_read_tuple(in, rel, newtup);
return rel;
}
/*
* Read UPDATE from stream.
*/
PGLogicalRelation *
pglogical_read_update(StringInfo in, LOCKMODE lockmode, bool *hasoldtup,
PGLogicalTupleData *oldtup, PGLogicalTupleData *newtup)
{
char action;
Oid relid;
uint8 flags;
PGLogicalRelation *rel;
/* read the flags */
flags = pq_getmsgbyte(in);
Assert(flags == 0);
(void) flags; /* unused */
/* read the relation id */
relid = pq_getmsgint(in, 4);
/* read and verify action */
action = pq_getmsgbyte(in);
if (action != 'K' && action != 'O' && action != 'N')
elog(ERROR, "expected action 'N', 'O' or 'K', got %c",
action);
rel = pglogical_relation_open(relid, lockmode);
/* check for old tuple */
if (action == 'K' || action == 'O')
{
pglogical_read_tuple(in, rel, oldtup);
*hasoldtup = true;
action = pq_getmsgbyte(in);
}
else
*hasoldtup = false;
/* check for new tuple */
if (action != 'N')
elog(ERROR, "expected action 'N', got %c",
action);
pglogical_read_tuple(in, rel, newtup);
return rel;
}
/*
* Read DELETE from stream.
*
* Fills the old tuple.
*/
PGLogicalRelation *
pglogical_read_delete(StringInfo in, LOCKMODE lockmode,
PGLogicalTupleData *oldtup)
{
char action;
Oid relid;
uint8 flags;
PGLogicalRelation *rel;
/* read the flags */
flags = pq_getmsgbyte(in);
Assert(flags == 0);
(void) flags; /* unused */
/* read the relation id */
relid = pq_getmsgint(in, 4);
/* read and verify action */
action = pq_getmsgbyte(in);
if (action != 'K' && action != 'O')
elog(ERROR, "expected action 'O' or 'K' %c", action);
rel = pglogical_relation_open(relid, lockmode);
pglogical_read_tuple(in, rel, oldtup);
return rel;
}
/*
* Read tuple in remote format from stream.
*
* The returned tuple is converted to the local relation tuple format.
*/
static void
pglogical_read_tuple(StringInfo in, PGLogicalRelation *rel,
PGLogicalTupleData *tuple)
{
int i;
int natts;
char action;
TupleDesc desc;
action = pq_getmsgbyte(in);
if (action != 'T')
elog(ERROR, "expected TUPLE, got %c", action);
memset(tuple->nulls, 1, sizeof(tuple->nulls));
memset(tuple->changed, 0, sizeof(tuple->changed));
natts = pq_getmsgint(in, 2);
if (rel->natts != natts)
elog(ERROR, "tuple natts mismatch between remote relation metadata cache (natts=%u) and remote tuple data (natts=%u)", rel->natts, natts);
desc = RelationGetDescr(rel->rel);
/* Read the data */
for (i = 0; i < natts; i++)
{
int attid = rel->attmap[i];
Form_pg_attribute att = TupleDescAttr(desc,attid);
char kind = pq_getmsgbyte(in);
const char *data;
int len;
switch (kind)
{
case 'n': /* null */
/* already marked as null */
tuple->values[attid] = 0xdeadbeef;
tuple->changed[attid] = true;
break;
case 'u': /* unchanged column */
tuple->values[attid] = 0xfbadbeef; /* make bad usage more obvious */
break;
case 'i': /* internal binary format */
tuple->nulls[attid] = false;
tuple->changed[attid] = true;
len = pq_getmsgint(in, 4); /* read length */
data = pq_getmsgbytes(in, len);
/* and data */
if (att->attbyval)
tuple->values[attid] = fetch_att(data, true, len);
else
tuple->values[attid] = PointerGetDatum(data);
break;
case 'b': /* binary send/recv format */
{
Oid typreceive;
Oid typioparam;
StringInfoData buf;
tuple->nulls[attid] = false;
tuple->changed[attid] = true;
len = pq_getmsgint(in, 4); /* read length */
getTypeBinaryInputInfo(att->atttypid,
&typreceive, &typioparam);
/* create StringInfo pointing into the bigger buffer */
initStringInfo(&buf);
/* and data */
buf.data = (char *) pq_getmsgbytes(in, len);
buf.len = len;
tuple->values[attid] = OidReceiveFunctionCall(
typreceive, &buf, typioparam, att->atttypmod);
if (buf.len != buf.cursor)
ereport(ERROR,
(errcode(ERRCODE_INVALID_BINARY_REPRESENTATION),
errmsg("incorrect binary data format")));
break;
}
case 't': /* text format */
{
Oid typinput;
Oid typioparam;
tuple->nulls[attid] = false;
tuple->changed[attid] = true;
len = pq_getmsgint(in, 4); /* read length */
getTypeInputInfo(att->atttypid, &typinput, &typioparam);
/* and data */
data = (char *) pq_getmsgbytes(in, len);
tuple->values[attid] = OidInputFunctionCall(
typinput, (char *) data, typioparam, att->atttypmod);
}
break;
default:
elog(ERROR, "unknown data representation type '%c'", kind);
}
}
}
/*
* Read schema.relation from stream and return as PGLogicalRelation opened in
* lockmode.
*/
uint32
pglogical_read_rel(StringInfo in)
{
uint8 flags;
uint32 relid;
int len;
char *schemaname;
char *relname;
int natts;
char **attrnames;
/* read the flags */
flags = pq_getmsgbyte(in);
Assert(flags == 0);
(void) flags; /* unused */
relid = pq_getmsgint(in, 4);
/* Read relation from stream */
len = pq_getmsgbyte(in);
schemaname = (char *) pq_getmsgbytes(in, len);
len = pq_getmsgbyte(in);
relname = (char *) pq_getmsgbytes(in, len);
/* Get attribute description */
pglogical_read_attrs(in, &attrnames, &natts);
pglogical_relation_cache_update(relid, schemaname, relname, natts, attrnames);
return relid;
}
/*
* Read relation attributes from the outputstream.
*
* TODO handle flags.
*/
static void
pglogical_read_attrs(StringInfo in, char ***attrnames, int *nattrnames)
{
int i;
uint16 nattrs;
char **attrs;
char blocktype;
blocktype = pq_getmsgbyte(in);
if (blocktype != 'A')
elog(ERROR, "expected ATTRS, got %c", blocktype);
nattrs = pq_getmsgint(in, 2);
attrs = palloc(nattrs * sizeof(char *));
/* read the attributes */
for (i = 0; i < nattrs; i++)
{
uint16 len;
blocktype = pq_getmsgbyte(in); /* column definition follows */
if (blocktype != 'C')
elog(ERROR, "expected COLUMN, got %c", blocktype);
/* read flags (we ignore them so far) */
(void) pq_getmsgbyte(in);
blocktype = pq_getmsgbyte(in); /* column name block follows */
if (blocktype != 'N')
elog(ERROR, "expected NAME, got %c", blocktype);
/* attribute name */
len = pq_getmsgint(in, 2);
/* the string is NULL terminated */
attrs[i] = (char *) pq_getmsgbytes(in, len);
}
*attrnames = attrs;
*nattrnames = nattrs;
}
|