convert.c 38.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

/* Module:         convert.c
 *
 * 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.
 *
 * Classes:        n/a
 *
 * API functions:  none
 *
 * Comments:       See "notice.txt" for copyright and license information.
 *
 */
18

B
Byron Nikolaidis 已提交
19
#ifdef HAVE_CONFIG_H
20
#include "config.h"
B
Byron Nikolaidis 已提交
21 22
#endif

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

B
 
Byron Nikolaidis 已提交
27 28
#include "psqlodbc.h"

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 <time.h>
40 41 42
#include <math.h>
#include "convert.h"
#include "statement.h"
B
Byron Nikolaidis 已提交
43
#include "qresult.h"
44 45
#include "bind.h"
#include "pgtypes.h"
46 47 48
#include "lobj.h"
#include "connection.h"

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

59 60
extern GLOBAL_VALUES globals;

61 62 63 64 65 66 67
/*	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
 * - thomas 2000-04-03
 */
char *mapFuncs[][2] = {
B
Bruce Momjian 已提交
68
//	{ "ASCII",       "ascii"      },
69 70
	{ "CHAR",        "ichar"      },
	{ "CONCAT",      "textcat"    },
B
Bruce Momjian 已提交
71 72
//	{ "DIFFERENCE",  "difference" },
//	{ "INSERT",      "insert"     },
73 74 75 76
	{ "LCASE",       "lower"      },
	{ "LEFT",        "ltrunc"     },
	{ "LOCATE",      "strpos"     },
	{ "LENGTH",      "char_length"},
B
Bruce Momjian 已提交
77
//	{ "LTRIM",       "ltrim"      },
78
	{ "RIGHT",       "rtrunc"     },
B
Bruce Momjian 已提交
79 80 81 82
//	{ "REPEAT",      "repeat"     },
//	{ "REPLACE",     "replace"    },
//	{ "RTRIM",       "rtrim"      },
//	{ "SOUNDEX",     "soundex"    },
83 84 85
	{ "SUBSTRING",   "substr"     },
	{ "UCASE",       "upper"      },

B
Bruce Momjian 已提交
86 87 88 89 90
//	{ "ABS",         "abs"        },
//	{ "ACOS",        "acos"       },
//	{ "ASIN",        "asin"       },
//	{ "ATAN",        "atan"       },
//	{ "ATAN2",       "atan2"      },
91
	{ "CEILING",     "ceil"       },
B
Bruce Momjian 已提交
92 93 94 95 96
//	{ "COS",         "cos"        },
//	{ "COT",         "cot"        },
//	{ "DEGREES",     "degrees"    },
//	{ "EXP",         "exp"        },
//	{ "FLOOR",       "floor"      },
97 98
	{ "LOG",         "ln"         },
	{ "LOG10",       "log"        },
B
Bruce Momjian 已提交
99 100
//	{ "MOD",         "mod"        },
//	{ "PI",          "pi"         },
101
	{ "POWER",       "pow"        },
B
Bruce Momjian 已提交
102
//	{ "RADIANS",     "radians"    },
103
	{ "RAND",        "random"     },
B
Bruce Momjian 已提交
104 105 106 107 108
//	{ "ROUND",       "round"      },
//	{ "SIGN",        "sign"       },
//	{ "SIN",         "sin"        },
//	{ "SQRT",        "sqrt"       },
//	{ "TAN",         "tan"        },
109
	{ "TRUNCATE",    "trunc"      },
110

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

//	{ "DATABASE",    "database"   },
128 129 130
	{ "IFNULL",      "coalesce"   },
	{ "USER",        "odbc_user"  },
	{    0,             0         }
131 132
};

133 134 135 136
char *mapFunction(char *func);
unsigned int conv_from_octal(unsigned char *s);
unsigned int conv_from_hex(unsigned char *s);
char *conv_to_octal(unsigned char val);
137 138 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		
******************************************************************************/


/*	This is called by SQLFetch() */
int
157
copy_and_convert_field_bindinfo(StatementClass *stmt, Int4 field_type, void *value, int col)
158
{
159 160 161
BindInfoClass *bic = &(stmt->bindings[col]);

	return copy_and_convert_field(stmt, field_type, value, (Int2)bic->returntype, (PTR)bic->buffer,
162
                                (SDWORD)bic->buflen, (SDWORD *)bic->used);
163 164 165 166
}

/*	This is called by SQLGetData() */
int
167
copy_and_convert_field(StatementClass *stmt, Int4 field_type, void *value, Int2 fCType, 
168
					   PTR rgbValue, SDWORD cbValueMax, SDWORD *pcbValue)
169
{
170 171 172 173 174 175 176 177 178 179
	Int4 len = 0, copy_len = 0;
	SIMPLE_TIME st;
	time_t t = time(NULL);
	struct tm *tim;
	int pcbValueOffset, rgbValueOffset;
	char *rgbValueBindRow, *ptr;
	int bind_row = stmt->bind_row;
	int bind_size = stmt->options.bind_size;
	int result = COPY_OK;
	char tempBuf[TEXT_FIELD_SIZE+5];
180 181 182 183 184 185 186 187 188 189 190 191 192 193

/*	rgbValueOffset is *ONLY* for character and binary data */
/*	pcbValueOffset is for computing any pcbValue location */

	if (bind_size > 0) {

		pcbValueOffset = rgbValueOffset = (bind_size * bind_row);
	}
	else {

		pcbValueOffset = bind_row * sizeof(SDWORD);
		rgbValueOffset = bind_row * cbValueMax;

	}
194 195 196 197 198 199 200 201 202

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

	/*	Initialize current date */
	tim = localtime(&t);
	st.m = tim->tm_mon + 1;
	st.d = tim->tm_mday;
	st.y = tim->tm_year + 1900;

203
	mylog("copy_and_convert: field_type = %d, fctype = %d, value = '%s', cbValueMax=%d\n", field_type, fCType,  (value==NULL)?"<NULL>":value, cbValueMax);
204

B
Byron Nikolaidis 已提交
205 206 207 208
	if ( ! value) {
        /* handle a null just by returning SQL_NULL_DATA in pcbValue, */
        /* and doing nothing to the buffer.                           */
        if(pcbValue) {
209
			*(SDWORD *) ((char *) pcbValue + pcbValueOffset) = SQL_NULL_DATA;
B
Byron Nikolaidis 已提交
210 211 212 213
        }
		return COPY_OK;
	}

214

B
Byron Nikolaidis 已提交
215 216 217 218 219 220 221 222 223
	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);
	}

