pqformat.c 8.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*-------------------------------------------------------------------------
 *
 * pqformat.c
 *		Routines for formatting and parsing frontend/backend messages
 *
 * Outgoing messages are built up in a StringInfo buffer (which is expansible)
 * and then sent in a single call to pq_putmessage.  This module provides data
 * formatting/conversion routines that are needed to produce valid messages.
 * Note in particular the distinction between "raw data" and "text"; raw data
 * is message protocol characters and binary values that are not subject to
 * MULTIBYTE conversion, while text is converted by MULTIBYTE rules.
 *
 * Incoming messages are read directly off the wire, as it were, but there
 * are still data-conversion tasks to be performed.
 *
B
Bruce Momjian 已提交
16
 * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
B
Add:  
Bruce Momjian 已提交
17
 * Portions Copyright (c) 1994, Regents of the University of California
18
 *
T
Tatsuo Ishii 已提交
19
 *	$Id: pqformat.c,v 1.22 2002/08/08 06:32:26 ishii Exp $
20 21 22 23 24
 *
 *-------------------------------------------------------------------------
 */
/*
 * INTERFACE ROUTINES
25
 * Message assembly and output:
B
Bruce Momjian 已提交
26
 *		pq_beginmessage - initialize StringInfo buffer
27 28 29
 *		pq_sendbyte		- append a raw byte to a StringInfo buffer
 *		pq_sendint		- append a binary integer to a StringInfo buffer
 *		pq_sendbytes	- append raw data to a StringInfo buffer
30
 *		pq_sendcountedtext - append a text string (with MULTIBYTE conversion)
31 32 33 34 35 36
 *		pq_sendstring	- append a null-terminated text string (with MULTIBYTE)
 *		pq_endmessage	- send the completed message to the frontend
 * Note: it is also possible to append data to the StringInfo buffer using
 * the regular StringInfo routines, but this is discouraged since required
 * MULTIBYTE conversion may not occur.
 *
37 38 39
 * Special-case message output:
 *		pq_puttextmessage - generate a MULTIBYTE-converted message in one step
 *
40 41 42
 * Message input:
 *		pq_getint		- get an integer from connection
 *		pq_getstr		- get a null terminated string from connection
43 44
 * pq_getstr performs MULTIBYTE conversion on the collected string.
 * Use the raw pqcomm.c routines pq_getstring or pq_getbytes
45 46
 * to fetch data without conversion.
 */
47

48 49
#include "postgres.h"

50 51 52
#include <errno.h>
#include <sys/param.h>

53
#include "libpq/libpq.h"
B
Bruce Momjian 已提交
54 55
#include "libpq/pqformat.h"
#include "mb/pg_wchar.h"
56
#ifdef HAVE_ENDIAN_H
57
#include <endian.h>
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
#endif

#ifndef BYTE_ORDER
#error BYTE_ORDER must be defined as LITTLE_ENDIAN, BIG_ENDIAN or PDP_ENDIAN
#endif

#if BYTE_ORDER == LITTLE_ENDIAN

#define ntoh_s(n)	n
#define ntoh_l(n)	n
#define hton_s(n)	n
#define hton_l(n)	n

#else
#if BYTE_ORDER == BIG_ENDIAN

#define ntoh_s(n)	(uint16)((((uint16)n & 0x00ff) <<  8) | \
				 (((uint16)n & 0xff00) >>  8))
#define ntoh_l(n)	(uint32)((((uint32)n & 0x000000ff) << 24) | \
				 (((uint32)n & 0x0000ff00) <<  8) | \
				 (((uint32)n & 0x00ff0000) >>  8) | \
				 (((uint32)n & 0xff000000) >> 24))
#define hton_s(n)	(ntoh_s(n))
#define hton_l(n)	(ntoh_l(n))

#else
#if BYTE_ORDER == PDP_ENDIAN

#error PDP_ENDIAN macros not written yet

#else

#error BYTE_ORDER not defined as anything understood
#endif
#endif
#endif


/* --------------------------------
 *		pq_sendbyte		- append a raw byte to a StringInfo buffer
 * --------------------------------
 */
void
pq_sendbyte(StringInfo buf, int byt)
{
103
	appendStringInfoCharMacro(buf, byt);
104 105 106 107 108 109 110 111 112 113 114 115 116
}

/* --------------------------------
 *		pq_sendbytes	- append raw data to a StringInfo buffer
 * --------------------------------
 */
void
pq_sendbytes(StringInfo buf, const char *data, int datalen)
{
	appendBinaryStringInfo(buf, data, datalen);
}

/* --------------------------------
117
 *		pq_sendcountedtext - append a text string (with MULTIBYTE conversion)
118
 *
119 120 121 122
 * The data sent to the frontend by this routine is a 4-byte count field
 * (the count includes itself, by convention) followed by the string.
 * The passed text string need not be null-terminated, and the data sent
 * to the frontend isn't either.
123 124 125
 * --------------------------------
 */
void
126
pq_sendcountedtext(StringInfo buf, const char *str, int slen)
127
{
128
	char	   *p;
B
Bruce Momjian 已提交
129

130
	p = (char *) pg_server_to_client((unsigned char *) str, slen);
131 132
	if (p != str)				/* actual conversion has been done? */
	{
133 134 135 136 137
		slen = strlen(p);
		pq_sendint(buf, slen + 4, 4);
		appendBinaryStringInfo(buf, p, slen);
		pfree(p);
		return;
138 139
	}
	pq_sendint(buf, slen + 4, 4);
140 141 142 143 144 145
	appendBinaryStringInfo(buf, str, slen);
}

