convert.c 53.1 KB
Newer Older
1
/*-------
2
 * Module:               convert.c
3
 *
B
Bruce Momjian 已提交
4 5 6 7 8 9
 * Description:    This module contains routines related to
 *				   converting parameters and columns into requested data types.
 *				   Parameters are converted from their SQL_C data types into
 *				   the appropriate postgres type.  Columns are converted from
 *				   their postgres type (SQL type) into the appropriate SQL_C
 *				   data type.
10
 *
B
Bruce Momjian 已提交
11
 * Classes:		   n/a
12 13 14
 *
 * API functions:  none
 *
B
Bruce Momjian 已提交
15
 * Comments:	   See "notice.txt" for copyright and license information.
16
 *-------
17
 */
H
Hiroshi Inoue 已提交
18
/* Multibyte support  Eiji Tokuya	2001-03-15	*/
19 20 21

#include <stdio.h>
#include <string.h>
22
#include <ctype.h>
B
Byron Nikolaidis 已提交
23

H
Hiroshi Inoue 已提交
24
#include "psqlodbc.h"
H
Hiroshi Inoue 已提交
25 26 27 28
#ifdef MULTIBYTE
#include "multibyte.h"
#endif

29
#ifndef WIN32
B
Byron Nikolaidis 已提交
30 31 32 33
#include "iodbc.h"
#include "isql.h"
#include "isqlext.h"
#else
34
#include <windows.h>
35
#include <sql.h>
36
#include <sqlext.h>
B
Byron Nikolaidis 已提交
37 38
#endif

39
#include "convert.h"
40
#include <time.h>
41
#include <math.h>
42
#include <stdlib.h>
43
#include "statement.h"
B
Byron Nikolaidis 已提交
44
#include "qresult.h"
45 46
#include "bind.h"
#include "pgtypes.h"
47 48
#include "lobj.h"
#include "connection.h"
49
#include "pgapifunc.h"
50

51 52
#ifndef WIN32
#ifndef HAVE_STRICMP
B
Byron Nikolaidis 已提交
53 54 55 56 57
#define stricmp(s1,s2) strcasecmp(s1,s2)
#define strnicmp(s1,s2,n) strncasecmp(s1,s2,n)
#endif
#ifndef SCHAR
typedef signed char SCHAR;
B
Bruce Momjian 已提交
58

B
Byron Nikolaidis 已提交
59 60 61
#endif
#endif

62

63 64 65 66
/*
 *	How to map ODBC scalar functions {fn func(args)} to Postgres.
 *	This is just a simple substitution.  List augmented from:
 *	http://www.merant.com/datadirect/download/docs/odbc16/Odbcref/rappc.htm
67
 *	- thomas 2000-04-03
68
 */
B
Bruce Momjian 已提交
69 70 71 72
char	   *mapFuncs[][2] = {
/*	{ "ASCII",		 "ascii"	  }, */
	{"CHAR", "chr"},
	{"CONCAT", "textcat"},
B
Bruce Momjian 已提交
73
/*	{ "DIFFERENCE",  "difference" }, */
B
Bruce Momjian 已提交
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
/*	{ "INSERT",		 "insert"	  }, */
	{"LCASE", "lower"},
	{"LEFT", "ltrunc"},
	{"LOCATE", "strpos"},
	{"LENGTH", "char_length"},
/*	{ "LTRIM",		 "ltrim"	  }, */
	{"RIGHT", "rtrunc"},
/*	{ "REPEAT",		 "repeat"	  }, */
/*	{ "REPLACE",	 "replace"	  }, */
/*	{ "RTRIM",		 "rtrim"	  }, */
/*	{ "SOUNDEX",	 "soundex"	  }, */
	{"SUBSTRING", "substr"},
	{"UCASE", "upper"},

/*	{ "ABS",		 "abs"		  }, */
/*	{ "ACOS",		 "acos"		  }, */
/*	{ "ASIN",		 "asin"		  }, */
/*	{ "ATAN",		 "atan"		  }, */
/*	{ "ATAN2",		 "atan2"	  }, */
	{"CEILING", "ceil"},
/*	{ "COS",		 "cos"		  }, */
/*	{ "COT",		 "cot"		  }, */
/*	{ "DEGREES",	 "degrees"	  }, */
/*	{ "EXP",		 "exp"		  }, */
/*	{ "FLOOR",		 "floor"	  }, */
	{"LOG", "ln"},
	{"LOG10", "log"},
/*	{ "MOD",		 "mod"		  }, */
/*	{ "PI",			 "pi"		  }, */
	{"POWER", "pow"},
/*	{ "RADIANS",	 "radians"	  }, */
	{"RAND", "random"},
/*	{ "ROUND",		 "round"	  }, */
/*	{ "SIGN",		 "sign"		  }, */
/*	{ "SIN",		 "sin"		  }, */
/*	{ "SQRT",		 "sqrt"		  }, */
/*	{ "TAN",		 "tan"		  }, */
	{"TRUNCATE", "trunc"},

/*	{ "CURDATE",	 "curdate"	  }, */
/*	{ "CURTIME",	 "curtime"	  }, */
/*	{ "DAYNAME",	 "dayname"	  }, */
B
Bruce Momjian 已提交
116
/*	{ "DAYOFMONTH",  "dayofmonth" }, */
B
Bruce Momjian 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
/*	{ "DAYOFWEEK",	 "dayofweek"  }, */
/*	{ "DAYOFYEAR",	 "dayofyear"  }, */
/*	{ "HOUR",		 "hour"		  }, */
/*	{ "MINUTE",		 "minute"	  }, */
/*	{ "MONTH",		 "month"	  }, */
/*	{ "MONTHNAME",	 "monthname"  }, */
/*	{ "NOW",		 "now"		  }, */
/*	{ "QUARTER",	 "quarter"	  }, */
/*	{ "SECOND",		 "second"	  }, */
/*	{ "WEEK",		 "week"		  }, */
/*	{ "YEAR",		 "year"		  }, */

/*	{ "DATABASE",	 "database"   }, */
	{"IFNULL", "coalesce"},
	{"USER", "odbc_user"},
	{0, 0}
133 134
};

135 136 137 138
static char   *mapFunction(const char *func);
static unsigned int conv_from_octal(const unsigned char *s);
static unsigned int conv_from_hex(const unsigned char *s);
static char	   *conv_to_octal(unsigned char val);
139

140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
/*---------
 *			A Guide for date/time/timestamp conversions
 *
 *			field_type		fCType				Output
 *			----------		------				----------
 *			PG_TYPE_DATE	SQL_C_DEFAULT		SQL_C_DATE
 *			PG_TYPE_DATE	SQL_C_DATE			SQL_C_DATE
 *			PG_TYPE_DATE	SQL_C_TIMESTAMP		SQL_C_TIMESTAMP		(time = 0 (midnight))
 *			PG_TYPE_TIME	SQL_C_DEFAULT		SQL_C_TIME
 *			PG_TYPE_TIME	SQL_C_TIME			SQL_C_TIME
 *			PG_TYPE_TIME	SQL_C_TIMESTAMP		SQL_C_TIMESTAMP		(date = current date)
 *			PG_TYPE_ABSTIME SQL_C_DEFAULT		SQL_C_TIMESTAMP
 *			PG_TYPE_ABSTIME SQL_C_DATE			SQL_C_DATE			(time is truncated)
 *			PG_TYPE_ABSTIME SQL_C_TIME			SQL_C_TIME			(date is truncated)
 *			PG_TYPE_ABSTIME SQL_C_TIMESTAMP		SQL_C_TIMESTAMP
 *---------
 */
157 158 159 160 161



/*	This is called by SQLFetch() */
int
B
Bruce Momjian 已提交
162
copy_and_convert_field_bindinfo(StatementClass *stmt, Int4 field_type, void *value, int col)
163
{
B
Bruce Momjian 已提交
164
	BindInfoClass *bic = &(stmt->bindings[col]);
165

B
Bruce Momjian 已提交
166 167
	return copy_and_convert_field(stmt, field_type, value, (Int2) bic->returntype, (PTR) bic->buffer,
							 (SDWORD) bic->buflen, (SDWORD *) bic->used);
168 169
}

170

171 172
/*	This is called by SQLGetData() */
int
B
Bruce Momjian 已提交
173
copy_and_convert_field(StatementClass *stmt, Int4 field_type, void *value, Int2 fCType,
B
Bruce Momjian 已提交
174
					   PTR rgbValue, SDWORD cbValueMax, SDWORD *pcbValue)