224

B
Byron Nikolaidis 已提交
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
	/********************************************************************
		First convert any specific postgres types into more
		useable data.

		NOTE: Conversions from PG char/varchar of a date/time/timestamp 
		value to SQL_C_DATE,SQL_C_TIME, SQL_C_TIMESTAMP not supported 
	*********************************************************************/
	switch(field_type) {
	/*  $$$ need to add parsing for date/time/timestamp strings in PG_TYPE_CHAR,VARCHAR $$$ */
	case PG_TYPE_DATE:
		sscanf(value, "%4d-%2d-%2d", &st.y, &st.m, &st.d);
		break;

	case PG_TYPE_TIME:
		sscanf(value, "%2d:%2d:%2d", &st.hh, &st.mm, &st.ss);
		break;

	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 {	/* The timestamp is invalid so set something conspicuous, like the epoch */
			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;
		if (s[0] == 'T' || s[0] == 't') 
			s[0] = '1';
		else 
			s[0] = '0';
		}
		break;

	/* This is for internal use by SQLStatistics() */
270
	case PG_TYPE_INT2VECTOR: {
271 272
		int nval, i;
		char *vp;
B
Bruce Momjian 已提交
273
		// this is an array of eight integers
274
		short *short_array = (short *) ( (char *) rgbValue + rgbValueOffset);
B
Byron Nikolaidis 已提交
275 276

		len = 16;
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
		vp = value;
		nval = 0;
		for (i = 0; i < 8; i++)
		{
			if (sscanf(vp, "%hd", &short_array[i]) != 1)
				break;

			nval++;

			/* skip the current token */
			while ((*vp != '\0') && (! isspace(*vp))) vp++;
			/* and skip the space to the next token */
			while ((*vp != '\0') && (isspace(*vp))) vp++;
			if (*vp == '\0')
				break;
		}

		for (i = nval; i < 8; i++)
		{
			short_array[i] = 0;
		}
B
Byron Nikolaidis 已提交
298

299
#if 0
B
Byron Nikolaidis 已提交
300 301 302 303 304 305 306 307 308
		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]);
309
#endif
B
Byron Nikolaidis 已提交
310 311 312

		/*  There is no corresponding fCType for this. */
		if(pcbValue)
313
			*(SDWORD *) ((char *) pcbValue + pcbValueOffset) = len;
B
Byron Nikolaidis 已提交
314 315

		return COPY_OK;		/* dont go any further or the data will be trashed */
316
	}
B
Byron Nikolaidis 已提交
317 318 319 320

	/* This is a large object OID, which is used to store LONGVARBINARY objects. */
	case PG_TYPE_LO:

321
		return convert_lo( stmt, value, fCType, ((char *) rgbValue + rgbValueOffset), cbValueMax, (SDWORD *) ((char *) pcbValue + pcbValueOffset));
B
Byron Nikolaidis 已提交
322 323 324 325

	default:

		if (field_type == stmt->hdbc->lobj_type)	/* hack until permanent type available */
326
			return convert_lo( stmt, value, fCType, ((char *) rgbValue + rgbValueOffset), cbValueMax, (SDWORD *) ((char *) pcbValue + pcbValueOffset));