/* --------------------------------
 *		pq_sendstring	- append a null-terminated text string (with MULTIBYTE)
 *
146 147
 * NB: passed text string must be null-terminated, and so is the data
 * sent to the frontend.
148 149 150
 * --------------------------------
 */
void
151
pq_sendstring(StringInfo buf, const char *str)
152
{
B
Bruce Momjian 已提交
153
	int			slen = strlen(str);
154

155
	char	   *p;
B
Bruce Momjian 已提交
156

157
	p = (char *) pg_server_to_client((unsigned char *) str, slen);
158 159
	if (p != str)				/* actual conversion has been done? */
	{
160 161 162 163
		slen = strlen(p);
		appendBinaryStringInfo(buf, p, slen + 1);
		pfree(p);
		return;
164
	}
B
Bruce Momjian 已提交
165
	appendBinaryStringInfo(buf, str, slen + 1);
166 167 168 169 170 171 172 173 174
}

/* --------------------------------
 *		pq_sendint		- append a binary integer to a StringInfo buffer
 * --------------------------------
 */
void
pq_sendint(StringInfo buf, int i, int b)
{
B
Bruce Momjian 已提交
175 176 177
	unsigned char n8;
	uint16		n16;
	uint32		n32;
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

	switch (b)
	{
		case 1:
			n8 = (unsigned char) i;
			appendBinaryStringInfo(buf, (char *) &n8, 1);
			break;
		case 2:
			n16 = ((PG_PROTOCOL_MAJOR(FrontendProtocol) == 0) ? hton_s(i) : htons((uint16) i));
			appendBinaryStringInfo(buf, (char *) &n16, 2);
			break;
		case 4:
			n32 = ((PG_PROTOCOL_MAJOR(FrontendProtocol) == 0) ? hton_l(i) : htonl((uint32) i));
			appendBinaryStringInfo(buf, (char *) &n32, 4);
			break;
		default:
			elog(ERROR, "pq_sendint: unsupported size %d", b);
			break;
	}
}

/* --------------------------------
 *		pq_endmessage	- send the completed message to the frontend
 *
 * The data buffer is pfree()d, but if the StringInfo was allocated with
 * makeStringInfo then the caller must still pfree it.
 * --------------------------------
 */
void
pq_endmessage(StringInfo buf)
{
209 210
	(void) pq_putmessage('\0', buf->data, buf->len);
	/* no need to complain about any failure, since pqcomm.c already did */
211 212 213 214
	pfree(buf->data);
	buf->data = NULL;
}

215 216 217 218 219 220 221 222 223 224 225 226 227
/* --------------------------------
 *		pq_puttextmessage - generate a MULTIBYTE-converted message in one step
 *
 *		This is the same as the pqcomm.c routine pq_putmessage, except that
 *		the message body is a null-terminated string to which MULTIBYTE
 *		conversion applies.
 *
 *		returns 0 if OK, EOF if trouble
 * --------------------------------
 */
int
pq_puttextmessage(char msgtype, const char *str)
{
B
Bruce Momjian 已提交
228
	int			slen = strlen(str);
229
	char	   *p;
B
Bruce Momjian 已提交
230

231
	p = (char *) pg_server_to_client((unsigned char *) str, slen);
232 233
	if (p != str)				/* actual conversion has been done? */
	{
234 235
		int			result = pq_putmessage(msgtype, p, strlen(p) + 1);

236 237
		pfree(p);
		return result;
238
	}
B
Bruce Momjian 已提交
239
	return pq_putmessage(msgtype, str, slen + 1);
240 241
}

242 243 244 245 246 247 248 249 250
/* --------------------------------
 *		pq_getint - get an integer from connection
 *
 *		returns 0 if OK, EOF if trouble
 * --------------------------------
 */
int
pq_getint(int *result, int b)
{
B
Bruce Momjian 已提交
251 252 253 254
	int			status;
	unsigned char n8;
	uint16		n16;
	uint32		n32;
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272

	switch (b)
	{
		case 1:
			status = pq_getbytes((char *) &n8, 1);
			*result = (int) n8;
			break;
		case 2:
			status = pq_getbytes((char *) &n16, 2);
			*result = (int) ((PG_PROTOCOL_MAJOR(FrontendProtocol) == 0) ?
							 ntoh_s(n16) : ntohs(n16));
			break;
		case 4:
			status = pq_getbytes((char *) &n32, 4);
			*result = (int) ((PG_PROTOCOL_MAJOR(FrontendProtocol) == 0) ?
							 ntoh_l(n32) : ntohl(n32));
			break;
		default:
B
Bruce Momjian 已提交
273 274 275 276

			/*
			 * if we elog(ERROR) here, we will lose sync with the
			 * frontend, so just complain to postmaster log instead...
277
			 */
278
			elog(COMMERROR, "pq_getint: unsupported size %d", b);
279 280 281 282 283 284 285 286 287 288
			status = EOF;
			*result = 0;
			break;
	}
	return status;
}

/* --------------------------------
 *		pq_getstr - get a null terminated string from connection
 *
289 290
 *		The return value is placed in an expansible StringInfo.
 *		Note that space allocation comes from the current memory context!
291 292 293 294 295
 *
 *		returns 0 if OK, EOF if trouble
 * --------------------------------
 */
int
296
pq_getstr(StringInfo s)
297
{
298
	int			result;
299 300
	char	   *p;

301
	result = pq_getstring(s);
302

303 304
	p = (char *) pg_client_to_server((unsigned char *) s->data, s->len);
	if (p != s->data)			/* actual conversion has been done? */
305
	{
306 307 308 309
		/* reset s to empty, and append the new string p */
		s->len = 0;
		s->data[0] = '\0';
		appendBinaryStringInfo(s, p, strlen(p));
310
		pfree(p);
311
	}
312

313
	return result;
314
}