175
{
B
Bruce Momjian 已提交
176 177
	Int4		len = 0,
				copy_len = 0;
178
	SIMPLE_TIME st;
B
Bruce Momjian 已提交
179 180 181 182
	time_t		t = time(NULL);
	struct tm  *tim;
	int			pcbValueOffset,
				rgbValueOffset;
183 184
	char	   *rgbValueBindRow;
	const char	*ptr;
B
Bruce Momjian 已提交
185 186 187
	int			bind_row = stmt->bind_row;
	int			bind_size = stmt->options.bind_size;
	int			result = COPY_OK;
188 189 190
	BOOL		changed;
	static		char *tempBuf= NULL;
	static		unsigned int tempBuflen = 0;
191 192
	const char *neutstr = value;
	char	midtemp[16];
193

194 195
	if (!tempBuf)
		tempBuflen = 0;
196 197 198 199 200
	/*---------
	 *	rgbValueOffset is *ONLY* for character and binary data.
	 *	pcbValueOffset is for computing any pcbValue location
	 *---------
	 */
201

B
Bruce Momjian 已提交
202
	if (bind_size > 0)
203
		pcbValueOffset = rgbValueOffset = (bind_size * bind_row);
B
Bruce Momjian 已提交
204 205
	else
	{
206 207
		pcbValueOffset = bind_row * sizeof(SDWORD);
		rgbValueOffset = bind_row * cbValueMax;
208

209
	}
210 211 212

	memset(&st, 0, sizeof(SIMPLE_TIME));

B
Bruce Momjian 已提交
213
	/* Initialize current date */
214 215 216 217 218
	tim = localtime(&t);
	st.m = tim->tm_mon + 1;
	st.d = tim->tm_mday;
	st.y = tim->tm_year + 1900;

B
Bruce Momjian 已提交
219
	mylog("copy_and_convert: field_type = %d, fctype = %d, value = '%s', cbValueMax=%d\n", field_type, fCType, (value == NULL) ? "<NULL>" : value, cbValueMax);
220

B
Bruce Momjian 已提交
221 222
	if (!value)
	{
223

224
		/*
225 226
		 * handle a null just by returning SQL_NULL_DATA in pcbValue, and
		 * doing nothing to the buffer.
227
		 */
B
Bruce Momjian 已提交
228
		if (pcbValue)
229
			*(SDWORD *) ((char *) pcbValue + pcbValueOffset) = SQL_NULL_DATA;
B
Byron Nikolaidis 已提交
230 231 232
		return COPY_OK;
	}

B
Bruce Momjian 已提交
233 234 235 236 237 238 239 240 241
	if (stmt->hdbc->DataSourceToDriver != NULL)
	{
		int			length = strlen(value);

		stmt->hdbc->DataSourceToDriver(stmt->hdbc->translation_option,
									   SQL_CHAR,
									   value, length,
									   value, length, NULL,
									   NULL, 0, NULL);
B
Byron Nikolaidis 已提交
242 243
	}

244
	/*
245
	 * First convert any specific postgres types into more useable data.
246
	 *
247 248
	 * NOTE: Conversions from PG char/varchar of a date/time/timestamp value
	 * to SQL_C_DATE,SQL_C_TIME, SQL_C_TIMESTAMP not supported
249
	 */
B
Bruce Momjian 已提交
250 251
	switch (field_type)
	{
252 253 254 255 256

			/*
			 * $$$ need to add parsing for date/time/timestamp strings in
			 * PG_TYPE_CHAR,VARCHAR $$$
			 */
B
Bruce Momjian 已提交
257 258 259
		case PG_TYPE_DATE:
			sscanf(value, "%4d-%2d-%2d", &st.y, &st.m, &st.d);
			break;
260

B
Bruce Momjian 已提交
261 262 263
		case PG_TYPE_TIME:
			sscanf(value, "%2d:%2d:%2d", &st.hh, &st.mm, &st.ss);
			break;
264

B
Bruce Momjian 已提交
265 266 267 268 269 270
		case PG_TYPE_ABSTIME:
		case PG_TYPE_DATETIME:
		case PG_TYPE_TIMESTAMP:
			if (strnicmp(value, "invalid", 7) != 0)
				sscanf(value, "%4d-%2d-%2d %2d:%2d:%2d", &st.y, &st.m, &st.d, &st.hh, &st.mm, &st.ss);
			else
271
			{
272

273
				/*
274 275
				 * The timestamp is invalid so set something conspicuous,
				 * like the epoch
276
				 */
B
Bruce Momjian 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
				t = 0;
				tim = localtime(&t);
				st.m = tim->tm_mon + 1;
				st.d = tim->tm_mday;
				st.y = tim->tm_year + 1900;
				st.hh = tim->tm_hour;
				st.mm = tim->tm_min;
				st.ss = tim->tm_sec;
			}
			break;

		case PG_TYPE_BOOL:
			{					/* change T/F to 1/0 */
				char	   *s = (char *) value;

292 293 294 295 296 297 298 299 300 301 302
				/*  Aidan Mountford (aidan@oz.to) 1/08/2001:  
					
					>> if (s[0] == 'T' || s[0] == 't') <<< This wont work...

					When MoveFirst is called twice on one set of tuples, 
					this will have the effect of setting s[0] to 1 on the
					first pass, and s[0] on the second.

					This is bad ;)

				*/
303 304 305 306

				strcpy(midtemp, value);
				if (s[0] == 'f' || s[0] == 'F' || s[0] == 'n' || s[0] == 'N' || s[0] == '0')
					midtemp[0] = '0';
B
Bruce Momjian 已提交
307
				else
308 309
					midtemp[0] = '1';
				neutstr = midtemp;
310

B
Bruce Momjian 已提交
311 312 313
			}
			break;

314
			/* This is for internal use by SQLStatistics() */
B
Bruce Momjian 已提交
315 316 317 318
		case PG_TYPE_INT2VECTOR:
			{
				int			nval,
							i;
319
				const char	*vp;
B
Bruce Momjian 已提交
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

				/* this is an array of eight integers */
				short	   *short_array = (short *) ((char *) rgbValue + rgbValueOffset);

				len = 32;
				vp = value;
				nval = 0;
				mylog("index=(");
				for (i = 0; i < 16; i++)
				{
					if (sscanf(vp, "%hd", &short_array[i]) != 1)
						break;

					mylog(" %d", short_array[i]);
					nval++;

					/* skip the current token */
					while ((*vp != '\0') && (!isspace((unsigned char) *vp)))
						vp++;
					/* and skip the space to the next token */
					while ((*vp != '\0') && (isspace((unsigned char) *vp)))
						vp++;
					if (*vp == '\0')
						break;
				}
				mylog(") nval = %d\n", nval);

				for (i = nval; i < 16; i++)
					short_array[i] = 0;
B
Byron Nikolaidis 已提交
349

350
#if 0
B
Bruce Momjian 已提交
351 352 353 354 355 356 357 358 359
				sscanf(value, "%hd %hd %hd %hd %hd %hd %hd %hd",
					   &short_array[0],
					   &short_array[1],
					   &short_array[2],
					   &short_array[3],
					   &short_array[4],
					   &short_array[5],
					   &short_array[6],
					   &short_array[7]);
360
#endif
B
Byron Nikolaidis 已提交
361

B
Bruce Momjian 已提交
362 363 364
				/* There is no corresponding fCType for this. */
				if (pcbValue)
					*(SDWORD *) ((char *) pcbValue + pcbValueOffset) = len;
B
Byron Nikolaidis 已提交
365

B
Bruce Momjian 已提交
366 367 368
				return COPY_OK; /* dont go any further or the data will be
								 * trashed */
			}
B
Byron Nikolaidis 已提交
369

B
Bruce Momjian 已提交
370 371 372 373 374
			/*
			 * This is a large object OID, which is used to store
			 * LONGVARBINARY objects.
			 */
		case PG_TYPE_LO:
B
Byron Nikolaidis 已提交
375

B
Bruce Momjian 已提交
376
			return convert_lo(stmt, value, fCType, ((char *) rgbValue + rgbValueOffset), cbValueMax, (SDWORD *) ((char *) pcbValue + pcbValueOffset));
B
Byron Nikolaidis 已提交
377

B
Bruce Momjian 已提交
378
		default:
B
Byron Nikolaidis 已提交
379

B
Bruce Momjian 已提交
380 381 382
			if (field_type == stmt->hdbc->lobj_type)	/* hack until permanent
														 * type available */
				return convert_lo(stmt, value, fCType, ((char *) rgbValue + rgbValueOffset), cbValueMax, (SDWORD *) ((char *) pcbValue + pcbValueOffset));
B
Byron Nikolaidis 已提交
383 384
	}

B
Bruce Momjian 已提交
385 386 387
	/* Change default into something useable */
	if (fCType == SQL_C_DEFAULT)
	{
B
Byron Nikolaidis 已提交
388 389 390 391 392
		fCType = pgtype_to_ctype(stmt, field_type);

		mylog("copy_and_convert, SQL_C_DEFAULT: fCType = %d\n", fCType);
	}

393 394
	rgbValueBindRow = (char *) rgbValue + rgbValueOffset;

B
Bruce Momjian 已提交
395 396 397
	if (fCType == SQL_C_CHAR)
	{
		/* Special character formatting as required */
398

B
Bruce Momjian 已提交
399 400 401 402 403 404 405 406 407 408 409
		/*
		 * These really should return error if cbValueMax is not big
		 * enough.
		 */
		switch (field_type)
		{
			case PG_TYPE_DATE:
				len = 10;
				if (cbValueMax > len)
					sprintf(rgbValueBindRow, "%.4d-%.2d-%.2d", st.y, st.m, st.d);
				break;
410

B
Bruce Momjian 已提交
411 412 413 414 415
			case PG_TYPE_TIME:
				len = 8;
				if (cbValueMax > len)
					sprintf(rgbValueBindRow, "%.2d:%.2d:%.2d", st.hh, st.mm, st.ss);
				break;
416

B
Bruce Momjian 已提交
417 418 419 420 421 422 423 424
			case PG_TYPE_ABSTIME:
			case PG_TYPE_DATETIME:
			case PG_TYPE_TIMESTAMP:
				len = 19;
				if (cbValueMax > len)
					sprintf(rgbValueBindRow, "%.4d-%.2d-%.2d %.2d:%.2d:%.2d",
							st.y, st.m, st.d, st.hh, st.mm, st.ss);
				break;
425

B
Bruce Momjian 已提交
426 427 428 429
			case PG_TYPE_BOOL:
				len = 1;
				if (cbValueMax > len)
				{
430
					strcpy(rgbValueBindRow, neutstr);
B
Bruce Momjian 已提交
431 432 433
					mylog("PG_TYPE_BOOL: rgbValueBindRow = '%s'\n", rgbValueBindRow);
				}
				break;
434

B
Bruce Momjian 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
				/*
				 * Currently, data is SILENTLY TRUNCATED for BYTEA and
				 * character data types if there is not enough room in
				 * cbValueMax because the driver can't handle multiple
				 * calls to SQLGetData for these, yet.	Most likely, the
				 * buffer passed in will be big enough to handle the
				 * maximum limit of postgres, anyway.
				 *
				 * LongVarBinary types are handled correctly above, observing
				 * truncation and all that stuff since there is
				 * essentially no limit on the large object used to store
				 * those.
				 */
			case PG_TYPE_BYTEA:/* convert binary data to hex strings
								 * (i.e, 255 = "FF") */
				len = convert_pgbinary_to_char(value, rgbValueBindRow, cbValueMax);

				/***** THIS IS NOT PROPERLY IMPLEMENTED *****/
				break;
454

B
Bruce Momjian 已提交
455
			default:
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
				if (stmt->current_col >= 0 && stmt->bindings[stmt->current_col].data_left == -2)
					stmt->bindings[stmt->current_col].data_left = (cbValueMax > 0) ? 0 : -1; /* This seems to be needed for ADO ? */
				if (stmt->current_col < 0 || stmt->bindings[stmt->current_col].data_left < 0)
				{
					/* convert linefeeds to carriage-return/linefeed */
					len = convert_linefeeds(value, NULL, 0, &changed);
					if (cbValueMax == 0) /* just returns length info */
					{
						result = COPY_RESULT_TRUNCATED;
						break;
					}
					if (changed || len >= cbValueMax)
					{
						if (len >= (int) tempBuflen)
						{
							tempBuf = realloc(tempBuf, len + 1);
							tempBuflen = len + 1;
						}
						convert_linefeeds(value, tempBuf, tempBuflen, &changed);
						ptr = tempBuf;
					}
					else
					{
						if (tempBuf)
						{
							free(tempBuf);
							tempBuf = NULL;
						}
						ptr = value;
					}
				}
				else
					ptr = tempBuf;
B
Bruce Momjian 已提交
489 490 491 492 493 494

				mylog("DEFAULT: len = %d, ptr = '%s'\n", len, ptr);

				if (stmt->current_col >= 0)
				{
					if (stmt->bindings[stmt->current_col].data_left == 0)
495 496 497 498 499 500 501 502
					{
						if (tempBuf)
						{
							free(tempBuf);
							tempBuf = NULL;
						}
						/* The following seems to be needed for ADO ? */
						stmt->bindings[stmt->current_col].data_left = -2;
B
Bruce Momjian 已提交
503
						return COPY_NO_DATA_FOUND;
504
					}
B
Bruce Momjian 已提交
505 506
					else if (stmt->bindings[stmt->current_col].data_left > 0)
					{
507
						ptr += strlen(ptr) - stmt->bindings[stmt->current_col].data_left;
B
Bruce Momjian 已提交
508 509 510
						len = stmt->bindings[stmt->current_col].data_left;
					}
					else
511
						stmt->bindings[stmt->current_col].data_left = len;
512 513
				}

B
Bruce Momjian 已提交
514 515 516
				if (cbValueMax > 0)
				{
					copy_len = (len >= cbValueMax) ? cbValueMax - 1 : len;
517

B
Bruce Momjian 已提交
518
					/* Copy the data */
519 520
					memcpy(rgbValueBindRow, ptr, copy_len);
					rgbValueBindRow[copy_len] = '\0';
521

B
Bruce Momjian 已提交
522 523 524
					/* Adjust data_left for next time */
					if (stmt->current_col >= 0)
						stmt->bindings[stmt->current_col].data_left -= copy_len;
525 526
				}

B
Bruce Momjian 已提交
527 528 529 530
				/*
				 * Finally, check for truncation so that proper status can
				 * be returned
				 */
531
				if (cbValueMax > 0 && len >= cbValueMax)
B
Bruce Momjian 已提交
532
					result = COPY_RESULT_TRUNCATED;
533 534 535 536 537 538 539 540
				else
				{
					if (tempBuf)
					{
						free(tempBuf);
						tempBuf = NULL;
					}
				}
541 542


B
Bruce Momjian 已提交
543 544
				mylog("    SQL_C_CHAR, default: len = %d, cbValueMax = %d, rgbValueBindRow = '%s'\n", len, cbValueMax, rgbValueBindRow);
				break;
B
Byron Nikolaidis 已提交
545
		}
546 547


B
Bruce Momjian 已提交
548 549 550
	}
	else
	{
551

B
Bruce Momjian 已提交
552 553 554 555 556
		/*
		 * for SQL_C_CHAR, it's probably ok to leave currency symbols in.
		 * But to convert to numeric types, it is necessary to get rid of
		 * those.
		 */
B
Byron Nikolaidis 已提交
557 558 559
		if (field_type == PG_TYPE_MONEY)
			convert_money(value);

B
Bruce Momjian 已提交
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
		switch (fCType)
		{
			case SQL_C_DATE:
				len = 6;
				{
					DATE_STRUCT *ds;

					if (bind_size > 0)
						ds = (DATE_STRUCT *) ((char *) rgbValue + (bind_row * bind_size));
					else
						ds = (DATE_STRUCT *) rgbValue + bind_row;
					ds->year = st.y;
					ds->month = st.m;
					ds->day = st.d;
				}
				break;
576

B
Bruce Momjian 已提交
577 578 579 580 581 582 583 584 585 586 587 588 589 590
			case SQL_C_TIME:
				len = 6;
				{
					TIME_STRUCT *ts;

					if (bind_size > 0)
						ts = (TIME_STRUCT *) ((char *) rgbValue + (bind_row * bind_size));
					else
						ts = (TIME_STRUCT *) rgbValue + bind_row;
					ts->hour = st.hh;
					ts->minute = st.mm;
					ts->second = st.ss;
				}
				break;
B
Byron Nikolaidis 已提交
591

B
Bruce Momjian 已提交
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
			case SQL_C_TIMESTAMP:
				len = 16;
				{
					TIMESTAMP_STRUCT *ts;

					if (bind_size > 0)
						ts = (TIMESTAMP_STRUCT *) ((char *) rgbValue + (bind_row * bind_size));
					else
						ts = (TIMESTAMP_STRUCT *) rgbValue + bind_row;
					ts->year = st.y;
					ts->month = st.m;
					ts->day = st.d;
					ts->hour = st.hh;
					ts->minute = st.mm;
					ts->second = st.ss;
					ts->fraction = 0;
				}
				break;
610

B
Bruce Momjian 已提交
611 612 613
			case SQL_C_BIT:
				len = 1;
				if (bind_size > 0)
614
					*(UCHAR *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(neutstr);
B
Bruce Momjian 已提交
615
				else
616
					*((UCHAR *) rgbValue + bind_row) = atoi(neutstr);
617

B
Bruce Momjian 已提交
618
				/*
619 620
				 * mylog("SQL_C_BIT: bind_row = %d val = %d, cb = %d, rgb=%d\n",
				 * bind_row, atoi(neutstr), cbValueMax, *((UCHAR *)rgbValue));
B
Bruce Momjian 已提交
621 622
				 */
				break;
623

B
Bruce Momjian 已提交
624 625 626 627 628 629 630 631
			case SQL_C_STINYINT:
			case SQL_C_TINYINT:
				len = 1;
				if (bind_size > 0)
					*(SCHAR *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
				else
					*((SCHAR *) rgbValue + bind_row) = atoi(value);
				break;
632

B
Bruce Momjian 已提交
633 634 635 636 637 638 639
			case SQL_C_UTINYINT:
				len = 1;
				if (bind_size > 0)
					*(UCHAR *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
				else
					*((UCHAR *) rgbValue + bind_row) = atoi(value);
				break;
640

B
Bruce Momjian 已提交
641 642 643 644 645 646 647
			case SQL_C_FLOAT:
				len = 4;
				if (bind_size > 0)
					*(SFLOAT *) ((char *) rgbValue + (bind_row * bind_size)) = (float) atof(value);
				else
					*((SFLOAT *) rgbValue + bind_row) = (float) atof(value);
				break;
648

B
Bruce Momjian 已提交
649 650 651 652 653 654 655
			case SQL_C_DOUBLE:
				len = 8;
				if (bind_size > 0)
					*(SDOUBLE *) ((char *) rgbValue + (bind_row * bind_size)) = atof(value);
				else
					*((SDOUBLE *) rgbValue + bind_row) = atof(value);
				break;
656

B
Bruce Momjian 已提交
657 658 659 660 661 662 663 664
			case SQL_C_SSHORT:
			case SQL_C_SHORT:
				len = 2;
				if (bind_size > 0)
					*(SWORD *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
				else
					*((SWORD *) rgbValue + bind_row) = atoi(value);
				break;
665

B
Bruce Momjian 已提交
666 667 668 669 670 671 672
			case SQL_C_USHORT:
				len = 2;
				if (bind_size > 0)
					*(UWORD *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
				else
					*((UWORD *) rgbValue + bind_row) = atoi(value);
				break;
673

B
Bruce Momjian 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
			case SQL_C_SLONG:
			case SQL_C_LONG:
				len = 4;
				if (bind_size > 0)
					*(SDWORD *) ((char *) rgbValue + (bind_row * bind_size)) = atol(value);
				else
					*((SDWORD *) rgbValue + bind_row) = atol(value);
				break;

			case SQL_C_ULONG:
				len = 4;
				if (bind_size > 0)
					*(UDWORD *) ((char *) rgbValue + (bind_row * bind_size)) = atol(value);
				else
					*((UDWORD *) rgbValue + bind_row) = atol(value);
				break;
690

B
Bruce Momjian 已提交
691
			case SQL_C_BINARY:
692

B
Bruce Momjian 已提交
693 694
				/* truncate if necessary */
				/* convert octal escapes to bytes */
695

696 697 698 699 700 701
				if (len = strlen(value), len >= (int) tempBuflen)
				{
					tempBuf = realloc(tempBuf, len + 1);
					tempBuflen = len + 1;
				}
				len = convert_from_pgbinary(value, tempBuf, tempBuflen);
B
Bruce Momjian 已提交
702
				ptr = tempBuf;
703

B
Bruce Momjian 已提交
704 705 706 707
				if (stmt->current_col >= 0)
				{
					/* No more data left for this column */
					if (stmt->bindings[stmt->current_col].data_left == 0)
708 709 710
					{
						free(tempBuf);
						tempBuf = NULL;
B
Bruce Momjian 已提交
711
						return COPY_NO_DATA_FOUND;
712
					}
713

B
Bruce Momjian 已提交
714 715 716 717 718 719 720 721 722
					/*
					 * Second (or more) call to SQLGetData so move the
					 * pointer
					 */
					else if (stmt->bindings[stmt->current_col].data_left > 0)
					{
						ptr += len - stmt->bindings[stmt->current_col].data_left;
						len = stmt->bindings[stmt->current_col].data_left;
					}
723

B
Bruce Momjian 已提交
724 725 726
					/* First call to SQLGetData so initialize data_left */
					else
						stmt->bindings[stmt->current_col].data_left = len;
727

B
Bruce Momjian 已提交
728
				}
729

B
Bruce Momjian 已提交
730 731 732
				if (cbValueMax > 0)
				{
					copy_len = (len > cbValueMax) ? cbValueMax : len;
733

B
Bruce Momjian 已提交
734 735
					/* Copy the data */
					memcpy(rgbValueBindRow, ptr, copy_len);
736

B
Bruce Momjian 已提交
737 738 739
					/* Adjust data_left for next time */
					if (stmt->current_col >= 0)
						stmt->bindings[stmt->current_col].data_left -= copy_len;
740
				}
741

B
Bruce Momjian 已提交
742 743 744 745 746 747
				/*
				 * Finally, check for truncation so that proper status can
				 * be returned
				 */
				if (len > cbValueMax)
					result = COPY_RESULT_TRUNCATED;
748

749 750 751 752 753
				if (tempBuf)
				{
					free(tempBuf);
					tempBuf = NULL;
				}
B
Bruce Momjian 已提交
754 755 756 757 758
				mylog("SQL_C_BINARY: len = %d, copy_len = %d\n", len, copy_len);
				break;

			default:
				return COPY_UNSUPPORTED_TYPE;
B
Byron Nikolaidis 已提交
759 760
		}
	}
761

B
Bruce Momjian 已提交
762 763 764
	/* store the length of what was copied, if there's a place for it */
	if (pcbValue)
		*(SDWORD *) ((char *) pcbValue + pcbValueOffset) = len;
765

766
	return result;
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
/*--------------------------------------------------------------------
 *	Functions/Macros to get rid of query size limit.
 *
 *	I always used the follwoing macros to convert from
 *	old_statement to new_statement.	 Please improve it
 *	if you have a better way.	Hiroshi 2001/05/22
 *--------------------------------------------------------------------
 */
#define	INIT_MIN_ALLOC	4096
static int enlarge_statement(StatementClass *stmt, unsigned int newsize)
{
	unsigned int	newalsize = INIT_MIN_ALLOC;
	static char *func = "enlarge_statement";

	if (stmt->stmt_size_limit > 0 && stmt->stmt_size_limit < (int) newsize)
	{
		stmt->errormsg = "Query buffer overflow in copy_statement_with_parameters";
		stmt->errornumber = STMT_EXEC_ERROR;
		SC_log_error(func, "", stmt);
		return -1;
	}
	while (newalsize <= newsize)
		newalsize *= 2;
	if (!(stmt->stmt_with_params = realloc(stmt->stmt_with_params, newalsize)))
	{
		stmt->errormsg = "Query buffer allocate error in copy_statement_with_parameters";
		stmt->errornumber = STMT_EXEC_ERROR;
		SC_log_error(func, "", stmt);
		return 0;
	}
	return newalsize;
}

/*----------
 *	Enlarge stmt_with_params if necessary.
 *----------
 */
#define	ENLARGE_NEWSTATEMENT(newpos) \
	if (newpos >= new_stsize) \
	{ \
		if ((new_stsize = enlarge_statement(stmt, newpos)) <= 0) \
			return SQL_ERROR; \
		new_statement = stmt->stmt_with_params; \
	}
/*----------
 *	Initialize stmt_with_params, new_statement etc.
 *----------
 */
#define	CVT_INIT(size) \
{ \
	if (stmt->stmt_with_params) \
		free(stmt->stmt_with_params); \
	if (stmt->stmt_size_limit > 0) \
		new_stsize = stmt->stmt_size_limit; \
	else \
	{ \
		new_stsize = INIT_MIN_ALLOC; \
		while (new_stsize <= size) \
			new_stsize *= 2; \
	} \
	new_statement = malloc(new_stsize); \
	stmt->stmt_with_params = new_statement; \
	npos = 0; \
	new_statement[0] = '\0'; \
}
/*----------
 *	Terminate the stmt_with_params string with NULL.
 *----------
 */
#define	CVT_TERMINATE { new_statement[npos] = '\0'; }

/*----------
 *	Append a data.
 *----------
 */
#define	CVT_APPEND_DATA(s, len) \
{ \
	unsigned int	newpos = npos + len; \
	ENLARGE_NEWSTATEMENT(newpos) \
	memcpy(&new_statement[npos], s, len); \
	npos = newpos; \
	new_statement[npos] = '\0'; \
}
/*----------
 *	Append a string.
 *----------
 */
#define	CVT_APPEND_STR(s) \
{ \
	unsigned int len = strlen(s); \
	CVT_APPEND_DATA(s, len); \
}
/*----------
 *	Append a char.	
 *----------
 */
#define	CVT_APPEND_CHAR(c) \
{ \
	ENLARGE_NEWSTATEMENT(npos + 1); \
	new_statement[npos++] = c; \
}
/*----------
 *	Append a binary data.
 *	Newly reqeuired size may be overestimated currently. 
 *----------
 */
#define	CVT_APPEND_BINARY(buf, used) \
{ \
	unsigned int	newlimit = npos + 5 * used; \
	ENLARGE_NEWSTATEMENT(newlimit); \
	npos += convert_to_pgbinary(buf, &new_statement[npos], used); \
}
/*----------
 *
 *----------
 */
#define	CVT_SPECIAL_CHARS(buf, used) \
{ \
	int	cnvlen = convert_special_chars(buf, NULL, used); \
	unsigned int	newlimit = npos + cnvlen; \
\
	ENLARGE_NEWSTATEMENT(newlimit); \
	convert_special_chars(buf, &new_statement[npos], used); \
	npos += cnvlen; \
}

/*----------
 *	Check if the statement is	
 *	SELECT ... INTO table FROM .....
 *	This isn't really a strict check but ...
 *---------- 
 */
static BOOL
into_table_from(const char *stmt)
{
	if (strnicmp(stmt, "into", 4))
		return FALSE;
	stmt += 4;
	if (!isspace((unsigned char) *stmt))
		return FALSE;
	while (isspace((unsigned char) *(++stmt)));
	switch (*stmt)
	{
		case '\0':
		case ',':
		case '\'':
			return FALSE;
		case '\"': /* double quoted table name ? */
			do
			{
				do
				{
					 while (*(++stmt) != '\"' && *stmt);
				}
				while (*stmt && *(++stmt) == '\"');
				while (*stmt && !isspace((unsigned char) *stmt) && *stmt != '\"') stmt++;
			}
			while (*stmt == '\"');
			break;
		default:
			while (!isspace((unsigned char) *(++stmt)));
			break;
	}
	if (! *stmt)
		return FALSE;
	while (isspace((unsigned char) *(++stmt)));
	if (strnicmp(stmt, "from", 4))
		return FALSE;
	return isspace((unsigned char) stmt[4]);
}

H
Hiroshi Inoue 已提交
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
/*----------
 *	Check if the statement is	
 *	SELECT ... FOR UPDATE .....
 *	This isn't really a strict check but ...
 *---------- 
 */
static BOOL
table_for_update(const char *stmt, int *endpos)
{
	const char *wstmt = stmt;
	while (isspace((unsigned char) *(++wstmt)));
	if (! *wstmt)
		return FALSE;
	if (strnicmp(wstmt, "update", 6))
		return FALSE;
	wstmt += 6;
	*endpos = wstmt - stmt;
	return !wstmt[0] || isspace((unsigned char) wstmt[0]);
}

962 963 964
/*
 *	This function inserts parameters into an SQL statements.
 *	It will also modify a SELECT statement for use with declare/fetch cursors.
965
 *	This function does a dynamic memory allocation to get rid of query size limit!
966
 */
967
int
B
Bruce Momjian 已提交
968
copy_statement_with_parameters(StatementClass *stmt)
969
{
B
Bruce Momjian 已提交
970 971 972 973 974 975
	static char *func = "copy_statement_with_parameters";
	unsigned int opos,
				npos,
				oldstmtlen;
	char		param_string[128],
				tmp[256],
976
				cbuf[PG_NUMERIC_MAX_PRECISION * 2]; /* seems big enough to handle the data in this function */
B
Bruce Momjian 已提交
977 978 979
	int			param_number;
	Int2		param_ctype,
				param_sqltype;
980
	char	   *old_statement = stmt->statement, oldchar;
B
Bruce Momjian 已提交
981
	char	   *new_statement = stmt->stmt_with_params;
982
	unsigned int	new_stsize = 0;
B
Bruce Momjian 已提交
983 984 985 986
	SIMPLE_TIME st;
	time_t		t = time(NULL);
	struct tm  *tim;
	SDWORD		used;
987
	char	   	*buffer, *buf;
988
	BOOL		in_quote = FALSE, in_dquote = FALSE, in_escape = FALSE;
B
Bruce Momjian 已提交
989 990 991
	Oid			lobj_oid;
	int			lobj_fd,
				retval;
H
Hiroshi Inoue 已提交
992
	BOOL	check_cursor_ok = FALSE; /* check cursor restriction */
993
	BOOL	proc_no_param = TRUE;
H
Hiroshi Inoue 已提交
994
	unsigned int	declare_pos = 0;
995 996
	ConnectionClass	*conn = SC_get_conn(stmt);
	ConnInfo	*ci = &(conn->connInfo);
H
Hiroshi Inoue 已提交
997 998 999 1000
	BOOL		prepare_dummy_cursor = FALSE;
	char	token_save[32];
	int	token_len;
	BOOL	prev_token_end;
1001
#ifdef	DRIVER_CURSOR_IMPLEMENT
H
Hiroshi Inoue 已提交
1002
	BOOL search_from_pos = FALSE;
1003
#endif /* DRIVER_CURSOR_IMPLEMENT */
1004 1005
	if (ci->disallow_premature)
		prepare_dummy_cursor = stmt->pre_executing;
B
Bruce Momjian 已提交
1006 1007 1008

	if (!old_statement)
	{
B
Byron Nikolaidis 已提交
1009
		SC_log_error(func, "No statement string", stmt);
1010
		return SQL_ERROR;
B
Byron Nikolaidis 已提交
1011
	}
1012

1013 1014
	memset(&st, 0, sizeof(SIMPLE_TIME));

B
Bruce Momjian 已提交
1015
	/* Initialize current date */
1016 1017 1018 1019 1020
	tim = localtime(&t);
	st.m = tim->tm_mon + 1;
	st.d = tim->tm_mday;
	st.y = tim->tm_year + 1900;

1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
#ifdef	DRIVER_CURSOR_IMPLEMENT
	if (stmt->statement_type != STMT_TYPE_SELECT)
	{
		stmt->options.cursor_type = SQL_CURSOR_FORWARD_ONLY;
		stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
	}
	else if (stmt->options.cursor_type == SQL_CURSOR_FORWARD_ONLY)
    		stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
	else if (stmt->options.scroll_concurrency != SQL_CONCUR_READ_ONLY)
	{
		if (stmt->parse_status == STMT_PARSE_NONE)
			parse_statement(stmt);
		if (stmt->parse_status != STMT_PARSE_COMPLETE)
			stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
		else if (!stmt->ti || stmt->ntab != 1)
    			stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
H
Hiroshi Inoue 已提交
1037
		else search_from_pos = TRUE;
1038 1039
	}
#endif /* DRIVER_CURSOR_IMPLEMENT */
1040 1041 1042 1043 1044 1045

	/* If the application hasn't set a cursor name, then generate one */
	if (stmt->cursor_name[0] == '\0')
		sprintf(stmt->cursor_name, "SQL_CUR%p", stmt);
	oldstmtlen = strlen(old_statement);
	CVT_INIT(oldstmtlen);
H
Hiroshi Inoue 已提交
1046

1047
	stmt->miscinfo = 0;
H
Hiroshi Inoue 已提交
1048 1049
	token_len = 0;
	prev_token_end = TRUE;
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062
	/* For selects, prepend a declare cursor to the statement */
	if (stmt->statement_type == STMT_TYPE_SELECT)
	{
		SC_set_pre_executable(stmt);
		if (prepare_dummy_cursor || ci->drivers.use_declarefetch)
		{
			if (prepare_dummy_cursor)
			{
				if (!CC_is_in_trans(conn))
					strcpy(new_statement, "begin;");
			}
			else if (ci->drivers.use_declarefetch)
				SC_set_fetchcursor(stmt);
H
Hiroshi Inoue 已提交
1063
			sprintf(new_statement, "%sdeclare %s cursor for ",
1064 1065
				 new_statement, stmt->cursor_name);
			npos = strlen(new_statement);
H
Hiroshi Inoue 已提交
1066
			check_cursor_ok = TRUE;
1067 1068 1069 1070
			declare_pos = npos;
		}
	}
	param_number = -1;
H
Hiroshi Inoue 已提交
1071
#ifdef MULTIBYTE
B
Bruce Momjian 已提交
1072
	multibyte_init();
H
Hiroshi Inoue 已提交
1073
#endif
1074

B
Bruce Momjian 已提交
1075 1076
	for (opos = 0; opos < oldstmtlen; opos++)
	{
1077
		oldchar = old_statement[opos];
1078
#ifdef MULTIBYTE
1079
		if (multibyte_char_check(oldchar) != 0)
1080
		{
1081
			CVT_APPEND_CHAR(oldchar);
1082 1083 1084 1085 1086 1087 1088
			continue;
		}
		/*
		 *	From here we are guaranteed to handle a
		 *	1-byte character.
		 */
#endif
1089

1090
		if (in_escape) /* escape check */
1091 1092
		{
			in_escape = FALSE;
1093
			CVT_APPEND_CHAR(oldchar);
1094 1095 1096 1097
			continue;
		}	
		else if (in_quote || in_dquote) /* quote/double quote check */
		{
1098 1099 1100
			if (oldchar == '\\')
				in_escape = TRUE;
			else if (oldchar == '\'' && in_quote)
1101
				in_quote = FALSE;
1102
			else if (oldchar == '\"' && in_dquote)
1103
				in_dquote = FALSE;
1104
			CVT_APPEND_CHAR(oldchar);
1105 1106 1107 1108
			continue;	
		}
		/*
		 *	From here we are guranteed to be in neither
1109
		 *	an escape, a quote nor a double quote.
1110
		 */
1111 1112 1113 1114
		/* Squeeze carriage-return/linefeed pairs to linefeed only */
		else if (oldchar == '\r' && opos + 1 < oldstmtlen &&
			old_statement[opos + 1] == '\n')
			continue;
B
Bruce Momjian 已提交
1115 1116 1117 1118
		/*
		 * Handle literals (date, time, timestamp) and ODBC scalar
		 * functions
		 */
1119
		else if (oldchar == '{')
B
Bruce Momjian 已提交
1120 1121 1122 1123
		{
			char	   *esc;
			char	   *begin = &old_statement[opos + 1];

H
Hiroshi Inoue 已提交
1124
#ifdef MULTIBYTE
B
Bruce Momjian 已提交
1125
			char	   *end = multibyte_strchr(begin, '}');
1126

H
Hiroshi Inoue 已提交
1127
#else
B
Bruce Momjian 已提交
1128
			char	   *end = strchr(begin, '}');
1129

H
Hiroshi Inoue 已提交
1130
#endif
1131

B
Bruce Momjian 已提交
1132
			if (!end)
1133
				continue;
H
Hiroshi Inoue 已提交
1134 1135 1136
			/* procedure calls */
			if (stmt->statement_type == STMT_TYPE_PROCCALL)
			{
1137
				int	lit_call_len = 4;
H
Hiroshi Inoue 已提交
1138
				while (isspace((unsigned char) old_statement[++opos]));
1139
				/* '=?' to accept return values exists ? */
H
Hiroshi Inoue 已提交
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
				if (old_statement[opos] == '?')
				{
					param_number++;
					while (isspace((unsigned char) old_statement[++opos]));
					if (old_statement[opos] != '=')
					{
						opos--;
						continue;
					}
					while (isspace((unsigned char) old_statement[++opos]));
				}
1151 1152
				if (strnicmp(&old_statement[opos], "call", lit_call_len) ||
					!isspace(old_statement[opos + lit_call_len]))
H
Hiroshi Inoue 已提交
1153 1154 1155 1156
				{
					opos--;
					continue;
				}
1157 1158
				opos += lit_call_len; 
				CVT_APPEND_STR("SELECT ");
H
Hiroshi Inoue 已提交
1159 1160 1161
#ifdef MULTIBYTE
				if (multibyte_strchr(&old_statement[opos], '('))
#else
1162
				if (strchr(&old_statement[opos], '('))
H
Hiroshi Inoue 已提交
1163
#endif /* MULTIBYTE */
1164
					proc_no_param = FALSE;
H
Hiroshi Inoue 已提交
1165 1166
				continue; 
			}
1167 1168 1169
			*end = '\0';

			esc = convert_escape(begin);
B
Bruce Momjian 已提交
1170 1171
			if (esc)
			{
1172
				CVT_APPEND_STR(esc);
1173
			}
B
Bruce Momjian 已提交
1174 1175 1176
			else
			{					/* it's not a valid literal so just copy */
				*end = '}';
1177
				CVT_APPEND_CHAR(oldchar);
1178 1179
				continue;
			}
1180

1181
			opos += end - begin + 1;
1182 1183 1184
			*end = '}';
			continue;
		}
H
Hiroshi Inoue 已提交
1185 1186
		/* End of a procedure call */
		else if (oldchar == '}' && stmt->statement_type == STMT_TYPE_PROCCALL)
1187 1188 1189
		{
			if (proc_no_param)
				CVT_APPEND_STR("()");
H
Hiroshi Inoue 已提交
1190
			continue;
1191
		}
1192

B
Bruce Momjian 已提交
1193 1194 1195 1196 1197
		/*
		 * Can you have parameter markers inside of quotes?  I dont think
		 * so. All the queries I've seen expect the driver to put quotes
		 * if needed.
		 */
1198
		else if (oldchar == '?')
B
Bruce Momjian 已提交
1199 1200 1201
			;					/* ok */
		else
		{
1202
			if (oldchar == '\'')
1203
				in_quote = TRUE;
1204
			else if (oldchar == '\\')
1205
				in_escape = TRUE;
1206
			else if (oldchar == '\"')
1207
				in_dquote = TRUE;
H
Hiroshi Inoue 已提交
1208
			else 
1209
			{
H
Hiroshi Inoue 已提交
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
				if (isspace(oldchar))
				{
					if (!prev_token_end)
					{
						prev_token_end = TRUE;
						token_save[token_len] = '\0';
						if (token_len == 4)
						{
							if (check_cursor_ok &&
    				 			   into_table_from(&old_statement[opos - token_len]))
							{
								stmt->statement_type = STMT_TYPE_CREATE;
								SC_no_pre_executable(stmt);
								SC_no_fetchcursor(stmt);
								stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
								memmove(new_statement, new_statement + declare_pos, npos - declare_pos);
								npos -= declare_pos;
							}
1228
#ifdef	DRIVER_CURSOR_IMPLEMENT
H
Hiroshi Inoue 已提交
1229 1230 1231 1232 1233 1234 1235
							else if (search_from_pos && /* where's from clause */
    				 				 strnicmp(token_save, "from", 4) == 0)
							{
								search_from_pos = FALSE;
								npos -= 5;
								CVT_APPEND_STR(", CTID, OID from");
							}
1236
#endif /* DRIVER_CURSOR_IMPLEMENT */
H
Hiroshi Inoue 已提交
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
						}
						if (token_len == 3)
						{
							int	endpos;
							if (check_cursor_ok &&
    				 			    strnicmp(token_save, "for", 3) == 0 &&
    				 			    table_for_update(&old_statement[opos], &endpos))
							{
								SC_no_fetchcursor(stmt);
								stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
								if (prepare_dummy_cursor)
								{
									npos -= 4;
									opos += endpos;
								}
								else
								{
									memmove(new_statement, new_statement + declare_pos, npos - declare_pos);
									npos -= declare_pos;
								}
							}
						}
					}	
				}
				else if (prev_token_end)
				{
					prev_token_end = FALSE;
					token_save[0] = oldchar;
					token_len = 1;
				}
				else
					token_save[token_len++] = oldchar;
			} 
1270
			CVT_APPEND_CHAR(oldchar);
1271 1272 1273
			continue;
		}

1274 1275 1276
		/*
		 * Its a '?' parameter alright
		 */
1277 1278
		param_number++;

B
Bruce Momjian 已提交
1279
		if (param_number >= stmt->parameters_allocated)
1280 1281 1282
		{
			if (stmt->pre_executing)
			{
1283
				CVT_APPEND_STR("NULL");
1284 1285 1286 1287 1288
				stmt->inaccurate_result = TRUE;
				continue;
			}
			else
			{
1289
				CVT_APPEND_CHAR('?');
1290 1291 1292
				continue;
			}
		}
1293

B
Bruce Momjian 已提交
1294 1295 1296
		/* Assign correct buffers based on data at exec param or not */
		if (stmt->parameters[param_number].data_at_exec)
		{
1297 1298 1299
			used = stmt->parameters[param_number].EXEC_used ? *stmt->parameters[param_number].EXEC_used : SQL_NTS;
			buffer = stmt->parameters[param_number].EXEC_buffer;
		}
B
Bruce Momjian 已提交
1300 1301
		else
		{
1302 1303
			
			
1304
			used = stmt->parameters[param_number].used ? *stmt->parameters[param_number].used : SQL_NTS;
1305
			
1306 1307 1308
			buffer = stmt->parameters[param_number].buffer;
		}

B
Bruce Momjian 已提交
1309 1310 1311
		/* Handle NULL parameter data */
		if (used == SQL_NULL_DATA)
		{
1312
			CVT_APPEND_STR("NULL");
1313 1314 1315
			continue;
		}

B
Bruce Momjian 已提交
1316 1317 1318 1319 1320 1321
		/*
		 * If no buffer, and it's not null, then what the hell is it? Just
		 * leave it alone then.
		 */
		if (!buffer)
		{
1322 1323
			if (stmt->pre_executing)
			{
1324
				CVT_APPEND_STR("NULL");
1325 1326 1327 1328 1329
				stmt->inaccurate_result = TRUE;
				continue;
			}
			else
			{
1330
				CVT_APPEND_CHAR('?');
1331 1332
				continue;
			}
1333
		}
1334 1335 1336

		param_ctype = stmt->parameters[param_number].CType;
		param_sqltype = stmt->parameters[param_number].SQLType;
B
Bruce Momjian 已提交
1337

1338
		mylog("copy_statement_with_params: from(fcType)=%d, to(fSqlType)=%d\n", param_ctype, param_sqltype);
B
Bruce Momjian 已提交
1339

B
Bruce Momjian 已提交
1340
		/* replace DEFAULT with something we can use */
B
Bruce Momjian 已提交
1341
		if (param_ctype == SQL_C_DEFAULT)
1342 1343 1344 1345 1346 1347
			param_ctype = sqltype_to_default_ctype(param_sqltype);

		buf = NULL;
		param_string[0] = '\0';
		cbuf[0] = '\0';

B
Bruce Momjian 已提交
1348 1349 1350 1351 1352 1353 1354
		/* Convert input C type to a neutral format */
		switch (param_ctype)
		{
			case SQL_C_BINARY:
			case SQL_C_CHAR:
				buf = buffer;
				break;
1355

B
Bruce Momjian 已提交
1356
			case SQL_C_DOUBLE:
1357
				sprintf(param_string, "%.15g",
B
Bruce Momjian 已提交
1358 1359
						*((SDOUBLE *) buffer));
				break;
1360

B
Bruce Momjian 已提交
1361
			case SQL_C_FLOAT:
1362
				sprintf(param_string, "%.6g",
B
Bruce Momjian 已提交
1363 1364
						*((SFLOAT *) buffer));
				break;
1365

B
Bruce Momjian 已提交
1366 1367 1368 1369 1370
			case SQL_C_SLONG:
			case SQL_C_LONG:
				sprintf(param_string, "%ld",
						*((SDWORD *) buffer));
				break;
1371

B
Bruce Momjian 已提交
1372 1373 1374 1375 1376
			case SQL_C_SSHORT:
			case SQL_C_SHORT:
				sprintf(param_string, "%d",
						*((SWORD *) buffer));
				break;
1377

B
Bruce Momjian 已提交
1378 1379 1380 1381 1382
			case SQL_C_STINYINT:
			case SQL_C_TINYINT:
				sprintf(param_string, "%d",
						*((SCHAR *) buffer));
				break;
1383

B
Bruce Momjian 已提交
1384 1385 1386 1387
			case SQL_C_ULONG:
				sprintf(param_string, "%lu",
						*((UDWORD *) buffer));
				break;
1388

B
Bruce Momjian 已提交
1389 1390 1391 1392
			case SQL_C_USHORT:
				sprintf(param_string, "%u",
						*((UWORD *) buffer));
				break;
1393

B
Bruce Momjian 已提交
1394 1395 1396 1397
			case SQL_C_UTINYINT:
				sprintf(param_string, "%u",
						*((UCHAR *) buffer));
				break;
1398

B
Bruce Momjian 已提交
1399 1400 1401
			case SQL_C_BIT:
				{
					int			i = *((UCHAR *) buffer);
1402

B
Bruce Momjian 已提交
1403 1404 1405
					sprintf(param_string, "%d", i ? 1 : 0);
					break;
				}
1406

B
Bruce Momjian 已提交
1407 1408 1409
			case SQL_C_DATE:
				{
					DATE_STRUCT *ds = (DATE_STRUCT *) buffer;
1410

B
Bruce Momjian 已提交
1411 1412 1413
					st.m = ds->month;
					st.d = ds->day;
					st.y = ds->year;
1414

B
Bruce Momjian 已提交
1415 1416
					break;
				}
1417

B
Bruce Momjian 已提交
1418 1419 1420
			case SQL_C_TIME:
				{
					TIME_STRUCT *ts = (TIME_STRUCT *) buffer;
1421

B
Bruce Momjian 已提交
1422 1423 1424
					st.hh = ts->hour;
					st.mm = ts->minute;
					st.ss = ts->second;
1425

B
Bruce Momjian 已提交
1426 1427
					break;
				}
1428

B
Bruce Momjian 已提交
1429 1430 1431
			case SQL_C_TIMESTAMP:
				{
					TIMESTAMP_STRUCT *tss = (TIMESTAMP_STRUCT *) buffer;
1432

B
Bruce Momjian 已提交
1433 1434 1435 1436 1437 1438
					st.m = tss->month;
					st.d = tss->day;
					st.y = tss->year;
					st.hh = tss->hour;
					st.mm = tss->minute;
					st.ss = tss->second;
1439

B
Bruce Momjian 已提交
1440
					mylog("m=%d,d=%d,y=%d,hh=%d,mm=%d,ss=%d\n", st.m, st.d, st.y, st.hh, st.mm, st.ss);
1441

B
Bruce Momjian 已提交
1442
					break;
1443

B
Bruce Momjian 已提交
1444 1445 1446 1447 1448
				}
			default:
				/* error */
				stmt->errormsg = "Unrecognized C_parameter type in copy_statement_with_parameters";
				stmt->errornumber = STMT_NOT_IMPLEMENTED_ERROR;
1449
				CVT_TERMINATE	/* just in case */
B
Bruce Momjian 已提交
1450 1451 1452
				SC_log_error(func, "", stmt);
				return SQL_ERROR;
		}
1453

B
Bruce Momjian 已提交
1454 1455 1456 1457
		/*
		 * Now that the input data is in a neutral format, convert it to
		 * the desired output format (sqltype)
		 */
1458

B
Bruce Momjian 已提交
1459 1460 1461 1462 1463
		switch (param_sqltype)
		{
			case SQL_CHAR:
			case SQL_VARCHAR:
			case SQL_LONGVARCHAR:
1464

1465
				CVT_APPEND_CHAR('\'');	/* Open Quote */
1466

B
Bruce Momjian 已提交
1467 1468 1469
				/* it was a SQL_C_CHAR */
				if (buf)
				{
1470
					CVT_SPECIAL_CHARS(buf, used);
B
Bruce Momjian 已提交
1471
				}
1472

B
Bruce Momjian 已提交
1473 1474 1475
				/* it was a numeric type */
				else if (param_string[0] != '\0')
				{
1476
					CVT_APPEND_STR(param_string);
B
Bruce Momjian 已提交
1477
				}
1478

B
Bruce Momjian 已提交
1479 1480 1481 1482 1483
				/* it was date,time,timestamp -- use m,d,y,hh,mm,ss */
				else
				{
					sprintf(tmp, "%.4d-%.2d-%.2d %.2d:%.2d:%.2d",
							st.y, st.m, st.d, st.hh, st.mm, st.ss);
1484

1485
					CVT_APPEND_STR(tmp);
B
Bruce Momjian 已提交
1486
				}
1487

1488
				CVT_APPEND_CHAR('\'');	/* Close Quote */
1489

B
Bruce Momjian 已提交
1490
				break;
1491

B
Bruce Momjian 已提交
1492 1493 1494 1495 1496 1497
			case SQL_DATE:
				if (buf)
				{				/* copy char data to time */
					my_strcpy(cbuf, sizeof(cbuf), buf, used);
					parse_datetime(cbuf, &st);
				}
1498

B
Bruce Momjian 已提交
1499
				sprintf(tmp, "'%.4d-%.2d-%.2d'", st.y, st.m, st.d);
1500

1501
				CVT_APPEND_STR(tmp);
B
Bruce Momjian 已提交
1502
				break;
1503

B
Bruce Momjian 已提交
1504 1505 1506 1507 1508 1509
			case SQL_TIME:
				if (buf)
				{				/* copy char data to time */
					my_strcpy(cbuf, sizeof(cbuf), buf, used);
					parse_datetime(cbuf, &st);
				}
1510

B
Bruce Momjian 已提交
1511
				sprintf(tmp, "'%.2d:%.2d:%.2d'", st.hh, st.mm, st.ss);
1512

1513
				CVT_APPEND_STR(tmp);
B
Bruce Momjian 已提交
1514
				break;
1515

B
Bruce Momjian 已提交
1516
			case SQL_TIMESTAMP:
1517

B
Bruce Momjian 已提交
1518 1519 1520 1521 1522
				if (buf)
				{
					my_strcpy(cbuf, sizeof(cbuf), buf, used);
					parse_datetime(cbuf, &st);
				}
1523

B
Bruce Momjian 已提交
1524 1525
				sprintf(tmp, "'%.4d-%.2d-%.2d %.2d:%.2d:%.2d'",
						st.y, st.m, st.d, st.hh, st.mm, st.ss);
1526

1527
				CVT_APPEND_STR(tmp);
1528

B
Bruce Momjian 已提交
1529
				break;
1530

B
Bruce Momjian 已提交
1531 1532 1533
			case SQL_BINARY:
			case SQL_VARBINARY:/* non-ascii characters should be
								 * converted to octal */
1534
				CVT_APPEND_CHAR('\'');	/* Open Quote */
1535

B
Bruce Momjian 已提交
1536
				mylog("SQL_VARBINARY: about to call convert_to_pgbinary, used = %d\n", used);
1537

1538
				CVT_APPEND_BINARY(buf, used);
1539

1540
				CVT_APPEND_CHAR('\'');	/* Close Quote */
B
Byron Nikolaidis 已提交
1541

B
Bruce Momjian 已提交
1542
				break;
1543

B
Bruce Momjian 已提交
1544 1545 1546 1547 1548 1549 1550
			case SQL_LONGVARBINARY:

				if (stmt->parameters[param_number].data_at_exec)
					lobj_oid = stmt->parameters[param_number].lobj_oid;
				else
				{
					/* begin transaction if needed */
1551
					if (!CC_is_in_trans(conn))
B
Bruce Momjian 已提交
1552 1553 1554 1555
					{
						QResultClass *res;
						char		ok;

1556
						res = CC_send_query(conn, "BEGIN", NULL);
B
Bruce Momjian 已提交
1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
						if (!res)
						{
							stmt->errormsg = "Could not begin (in-line) a transaction";
							stmt->errornumber = STMT_EXEC_ERROR;
							SC_log_error(func, "", stmt);
							return SQL_ERROR;
						}
						ok = QR_command_successful(res);
						QR_Destructor(res);
						if (!ok)
						{
							stmt->errormsg = "Could not begin (in-line) a transaction";
							stmt->errornumber = STMT_EXEC_ERROR;
							SC_log_error(func, "", stmt);
							return SQL_ERROR;
						}
1573

1574
						CC_set_in_trans(conn);
B
Bruce Momjian 已提交
1575
					}
B
Byron Nikolaidis 已提交
1576

B
Bruce Momjian 已提交
1577
					/* store the oid */
1578
					lobj_oid = lo_creat(conn, INV_READ | INV_WRITE);
B
Bruce Momjian 已提交
1579 1580
					if (lobj_oid == 0)
					{
B
Byron Nikolaidis 已提交
1581
						stmt->errornumber = STMT_EXEC_ERROR;
B
Bruce Momjian 已提交
1582
						stmt->errormsg = "Couldnt create (in-line) large object.";
B
Byron Nikolaidis 已提交
1583 1584 1585
						SC_log_error(func, "", stmt);
						return SQL_ERROR;
					}
B
Bruce Momjian 已提交
1586 1587

					/* store the fd */
1588
					lobj_fd = lo_open(conn, lobj_oid, INV_WRITE);
B
Bruce Momjian 已提交
1589 1590
					if (lobj_fd < 0)
					{
B
Byron Nikolaidis 已提交
1591
						stmt->errornumber = STMT_EXEC_ERROR;
B
Bruce Momjian 已提交
1592
						stmt->errormsg = "Couldnt open (in-line) large object for writing.";
B
Byron Nikolaidis 已提交
1593 1594 1595 1596
						SC_log_error(func, "", stmt);
						return SQL_ERROR;
					}

1597
					retval = lo_write(conn, lobj_fd, buffer, used);
1598

1599
					lo_close(conn, lobj_fd);
1600

B
Bruce Momjian 已提交
1601
					/* commit transaction if needed */
1602
					if (!ci->drivers.use_declarefetch && CC_is_in_autocommit(conn))
B
Bruce Momjian 已提交
1603 1604 1605
					{
						QResultClass *res;
						char		ok;
1606

1607
						res = CC_send_query(conn, "COMMIT", NULL);
B
Bruce Momjian 已提交
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
						if (!res)
						{
							stmt->errormsg = "Could not commit (in-line) a transaction";
							stmt->errornumber = STMT_EXEC_ERROR;
							SC_log_error(func, "", stmt);
							return SQL_ERROR;
						}
						ok = QR_command_successful(res);
						QR_Destructor(res);
						if (!ok)
						{
							stmt->errormsg = "Could not commit (in-line) a transaction";
							stmt->errornumber = STMT_EXEC_ERROR;
							SC_log_error(func, "", stmt);
							return SQL_ERROR;
						}
1624

1625
						CC_set_no_trans(conn);
B
Bruce Momjian 已提交
1626 1627
					}
				}
1628

B
Bruce Momjian 已提交
1629 1630 1631 1632 1633 1634
				/*
				 * the oid of the large object -- just put that in for the
				 * parameter marker -- the data has already been sent to
				 * the large object
				 */
				sprintf(param_string, "'%d'", lobj_oid);
1635
				CVT_APPEND_STR(param_string);
1636

B
Bruce Momjian 已提交
1637 1638 1639 1640 1641 1642 1643
				break;

				/*
				 * because of no conversion operator for bool and int4,
				 * SQL_BIT
				 */
				/* must be quoted (0 or 1 is ok to use inside the quotes) */
1644

B
Bruce Momjian 已提交
1645 1646 1647 1648
			case SQL_REAL:
				if (buf)
					my_strcpy(param_string, sizeof(param_string), buf, used);
				sprintf(tmp, "'%s'::float4", param_string);
1649
				CVT_APPEND_STR(tmp);
B
Bruce Momjian 已提交
1650 1651 1652 1653 1654 1655
				break;
			case SQL_FLOAT:
			case SQL_DOUBLE:
				if (buf)
					my_strcpy(param_string, sizeof(param_string), buf, used);
				sprintf(tmp, "'%s'::float8", param_string);
1656
				CVT_APPEND_STR(tmp);
B
Bruce Momjian 已提交
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
				break;
			case SQL_NUMERIC:
				if (buf)
				{
					cbuf[0] = '\'';
					my_strcpy(cbuf + 1, sizeof(cbuf) - 12, buf, used);	/* 12 = 1('\'') +
																		 * strlen("'::numeric")
																		 * + 1('\0') */
					strcat(cbuf, "'::numeric");
				}
				else
					sprintf(cbuf, "'%s'::numeric", param_string);
1669
				CVT_APPEND_STR(cbuf);
B
Bruce Momjian 已提交
1670 1671 1672
				break;
			default:			/* a numeric type or SQL_BIT */
				if (param_sqltype == SQL_BIT)
1673
					CVT_APPEND_CHAR('\'');		/* Open Quote */
B
Bruce Momjian 已提交
1674 1675 1676

				if (buf)
				{
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686
					switch (used)
					{
						case SQL_NULL_DATA:
							break;
						case SQL_NTS:
							CVT_APPEND_STR(buf);
							break;
						default:
							CVT_APPEND_DATA(buf, used);
					}
B
Bruce Momjian 已提交
1687 1688
				}
				else
1689
					CVT_APPEND_STR(param_string);
B
Bruce Momjian 已提交
1690 1691

				if (param_sqltype == SQL_BIT)
1692
					CVT_APPEND_CHAR('\'');		/* Close Quote */
B
Bruce Momjian 已提交
1693 1694

				break;
1695
		}
B
Bruce Momjian 已提交
1696
	}							/* end, for */
1697

B
Bruce Momjian 已提交
1698
	/* make sure new_statement is always null-terminated */
1699
	CVT_TERMINATE
1700

1701
	if (conn->DriverToDataSource != NULL)
B
Bruce Momjian 已提交
1702 1703 1704
	{
		int			length = strlen(new_statement);

1705
		conn->DriverToDataSource(conn->translation_option,
B
Bruce Momjian 已提交
1706 1707 1708 1709
									   SQL_CHAR,
									   new_statement, length,
									   new_statement, length, NULL,
									   NULL, 0, NULL);
B
Byron Nikolaidis 已提交
1710 1711
	}

1712
#ifdef	DRIVER_CURSOR_IMPLEMENT
H
Hiroshi Inoue 已提交
1713
	if (search_from_pos)
1714 1715
		stmt->options.scroll_concurrency = SQL_CONCUR_READ_ONLY;
#endif /* DRIVER_CURSOR_IMPLEMENT */
1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
	if (prepare_dummy_cursor && SC_is_pre_executable(stmt))
	{
		char fetchstr[128];	
		sprintf(fetchstr, ";fetch backward in %s;close %s;",
				stmt->cursor_name, stmt->cursor_name);
		if (!CC_is_in_trans(conn))
			strcat(fetchstr, "commit;");
		CVT_APPEND_STR(fetchstr);
		stmt->inaccurate_result = TRUE;
	}

1727 1728 1729
	return SQL_SUCCESS;
}

1730

1731
char *
1732
mapFunction(const char *func)
1733
{
B
Bruce Momjian 已提交
1734
	int			i;
1735 1736

	for (i = 0; mapFuncs[i][0]; i++)
B
Bruce Momjian 已提交
1737
		if (!stricmp(mapFuncs[i][0], func))
1738 1739 1740 1741
			return mapFuncs[i][1];

	return NULL;
}
1742

1743 1744 1745 1746

/*
 * convert_escape()
 *
1747 1748
 * This function returns a pointer to static memory!
 */
1749 1750 1751
char *
convert_escape(char *value)
{
B
Bruce Momjian 已提交
1752 1753
	static char escape[1024];
	char		key[33];
1754

1755
	/* Separate off the key, skipping leading and trailing whitespace */
B
Bruce Momjian 已提交
1756 1757
	while ((*value != '\0') && isspace((unsigned char) *value))
		value++;
1758
	sscanf(value, "%32s", key);
B
Bruce Momjian 已提交
1759 1760 1761 1762
	while ((*value != '\0') && (!isspace((unsigned char) *value)))
		value++;
	while ((*value != '\0') && isspace((unsigned char) *value))
		value++;
1763

1764
	mylog("convert_escape: key='%s', val='%s'\n", key, value);
1765

B
Bruce Momjian 已提交
1766 1767
	if ((strcmp(key, "d") == 0) ||
		(strcmp(key, "t") == 0) ||
1768 1769
		(strcmp(key, "oj") == 0) ||		/* {oj syntax support for 7.1
										 * servers */
B
Bruce Momjian 已提交
1770 1771
		(strcmp(key, "ts") == 0))
	{
1772
		/* Literal; return the escape part as-is */
B
Bruce Momjian 已提交
1773
		strncpy(escape, value, sizeof(escape) - 1);
1774
	}
B
Bruce Momjian 已提交
1775 1776
	else if (strcmp(key, "fn") == 0)
	{
1777

B
Bruce Momjian 已提交
1778 1779 1780
		/*
		 * Function invocation Separate off the func name, skipping
		 * trailing whitespace.
1781
		 */
B
Bruce Momjian 已提交
1782 1783 1784
		char	   *funcEnd = value;
		char		svchar;
		char	   *mapFunc;
1785 1786

		while ((*funcEnd != '\0') && (*funcEnd != '(') &&
B
Bruce Momjian 已提交
1787
			   (!isspace((unsigned char) *funcEnd)))
1788
			funcEnd++;
1789 1790 1791 1792
		svchar = *funcEnd;
		*funcEnd = '\0';
		sscanf(value, "%32s", key);
		*funcEnd = svchar;
1793 1794
		while ((*funcEnd != '\0') && isspace((unsigned char) *funcEnd))
			funcEnd++;
1795

B
Bruce Momjian 已提交
1796 1797 1798
		/*
		 * We expect left parenthesis here, else return fn body as-is
		 * since it is one of those "function constants".
1799
		 */
B
Bruce Momjian 已提交
1800 1801 1802
		if (*funcEnd != '(')
		{
			strncpy(escape, value, sizeof(escape) - 1);
1803
			return escape;
1804
		}
1805
		mapFunc = mapFunction(key);
B
Bruce Momjian 已提交
1806 1807 1808 1809

		/*
		 * We could have mapFunction() return key if not in table... -
		 * thomas 2000-04-03
1810
		 */
B
Bruce Momjian 已提交
1811 1812
		if (mapFunc == NULL)
		{
1813
			/* If unrecognized function name, return fn body as-is */
B
Bruce Momjian 已提交
1814
			strncpy(escape, value, sizeof(escape) - 1);
1815 1816 1817 1818
			return escape;
		}
		/* copy mapped name and remaining input string */
		strcpy(escape, mapFunc);
B
Bruce Momjian 已提交
1819
		strncat(escape, funcEnd, sizeof(escape) - 1 - strlen(mapFunc));
1820
	}
B
Bruce Momjian 已提交
1821 1822
	else
	{
1823
		/* Bogus key, leave untranslated */
1824 1825 1826 1827 1828 1829 1830 1831 1832 1833
		return NULL;
	}

	return escape;
}


char *
convert_money(char *s)
{
B
Bruce Momjian 已提交
1834 1835
	size_t		i = 0,
				out = 0;
1836

B
Bruce Momjian 已提交
1837 1838
	for (i = 0; i < strlen(s); i++)
	{
1839
		if (s[i] == '$' || s[i] == ',' || s[i] == ')')
B
Bruce Momjian 已提交
1840
			;					/* skip these characters */
1841 1842 1843 1844 1845 1846 1847 1848 1849 1850
		else if (s[i] == '(')
			s[out++] = '-';
		else
			s[out++] = s[i];
	}
	s[out] = '\0';
	return s;
}


1851 1852 1853 1854
/*
 *	This function parses a character string for date/time info and fills in SIMPLE_TIME
 *	It does not zero out SIMPLE_TIME in case it is desired to initialize it with a value
 */
1855
char
B
Bruce Momjian 已提交
1856
parse_datetime(char *buf, SIMPLE_TIME *st)
1857
{
B
Bruce Momjian 已提交
1858 1859 1860 1861 1862 1863 1864 1865
	int			y,
				m,
				d,
				hh,
				mm,
				ss;
	int			nf;

1866 1867
	y = m = d = hh = mm = ss = 0;

1868 1869 1870 1871 1872 1873 1874 1875
	/* escape sequence ? */
	if (buf[0] == '{')
	{
		while (*(++buf) && *buf != '\'');
		if (!(*buf))
			return FALSE;
		buf++;
	}
B
Bruce Momjian 已提交
1876 1877
	if (buf[4] == '-')			/* year first */
		nf = sscanf(buf, "%4d-%2d-%2d %2d:%2d:%2d", &y, &m, &d, &hh, &mm, &ss);
1878
	else
B
Bruce Momjian 已提交
1879
		nf = sscanf(buf, "%2d-%2d-%4d %2d:%2d:%2d", &m, &d, &y, &hh, &mm, &ss);
1880

B
Bruce Momjian 已提交
1881 1882
	if (nf == 5 || nf == 6)
	{
1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
		st->y = y;
		st->m = m;
		st->d = d;
		st->hh = hh;
		st->mm = mm;
		st->ss = ss;

		return TRUE;
	}

B
Bruce Momjian 已提交
1893
	if (buf[4] == '-')			/* year first */
1894 1895 1896 1897
		nf = sscanf(buf, "%4d-%2d-%2d", &y, &m, &d);
	else
		nf = sscanf(buf, "%2d-%2d-%4d", &m, &d, &y);

B
Bruce Momjian 已提交
1898 1899
	if (nf == 3)
	{
1900 1901 1902 1903 1904 1905 1906 1907
		st->y = y;
		st->m = m;
		st->d = d;

		return TRUE;
	}

	nf = sscanf(buf, "%2d:%2d:%2d", &hh, &mm, &ss);
B
Bruce Momjian 已提交
1908 1909
	if (nf == 2 || nf == 3)
	{
1910 1911 1912 1913 1914 1915 1916 1917 1918
		st->hh = hh;
		st->mm = mm;
		st->ss = ss;

		return TRUE;
	}

	return FALSE;
}
1919

1920

1921
/*	Change linefeed to carriage-return/linefeed */
1922
int
1923
convert_linefeeds(const char *si, char *dst, size_t max, BOOL *changed)
1924
{
B
Bruce Momjian 已提交
1925 1926
	size_t		i = 0,
				out = 0;
1927

1928 1929 1930 1931
	if (max == 0)
		max = 0xffffffff;
	*changed = FALSE;
	for (i = 0; si[i] && out < max - 1; i++)
B
Bruce Momjian 已提交
1932 1933 1934 1935 1936 1937
	{
		if (si[i] == '\n')
		{
			/* Only add the carriage-return if needed */
			if (i > 0 && si[i - 1] == '\r')
			{
1938 1939 1940 1941
				if (dst)
					dst[out++] = si[i];
				else
					out++;
B
Byron Nikolaidis 已提交
1942 1943
				continue;
			}
1944
			*changed = TRUE;
B
Byron Nikolaidis 已提交
1945

1946 1947 1948 1949 1950 1951 1952
			if (dst)
			{
				dst[out++] = '\r';
				dst[out++] = '\n';
			}
			else
				out += 2;
1953 1954
		}
		else
1955 1956 1957 1958 1959 1960
		{
			if (dst)
				dst[out++] = si[i];
			else
				out++;
		}
1961
	}
1962 1963
	if (dst)
		dst[out] = '\0';
1964
	return out;
1965 1966
}

1967 1968 1969 1970 1971

/*
 *	Change carriage-return/linefeed to just linefeed
 *	Plus, escape any special characters.
 */
1972
int
1973
convert_special_chars(const char *si, char *dst, int used)
1974
{
B
Bruce Momjian 已提交
1975 1976 1977
	size_t		i = 0,
				out = 0,
				max;
1978
	char	   *p = NULL;
1979 1980 1981 1982 1983 1984


	if (used == SQL_NTS)
		max = strlen(si);
	else
		max = used;
1985 1986 1987 1988 1989
	if (dst)
	{
		p = dst;
		p[0] = '\0';
	}
H
Hiroshi Inoue 已提交
1990 1991 1992
#ifdef MULTIBYTE
	multibyte_init();
#endif
1993

B
Bruce Momjian 已提交
1994 1995
	for (i = 0; i < max; i++)
	{
1996 1997 1998 1999 2000 2001 2002 2003 2004
#ifdef MULTIBYTE
		if (multibyte_char_check(si[i]) != 0)
		{
			if (p)
				p[out] = si[i];
			out++;
			continue;
		}
#endif
2005
		if (si[i] == '\r' && si[i + 1] == '\n')
2006
			continue;
B
Byron Nikolaidis 已提交
2007
		else if (si[i] == '\'' || si[i] == '\\')
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
		{
			if (p)
				p[out++] = '\\';
			else
				out++;
		}
		if (p)
			p[out++] = si[i];
		else
			out++;
2018
	}
2019 2020 2021
	if (p)
		p[out] = '\0';
	return out;
2022 2023
}

2024

2025 2026
/*	!!! Need to implement this function !!!  */
int
2027
convert_pgbinary_to_char(const char *value, char *rgbValue, int cbValueMax)
2028
{
2029 2030 2031
	mylog("convert_pgbinary_to_char: value = '%s'\n", value);

	strncpy_null(rgbValue, value, cbValueMax);
2032 2033 2034
	return 0;
}

2035

2036
unsigned int
2037
conv_from_octal(const unsigned char *s)
2038
{
B
Bruce Momjian 已提交
2039 2040
	int			i,
				y = 0;
2041

B
Bruce Momjian 已提交
2042 2043
	for (i = 1; i <= 3; i++)
		y += (s[i] - 48) * (int) pow(8, 3 - i);
2044 2045

	return y;
2046

2047 2048
}

2049

B
Byron Nikolaidis 已提交
2050
unsigned int
2051
conv_from_hex(const unsigned char *s)
B
Byron Nikolaidis 已提交
2052
{
B
Bruce Momjian 已提交
2053 2054 2055
	int			i,
				y = 0,
				val;
2056

B
Bruce Momjian 已提交
2057 2058 2059 2060 2061 2062 2063 2064
	for (i = 1; i <= 2; i++)
	{
		if (s[i] >= 'a' && s[i] <= 'f')
			val = s[i] - 'a' + 10;
		else if (s[i] >= 'A' && s[i] <= 'F')
			val = s[i] - 'A' + 10;
		else
			val = s[i] - '0';
B
Byron Nikolaidis 已提交
2065

B
Bruce Momjian 已提交
2066
		y += val * (int) pow(16, 2 - i);
B
Byron Nikolaidis 已提交
2067 2068 2069 2070 2071
	}

	return y;
}

2072

B
Bruce Momjian 已提交
2073
/*	convert octal escapes to bytes */
2074
int
2075
convert_from_pgbinary(const unsigned char *value, unsigned char *rgbValue, int cbValueMax)
2076
{
2077
	size_t		i, ilen = strlen(value);
B
Bruce Momjian 已提交
2078
	int			o = 0;
2079

B
Bruce Momjian 已提交
2080

2081
	for (i = 0; i < ilen;)
B
Bruce Momjian 已提交
2082 2083 2084
	{
		if (value[i] == '\\')
		{
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094
			if (value[i + 1] == '\\')
			{
				rgbValue[o] = value[i];
				i += 2;
			}
			else
			{
				rgbValue[o] = conv_from_octal(&value[i]);
				i += 4;
			}
2095
		}
B
Bruce Momjian 已提交
2096
		else
2097 2098 2099 2100
			rgbValue[o] = value[i++];
		mylog("convert_from_pgbinary: i=%d, rgbValue[%d] = %d, %c\n", i, o, rgbValue[o], rgbValue[o]);
		o++;
	}
2101

B
Bruce Momjian 已提交
2102
	rgbValue[o] = '\0';			/* extra protection */
2103

2104 2105 2106 2107 2108 2109 2110
	return o;
}


char *
conv_to_octal(unsigned char val)
{
B
Bruce Momjian 已提交
2111 2112
	int			i;
	static char x[6];
2113 2114 2115 2116 2117

	x[0] = '\\';
	x[1] = '\\';
	x[5] = '\0';

B
Bruce Momjian 已提交
2118 2119
	for (i = 4; i > 1; i--)
	{
2120 2121 2122 2123 2124 2125 2126
		x[i] = (val & 7) + 48;
		val >>= 3;
	}

	return x;
}

2127

B
Bruce Momjian 已提交
2128
/*	convert non-ascii bytes to octal escape sequences */
2129
int
2130
convert_to_pgbinary(const unsigned char *in, char *out, int len)
2131
{
B
Bruce Momjian 已提交
2132 2133
	int			i,
				o = 0;
2134

B
Bruce Momjian 已提交
2135 2136
	for (i = 0; i < len; i++)
	{
2137
		mylog("convert_to_pgbinary: in[%d] = %d, %c\n", i, in[i], in[i]);
B
Bruce Momjian 已提交
2138
		if (isalnum(in[i]) || in[i] == ' ')
2139
			out[o++] = in[i];
B
Bruce Momjian 已提交
2140 2141 2142
		else
		{
			strcpy(&out[o], conv_to_octal(in[i]));
2143 2144 2145 2146 2147 2148 2149 2150 2151 2152
			o += 5;
		}
	}

	mylog("convert_to_pgbinary: returning %d, out='%.*s'\n", o, o, out);

	return o;
}


B
Byron Nikolaidis 已提交
2153
void
2154
encode(const char *in, char *out)
B
Byron Nikolaidis 已提交
2155
{
2156
	unsigned int i, ilen = strlen(in),
B
Bruce Momjian 已提交
2157
				o = 0;
B
Byron Nikolaidis 已提交
2158

2159
	for (i = 0; i < ilen; i++)
B
Bruce Momjian 已提交
2160 2161 2162
	{
		if (in[i] == '+')
		{
B
Byron Nikolaidis 已提交
2163 2164 2165
			sprintf(&out[o], "%%2B");
			o += 3;
		}
B
Bruce Momjian 已提交
2166
		else if (isspace((unsigned char) in[i]))
B
Byron Nikolaidis 已提交
2167
			out[o++] = '+';
B
Bruce Momjian 已提交
2168 2169
		else if (!isalnum((unsigned char) in[i]))
		{
2170
			sprintf(&out[o], "%%%02x", (unsigned char) in[i]);
B
Byron Nikolaidis 已提交
2171 2172 2173 2174 2175 2176 2177 2178 2179 2180
			o += 3;
		}
		else
			out[o++] = in[i];
	}
	out[o++] = '\0';
}


void
2181
decode(const char *in, char *out)
B
Byron Nikolaidis 已提交
2182
{
2183
	unsigned int i, ilen = strlen(in),
B
Bruce Momjian 已提交
2184
				o = 0;
B
Byron Nikolaidis 已提交
2185

2186
	for (i = 0; i < ilen; i++)
B
Bruce Momjian 已提交
2187
	{
B
Byron Nikolaidis 已提交
2188 2189
		if (in[i] == '+')
			out[o++] = ' ';
B
Bruce Momjian 已提交
2190 2191
		else if (in[i] == '%')
		{
B
Byron Nikolaidis 已提交
2192
			sprintf(&out[o++], "%c", conv_from_hex(&in[i]));
B
Bruce Momjian 已提交
2193
			i += 2;
B
Byron Nikolaidis 已提交
2194 2195 2196 2197 2198 2199 2200 2201
		}
		else
			out[o++] = in[i];
	}
	out[o++] = '\0';
}


2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217
/*-------
 *	1. get oid (from 'value')
 *	2. open the large object
 *	3. read from the large object (handle multiple GetData)
 *	4. close when read less than requested?  -OR-
 *		lseek/read each time
 *		handle case where application receives truncated and
 *		decides not to continue reading.
 *
 *	CURRENTLY, ONLY LONGVARBINARY is handled, since that is the only
 *	data type currently mapped to a PG_TYPE_LO.  But, if any other types
 *	are desired to map to a large object (PG_TYPE_LO), then that would
 *	need to be handled here.  For example, LONGVARCHAR could possibly be
 *	mapped to PG_TYPE_LO someday, instead of PG_TYPE_TEXT as it is now.
 *-------
 */
2218
int
H
Hiroshi Inoue 已提交
2219
convert_lo(StatementClass *stmt, const void *value, Int2 fCType, PTR rgbValue,
B
Bruce Momjian 已提交
2220
		   SDWORD cbValueMax, SDWORD *pcbValue)
2221
{
B
Bruce Momjian 已提交
2222 2223 2224 2225
	Oid			oid;
	int			retval,
				result,
				left = -1;
T
Tom Lane 已提交
2226
	BindInfoClass *bindInfo = NULL;
2227 2228
	ConnectionClass	*conn = SC_get_conn(stmt);
	ConnInfo	*ci = &(conn->connInfo);
2229

2230
	/* If using SQLGetData, then current_col will be set */
B
Bruce Momjian 已提交
2231 2232
	if (stmt->current_col >= 0)
	{
2233 2234 2235
		bindInfo = &stmt->bindings[stmt->current_col];
		left = bindInfo->data_left;
	}
2236

B
Bruce Momjian 已提交
2237 2238 2239 2240
	/*
	 * if this is the first call for this column, open the large object
	 * for reading
	 */
2241

B
Bruce Momjian 已提交
2242 2243
	if (!bindInfo || bindInfo->data_left == -1)
	{
B
Byron Nikolaidis 已提交
2244
		/* begin transaction if needed */
2245
		if (!CC_is_in_trans(conn))
B
Bruce Momjian 已提交
2246
		{
B
Byron Nikolaidis 已提交
2247
			QResultClass *res;
B
Bruce Momjian 已提交
2248
			char		ok;
B
Byron Nikolaidis 已提交
2249

2250
			res = CC_send_query(conn, "BEGIN", NULL);
B
Bruce Momjian 已提交
2251 2252
			if (!res)
			{
B
Byron Nikolaidis 已提交
2253 2254 2255 2256 2257 2258
				stmt->errormsg = "Could not begin (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}
			ok = QR_command_successful(res);
			QR_Destructor(res);
B
Bruce Momjian 已提交
2259 2260
			if (!ok)
			{
B
Byron Nikolaidis 已提交
2261 2262 2263 2264 2265
				stmt->errormsg = "Could not begin (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}

2266
			CC_set_in_trans(conn);
B
Byron Nikolaidis 已提交
2267 2268
		}

2269
		oid = atoi(value);
2270
		stmt->lobj_fd = lo_open(conn, oid, INV_READ);
B
Bruce Momjian 已提交
2271 2272
		if (stmt->lobj_fd < 0)
		{
2273
			stmt->errornumber = STMT_EXEC_ERROR;
2274
			stmt->errormsg = "Couldnt open large object for reading.";
2275 2276
			return COPY_GENERAL_ERROR;
		}
2277

B
Bruce Momjian 已提交
2278
		/* Get the size */
2279
		retval = lo_lseek(conn, stmt->lobj_fd, 0L, SEEK_END);
B
Bruce Momjian 已提交
2280 2281
		if (retval >= 0)
		{
2282
			left = lo_tell(conn, stmt->lobj_fd);
2283 2284 2285
			if (bindInfo)
				bindInfo->data_left = left;

B
Bruce Momjian 已提交
2286
			/* return to beginning */
2287
			lo_lseek(conn, stmt->lobj_fd, 0L, SEEK_SET);
2288 2289 2290
		}
	}

B
Bruce Momjian 已提交
2291
	if (left == 0)
2292
		return COPY_NO_DATA_FOUND;
2293

B
Bruce Momjian 已提交
2294 2295
	if (stmt->lobj_fd < 0)
	{
2296 2297 2298 2299
		stmt->errornumber = STMT_EXEC_ERROR;
		stmt->errormsg = "Large object FD undefined for multiple read.";
		return COPY_GENERAL_ERROR;
	}
2300

2301
	retval = lo_read(conn, stmt->lobj_fd, (char *) rgbValue, cbValueMax);
B
Bruce Momjian 已提交
2302 2303
	if (retval < 0)
	{
2304
		lo_close(conn, stmt->lobj_fd);
B
Byron Nikolaidis 已提交
2305 2306

		/* commit transaction if needed */
2307
		if (!ci->drivers.use_declarefetch && CC_is_in_autocommit(conn))
B
Bruce Momjian 已提交
2308
		{
B
Byron Nikolaidis 已提交
2309
			QResultClass *res;
B
Bruce Momjian 已提交
2310
			char		ok;
B
Byron Nikolaidis 已提交
2311

2312
			res = CC_send_query(conn, "COMMIT", NULL);
B
Bruce Momjian 已提交
2313 2314
			if (!res)
			{
B
Byron Nikolaidis 已提交
2315 2316 2317 2318 2319 2320
				stmt->errormsg = "Could not commit (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}
			ok = QR_command_successful(res);
			QR_Destructor(res);
B
Bruce Momjian 已提交
2321 2322
			if (!ok)
			{
B
Byron Nikolaidis 已提交
2323 2324 2325 2326 2327
				stmt->errormsg = "Could not commit (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}

2328
			CC_set_no_trans(conn);
B
Byron Nikolaidis 已提交
2329 2330
		}

2331 2332 2333 2334 2335 2336 2337
		stmt->lobj_fd = -1;

		stmt->errornumber = STMT_EXEC_ERROR;
		stmt->errormsg = "Error reading from large object.";
		return COPY_GENERAL_ERROR;
	}

2338 2339 2340 2341 2342 2343 2344
	if (retval < left)
		result = COPY_RESULT_TRUNCATED;
	else
		result = COPY_OK;

	if (pcbValue)
		*pcbValue = left < 0 ? SQL_NO_TOTAL : left;
2345

B
Bruce Momjian 已提交
2346
	if (bindInfo && bindInfo->data_left > 0)
2347
		bindInfo->data_left -= retval;
2348

B
Bruce Momjian 已提交
2349 2350
	if (!bindInfo || bindInfo->data_left == 0)
	{
2351
		lo_close(conn, stmt->lobj_fd);
B
Byron Nikolaidis 已提交
2352 2353

		/* commit transaction if needed */
2354
		if (!ci->drivers.use_declarefetch && CC_is_in_autocommit(conn))
B
Bruce Momjian 已提交
2355
		{
B
Byron Nikolaidis 已提交
2356
			QResultClass *res;
B
Bruce Momjian 已提交
2357
			char		ok;
B
Byron Nikolaidis 已提交
2358

2359
			res = CC_send_query(conn, "COMMIT", NULL);
B
Bruce Momjian 已提交
2360 2361
			if (!res)
			{
B
Byron Nikolaidis 已提交
2362 2363 2364 2365 2366 2367
				stmt->errormsg = "Could not commit (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}
			ok = QR_command_successful(res);
			QR_Destructor(res);
B
Bruce Momjian 已提交
2368 2369
			if (!ok)
			{
B
Byron Nikolaidis 已提交
2370 2371 2372 2373 2374
				stmt->errormsg = "Could not commit (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}

2375
			CC_set_no_trans(conn);
B
Byron Nikolaidis 已提交
2376 2377
		}

B
Bruce Momjian 已提交
2378
		stmt->lobj_fd = -1;		/* prevent further reading */
2379
	}
2380 2381

	return result;
2382
}