/*------------------------------------------------------------------------- * * printtup.c-- * Routines to print out tuples to the destination (binary or non-binary * portals, frontend/interactive backend, etc.). * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION * $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.38 1999/01/24 05:40:47 tgl Exp $ * *------------------------------------------------------------------------- */ #include #include #include #include #include #include #include #include #ifdef MULTIBYTE #include #endif /* ---------------------------------------------------------------- * printtup / debugtup support * ---------------------------------------------------------------- */ /* ---------------- * getTypeOutAndElem -- get both typoutput and typelem for a type * * We used to fetch these with two separate function calls, * typtoout() and gettypelem(), which each called SearchSysCacheTuple. * This way takes half the time. * ---------------- */ int getTypeOutAndElem(Oid type, Oid* typOutput, Oid* typElem) { HeapTuple typeTuple; typeTuple = SearchSysCacheTuple(TYPOID, ObjectIdGetDatum(type), 0, 0, 0); if (HeapTupleIsValid(typeTuple)) { Form_pg_type pt = (Form_pg_type) GETSTRUCT(typeTuple); *typOutput = (Oid) pt->typoutput; *typElem = (Oid) pt->typelem; return OidIsValid(*typOutput); } elog(ERROR, "getTypeOutAndElem: Cache lookup of type %d failed", type); *typOutput = InvalidOid; *typElem = InvalidOid; return 0; } /* ---------------- * printtup * ---------------- */ void printtup(HeapTuple tuple, TupleDesc typeinfo) { int i, j, k, outputlen; char *outputstr; Datum attr; bool isnull; Oid typoutput, typelem; #ifdef MULTIBYTE unsigned char *p; #endif /* ---------------- * tell the frontend to expect new tuple data (in ASCII style) * ---------------- */ pq_putnchar("D", 1); /* ---------------- * send a bitmap of which attributes are null * ---------------- */ j = 0; k = 1 << 7; for (i = 0; i < tuple->t_data->t_natts;) { i++; /* heap_getattr is a macro, so no * increment */ attr = heap_getattr(tuple, i, typeinfo, &isnull); if (!isnull) j |= k; k >>= 1; if (!(i & 7)) { pq_putint(j, 1); j = 0; k = 1 << 7; } } if (i & 7) pq_putint(j, 1); /* ---------------- * send the attributes of this tuple * ---------------- */ for (i = 0; i < tuple->t_data->t_natts; ++i) { attr = heap_getattr(tuple, i + 1, typeinfo, &isnull); if (isnull) continue; if (getTypeOutAndElem((Oid) typeinfo->attrs[i]->atttypid, &typoutput, &typelem)) { outputstr = fmgr(typoutput, attr, typelem, typeinfo->attrs[i]->atttypmod); #ifdef MULTIBYTE p = pg_server_to_client(outputstr, strlen(outputstr)); outputlen = strlen(p); pq_putint(outputlen + VARHDRSZ, VARHDRSZ); pq_putnchar(p, outputlen); #else outputlen = strlen(outputstr); pq_putint(outputlen + VARHDRSZ, VARHDRSZ); pq_putnchar(outputstr, outputlen); #endif pfree(outputstr); } else { outputstr = ""; outputlen = strlen(outputstr); pq_putint(outputlen + VARHDRSZ, VARHDRSZ); pq_putnchar(outputstr, outputlen); } } } /* ---------------- * printatt * ---------------- */ static void printatt(unsigned attributeId, Form_pg_attribute attributeP, char *value) { printf("\t%2d: %s%s%s%s\t(typeid = %u, len = %d, typmod = %d, byval = %c)\n", attributeId, attributeP->attname.data, value != NULL ? " = \"" : "", value != NULL ? value : "", value != NULL ? "\"" : "", (unsigned int) (attributeP->atttypid), attributeP->attlen, attributeP->atttypmod, attributeP->attbyval ? 't' : 'f'); } /* ---------------- * showatts * ---------------- */ void showatts(char *name, TupleDesc tupleDesc) { int i; int natts = tupleDesc->natts; Form_pg_attribute *attinfo = tupleDesc->attrs; puts(name); for (i = 0; i < natts; ++i) printatt((unsigned) i + 1, attinfo[i], (char *) NULL); printf("\t----\n"); } /* ---------------- * debugtup * ---------------- */ void debugtup(HeapTuple tuple, TupleDesc typeinfo) { int i; Datum attr; char *value; bool isnull; Oid typoutput, typelem; for (i = 0; i < tuple->t_data->t_natts; ++i) { attr = heap_getattr(tuple, i + 1, typeinfo, &isnull); if (isnull) continue; if (getTypeOutAndElem((Oid) typeinfo->attrs[i]->atttypid, &typoutput, &typelem)) { value = fmgr(typoutput, attr, typelem, typeinfo->attrs[i]->atttypmod); printatt((unsigned) i + 1, typeinfo->attrs[i], value); pfree(value); } } printf("\t----\n"); } /* ---------------- * printtup_internal * We use a different data prefix, e.g. 'B' instead of 'D' to * indicate a tuple in internal (binary) form. * * This is same as printtup, except we don't use the typout func. * ---------------- */ void printtup_internal(HeapTuple tuple, TupleDesc typeinfo) { int i, j, k; Datum attr; bool isnull; /* ---------------- * tell the frontend to expect new tuple data (in binary style) * ---------------- */ pq_putnchar("B", 1); /* ---------------- * send a bitmap of which attributes are null * ---------------- */ j = 0; k = 1 << 7; for (i = 0; i < tuple->t_data->t_natts;) { i++; /* heap_getattr is a macro, so no * increment */ attr = heap_getattr(tuple, i, typeinfo, &isnull); if (!isnull) j |= k; k >>= 1; if (!(i & 7)) { pq_putint(j, 1); j = 0; k = 1 << 7; } } if (i & 7) pq_putint(j, 1); /* ---------------- * send the attributes of this tuple * ---------------- */ #ifdef IPORTAL_DEBUG fprintf(stderr, "sending tuple with %d atts\n", tuple->t_data->t_natts); #endif for (i = 0; i < tuple->t_data->t_natts; ++i) { int32 len = typeinfo->attrs[i]->attlen; attr = heap_getattr(tuple, i + 1, typeinfo, &isnull); if (!isnull) { /* # of bytes, and opaque data */ if (len == -1) { /* variable length, assume a varlena structure */ len = VARSIZE(attr) - VARHDRSZ; pq_putint(len, VARHDRSZ); pq_putnchar(VARDATA(attr), len); #ifdef IPORTAL_DEBUG { char *d = VARDATA(attr); fprintf(stderr, "length %d data %x%x%x%x\n", len, *d, *(d + 1), *(d + 2), *(d + 3)); } #endif } else { /* fixed size */ if (typeinfo->attrs[i]->attbyval) { int8 i8; int16 i16; int32 i32; pq_putint(len, sizeof(int32)); switch (len) { case sizeof(int8): i8 = DatumGetChar(attr); pq_putnchar((char *) &i8, len); break; case sizeof(int16): i16 = DatumGetInt16(attr); pq_putnchar((char *) &i16, len); break; case sizeof(int32): i32 = DatumGetInt32(attr); pq_putnchar((char *) &i32, len); break; } #ifdef IPORTAL_DEBUG fprintf(stderr, "byval length %d data %d\n", len, attr); #endif } else { pq_putint(len, sizeof(int32)); pq_putnchar(DatumGetPointer(attr), len); #ifdef IPORTAL_DEBUG fprintf(stderr, "byref length %d data %x\n", len, DatumGetPointer(attr)); #endif } } } } }