B
Byron Nikolaidis 已提交
327 328 329 330 331 332 333 334 335
	}

	/*  Change default into something useable */
	if (fCType == SQL_C_DEFAULT) {
		fCType = pgtype_to_ctype(stmt, field_type);

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

336

337 338
	rgbValueBindRow = (char *) rgbValue + rgbValueOffset;

B
Byron Nikolaidis 已提交
339 340
    if(fCType == SQL_C_CHAR) {

341

B
Byron Nikolaidis 已提交
342 343
		/*	Special character formatting as required */
		/*	These really should return error if cbValueMax is not big enough. */
344 345
		switch(field_type) {
		case PG_TYPE_DATE:
B
Byron Nikolaidis 已提交
346 347
		    len = 10;
			if (cbValueMax > len)
348
				sprintf(rgbValueBindRow, "%.4d-%.2d-%.2d", st.y, st.m, st.d);
349 350 351
			break;

		case PG_TYPE_TIME:
B
Byron Nikolaidis 已提交
352 353
			len = 8;
			if (cbValueMax > len)
354
				sprintf(rgbValueBindRow, "%.2d:%.2d:%.2d", st.hh, st.mm, st.ss);
355 356 357
			break;

		case PG_TYPE_ABSTIME:
358
		case PG_TYPE_DATETIME:
B
Byron Nikolaidis 已提交
359 360 361
		case PG_TYPE_TIMESTAMP:
			len = 19;
			if (cbValueMax > len)
362
				sprintf(rgbValueBindRow, "%.4d-%.2d-%.2d %.2d:%.2d:%.2d", 
B
Byron Nikolaidis 已提交
363
					st.y, st.m, st.d, st.hh, st.mm, st.ss);
364 365
			break;

B
Byron Nikolaidis 已提交
366 367 368
		case PG_TYPE_BOOL:
			len = 1;
			if (cbValueMax > len) {
369 370
				strcpy(rgbValueBindRow, value);
				mylog("PG_TYPE_BOOL: rgbValueBindRow = '%s'\n", rgbValueBindRow);
371 372 373
			}
			break;

B
Byron Nikolaidis 已提交
374 375 376 377 378
		/*	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.
379

B
Byron Nikolaidis 已提交
380 381 382 383
			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.
		*/
B
Bruce Momjian 已提交
384
		case PG_TYPE_BYTEA:		// convert binary data to hex strings (i.e, 255 = "FF")
385 386 387
			len = convert_pgbinary_to_char(value, rgbValueBindRow, cbValueMax);

			/***** THIS IS NOT PROPERLY IMPLEMENTED *****/
B
Byron Nikolaidis 已提交
388
			break;
389

B
Byron Nikolaidis 已提交
390 391
		default:
			/*	convert linefeeds to carriage-return/linefeed */
392 393 394 395 396 397 398 399 400 401 402 403 404
			len = convert_linefeeds(value, tempBuf, sizeof(tempBuf));
			ptr = tempBuf;

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

			if (stmt->current_col >= 0) {
				if (stmt->bindings[stmt->current_col].data_left == 0)
					return COPY_NO_DATA_FOUND;
				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;
				}
				else
B
Byron Nikolaidis 已提交
405
					stmt->bindings[stmt->current_col].data_left = strlen(ptr);
406 407 408 409 410
			}

			if (cbValueMax > 0) {
				
				copy_len = (len >= cbValueMax) ? cbValueMax -1 : len;
411

412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
				/*	Copy the data */
				strncpy_null(rgbValueBindRow, ptr, copy_len + 1);

				/*	Adjust data_left for next time */
				if (stmt->current_col >= 0) {
					stmt->bindings[stmt->current_col].data_left -= copy_len;
				}
			}

			/*	Finally, check for truncation so that proper status can be returned */
			if ( len >= cbValueMax)
				result = COPY_RESULT_TRUNCATED;


			mylog("    SQL_C_CHAR, default: len = %d, cbValueMax = %d, rgbValueBindRow = '%s'\n", len, cbValueMax, rgbValueBindRow);
B
Byron Nikolaidis 已提交
427 428
			break;
		}
429 430


B
Byron Nikolaidis 已提交
431
    } else {
432

B
Bruce Momjian 已提交
433
		/*	for SQL_C_CHAR, it's probably ok to leave currency symbols in.  But
B
Byron Nikolaidis 已提交
434 435 436 437 438 439 440 441 442
			to convert to numeric types, it is necessary to get rid of those.
		*/
		if (field_type == PG_TYPE_MONEY)
			convert_money(value);

		switch(fCType) {
		case SQL_C_DATE:
			len = 6;
			{
443 444 445 446 447 448 449
			DATE_STRUCT *ds;
			
			if (bind_size > 0) {
				ds = (DATE_STRUCT *) ((char *) rgbValue + (bind_row * bind_size));
			} else {
				ds = (DATE_STRUCT *) rgbValue + bind_row;
			}
B
Byron Nikolaidis 已提交
450 451 452 453 454
			ds->year = st.y;
			ds->month = st.m;
			ds->day = st.d;
			}
			break;
455

B
Byron Nikolaidis 已提交
456 457 458
		case SQL_C_TIME:
			len = 6;
			{
459 460 461 462 463 464 465
			TIME_STRUCT *ts;
			
			if (bind_size > 0) {
				ts = (TIME_STRUCT *) ((char *) rgbValue + (bind_row * bind_size));
			} else {
				ts = (TIME_STRUCT *) rgbValue + bind_row;
			}
B
Byron Nikolaidis 已提交
466 467 468 469 470
			ts->hour = st.hh;
			ts->minute = st.mm;
			ts->second = st.ss;
			}
			break;
471

B
Byron Nikolaidis 已提交
472 473 474
		case SQL_C_TIMESTAMP:					
			len = 16;
			{
475 476 477 478 479 480
			TIMESTAMP_STRUCT *ts;
			if (bind_size > 0) {
				ts = (TIMESTAMP_STRUCT *) ((char *) rgbValue + (bind_row * bind_size));
			} else {
				ts = (TIMESTAMP_STRUCT *) rgbValue + bind_row;
			}
B
Byron Nikolaidis 已提交
481 482 483 484 485 486 487 488 489 490 491 492
			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;

		case SQL_C_BIT:
			len = 1;
493 494 495 496 497
			if (bind_size > 0) {
				*(UCHAR *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
			} else {
				*((UCHAR *)rgbValue + bind_row) = atoi(value);
			}
B
Bruce Momjian 已提交
498
			// mylog("SQL_C_BIT: val = %d, cb = %d, rgb=%d\n", atoi(value), cbValueMax, *((UCHAR *)rgbValue));
B
Byron Nikolaidis 已提交
499
			break;
500

B
Byron Nikolaidis 已提交
501 502 503
		case SQL_C_STINYINT:
		case SQL_C_TINYINT:
			len = 1;
504 505 506 507 508
			if (bind_size > 0) {
				*(SCHAR *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
			} else {
				*((SCHAR *) rgbValue + bind_row) = atoi(value);
			}
B
Byron Nikolaidis 已提交
509
			break;
510

B
Byron Nikolaidis 已提交
511 512
		case SQL_C_UTINYINT:
			len = 1;
513 514 515 516 517
			if (bind_size > 0) {
				*(UCHAR *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
			} else {
				*((UCHAR *) rgbValue + bind_row) = atoi(value);
			}
B
Byron Nikolaidis 已提交
518
			break;
519

B
Byron Nikolaidis 已提交
520 521
		case SQL_C_FLOAT:
			len = 4;
522 523 524 525 526
			if (bind_size > 0) {
				*(SFLOAT *) ((char *) rgbValue + (bind_row * bind_size)) = (float) atof(value);
			} else {
				*((SFLOAT *)rgbValue + bind_row) = (float) atof(value);
			}
B
Byron Nikolaidis 已提交
527
			break;
528

B
Byron Nikolaidis 已提交
529 530
		case SQL_C_DOUBLE:
			len = 8;
531 532 533 534 535
			if (bind_size > 0) {
				*(SDOUBLE *) ((char *) rgbValue + (bind_row * bind_size)) = atof(value);
			} else {
				*((SDOUBLE *)rgbValue + bind_row) = atof(value);
			}
B
Byron Nikolaidis 已提交
536
			break;
537

B
Byron Nikolaidis 已提交
538 539 540
		case SQL_C_SSHORT:
		case SQL_C_SHORT:
			len = 2;
541 542 543 544 545
			if (bind_size > 0) {
				*(SWORD *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
			} else {
				*((SWORD *)rgbValue + bind_row) = atoi(value);
			}
B
Byron Nikolaidis 已提交
546
			break;
547

B
Byron Nikolaidis 已提交
548 549
		case SQL_C_USHORT:
			len = 2;
550 551 552 553 554
			if (bind_size > 0) {
				*(UWORD *) ((char *) rgbValue + (bind_row * bind_size)) = atoi(value);
			} else {
				*((UWORD *)rgbValue + bind_row) = atoi(value);
			}
B
Byron Nikolaidis 已提交
555
			break;
556

B
Byron Nikolaidis 已提交
557 558 559
		case SQL_C_SLONG:
		case SQL_C_LONG:
			len = 4;
560 561 562 563 564
			if (bind_size > 0) {
				*(SDWORD *) ((char *) rgbValue + (bind_row * bind_size)) = atol(value);
			} else {
				*((SDWORD *)rgbValue + bind_row) = atol(value);
			}
B
Byron Nikolaidis 已提交
565
			break;
566

B
Byron Nikolaidis 已提交
567 568
		case SQL_C_ULONG:
			len = 4;
569 570 571 572 573
			if (bind_size > 0) {
				*(UDWORD *) ((char *) rgbValue + (bind_row * bind_size)) = atol(value);
			} else {
				*((UDWORD *)rgbValue + bind_row) = atol(value);
			}
B
Byron Nikolaidis 已提交
574
			break;
575

B
Byron Nikolaidis 已提交
576
		case SQL_C_BINARY:	
577

B
Bruce Momjian 已提交
578 579
			//	truncate if necessary
			//	convert octal escapes to bytes
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

			len = convert_from_pgbinary(value, tempBuf, sizeof(tempBuf));
			ptr = tempBuf;

			if (stmt->current_col >= 0) {

				/*	No more data left for this column */
				if (stmt->bindings[stmt->current_col].data_left == 0)
					return COPY_NO_DATA_FOUND;

				/*	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;
				}

				/*	First call to SQLGetData so initialize data_left */
				else	
					stmt->bindings[stmt->current_col].data_left = len;

			}

			if (cbValueMax > 0) {
				copy_len = (len > cbValueMax) ? cbValueMax : len;

				/*	Copy the data */
				memcpy(rgbValueBindRow, ptr, copy_len);

				/*	Adjust data_left for next time */
				if (stmt->current_col >= 0) {
					stmt->bindings[stmt->current_col].data_left -= copy_len;
				}
			}

			/*	Finally, check for truncation so that proper status can be returned */
			if ( len > cbValueMax)
				result = COPY_RESULT_TRUNCATED;

			mylog("SQL_C_BINARY: len = %d, copy_len = %d\n", len, copy_len);
B
Byron Nikolaidis 已提交
619 620 621 622 623 624
			break;
			
		default:
			return COPY_UNSUPPORTED_TYPE;
		}
	}
625

B
Bruce Momjian 已提交
626
    // store the length of what was copied, if there's a place for it
627 628 629
    if(pcbValue) {
        *(SDWORD *) ((char *)pcbValue + pcbValueOffset) = len;
	}
630

631
	return result;
632 633 634

}

635

636 637 638 639 640 641 642
/*	This function inserts parameters into an SQL statements.
	It will also modify a SELECT statement for use with declare/fetch cursors.
	This function no longer does any dynamic memory allocation!
*/
int
copy_statement_with_parameters(StatementClass *stmt)
{
643
static char *func="copy_statement_with_parameters";
644
unsigned int opos, npos, oldstmtlen;
645 646 647
char param_string[128], tmp[256], cbuf[TEXT_FIELD_SIZE+5];
int param_number;
Int2 param_ctype, param_sqltype;
648
char *old_statement = stmt->statement;
649 650 651 652
char *new_statement = stmt->stmt_with_params;
SIMPLE_TIME st;
time_t t = time(NULL);
struct tm *tim;
653
SDWORD used;
654
char *buffer, *buf;
655
char in_quote = FALSE;
656 657
Oid  lobj_oid;
int lobj_fd, retval;
658 659


B
Byron Nikolaidis 已提交
660 661
	if ( ! old_statement) {
		SC_log_error(func, "No statement string", stmt);
662
		return SQL_ERROR;
B
Byron Nikolaidis 已提交
663
	}
664

665 666 667 668 669 670 671 672
	memset(&st, 0, sizeof(SIMPLE_TIME));

	/*	Initialize current date */
	tim = localtime(&t);
	st.m = tim->tm_mon + 1;
	st.d = tim->tm_mday;
	st.y = tim->tm_year + 1900;

673 674
	/*	If the application hasn't set a cursor name, then generate one */
	if ( stmt->cursor_name[0] == '\0')
675
		sprintf(stmt->cursor_name, "SQL_CUR%p", stmt);
676

B
Bruce Momjian 已提交
677
	//	For selects, prepend a declare cursor to the statement
678 679
	if (stmt->statement_type == STMT_TYPE_SELECT && globals.use_declarefetch) {
		sprintf(new_statement, "declare %s cursor for ", stmt->cursor_name);
680 681 682 683 684 685 686 687 688
		npos = strlen(new_statement);
	}
	else {
		new_statement[0] = '0';
		npos = 0;
	}

    param_number = -1;

689 690
	oldstmtlen = strlen(old_statement);

691
    for (opos = 0; opos < oldstmtlen; opos++) {
692

B
Bruce Momjian 已提交
693
		//	Squeeze carriage-return/linefeed pairs to linefeed only
694 695
		if (old_statement[opos] == '\r' && opos+1 < oldstmtlen &&
			old_statement[opos+1] == '\n') {
696
			continue;
697
		}
698

B
Bruce Momjian 已提交
699
		//	Handle literals (date, time, timestamp) and ODBC scalar functions
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
		else if (old_statement[opos] == '{') {
			char *esc;
			char *begin = &old_statement[opos + 1];
			char *end = strchr(begin, '}');

			if ( ! end)
				continue;

			*end = '\0';

			esc = convert_escape(begin);
			if (esc) {
				memcpy(&new_statement[npos], esc, strlen(esc));
				npos += strlen(esc);
			}
B
Bruce Momjian 已提交
715
			else {		/* it's not a valid literal so just copy */
716 717 718 719
				*end = '}';	
				new_statement[npos++] = old_statement[opos];
				continue;
			}
720

721
			opos += end - begin + 1;
722 723 724 725 726 727

			*end = '}';

			continue;
		}

728 729 730 731 732 733 734 735 736
		/*	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.
		*/
		else if (old_statement[opos] == '?' && !in_quote)
			;	/* ok */
		else {
			if (old_statement[opos] == '\'')
				in_quote = (in_quote ? FALSE : TRUE);

737 738 739 740
			new_statement[npos++] = old_statement[opos];
			continue;
		}

741 742


743 744 745 746 747 748 749 750
		/****************************************************/
		/*       Its a '?' parameter alright                */
		/****************************************************/

		param_number++;

	    if (param_number >= stmt->parameters_allocated)
			break;
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768

		/*	Assign correct buffers based on data at exec param or not */
		if ( stmt->parameters[param_number].data_at_exec) {
			used = stmt->parameters[param_number].EXEC_used ? *stmt->parameters[param_number].EXEC_used : SQL_NTS;
			buffer = stmt->parameters[param_number].EXEC_buffer;
		}
		else {
			used = stmt->parameters[param_number].used ? *stmt->parameters[param_number].used : SQL_NTS;
			buffer = stmt->parameters[param_number].buffer;
		}

		/*	Handle NULL parameter data */
		if (used == SQL_NULL_DATA) {
			strcpy(&new_statement[npos], "NULL");
			npos += 4;
			continue;
		}

B
Bruce Momjian 已提交
769
		/*	If no buffer, and it's not null, then what the hell is it? 
770
			Just leave it alone then.
771 772 773 774
		*/
		if ( ! buffer) {
			new_statement[npos++] = '?';
			continue;
775
		}
776 777 778 779

		param_ctype = stmt->parameters[param_number].CType;
		param_sqltype = stmt->parameters[param_number].SQLType;
		
780
		mylog("copy_statement_with_params: from(fcType)=%d, to(fSqlType)=%d\n", param_ctype, param_sqltype);
781
		
B
Bruce Momjian 已提交
782
		// replace DEFAULT with something we can use
783 784 785 786 787 788 789 790 791
		if(param_ctype == SQL_C_DEFAULT)
			param_ctype = sqltype_to_default_ctype(param_sqltype);

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

		
		/*	Convert input C type to a neutral format */
792 793
		switch(param_ctype) {
		case SQL_C_BINARY:
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
		case SQL_C_CHAR:
			buf = buffer;
			break;

		case SQL_C_DOUBLE:
			sprintf(param_string, "%f", 
				 *((SDOUBLE *) buffer));
			break;

		case SQL_C_FLOAT:
			sprintf(param_string, "%f", 
				 *((SFLOAT *) buffer));
			break;

		case SQL_C_SLONG:
		case SQL_C_LONG:
			sprintf(param_string, "%ld",
				*((SDWORD *) buffer));
			break;

		case SQL_C_SSHORT:
		case SQL_C_SHORT:
			sprintf(param_string, "%d",
				*((SWORD *) buffer));
			break;

		case SQL_C_STINYINT:
		case SQL_C_TINYINT:
			sprintf(param_string, "%d",
				*((SCHAR *) buffer));
			break;

		case SQL_C_ULONG:
			sprintf(param_string, "%lu",
				*((UDWORD *) buffer));
			break;

		case SQL_C_USHORT:
			sprintf(param_string, "%u",
				*((UWORD *) buffer));
			break;

		case SQL_C_UTINYINT:
			sprintf(param_string, "%u",
				*((UCHAR *) buffer));
			break;

		case SQL_C_BIT: {
			int i = *((UCHAR *) buffer);
			
844
			sprintf(param_string, "%d", i ? 1 : 0);
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
			break;
						}

		case SQL_C_DATE: {
			DATE_STRUCT *ds = (DATE_STRUCT *) buffer;
			st.m = ds->month;
			st.d = ds->day;
			st.y = ds->year;

			break;
						 }

		case SQL_C_TIME: {
			TIME_STRUCT *ts = (TIME_STRUCT *) buffer;
			st.hh = ts->hour;
			st.mm = ts->minute;
			st.ss = ts->second;

			break;
						 }

		case SQL_C_TIMESTAMP: {
			TIMESTAMP_STRUCT *tss = (TIMESTAMP_STRUCT *) buffer;
			st.m = tss->month;
			st.d = tss->day;
			st.y = tss->year;
			st.hh = tss->hour;
			st.mm = tss->minute;
			st.ss = tss->second;

875
			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);
876 877 878 879 880

			break;

							  }
		default:
B
Bruce Momjian 已提交
881
			// error
882 883
			stmt->errormsg = "Unrecognized C_parameter type in copy_statement_with_parameters";
			stmt->errornumber = STMT_NOT_IMPLEMENTED_ERROR;
B
Bruce Momjian 已提交
884
			new_statement[npos] = '\0';   // just in case
B
Byron Nikolaidis 已提交
885
			SC_log_error(func, "", stmt);
886 887 888 889 890 891 892 893 894 895
			return SQL_ERROR;
		}

		/*	Now that the input data is in a neutral format, convert it to
			the desired output format (sqltype)
		*/

		switch(param_sqltype) {
		case SQL_CHAR:
		case SQL_VARCHAR:
896
		case SQL_LONGVARCHAR:
897 898 899 900 901

			new_statement[npos++] = '\'';	/*    Open Quote */

			/* it was a SQL_C_CHAR */
			if (buf) {
902 903
				convert_special_chars(buf, &new_statement[npos], used);
				npos += strlen(&new_statement[npos]);
904 905 906 907 908 909 910 911 912 913
			}

			/* it was a numeric type */
			else if (param_string[0] != '\0') {	
				strcpy(&new_statement[npos], param_string);
				npos += strlen(param_string);
			}

			/* it was date,time,timestamp -- use m,d,y,hh,mm,ss */
			else {
914 915 916 917 918
				sprintf(tmp, "%.4d-%.2d-%.2d %.2d:%.2d:%.2d",
					st.y, st.m, st.d, st.hh, st.mm, st.ss);

				strcpy(&new_statement[npos], tmp);
				npos += strlen(tmp);
919 920 921 922 923 924 925
			}

			new_statement[npos++] = '\'';	/*    Close Quote */

			break;

		case SQL_DATE:
926 927
			if (buf) {  /* copy char data to time */
				my_strcpy(cbuf, sizeof(cbuf), buf, used);
928 929 930
				parse_datetime(cbuf, &st);
			}

931
			sprintf(tmp, "'%.4d-%.2d-%.2d'", st.y, st.m, st.d);
932 933 934 935 936 937

			strcpy(&new_statement[npos], tmp);
			npos += strlen(tmp);
			break;

		case SQL_TIME:
938 939
			if (buf) {  /* copy char data to time */
				my_strcpy(cbuf, sizeof(cbuf), buf, used);
940 941 942 943 944 945 946 947 948
				parse_datetime(cbuf, &st);
			}

			sprintf(tmp, "'%.2d:%.2d:%.2d'", st.hh, st.mm, st.ss);

			strcpy(&new_statement[npos], tmp);
			npos += strlen(tmp);
			break;

949
		case SQL_TIMESTAMP:
950

951 952
			if (buf) {
				my_strcpy(cbuf, sizeof(cbuf), buf, used);
953 954 955
				parse_datetime(cbuf, &st);
			}

956 957
			sprintf(tmp, "'%.4d-%.2d-%.2d %.2d:%.2d:%.2d'",
				st.y, st.m, st.d, st.hh, st.mm, st.ss);
958

959 960
			strcpy(&new_statement[npos], tmp);
			npos += strlen(tmp);
961 962

			break;
963 964 965 966 967

		case SQL_BINARY:
		case SQL_VARBINARY:			/* non-ascii characters should be converted to octal */
			new_statement[npos++] = '\'';	/*    Open Quote */

968
			mylog("SQL_VARBINARY: about to call convert_to_pgbinary, used = %d\n", used);
969 970 971 972 973 974

			npos += convert_to_pgbinary(buf, &new_statement[npos], used);

			new_statement[npos++] = '\'';	/*    Close Quote */
			
			break;
975

976
		case SQL_LONGVARBINARY:		
977 978 979 980 981 982 983

			if ( stmt->parameters[param_number].data_at_exec) {

				lobj_oid = stmt->parameters[param_number].lobj_oid;

			}
			else {
B
Byron Nikolaidis 已提交
984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
  
				/* begin transaction if needed */
				if(!CC_is_in_trans(stmt->hdbc)) {
					QResultClass *res;
					char ok;

					res = CC_send_query(stmt->hdbc, "BEGIN", NULL);
					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;
					}

					CC_set_in_trans(stmt->hdbc);
				}
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029

				/*	store the oid */
				lobj_oid = lo_creat(stmt->hdbc, INV_READ | INV_WRITE);
				if (lobj_oid == 0) {
					stmt->errornumber = STMT_EXEC_ERROR;
					stmt->errormsg = "Couldnt create (in-line) large object.";
					SC_log_error(func, "", stmt);
					return SQL_ERROR;
				}

				/*	store the fd */
				lobj_fd = lo_open(stmt->hdbc, lobj_oid, INV_WRITE);
				if ( lobj_fd < 0) {
					stmt->errornumber = STMT_EXEC_ERROR;
					stmt->errormsg = "Couldnt open (in-line) large object for writing.";
					SC_log_error(func, "", stmt);
					return SQL_ERROR;
				}

				retval = lo_write(stmt->hdbc, lobj_fd, buffer, used);

				lo_close(stmt->hdbc, lobj_fd);
B
Byron Nikolaidis 已提交
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053

				/* commit transaction if needed */
				if (!globals.use_declarefetch && CC_is_in_autocommit(stmt->hdbc)) {
					QResultClass *res;
					char ok;

					res = CC_send_query(stmt->hdbc, "COMMIT", NULL);
					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;
					}

					CC_set_no_trans(stmt->hdbc);
				}
1054 1055
			}

1056 1057 1058
			/*	the oid of the large object -- just put that in for the
				parameter marker -- the data has already been sent to the large object
			*/
B
Byron Nikolaidis 已提交
1059
			sprintf(param_string, "'%d'", lobj_oid);
1060 1061
			strcpy(&new_statement[npos], param_string);
			npos += strlen(param_string);
1062 1063 1064

			break;

B
Bruce Momjian 已提交
1065 1066
		//	because of no conversion operator for bool and int4, SQL_BIT
		//	must be quoted (0 or 1 is ok to use inside the quotes)
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083

		default:		/* a numeric type or SQL_BIT */
			if (param_sqltype == SQL_BIT)
				new_statement[npos++] = '\'';	/*    Open Quote */

			if (buf) {
				my_strcpy(&new_statement[npos], sizeof(stmt->stmt_with_params) - npos, buf, used);
				npos += strlen(&new_statement[npos]);
			}
			else {
				strcpy(&new_statement[npos], param_string);
				npos += strlen(param_string);
			}

			if (param_sqltype == SQL_BIT)
				new_statement[npos++] = '\'';	/*    Close Quote */

1084 1085 1086 1087 1088 1089
			break;

		}

	}	/* end, for */

B
Bruce Momjian 已提交
1090
	// make sure new_statement is always null-terminated
1091 1092
	new_statement[npos] = '\0';

1093

B
Byron Nikolaidis 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102
	if(stmt->hdbc->DriverToDataSource != NULL) {
		int length = strlen (new_statement);
		stmt->hdbc->DriverToDataSource (stmt->hdbc->translation_option,
										SQL_CHAR,
										new_statement, length,
										new_statement, length, NULL,
										NULL, 0, NULL);
	}

1103

1104 1105 1106
	return SQL_SUCCESS;
}

1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
char *
mapFunction(char *func)
{
int i;

	for (i = 0; mapFuncs[i][0]; i++)
		if ( ! stricmp(mapFuncs[i][0], func))
			return mapFuncs[i][1];

	return NULL;
}
1118

1119 1120 1121
/* convert_escape()
 * This function returns a pointer to static memory!
 */
1122 1123 1124
char *
convert_escape(char *value)
{
1125
static char escape[1024];
1126
char key[33];
1127

1128 1129 1130 1131 1132
	/* Separate off the key, skipping leading and trailing whitespace */
	while ((*value != '\0') && isspace(*value)) value++;
	sscanf(value, "%32s", key);
	while ((*value != '\0') && (! isspace(*value))) value++;
	while ((*value != '\0') && isspace(*value)) value++;
1133

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

1136 1137 1138 1139 1140
	if ( (strcmp(key, "d") == 0) ||
		 (strcmp(key, "t") == 0) ||
		 (strcmp(key, "ts") == 0)) {
		/* Literal; return the escape part as-is */
		strncpy(escape, value, sizeof(escape)-1);
1141
	}
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
	else if (strcmp(key, "fn") == 0) {
		/* Function invocation
		 * Separate off the func name,
		 * skipping trailing whitespace.
		 */
		char *funcEnd = value;
		char svchar;
		char *mapFunc;

		while ((*funcEnd != '\0') && (*funcEnd != '(') &&
			   (! isspace(*funcEnd))) funcEnd++;
		svchar = *funcEnd;
		*funcEnd = '\0';
		sscanf(value, "%32s", key);
		*funcEnd = svchar;
		while ((*funcEnd != '\0') && isspace(*funcEnd)) funcEnd++;

1159
		/* We expect left parenthesis here,
1160 1161 1162 1163 1164 1165
		 * else return fn body as-is since it is
		 * one of those "function constants".
		 */
		if (*funcEnd != '(') {
			strncpy(escape, value, sizeof(escape)-1);
			return escape;
1166
		}
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
		mapFunc = mapFunction(key);
		/* We could have mapFunction() return key if not in table...
		 * - thomas 2000-04-03
		 */
		if (mapFunc == NULL) {
			/* If unrecognized function name, return fn body as-is */
			strncpy(escape, value, sizeof(escape)-1);
			return escape;
		}
		/* copy mapped name and remaining input string */
		strcpy(escape, mapFunc);
1178
		strncat(escape, funcEnd, sizeof(escape)-1-strlen(mapFunc));
1179 1180
	}
	else {
1181
		/* Bogus key, leave untranslated */
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
		return NULL;
	}

	return escape;

}


char *
convert_money(char *s)
{
size_t i = 0, out = 0;

	for (i = 0; i < strlen(s); i++) {
		if (s[i] == '$' || s[i] == ',' || s[i] == ')')
B
Bruce Momjian 已提交
1197
			; // skip these characters
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
		else if (s[i] == '(')
			s[out++] = '-';
		else
			s[out++] = s[i];
	}
	s[out] = '\0';
	return s;
}



/*	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 */
char
parse_datetime(char *buf, SIMPLE_TIME *st)
{
int y,m,d,hh,mm,ss;
int nf;
	
	y = m = d = hh = mm = ss = 0;

	if (buf[4] == '-')	/* year first */
		nf = sscanf(buf, "%4d-%2d-%2d %2d:%2d:%2d", &y,&m,&d,&hh,&mm,&ss);
	else
		nf = sscanf(buf, "%2d-%2d-%4d %2d:%2d:%2d", &m,&d,&y,&hh,&mm,&ss);

	if (nf == 5 || nf == 6) {
		st->y = y;
		st->m = m;
		st->d = d;
		st->hh = hh;
		st->mm = mm;
		st->ss = ss;

		return TRUE;
	}

	if (buf[4] == '-')	/* year first */
		nf = sscanf(buf, "%4d-%2d-%2d", &y, &m, &d);
	else
		nf = sscanf(buf, "%2d-%2d-%4d", &m, &d, &y);

	if (nf == 3) {
		st->y = y;
		st->m = m;
		st->d = d;

		return TRUE;
	}

	nf = sscanf(buf, "%2d:%2d:%2d", &hh, &mm, &ss);
	if (nf == 2 || nf == 3) {
		st->hh = hh;
		st->mm = mm;
		st->ss = ss;

		return TRUE;
	}

	return FALSE;
}
1259 1260

/*	Change linefeed to carriage-return/linefeed */
1261
int
1262 1263 1264 1265
convert_linefeeds(char *si, char *dst, size_t max)
{
size_t i = 0, out = 0;

1266
	for (i = 0; i < strlen(si) && out < max - 1; i++) {
1267
		if (si[i] == '\n') {
B
Byron Nikolaidis 已提交
1268 1269
			/*	Only add the carriage-return if needed */
			if (i > 0 && si[i-1] == '\r') {
1270
				dst[out++] = si[i];
B
Byron Nikolaidis 已提交
1271 1272 1273
				continue;
			}

1274 1275
			dst[out++] = '\r';
			dst[out++] = '\n';
1276 1277
		}
		else
1278
			dst[out++] = si[i];
1279
	}
1280 1281
	dst[out] = '\0';
	return out;
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
}

/*	Change carriage-return/linefeed to just linefeed 
	Plus, escape any special characters.
*/
char *
convert_special_chars(char *si, char *dst, int used)
{
size_t i = 0, out = 0, max;
static char sout[TEXT_FIELD_SIZE+5];
char *p;

	if (dst)
		p = dst;
	else
		p = sout;

	p[0] = '\0';

	if (used == SQL_NTS)
		max = strlen(si);
	else
		max = used;

	for (i = 0; i < max; i++) {
		if (si[i] == '\r' && i+1 < strlen(si) && si[i+1] == '\n') 
			continue;
B
Byron Nikolaidis 已提交
1309
		else if (si[i] == '\'' || si[i] == '\\')
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
			p[out++] = '\\';

		p[out++] = si[i];
	}
	p[out] = '\0';
	return p;
}

/*	!!! Need to implement this function !!!  */
int
convert_pgbinary_to_char(char *value, char *rgbValue, int cbValueMax)
{
1322 1323 1324
	mylog("convert_pgbinary_to_char: value = '%s'\n", value);

	strncpy_null(rgbValue, value, cbValueMax);
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
	return 0;
}

unsigned int
conv_from_octal(unsigned char *s)
{
int i, y=0;

	for (i = 1; i <= 3; i++) {
		y += (s[i] - 48) * (int) pow(8, 3-i);
	}

	return y;

}

B
Byron Nikolaidis 已提交
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
unsigned int
conv_from_hex(unsigned char *s)
{
int i, y=0, val;

	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';

		y += val * (int) pow(16, 2-i);
	}

	return y;
}

B
Bruce Momjian 已提交
1361
//	convert octal escapes to bytes
1362 1363 1364 1365 1366
int
convert_from_pgbinary(unsigned char *value, unsigned char *rgbValue, int cbValueMax)
{
size_t i;
int o=0;
1367

1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379
	
	for (i = 0; i < strlen(value); ) {
		if (value[i] == '\\') {
			rgbValue[o] = conv_from_octal(&value[i]);
			i += 4;
		}
		else {
			rgbValue[o] = value[i++];
		}
		mylog("convert_from_pgbinary: i=%d, rgbValue[%d] = %d, %c\n", i, o, rgbValue[o], rgbValue[o]);
		o++;
	}
1380

B
Bruce Momjian 已提交
1381
	rgbValue[o] = '\0';	// extra protection
1382

1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
	return o;
}


char *
conv_to_octal(unsigned char val)
{
int i;
static char x[6];

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

	for (i = 4; i > 1; i--) {
		x[i] = (val & 7) + 48;
		val >>= 3;
	}

	return x;
}

B
Bruce Momjian 已提交
1405
//	convert non-ascii bytes to octal escape sequences
1406 1407 1408 1409 1410 1411 1412 1413
int
convert_to_pgbinary(unsigned char *in, char *out, int len)
{
int i, o=0;


	for (i = 0; i < len; i++) {
		mylog("convert_to_pgbinary: in[%d] = %d, %c\n", i, in[i], in[i]);
1414 1415 1416 1417
		if ( isalnum(in[i]) || in[i] == ' ') {
			out[o++] = in[i];
		}
		else {
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429
			strcpy(&out[o], conv_to_octal(in[i])); 
			o += 5;
		}

	}

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

	return o;
}


B
Byron Nikolaidis 已提交
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
void
encode(char *in, char *out)
{
unsigned int i, o = 0;

	for (i = 0; i < strlen(in); i++) {
		if ( in[i] == '+') {
			sprintf(&out[o], "%%2B");
			o += 3;
		}
		else if ( isspace(in[i])) {
			out[o++] = '+';
		}
		else if ( ! isalnum(in[i])) {
			sprintf(&out[o], "%%%02x", in[i]);
			o += 3;
		}
		else
			out[o++] = in[i];
	}
	out[o++] = '\0';
}


void
decode(char *in, char *out)
{
unsigned int i, o = 0;

	for (i = 0; i < strlen(in); i++) { 
		if (in[i] == '+')
			out[o++] = ' ';
		else if (in[i] == '%') {
			sprintf(&out[o++], "%c", conv_from_hex(&in[i]));
			i+=2;
		}
		else
			out[o++] = in[i];
	}
	out[o++] = '\0';
}



1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
/*	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.
*/
int
convert_lo(StatementClass *stmt, void *value, Int2 fCType, PTR rgbValue, 
1490
		   SDWORD cbValueMax, SDWORD *pcbValue)
1491
{
T
Tom Lane 已提交
1492 1493 1494
	Oid oid;
	int retval, result, left = -1;
	BindInfoClass *bindInfo = NULL;
1495 1496 1497 1498 1499 1500 1501


/*	If using SQLGetData, then current_col will be set */
	if (stmt->current_col >= 0) {
		bindInfo = &stmt->bindings[stmt->current_col];
		left = bindInfo->data_left;
	}
1502 1503 1504 1505

	/*	if this is the first call for this column,
		open the large object for reading 
	*/
1506 1507

	if ( ! bindInfo || bindInfo->data_left == -1) {
B
Byron Nikolaidis 已提交
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530

		/* begin transaction if needed */
		if(!CC_is_in_trans(stmt->hdbc)) {
			QResultClass *res;
			char ok;

			res = CC_send_query(stmt->hdbc, "BEGIN", NULL);
			if (!res) {
				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);
			if (!ok) {
				stmt->errormsg = "Could not begin (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}

			CC_set_in_trans(stmt->hdbc);
		}

1531 1532 1533 1534
		oid = atoi(value);
		stmt->lobj_fd = lo_open(stmt->hdbc, oid, INV_READ);
		if (stmt->lobj_fd < 0) {
			stmt->errornumber = STMT_EXEC_ERROR;
1535
			stmt->errormsg = "Couldnt open large object for reading.";
1536 1537
			return COPY_GENERAL_ERROR;
		}
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553

		/*	Get the size */
		retval = lo_lseek(stmt->hdbc, stmt->lobj_fd, 0L, SEEK_END);
		if (retval >= 0) {

			left = lo_tell(stmt->hdbc, stmt->lobj_fd);
			if (bindInfo)
				bindInfo->data_left = left;

			/*	return to beginning */
			lo_lseek(stmt->hdbc, stmt->lobj_fd, 0L, SEEK_SET);
		}
	}

	if (left == 0) {
		return COPY_NO_DATA_FOUND;
1554 1555
	}

1556 1557 1558 1559 1560
	if (stmt->lobj_fd < 0) {
		stmt->errornumber = STMT_EXEC_ERROR;
		stmt->errormsg = "Large object FD undefined for multiple read.";
		return COPY_GENERAL_ERROR;
	}
1561

1562
	retval = lo_read(stmt->hdbc, stmt->lobj_fd, (char *) rgbValue, cbValueMax);
1563 1564
	if (retval < 0) {
		lo_close(stmt->hdbc, stmt->lobj_fd);
B
Byron Nikolaidis 已提交
1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587

		/* commit transaction if needed */
		if (!globals.use_declarefetch && CC_is_in_autocommit(stmt->hdbc)) {
			QResultClass *res;
			char ok;

			res = CC_send_query(stmt->hdbc, "COMMIT", NULL);
			if (!res) {
				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);
			if (!ok) {
				stmt->errormsg = "Could not commit (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}

			CC_set_no_trans(stmt->hdbc);
		}

1588 1589 1590 1591 1592 1593 1594
		stmt->lobj_fd = -1;

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

1595 1596 1597 1598 1599 1600 1601
	if (retval < left)
		result = COPY_RESULT_TRUNCATED;
	else
		result = COPY_OK;

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


1604 1605
	if (bindInfo && bindInfo->data_left > 0) 
		bindInfo->data_left -= retval;
1606

1607 1608 1609

	if (! bindInfo || bindInfo->data_left == 0) {
		lo_close(stmt->hdbc, stmt->lobj_fd);
B
Byron Nikolaidis 已提交
1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632

		/* commit transaction if needed */
		if (!globals.use_declarefetch && CC_is_in_autocommit(stmt->hdbc)) {
			QResultClass *res;
			char ok;

			res = CC_send_query(stmt->hdbc, "COMMIT", NULL);
			if (!res) {
				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);
			if (!ok) {
				stmt->errormsg = "Could not commit (in-line) a transaction";
				stmt->errornumber = STMT_EXEC_ERROR;
				return COPY_GENERAL_ERROR;
			}

			CC_set_no_trans(stmt->hdbc);
		}

1633
		stmt->lobj_fd = -1;	/* prevent further reading */
1634
	}
1635 1636 1637 1638


	return result;

1639
}