Age Owner Branch data TLA Line data Source code
1 : : /* src/interfaces/ecpg/ecpglib/execute.c */
2 : :
3 : : /*
4 : : * The aim is to get a simpler interface to the database routines.
5 : : * All the tedious messing around with tuples is supposed to be hidden
6 : : * by this function.
7 : : */
8 : : /* Author: Linus Tolke
9 : : (actually most if the code is "borrowed" from the distribution and just
10 : : slightly modified)
11 : : */
12 : :
13 : : /* Taken over as part of PostgreSQL by Michael Meskes <meskes@postgresql.org>
14 : : on Feb. 5th, 1998 */
15 : :
16 : : #define POSTGRES_ECPG_INTERNAL
17 : : #include "postgres_fe.h"
18 : :
19 : : #include <math.h>
20 : :
21 : : #include "catalog/pg_type_d.h"
22 : : #include "ecpgerrno.h"
23 : : #include "ecpglib.h"
24 : : #include "ecpglib_extern.h"
25 : : #include "ecpgtype.h"
26 : : #include "pgtypes_date.h"
27 : : #include "pgtypes_interval.h"
28 : : #include "pgtypes_numeric.h"
29 : : #include "pgtypes_timestamp.h"
30 : : #include "sql3types.h"
31 : : #include "sqlca.h"
32 : : #include "sqlda-compat.h"
33 : : #include "sqlda-native.h"
34 : :
35 : : /*
36 : : * This function returns a newly malloced string that has ' and \
37 : : * escaped.
38 : : */
39 : : static char *
6444 meskes@postgresql.or 40 :CBC 561 : quote_postgres(char *arg, bool quote, int lineno)
41 : : {
42 : : char *res;
43 : : size_t length;
44 : : size_t escaped_len;
45 : : size_t buffer_len;
46 : :
47 : : /*
48 : : * if quote is false we just need to store things in a descriptor they
49 : : * will be quoted once they are inserted in a statement
50 : : */
51 [ + - ]: 561 : if (!quote)
6152 52 : 561 : return arg;
53 : : else
54 : : {
6272 meskes@postgresql.or 55 :UBC 0 : length = strlen(arg);
56 : 0 : buffer_len = 2 * length + 1;
6038 57 : 0 : res = (char *) ecpg_alloc(buffer_len + 3, lineno);
6444 58 [ # # ]: 0 : if (!res)
2432 peter_e@gmx.net 59 : 0 : return res;
5995 bruce@momjian.us 60 : 0 : escaped_len = PQescapeString(res + 1, arg, buffer_len);
6272 meskes@postgresql.or 61 [ # # ]: 0 : if (length == escaped_len)
62 : : {
5995 bruce@momjian.us 63 : 0 : res[0] = res[escaped_len + 1] = '\'';
64 : 0 : res[escaped_len + 2] = '\0';
65 : : }
66 : : else
67 : : {
68 : : /*
69 : : * We don't know if the target database is using
70 : : * standard_conforming_strings, so we always use E'' strings.
71 : : */
72 : 0 : memmove(res + 2, res + 1, escaped_len);
6272 meskes@postgresql.or 73 : 0 : res[0] = ESCAPE_STRING_SYNTAX;
5995 bruce@momjian.us 74 : 0 : res[1] = res[escaped_len + 2] = '\'';
75 : 0 : res[escaped_len + 3] = '\0';
76 : : }
6038 meskes@postgresql.or 77 : 0 : ecpg_free(arg);
6444 78 : 0 : return res;
79 : : }
80 : : }
81 : :
82 : : static void
2489 tgl@sss.pgh.pa.us 83 :CBC 5302 : free_variable(struct variable *var)
84 : : {
85 : : struct variable *var_next;
86 : :
3792 meskes@postgresql.or 87 [ + + ]: 8434 : while (var)
88 : : {
7700 89 : 3132 : var_next = var->next;
6038 90 : 3132 : ecpg_free(var);
3792 91 : 3132 : var = var_next;
92 : : }
7700 93 : 5302 : }
94 : :
95 : : static void
2489 tgl@sss.pgh.pa.us 96 : 2651 : free_statement(struct statement *stmt)
97 : : {
7403 neilc@samurai.com 98 [ - + ]: 2651 : if (stmt == NULL)
7700 meskes@postgresql.or 99 :UBC 0 : return;
7700 meskes@postgresql.or 100 :CBC 2651 : free_variable(stmt->inlist);
101 : 2651 : free_variable(stmt->outlist);
6038 102 : 2651 : ecpg_free(stmt->command);
103 : 2651 : ecpg_free(stmt->name);
104 : : #ifndef HAVE_USELOCALE
105 : : ecpg_free(stmt->oldlocale);
106 : : #endif
107 : 2651 : ecpg_free(stmt);
108 : : }
109 : :
110 : : static int
2362 111 : 4475 : next_insert(char *text, int pos, bool questionmarks, bool std_strings)
112 : : {
7700 113 : 4475 : bool string = false;
5995 bruce@momjian.us 114 : 4475 : int p = pos;
115 : :
6088 meskes@postgresql.or 116 [ + + ]: 119771 : for (; text[p] != '\0'; p++)
117 : : {
2362 118 [ + + + + : 117125 : if (string && !std_strings && text[p] == '\\') /* escape character */
+ + ]
6088 119 : 4 : p++;
120 [ + + ]: 117121 : else if (text[p] == '\'')
7700 121 : 1974 : string = string ? false : true;
6088 122 [ + + ]: 115147 : else if (!string)
123 : : {
5888 tgl@sss.pgh.pa.us 124 [ + + + + ]: 107606 : if (text[p] == '$' && isdigit((unsigned char) text[p + 1]))
6088 meskes@postgresql.or 125 :UBC 0 : {
126 : : /* this can be either a dollar quote or a variable */
127 : : int i;
128 : :
5888 tgl@sss.pgh.pa.us 129 [ + + ]:CBC 3659 : for (i = p + 1; isdigit((unsigned char) text[i]); i++)
130 : : /* empty loop body */ ;
131 [ + - ]: 1829 : if (!isalpha((unsigned char) text[i]) &&
1429 132 [ + - + - ]: 1829 : isascii((unsigned char) text[i]) && text[i] != '_')
133 : : /* not dollar delimited quote */
6088 meskes@postgresql.or 134 : 1829 : return p;
135 : : }
5995 bruce@momjian.us 136 [ + + - + ]: 105777 : else if (questionmarks && text[p] == '?')
137 : : {
138 : : /* also allow old style placeholders */
6088 meskes@postgresql.or 139 :UBC 0 : return p;
140 : : }
141 : : }
142 : : }
143 : :
6088 meskes@postgresql.or 144 :CBC 2646 : return -1;
145 : : }
146 : :
147 : : static bool
2489 tgl@sss.pgh.pa.us 148 : 2542 : ecpg_type_infocache_push(struct ECPGtype_information_cache **cache, int oid, enum ARRAY_TYPE isarray, int lineno)
149 : : {
150 : : struct ECPGtype_information_cache *new_entry
6038 meskes@postgresql.or 151 : 2542 : = (struct ECPGtype_information_cache *) ecpg_alloc(sizeof(struct ECPGtype_information_cache), lineno);
152 : :
6507 153 [ - + ]: 2542 : if (new_entry == NULL)
2432 peter_e@gmx.net 154 :UBC 0 : return false;
155 : :
7461 meskes@postgresql.or 156 :CBC 2542 : new_entry->oid = oid;
157 : 2542 : new_entry->isarray = isarray;
158 : 2542 : new_entry->next = *cache;
159 : 2542 : *cache = new_entry;
2432 peter_e@gmx.net 160 : 2542 : return true;
161 : : }
162 : :
163 : : static enum ARRAY_TYPE
2489 tgl@sss.pgh.pa.us 164 : 1250 : ecpg_is_type_an_array(int type, const struct statement *stmt, const struct variable *var)
165 : : {
166 : : char *array_query;
7168 bruce@momjian.us 167 : 1250 : enum ARRAY_TYPE isarray = ECPG_ARRAY_NOT_SET;
168 : : PGresult *query;
169 : : struct ECPGtype_information_cache *cache_entry;
170 : :
7700 meskes@postgresql.or 171 [ + + ]: 1250 : if ((stmt->connection->cache_head) == NULL)
172 : : {
173 : : /*
174 : : * Text like types are not an array for ecpg, but postgres counts them
175 : : * as an array. This define reminds you to not 'correct' these values.
176 : : */
177 : : #define not_an_array_in_ecpg ECPG_ARRAY_NONE
178 : :
179 : : /* populate cache with well known types to speed things up */
6038 180 [ - + ]: 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BOOLOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 181 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 182 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BYTEAOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 183 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 184 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), CHAROID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 185 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 186 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), NAMEOID, not_an_array_in_ecpg, stmt->lineno))
2432 peter_e@gmx.net 187 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 188 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INT8OID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 189 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 190 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INT2OID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 191 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 192 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INT2VECTOROID, ECPG_ARRAY_VECTOR, stmt->lineno))
2432 peter_e@gmx.net 193 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 194 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INT4OID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 195 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 196 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), REGPROCOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 197 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 198 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TEXTOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 199 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 200 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), OIDOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 201 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 202 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIDOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 203 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 204 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), XIDOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 205 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 206 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), CIDOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 207 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 208 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), OIDVECTOROID, ECPG_ARRAY_VECTOR, stmt->lineno))
2432 peter_e@gmx.net 209 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 210 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), POINTOID, ECPG_ARRAY_VECTOR, stmt->lineno))
2432 peter_e@gmx.net 211 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 212 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), LSEGOID, ECPG_ARRAY_VECTOR, stmt->lineno))
2432 peter_e@gmx.net 213 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 214 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), PATHOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 215 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 216 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BOXOID, ECPG_ARRAY_VECTOR, stmt->lineno))
2432 peter_e@gmx.net 217 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 218 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), POLYGONOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 219 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 220 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), LINEOID, ECPG_ARRAY_VECTOR, stmt->lineno))
2432 peter_e@gmx.net 221 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 222 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), FLOAT4OID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 223 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 224 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), FLOAT8OID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 225 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 226 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), UNKNOWNOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 227 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 228 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), CIRCLEOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 229 :UBC 0 : return ECPG_ARRAY_ERROR;
1263 tgl@sss.pgh.pa.us 230 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), MONEYOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 231 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 232 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INETOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 233 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 234 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), CIDROID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 235 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 236 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BPCHAROID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 237 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 238 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), VARCHAROID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 239 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 240 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), DATEOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 241 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 242 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIMEOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 243 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 244 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIMESTAMPOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 245 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 246 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIMESTAMPTZOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 247 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 248 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INTERVALOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 249 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 250 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIMETZOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 251 :UBC 0 : return ECPG_ARRAY_ERROR;
2234 tgl@sss.pgh.pa.us 252 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BITOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 253 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 254 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), VARBITOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 255 :UBC 0 : return ECPG_ARRAY_ERROR;
6038 meskes@postgresql.or 256 [ - + ]:CBC 65 : if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), NUMERICOID, ECPG_ARRAY_NONE, stmt->lineno))
2432 peter_e@gmx.net 257 :UBC 0 : return ECPG_ARRAY_ERROR;
258 : : }
259 : :
7461 meskes@postgresql.or 260 [ + + ]:CBC 39857 : for (cache_entry = (stmt->connection->cache_head); cache_entry != NULL; cache_entry = cache_entry->next)
261 : : {
262 [ + + ]: 39850 : if (cache_entry->oid == type)
263 : 1243 : return cache_entry->isarray;
264 : : }
265 : :
6038 266 : 7 : array_query = (char *) ecpg_alloc(strlen("select typlen from pg_type where oid= and typelem<>0") + 11, stmt->lineno);
6507 267 [ - + ]: 7 : if (array_query == NULL)
2432 peter_e@gmx.net 268 :UBC 0 : return ECPG_ARRAY_ERROR;
269 : :
7461 meskes@postgresql.or 270 :CBC 7 : sprintf(array_query, "select typlen from pg_type where oid=%d and typelem<>0", type);
271 : 7 : query = PQexec(stmt->connection->connection, array_query);
6038 272 : 7 : ecpg_free(array_query);
273 [ - + ]: 7 : if (!ecpg_check_PQresult(query, stmt->lineno, stmt->connection->connection, stmt->compat))
2432 peter_e@gmx.net 274 :UBC 0 : return ECPG_ARRAY_ERROR;
6088 meskes@postgresql.or 275 [ + - ]:CBC 7 : else if (PQresultStatus(query) == PGRES_TUPLES_OK)
276 : : {
7168 bruce@momjian.us 277 [ + + ]: 7 : if (PQntuples(query) == 0)
7461 meskes@postgresql.or 278 : 2 : isarray = ECPG_ARRAY_NONE;
279 : : else
280 : : {
7438 281 [ + - ]: 5 : isarray = (atol((char *) PQgetvalue(query, 0, 0)) == -1) ? ECPG_ARRAY_ARRAY : ECPG_ARRAY_VECTOR;
6038 282 [ + - - + ]: 10 : if (ecpg_dynamic_type(type) == SQL3_CHARACTER ||
283 : 5 : ecpg_dynamic_type(type) == SQL3_CHARACTER_VARYING)
284 : : {
285 : : /*
286 : : * arrays of character strings are not yet implemented
287 : : */
7438 meskes@postgresql.or 288 :UBC 0 : isarray = ECPG_ARRAY_NONE;
289 : : }
290 : : }
6088 meskes@postgresql.or 291 :CBC 7 : PQclear(query);
292 : : }
293 : : else
2432 peter_e@gmx.net 294 :UBC 0 : return ECPG_ARRAY_ERROR;
295 : :
6038 meskes@postgresql.or 296 :CBC 7 : ecpg_type_infocache_push(&(stmt->connection->cache_head), type, isarray, stmt->lineno);
5183 297 [ + + - + ]: 7 : ecpg_log("ecpg_is_type_an_array on line %d: type (%d); C (%d); array (%s)\n", stmt->lineno, type, var->type, ECPG_IS_ARRAY(isarray) ? "yes" : "no");
7700 298 : 7 : return isarray;
299 : : }
300 : :
301 : :
302 : : bool
6038 303 : 1250 : ecpg_store_result(const PGresult *results, int act_field,
304 : : const struct statement *stmt, struct variable *var)
305 : : {
306 : : enum ARRAY_TYPE isarray;
307 : : int act_tuple,
7700 308 : 1250 : ntuples = PQntuples(results);
309 : 1250 : bool status = true;
310 : :
6038 311 [ - + ]: 1250 : if ((isarray = ecpg_is_type_an_array(PQftype(results, act_field), stmt, var)) == ECPG_ARRAY_ERROR)
312 : : {
6038 meskes@postgresql.or 313 :UBC 0 : ecpg_raise(stmt->lineno, ECPG_OUT_OF_MEMORY, ECPG_SQLSTATE_ECPG_OUT_OF_MEMORY, NULL);
6507 314 : 0 : return false;
315 : : }
316 : :
7463 meskes@postgresql.or 317 [ + + ]:CBC 1250 : if (isarray == ECPG_ARRAY_NONE)
318 : : {
319 : : /*
320 : : * if we don't have enough space, we cannot read all tuples
321 : : */
7700 322 [ + + + - : 1244 : if ((var->arrsize > 0 && ntuples > var->arrsize) || (var->ind_arrsize > 0 && ntuples > var->ind_arrsize))
+ + - + ]
323 : : {
4600 peter_e@gmx.net 324 :UBC 0 : ecpg_log("ecpg_store_result on line %d: incorrect number of matches; %d don't fit into array of %ld\n",
5995 bruce@momjian.us 325 : 0 : stmt->lineno, ntuples, var->arrsize);
6038 meskes@postgresql.or 326 [ # # # # ]: 0 : ecpg_raise(stmt->lineno, INFORMIX_MODE(stmt->compat) ? ECPG_INFORMIX_SUBSELECT_NOT_ONE : ECPG_TOO_MANY_MATCHES, ECPG_SQLSTATE_CARDINALITY_VIOLATION, NULL);
7700 327 : 0 : return false;
328 : : }
329 : : }
330 : : else
331 : : {
332 : : /*
333 : : * since we read an array, the variable has to be an array too
334 : : */
7700 meskes@postgresql.or 335 [ - + ]:CBC 6 : if (var->arrsize == 0)
336 : : {
6038 meskes@postgresql.or 337 :UBC 0 : ecpg_raise(stmt->lineno, ECPG_NO_ARRAY, ECPG_SQLSTATE_DATATYPE_MISMATCH, NULL);
7700 338 : 0 : return false;
339 : : }
340 : : }
341 : :
342 : : /*
343 : : * allocate memory for NULL pointers
344 : : */
7700 meskes@postgresql.or 345 [ + + + + :CBC 1250 : if ((var->arrsize == 0 || var->varcharsize == 0) && var->value == NULL)
+ + ]
346 : : {
347 : 826 : int len = 0;
348 : :
5421 bruce@momjian.us 349 [ + + ]: 826 : if (!PQfformat(results, act_field))
350 : : {
5550 meskes@postgresql.or 351 [ + - + ]: 825 : switch (var->type)
352 : : {
353 : 821 : case ECPGt_char:
354 : : case ECPGt_unsigned_char:
355 : : case ECPGt_string:
356 [ + - + + ]: 821 : if (!var->varcharsize && !var->arrsize)
357 : : {
358 : : /* special mode for handling char**foo=0 */
359 [ + + ]: 1625 : for (act_tuple = 0; act_tuple < ntuples; act_tuple++)
360 : 818 : len += strlen(PQgetvalue(results, act_tuple, act_field)) + 1;
2489 tgl@sss.pgh.pa.us 361 : 807 : len *= var->offset; /* should be 1, but YMNK */
5550 meskes@postgresql.or 362 : 807 : len += (ntuples + 1) * sizeof(char *);
363 : : }
364 : : else
365 : : {
366 : 14 : var->varcharsize = 0;
367 : : /* check strlen for each tuple */
368 [ + + ]: 28 : for (act_tuple = 0; act_tuple < ntuples; act_tuple++)
369 : : {
557 drowley@postgresql.o 370 : 14 : int slen = strlen(PQgetvalue(results, act_tuple, act_field)) + 1;
371 : :
372 [ + - ]: 14 : if (slen > var->varcharsize)
373 : 14 : var->varcharsize = slen;
374 : : }
5550 meskes@postgresql.or 375 : 14 : var->offset *= var->varcharsize;
376 : 14 : len = var->offset * ntuples;
377 : : }
378 : 821 : break;
5550 meskes@postgresql.or 379 :UBC 0 : case ECPGt_varchar:
380 : 0 : len = ntuples * (var->varcharsize + sizeof(int));
381 : 0 : break;
5550 meskes@postgresql.or 382 :CBC 4 : default:
7700 383 : 4 : len = var->offset * ntuples;
5550 384 : 4 : break;
385 : : }
386 : : }
387 : : else
388 : : {
5549 389 [ + + ]: 2 : for (act_tuple = 0; act_tuple < ntuples; act_tuple++)
390 : 1 : len += PQgetlength(results, act_tuple, act_field);
391 : : }
392 : :
5812 peter_e@gmx.net 393 : 826 : ecpg_log("ecpg_store_result on line %d: allocating memory for %d tuples\n", stmt->lineno, ntuples);
3356 meskes@postgresql.or 394 : 826 : var->value = (char *) ecpg_auto_alloc(len, stmt->lineno);
6507 395 [ - + ]: 826 : if (!var->value)
6507 meskes@postgresql.or 396 :UBC 0 : return false;
7700 meskes@postgresql.or 397 :CBC 826 : *((char **) var->pointer) = var->value;
398 : : }
399 : :
400 : : /* allocate indicator variable if needed */
401 [ + + - + : 1250 : if ((var->ind_arrsize == 0 || var->ind_varcharsize == 0) && var->ind_value == NULL && var->ind_pointer != NULL)
+ + + + ]
402 : : {
403 : 10 : int len = var->ind_offset * ntuples;
404 : :
3356 405 : 10 : var->ind_value = (char *) ecpg_auto_alloc(len, stmt->lineno);
6507 406 [ - + ]: 10 : if (!var->ind_value)
6507 meskes@postgresql.or 407 :UBC 0 : return false;
7700 meskes@postgresql.or 408 :CBC 10 : *((char **) var->ind_pointer) = var->ind_value;
409 : : }
410 : :
411 : : /* fill the variable with the tuple(s) */
412 [ + + + + ]: 1250 : if (!var->varcharsize && !var->arrsize &&
5364 413 [ - + - - : 807 : (var->type == ECPGt_char || var->type == ECPGt_unsigned_char || var->type == ECPGt_string))
- - ]
7700 414 : 807 : {
415 : : /* special mode for handling char**foo=0 */
416 : :
417 : : /* filling the array of (char*)s */
418 : 807 : char **current_string = (char **) var->value;
419 : :
420 : : /* storing the data (after the last array element) */
421 : 807 : char *current_data_location = (char *) ¤t_string[ntuples + 1];
422 : :
423 [ + + + - ]: 1625 : for (act_tuple = 0; act_tuple < ntuples && status; act_tuple++)
424 : : {
425 : 818 : int len = strlen(PQgetvalue(results, act_tuple, act_field)) + 1;
426 : :
6038 427 [ - + ]: 818 : if (!ecpg_get_data(results, act_tuple, act_field, stmt->lineno,
428 : : var->type, var->ind_type, current_data_location,
5995 bruce@momjian.us 429 : 818 : var->ind_value, len, 0, var->ind_offset, isarray, stmt->compat, stmt->force_indicator))
7700 meskes@postgresql.or 430 :UBC 0 : status = false;
431 : : else
432 : : {
7700 meskes@postgresql.or 433 :CBC 818 : *current_string = current_data_location;
434 : 818 : current_data_location += len;
435 : 818 : current_string++;
436 : : }
437 : : }
438 : :
439 : : /* terminate the list */
440 : 807 : *current_string = NULL;
441 : : }
442 : : else
443 : : {
444 [ + + + - ]: 970 : for (act_tuple = 0; act_tuple < ntuples && status; act_tuple++)
445 : : {
6038 446 [ + + ]: 527 : if (!ecpg_get_data(results, act_tuple, act_field, stmt->lineno,
5995 bruce@momjian.us 447 : 527 : var->type, var->ind_type, var->value,
448 : 527 : var->ind_value, var->varcharsize, var->offset, var->ind_offset, isarray, stmt->compat, stmt->force_indicator))
7700 meskes@postgresql.or 449 : 6 : status = false;
450 : : }
451 : : }
452 : 1250 : return status;
453 : : }
454 : :
455 : : static void
5185 456 : 6 : sprintf_double_value(char *ptr, double value, const char *delim)
457 : : {
5171 458 [ + + ]: 6 : if (isnan(value))
459 : 1 : sprintf(ptr, "%s%s", "NaN", delim);
460 [ + + ]: 5 : else if (isinf(value))
461 : : {
5185 462 [ + + ]: 2 : if (value < 0)
463 : 1 : sprintf(ptr, "%s%s", "-Infinity", delim);
464 : : else
465 : 1 : sprintf(ptr, "%s%s", "Infinity", delim);
466 : : }
467 : : else
4654 468 : 3 : sprintf(ptr, "%.15g%s", value, delim);
5185 469 : 6 : }
470 : :
471 : : static void
472 : 1 : sprintf_float_value(char *ptr, float value, const char *delim)
473 : : {
5171 474 [ - + ]: 1 : if (isnan(value))
5171 meskes@postgresql.or 475 :UBC 0 : sprintf(ptr, "%s%s", "NaN", delim);
5171 meskes@postgresql.or 476 [ - + ]:CBC 1 : else if (isinf(value))
477 : : {
5185 meskes@postgresql.or 478 [ # # ]:UBC 0 : if (value < 0)
479 : 0 : sprintf(ptr, "%s%s", "-Infinity", delim);
480 : : else
481 : 0 : sprintf(ptr, "%s%s", "Infinity", delim);
482 : : }
483 : : else
4654 meskes@postgresql.or 484 :CBC 1 : sprintf(ptr, "%.15g%s", value, delim);
5185 485 : 1 : }
486 : :
487 : : static char *
1789 meskes@postgresql.or 488 :UBC 0 : convert_bytea_to_string(char *from_data, int from_len, int lineno)
489 : : {
490 : : char *to_data;
tgl@sss.pgh.pa.us 491 : 0 : int to_len = ecpg_hex_enc_len(from_len) + 4 + 1; /* backslash + 'x' +
492 : : * quote + quote */
493 : :
meskes@postgresql.or 494 : 0 : to_data = ecpg_alloc(to_len, lineno);
495 [ # # ]: 0 : if (!to_data)
496 : 0 : return NULL;
497 : :
498 : 0 : strcpy(to_data, "'\\x");
499 : 0 : ecpg_hex_encode(from_data, from_len, to_data + 3);
500 : 0 : strcpy(to_data + 3 + ecpg_hex_enc_len(from_len), "\'");
501 : :
502 : 0 : return to_data;
503 : : }
504 : :
505 : : bool
2489 tgl@sss.pgh.pa.us 506 :CBC 1838 : ecpg_store_input(const int lineno, const bool force_indicator, const struct variable *var,
507 : : char **tobeinserted_p, bool quote)
508 : : {
7700 meskes@postgresql.or 509 : 1838 : char *mallocedval = NULL;
510 : 1838 : char *newcopy = NULL;
511 : :
512 : : /*
513 : : * arrays are not possible unless the column is an array, too FIXME: we do
514 : : * not know if the column is an array here array input to singleton column
515 : : * will result in a runtime error
516 : : */
517 : :
518 : : /*
519 : : * Some special treatment is needed for records since we want their
520 : : * contents to arrive in a comma-separated list on insert (I think).
521 : : */
522 : :
523 : 1838 : *tobeinserted_p = "";
524 : :
525 : : /* check for null value and set input buffer accordingly */
526 [ - + - - : 1838 : switch (var->ind_type)
+ + ]
527 : : {
7700 meskes@postgresql.or 528 :UBC 0 : case ECPGt_short:
529 : : case ECPGt_unsigned_short:
530 [ # # ]: 0 : if (*(short *) var->ind_value < 0)
6088 531 : 0 : *tobeinserted_p = NULL;
7700 532 : 0 : break;
7700 meskes@postgresql.or 533 :CBC 5 : case ECPGt_int:
534 : : case ECPGt_unsigned_int:
535 [ + + ]: 5 : if (*(int *) var->ind_value < 0)
6088 536 : 3 : *tobeinserted_p = NULL;
7700 537 : 5 : break;
7700 meskes@postgresql.or 538 :UBC 0 : case ECPGt_long:
539 : : case ECPGt_unsigned_long:
540 [ # # ]: 0 : if (*(long *) var->ind_value < 0L)
6088 541 : 0 : *tobeinserted_p = NULL;
7700 542 : 0 : break;
543 : 0 : case ECPGt_long_long:
544 : : case ECPGt_unsigned_long_long:
545 [ # # ]: 0 : if (*(long long int *) var->ind_value < (long long) 0)
6088 546 : 0 : *tobeinserted_p = NULL;
7700 547 : 0 : break;
7599 meskes@postgresql.or 548 :CBC 1822 : case ECPGt_NO_INDICATOR:
7224 549 [ + + ]: 1822 : if (force_indicator == false)
550 : : {
7231 551 [ + + ]: 17 : if (ECPGis_noind_null(var->type, var->value))
6088 552 : 9 : *tobeinserted_p = NULL;
553 : : }
7599 554 : 1822 : break;
7700 555 : 11 : default:
556 : 11 : break;
557 : : }
6088 558 [ + + ]: 1838 : if (*tobeinserted_p != NULL)
559 : : {
6402 bruce@momjian.us 560 [ + + ]: 1826 : int asize = var->arrsize ? var->arrsize : 1;
561 : :
7700 meskes@postgresql.or 562 [ + + - - : 1826 : switch (var->type)
+ - - - +
+ + + + +
+ + + + +
- - ]
563 : : {
564 : : int element;
565 : :
566 : 4 : case ECPGt_short:
6038 567 [ - + ]: 4 : if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
7700 meskes@postgresql.or 568 :UBC 0 : return false;
569 : :
6449 meskes@postgresql.or 570 [ + + ]:CBC 4 : if (asize > 1)
571 : : {
3351 572 : 2 : strcpy(mallocedval, "{");
573 : :
6449 574 [ + + ]: 22 : for (element = 0; element < asize; element++)
7700 575 : 20 : sprintf(mallocedval + strlen(mallocedval), "%hd,", ((short *) var->value)[element]);
576 : :
3351 577 : 2 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
578 : : }
579 : : else
7700 580 : 2 : sprintf(mallocedval, "%hd", *((short *) var->value));
581 : :
582 : 4 : *tobeinserted_p = mallocedval;
583 : 4 : break;
584 : :
585 : 1271 : case ECPGt_int:
6038 586 [ - + ]: 1271 : if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
7700 meskes@postgresql.or 587 :UBC 0 : return false;
588 : :
6449 meskes@postgresql.or 589 [ - + ]:CBC 1271 : if (asize > 1)
590 : : {
6088 meskes@postgresql.or 591 :UBC 0 : strcpy(mallocedval, "{");
592 : :
6449 593 [ # # ]: 0 : for (element = 0; element < asize; element++)
7700 594 : 0 : sprintf(mallocedval + strlen(mallocedval), "%d,", ((int *) var->value)[element]);
595 : :
6088 596 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
597 : : }
598 : : else
7700 meskes@postgresql.or 599 :CBC 1271 : sprintf(mallocedval, "%d", *((int *) var->value));
600 : :
601 : 1271 : *tobeinserted_p = mallocedval;
602 : 1271 : break;
603 : :
7700 meskes@postgresql.or 604 :UBC 0 : case ECPGt_unsigned_short:
6038 605 [ # # ]: 0 : if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
7700 606 : 0 : return false;
607 : :
6449 608 [ # # ]: 0 : if (asize > 1)
609 : : {
3351 610 : 0 : strcpy(mallocedval, "{");
611 : :
6449 612 [ # # ]: 0 : for (element = 0; element < asize; element++)
7700 613 : 0 : sprintf(mallocedval + strlen(mallocedval), "%hu,", ((unsigned short *) var->value)[element]);
614 : :
3351 615 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
616 : : }
617 : : else
7700 618 : 0 : sprintf(mallocedval, "%hu", *((unsigned short *) var->value));
619 : :
620 : 0 : *tobeinserted_p = mallocedval;
621 : 0 : break;
622 : :
623 : 0 : case ECPGt_unsigned_int:
6038 624 [ # # ]: 0 : if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
7700 625 : 0 : return false;
626 : :
6449 627 [ # # ]: 0 : if (asize > 1)
628 : : {
3351 629 : 0 : strcpy(mallocedval, "{");
630 : :
6449 631 [ # # ]: 0 : for (element = 0; element < asize; element++)
7700 632 : 0 : sprintf(mallocedval + strlen(mallocedval), "%u,", ((unsigned int *) var->value)[element]);
633 : :
3351 634 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
635 : : }
636 : : else
7700 637 : 0 : sprintf(mallocedval, "%u", *((unsigned int *) var->value));
638 : :
639 : 0 : *tobeinserted_p = mallocedval;
640 : 0 : break;
641 : :
7700 meskes@postgresql.or 642 :CBC 5 : case ECPGt_long:
6038 643 [ - + ]: 5 : if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
7700 meskes@postgresql.or 644 :UBC 0 : return false;
645 : :
6449 meskes@postgresql.or 646 [ - + ]:CBC 5 : if (asize > 1)
647 : : {
3351 meskes@postgresql.or 648 :UBC 0 : strcpy(mallocedval, "{");
649 : :
6449 650 [ # # ]: 0 : for (element = 0; element < asize; element++)
7700 651 : 0 : sprintf(mallocedval + strlen(mallocedval), "%ld,", ((long *) var->value)[element]);
652 : :
3351 653 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
654 : : }
655 : : else
7700 meskes@postgresql.or 656 :CBC 5 : sprintf(mallocedval, "%ld", *((long *) var->value));
657 : :
658 : 5 : *tobeinserted_p = mallocedval;
659 : 5 : break;
660 : :
7700 meskes@postgresql.or 661 :UBC 0 : case ECPGt_unsigned_long:
6038 662 [ # # ]: 0 : if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
7700 663 : 0 : return false;
664 : :
6449 665 [ # # ]: 0 : if (asize > 1)
666 : : {
3351 667 : 0 : strcpy(mallocedval, "{");
668 : :
6449 669 [ # # ]: 0 : for (element = 0; element < asize; element++)
7700 670 : 0 : sprintf(mallocedval + strlen(mallocedval), "%lu,", ((unsigned long *) var->value)[element]);
671 : :
3351 672 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
673 : : }
674 : : else
7700 675 : 0 : sprintf(mallocedval, "%lu", *((unsigned long *) var->value));
676 : :
677 : 0 : *tobeinserted_p = mallocedval;
678 : 0 : break;
679 : :
680 : 0 : case ECPGt_long_long:
6038 681 [ # # ]: 0 : if (!(mallocedval = ecpg_alloc(asize * 30, lineno)))
7700 682 : 0 : return false;
683 : :
6449 684 [ # # ]: 0 : if (asize > 1)
685 : : {
3351 686 : 0 : strcpy(mallocedval, "{");
687 : :
6449 688 [ # # ]: 0 : for (element = 0; element < asize; element++)
4736 andrew@dunslane.net 689 : 0 : sprintf(mallocedval + strlen(mallocedval), "%lld,", ((long long int *) var->value)[element]);
690 : :
3351 meskes@postgresql.or 691 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
692 : : }
693 : : else
4736 andrew@dunslane.net 694 : 0 : sprintf(mallocedval, "%lld", *((long long int *) var->value));
695 : :
7700 meskes@postgresql.or 696 : 0 : *tobeinserted_p = mallocedval;
697 : 0 : break;
698 : :
699 : 0 : case ECPGt_unsigned_long_long:
6038 700 [ # # ]: 0 : if (!(mallocedval = ecpg_alloc(asize * 30, lineno)))
7700 701 : 0 : return false;
702 : :
6449 703 [ # # ]: 0 : if (asize > 1)
704 : : {
3351 705 : 0 : strcpy(mallocedval, "{");
706 : :
6449 707 [ # # ]: 0 : for (element = 0; element < asize; element++)
4736 andrew@dunslane.net 708 : 0 : sprintf(mallocedval + strlen(mallocedval), "%llu,", ((unsigned long long int *) var->value)[element]);
709 : :
3351 meskes@postgresql.or 710 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
711 : : }
712 : : else
4736 andrew@dunslane.net 713 : 0 : sprintf(mallocedval, "%llu", *((unsigned long long int *) var->value));
714 : :
7700 meskes@postgresql.or 715 : 0 : *tobeinserted_p = mallocedval;
716 : 0 : break;
717 : :
7700 meskes@postgresql.or 718 :CBC 1 : case ECPGt_float:
6038 719 [ - + ]: 1 : if (!(mallocedval = ecpg_alloc(asize * 25, lineno)))
7700 meskes@postgresql.or 720 :UBC 0 : return false;
721 : :
6449 meskes@postgresql.or 722 [ - + ]:CBC 1 : if (asize > 1)
723 : : {
3351 meskes@postgresql.or 724 :UBC 0 : strcpy(mallocedval, "{");
725 : :
6449 726 [ # # ]: 0 : for (element = 0; element < asize; element++)
5185 727 : 0 : sprintf_float_value(mallocedval + strlen(mallocedval), ((float *) var->value)[element], ",");
728 : :
3351 729 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
730 : : }
731 : : else
5185 meskes@postgresql.or 732 :CBC 1 : sprintf_float_value(mallocedval, *((float *) var->value), "");
733 : :
7700 734 : 1 : *tobeinserted_p = mallocedval;
735 : 1 : break;
736 : :
737 : 6 : case ECPGt_double:
6038 738 [ - + ]: 6 : if (!(mallocedval = ecpg_alloc(asize * 25, lineno)))
7700 meskes@postgresql.or 739 :UBC 0 : return false;
740 : :
6449 meskes@postgresql.or 741 [ - + ]:CBC 6 : if (asize > 1)
742 : : {
3351 meskes@postgresql.or 743 :UBC 0 : strcpy(mallocedval, "{");
744 : :
6449 745 [ # # ]: 0 : for (element = 0; element < asize; element++)
5185 746 : 0 : sprintf_double_value(mallocedval + strlen(mallocedval), ((double *) var->value)[element], ",");
747 : :
3351 748 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
749 : : }
750 : : else
5185 meskes@postgresql.or 751 :CBC 6 : sprintf_double_value(mallocedval, *((double *) var->value), "");
752 : :
7700 753 : 6 : *tobeinserted_p = mallocedval;
754 : 6 : break;
755 : :
756 : 2 : case ECPGt_bool:
3351 757 [ - + ]: 2 : if (!(mallocedval = ecpg_alloc(var->arrsize + sizeof("{}"), lineno)))
7700 meskes@postgresql.or 758 :UBC 0 : return false;
759 : :
7700 meskes@postgresql.or 760 [ - + ]:CBC 2 : if (var->arrsize > 1)
761 : : {
3351 meskes@postgresql.or 762 :UBC 0 : strcpy(mallocedval, "{");
763 : :
3132 764 [ # # ]: 0 : for (element = 0; element < asize; element++)
3128 peter_e@gmx.net 765 [ # # ]: 0 : sprintf(mallocedval + strlen(mallocedval), "%c,", (((bool *) var->value)[element]) ? 't' : 'f');
766 : :
3351 meskes@postgresql.or 767 : 0 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
768 : : }
769 : : else
770 : : {
7700 meskes@postgresql.or 771 [ + - ]:CBC 2 : if (var->offset == sizeof(char))
6088 772 [ + - ]: 2 : sprintf(mallocedval, "%c", (*((char *) var->value)) ? 't' : 'f');
7700 meskes@postgresql.or 773 [ # # ]:UBC 0 : else if (var->offset == sizeof(int))
6088 774 [ # # ]: 0 : sprintf(mallocedval, "%c", (*((int *) var->value)) ? 't' : 'f');
775 : : else
5568 peter_e@gmx.net 776 : 0 : ecpg_raise(lineno, ECPG_CONVERT_BOOL, ECPG_SQLSTATE_DATATYPE_MISMATCH, NULL);
777 : : }
778 : :
7700 meskes@postgresql.or 779 :CBC 2 : *tobeinserted_p = mallocedval;
780 : 2 : break;
781 : :
782 : 457 : case ECPGt_char:
783 : : case ECPGt_unsigned_char:
784 : : case ECPGt_string:
785 : : {
786 : : /* set slen to string length if type is char * */
5421 bruce@momjian.us 787 [ + + ]: 457 : int slen = (var->varcharsize == 0) ? strlen((char *) var->value) : (unsigned int) var->varcharsize;
788 : :
6038 meskes@postgresql.or 789 [ - + ]: 457 : if (!(newcopy = ecpg_alloc(slen + 1, lineno)))
7700 meskes@postgresql.or 790 :UBC 0 : return false;
791 : :
7700 meskes@postgresql.or 792 :CBC 457 : strncpy(newcopy, (char *) var->value, slen);
793 : 457 : newcopy[slen] = '\0';
794 : :
6444 795 : 457 : mallocedval = quote_postgres(newcopy, quote, lineno);
7700 796 [ - + ]: 457 : if (!mallocedval)
797 : : {
3357 heikki.linnakangas@i 798 :UBC 0 : ecpg_free(newcopy);
7700 meskes@postgresql.or 799 : 0 : return false;
800 : : }
801 : :
7700 meskes@postgresql.or 802 :CBC 457 : *tobeinserted_p = mallocedval;
803 : : }
804 : 457 : break;
7604 805 : 37 : case ECPGt_const:
806 : : case ECPGt_char_variable:
807 : : {
7700 808 : 37 : int slen = strlen((char *) var->value);
809 : :
6038 810 [ - + ]: 37 : if (!(mallocedval = ecpg_alloc(slen + 1, lineno)))
7700 meskes@postgresql.or 811 :UBC 0 : return false;
812 : :
7700 meskes@postgresql.or 813 :CBC 37 : strncpy(mallocedval, (char *) var->value, slen);
814 : 37 : mallocedval[slen] = '\0';
815 : :
816 : 37 : *tobeinserted_p = mallocedval;
817 : : }
818 : 37 : break;
819 : :
1882 820 : 13 : case ECPGt_bytea:
821 : : {
1357 michael@paquier.xyz 822 : 13 : struct ECPGgeneric_bytea *variable =
823 : : (struct ECPGgeneric_bytea *) (var->value);
824 : :
1882 meskes@postgresql.or 825 [ - + ]: 13 : if (!(mallocedval = (char *) ecpg_alloc(variable->len, lineno)))
1882 meskes@postgresql.or 826 :UBC 0 : return false;
827 : :
1882 meskes@postgresql.or 828 :CBC 13 : memcpy(mallocedval, variable->arr, variable->len);
829 : 13 : *tobeinserted_p = mallocedval;
830 : : }
831 : 13 : break;
832 : :
7700 833 : 9 : case ECPGt_varchar:
834 : : {
835 : 9 : struct ECPGgeneric_varchar *variable =
836 : : (struct ECPGgeneric_varchar *) (var->value);
837 : :
6038 838 [ - + ]: 9 : if (!(newcopy = (char *) ecpg_alloc(variable->len + 1, lineno)))
7700 meskes@postgresql.or 839 :UBC 0 : return false;
840 : :
7700 meskes@postgresql.or 841 :CBC 9 : strncpy(newcopy, variable->arr, variable->len);
842 : 9 : newcopy[variable->len] = '\0';
843 : :
6444 844 : 9 : mallocedval = quote_postgres(newcopy, quote, lineno);
7700 845 [ - + ]: 9 : if (!mallocedval)
846 : : {
3357 heikki.linnakangas@i 847 :UBC 0 : ecpg_free(newcopy);
7700 meskes@postgresql.or 848 : 0 : return false;
849 : : }
850 : :
7700 meskes@postgresql.or 851 :CBC 9 : *tobeinserted_p = mallocedval;
852 : : }
853 : 9 : break;
854 : :
7593 855 : 7 : case ECPGt_decimal:
856 : : case ECPGt_numeric:
857 : : {
7559 bruce@momjian.us 858 : 7 : char *str = NULL;
859 : : int slen;
860 : : numeric *nval;
861 : :
7700 meskes@postgresql.or 862 [ + + ]: 7 : if (var->arrsize > 1)
3351 863 : 3 : mallocedval = ecpg_strdup("{", lineno);
864 : : else
865 : 4 : mallocedval = ecpg_strdup("", lineno);
866 : :
867 [ - + ]: 7 : if (!mallocedval)
3249 bruce@momjian.us 868 :UBC 0 : return false;
869 : :
3351 meskes@postgresql.or 870 [ + + ]:CBC 41 : for (element = 0; element < asize; element++)
871 : : {
872 : : int result;
873 : :
6493 874 : 34 : nval = PGTYPESnumeric_new();
6502 875 [ - + ]: 34 : if (!nval)
876 : : {
3351 meskes@postgresql.or 877 :UBC 0 : ecpg_free(mallocedval);
6502 878 : 0 : return false;
879 : : }
880 : :
7593 meskes@postgresql.or 881 [ + + ]:CBC 34 : if (var->type == ECPGt_numeric)
3351 882 : 32 : result = PGTYPESnumeric_copy(&(((numeric *) (var->value))[element]), nval);
883 : : else
884 : 2 : result = PGTYPESnumeric_from_decimal(&(((decimal *) (var->value))[element]), nval);
885 : :
3697 sfrost@snowman.net 886 [ - + ]: 34 : if (result != 0)
887 : : {
3697 sfrost@snowman.net 888 :UBC 0 : PGTYPESnumeric_free(nval);
3351 meskes@postgresql.or 889 : 0 : ecpg_free(mallocedval);
3697 sfrost@snowman.net 890 : 0 : return false;
891 : : }
892 : :
7514 meskes@postgresql.or 893 :CBC 34 : str = PGTYPESnumeric_to_asc(nval, nval->dscale);
7559 bruce@momjian.us 894 : 34 : slen = strlen(str);
6502 meskes@postgresql.or 895 : 34 : PGTYPESnumeric_free(nval);
896 : :
3351 897 [ - + ]: 34 : if (!(newcopy = ecpg_realloc(mallocedval, strlen(mallocedval) + slen + 2, lineno)))
898 : : {
3351 meskes@postgresql.or 899 :UBC 0 : ecpg_free(mallocedval);
900 : 0 : ecpg_free(str);
7689 901 : 0 : return false;
902 : : }
3351 meskes@postgresql.or 903 :CBC 34 : mallocedval = newcopy;
904 : :
905 : : /* also copy trailing '\0' */
906 : 34 : memcpy(mallocedval + strlen(mallocedval), str, slen + 1);
907 [ + + ]: 34 : if (var->arrsize > 1)
908 : 30 : strcpy(mallocedval + strlen(mallocedval), ",");
909 : :
6038 910 : 34 : ecpg_free(str);
911 : : }
912 : :
3351 913 [ + + ]: 7 : if (var->arrsize > 1)
914 : 3 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
915 : :
7689 916 : 7 : *tobeinserted_p = mallocedval;
917 : : }
918 : 7 : break;
919 : :
920 : 3 : case ECPGt_interval:
921 : : {
7559 bruce@momjian.us 922 : 3 : char *str = NULL;
923 : : int slen;
924 : :
7689 meskes@postgresql.or 925 [ + - ]: 3 : if (var->arrsize > 1)
3351 926 : 3 : mallocedval = ecpg_strdup("{", lineno);
927 : : else
3351 meskes@postgresql.or 928 :UBC 0 : mallocedval = ecpg_strdup("", lineno);
929 : :
3351 meskes@postgresql.or 930 [ - + ]:CBC 3 : if (!mallocedval)
3249 bruce@momjian.us 931 :UBC 0 : return false;
932 : :
3351 meskes@postgresql.or 933 [ + + ]:CBC 33 : for (element = 0; element < asize; element++)
934 : : {
935 : 30 : str = quote_postgres(PGTYPESinterval_to_asc(&(((interval *) (var->value))[element])), quote, lineno);
6507 936 [ - + ]: 30 : if (!str)
937 : : {
3351 meskes@postgresql.or 938 :UBC 0 : ecpg_free(mallocedval);
6507 939 : 0 : return false;
940 : : }
941 : :
7559 bruce@momjian.us 942 :CBC 30 : slen = strlen(str);
943 : :
3351 meskes@postgresql.or 944 [ - + ]: 30 : if (!(newcopy = ecpg_realloc(mallocedval, strlen(mallocedval) + slen + 2, lineno)))
945 : : {
3351 meskes@postgresql.or 946 :UBC 0 : ecpg_free(mallocedval);
6038 947 : 0 : ecpg_free(str);
7700 948 : 0 : return false;
949 : : }
3351 meskes@postgresql.or 950 :CBC 30 : mallocedval = newcopy;
951 : :
952 : : /* also copy trailing '\0' */
3368 tgl@sss.pgh.pa.us 953 : 30 : memcpy(mallocedval + strlen(mallocedval), str, slen + 1);
3351 meskes@postgresql.or 954 [ + - ]: 30 : if (var->arrsize > 1)
955 : 30 : strcpy(mallocedval + strlen(mallocedval), ",");
956 : :
6038 957 : 30 : ecpg_free(str);
958 : : }
959 : :
3351 960 [ + - ]: 3 : if (var->arrsize > 1)
961 : 3 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
962 : :
7700 963 : 3 : *tobeinserted_p = mallocedval;
964 : : }
965 : 3 : break;
966 : :
7696 967 : 5 : case ECPGt_date:
968 : : {
7559 bruce@momjian.us 969 : 5 : char *str = NULL;
970 : : int slen;
971 : :
7696 meskes@postgresql.or 972 [ + + ]: 5 : if (var->arrsize > 1)
3351 973 : 3 : mallocedval = ecpg_strdup("{", lineno);
974 : : else
975 : 2 : mallocedval = ecpg_strdup("", lineno);
976 : :
977 [ - + ]: 5 : if (!mallocedval)
3249 bruce@momjian.us 978 :UBC 0 : return false;
979 : :
3351 meskes@postgresql.or 980 [ + + ]:CBC 37 : for (element = 0; element < asize; element++)
981 : : {
982 : 32 : str = quote_postgres(PGTYPESdate_to_asc(((date *) (var->value))[element]), quote, lineno);
6507 983 [ - + ]: 32 : if (!str)
984 : : {
3351 meskes@postgresql.or 985 :UBC 0 : ecpg_free(mallocedval);
6507 986 : 0 : return false;
987 : : }
988 : :
7559 bruce@momjian.us 989 :CBC 32 : slen = strlen(str);
990 : :
3351 meskes@postgresql.or 991 [ - + ]: 32 : if (!(newcopy = ecpg_realloc(mallocedval, strlen(mallocedval) + slen + 2, lineno)))
992 : : {
3351 meskes@postgresql.or 993 :UBC 0 : ecpg_free(mallocedval);
6038 994 : 0 : ecpg_free(str);
7696 995 : 0 : return false;
996 : : }
3351 meskes@postgresql.or 997 :CBC 32 : mallocedval = newcopy;
998 : :
999 : : /* also copy trailing '\0' */
3368 tgl@sss.pgh.pa.us 1000 : 32 : memcpy(mallocedval + strlen(mallocedval), str, slen + 1);
3351 meskes@postgresql.or 1001 [ + + ]: 32 : if (var->arrsize > 1)
1002 : 30 : strcpy(mallocedval + strlen(mallocedval), ",");
1003 : :
6038 1004 : 32 : ecpg_free(str);
1005 : : }
1006 : :
3351 1007 [ + + ]: 5 : if (var->arrsize > 1)
1008 : 3 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
1009 : :
7696 1010 : 5 : *tobeinserted_p = mallocedval;
1011 : : }
1012 : 5 : break;
1013 : :
1014 : 6 : case ECPGt_timestamp:
1015 : : {
6470 1016 : 6 : char *str = NULL;
1017 : : int slen;
1018 : :
7696 1019 [ + + ]: 6 : if (var->arrsize > 1)
3351 1020 : 3 : mallocedval = ecpg_strdup("{", lineno);
1021 : : else
1022 : 3 : mallocedval = ecpg_strdup("", lineno);
1023 : :
1024 [ - + ]: 6 : if (!mallocedval)
3249 bruce@momjian.us 1025 :UBC 0 : return false;
1026 : :
3351 meskes@postgresql.or 1027 [ + + ]:CBC 39 : for (element = 0; element < asize; element++)
1028 : : {
1029 : 33 : str = quote_postgres(PGTYPEStimestamp_to_asc(((timestamp *) (var->value))[element]), quote, lineno);
6507 1030 [ - + ]: 33 : if (!str)
1031 : : {
3351 meskes@postgresql.or 1032 :UBC 0 : ecpg_free(mallocedval);
6507 1033 : 0 : return false;
1034 : : }
1035 : :
7559 bruce@momjian.us 1036 :CBC 33 : slen = strlen(str);
1037 : :
3351 meskes@postgresql.or 1038 [ - + ]: 33 : if (!(newcopy = ecpg_realloc(mallocedval, strlen(mallocedval) + slen + 2, lineno)))
1039 : : {
3351 meskes@postgresql.or 1040 :UBC 0 : ecpg_free(mallocedval);
6038 1041 : 0 : ecpg_free(str);
7696 1042 : 0 : return false;
1043 : : }
3351 meskes@postgresql.or 1044 :CBC 33 : mallocedval = newcopy;
1045 : :
1046 : : /* also copy trailing '\0' */
3368 tgl@sss.pgh.pa.us 1047 : 33 : memcpy(mallocedval + strlen(mallocedval), str, slen + 1);
3351 meskes@postgresql.or 1048 [ + + ]: 33 : if (var->arrsize > 1)
1049 : 30 : strcpy(mallocedval + strlen(mallocedval), ",");
1050 : :
6038 1051 : 33 : ecpg_free(str);
1052 : : }
1053 : :
3351 1054 [ + + ]: 6 : if (var->arrsize > 1)
1055 : 3 : strcpy(mallocedval + strlen(mallocedval) - 1, "}");
1056 : :
7696 1057 : 6 : *tobeinserted_p = mallocedval;
1058 : : }
1059 : 6 : break;
1060 : :
7228 meskes@postgresql.or 1061 :UBC 0 : case ECPGt_descriptor:
1062 : : case ECPGt_sqlda:
1063 : 0 : break;
1064 : :
7700 1065 : 0 : default:
1066 : : /* Not implemented yet */
4599 peter_e@gmx.net 1067 : 0 : ecpg_raise(lineno, ECPG_UNSUPPORTED, ECPG_SQLSTATE_ECPG_INTERNAL_ERROR, ecpg_type_name(var->type));
7700 meskes@postgresql.or 1068 : 0 : return false;
1069 : : break;
1070 : : }
1071 : : }
7700 meskes@postgresql.or 1072 :CBC 1838 : return true;
1073 : : }
1074 : :
1075 : : static void
1882 1076 : 1732 : print_param_value(char *value, int len, int is_binary, int lineno, int nth)
1077 : : {
1078 : : char *value_s;
1789 tgl@sss.pgh.pa.us 1079 : 1732 : bool malloced = false;
1080 : :
1882 meskes@postgresql.or 1081 [ + + ]: 1732 : if (value == NULL)
1082 : 12 : value_s = "null";
1789 tgl@sss.pgh.pa.us 1083 [ + + ]: 1720 : else if (!is_binary)
1882 meskes@postgresql.or 1084 : 1707 : value_s = value;
1085 : : else
1086 : : {
1789 tgl@sss.pgh.pa.us 1087 : 13 : value_s = ecpg_alloc(ecpg_hex_enc_len(len) + 1, lineno);
1874 meskes@postgresql.or 1088 [ + - ]: 13 : if (value_s != NULL)
1089 : : {
1090 : 13 : ecpg_hex_encode(value, len, value_s);
1091 : 13 : value_s[ecpg_hex_enc_len(len)] = '\0';
1092 : 13 : malloced = true;
1093 : : }
1094 : : else
1874 meskes@postgresql.or 1095 :UBC 0 : value_s = "no memory for logging of parameter";
1096 : : }
1097 : :
1882 meskes@postgresql.or 1098 :CBC 1732 : ecpg_log("ecpg_free_params on line %d: parameter %d = %s\n",
1099 : : lineno, nth, value_s);
1100 : :
1101 [ + + ]: 1732 : if (malloced)
1102 : 13 : ecpg_free(value_s);
1103 : 1732 : }
1104 : :
1105 : : void
2489 tgl@sss.pgh.pa.us 1106 : 2651 : ecpg_free_params(struct statement *stmt, bool print)
1107 : : {
1108 : : int n;
1109 : :
3741 alvherre@alvh.no-ip. 1110 [ + + ]: 4383 : for (n = 0; n < stmt->nparams; n++)
1111 : : {
6088 meskes@postgresql.or 1112 [ + - ]: 1732 : if (print)
1882 1113 : 1732 : print_param_value(stmt->paramvalues[n], stmt->paramlengths[n],
1789 tgl@sss.pgh.pa.us 1114 : 1732 : stmt->paramformats[n], stmt->lineno, n + 1);
3741 alvherre@alvh.no-ip. 1115 : 1732 : ecpg_free(stmt->paramvalues[n]);
1116 : : }
1117 : 2651 : ecpg_free(stmt->paramvalues);
1882 meskes@postgresql.or 1118 : 2651 : ecpg_free(stmt->paramlengths);
1119 : 2651 : ecpg_free(stmt->paramformats);
3741 alvherre@alvh.no-ip. 1120 : 2651 : stmt->paramvalues = NULL;
1882 meskes@postgresql.or 1121 : 2651 : stmt->paramlengths = NULL;
1122 : 2651 : stmt->paramformats = NULL;
3741 alvherre@alvh.no-ip. 1123 : 2651 : stmt->nparams = 0;
6088 meskes@postgresql.or 1124 : 2651 : }
1125 : :
1126 : : static bool
2489 tgl@sss.pgh.pa.us 1127 : 97 : insert_tobeinserted(int position, int ph_len, struct statement *stmt, char *tobeinserted)
1128 : : {
1129 : : char *newcopy;
1130 : :
5934 meskes@postgresql.or 1131 [ - + ]: 97 : if (!(newcopy = (char *) ecpg_alloc(strlen(stmt->command)
1132 : 97 : + strlen(tobeinserted)
1133 : 97 : + 1, stmt->lineno)))
1134 : : {
5934 meskes@postgresql.or 1135 :UBC 0 : ecpg_free(tobeinserted);
1136 : 0 : return false;
1137 : : }
1138 : :
5934 meskes@postgresql.or 1139 :CBC 97 : strcpy(newcopy, stmt->command);
1140 : 97 : strcpy(newcopy + position - 1, tobeinserted);
1141 : :
1142 : : /*
1143 : : * The strange thing in the second argument is the rest of the string from
1144 : : * the old string
1145 : : */
1146 : 97 : strcat(newcopy,
1147 : 97 : stmt->command
1148 : : + position
1149 : 97 : + ph_len - 1);
1150 : :
1151 : 97 : ecpg_free(stmt->command);
1152 : 97 : stmt->command = newcopy;
1153 : :
1874 1154 : 97 : ecpg_free(tobeinserted);
5934 1155 : 97 : return true;
1156 : : }
1157 : :
1158 : : static bool
1882 1159 : 13 : store_input_from_desc(struct statement *stmt, struct descriptor_item *desc_item,
1160 : : char **tobeinserted)
1161 : : {
1162 : : struct variable var;
1163 : :
1164 : : /*
1165 : : * In case of binary data, only allocate memory and memcpy because binary
1166 : : * data have been already stored into desc_item->data with
1167 : : * ecpg_store_input() at ECPGset_desc().
1168 : : */
1169 [ + + ]: 13 : if (desc_item->is_binary)
1170 : : {
1171 [ - + ]: 2 : if (!(*tobeinserted = ecpg_alloc(desc_item->data_len, stmt->lineno)))
1882 meskes@postgresql.or 1172 :UBC 0 : return false;
1882 meskes@postgresql.or 1173 :CBC 2 : memcpy(*tobeinserted, desc_item->data, desc_item->data_len);
1174 : 2 : return true;
1175 : : }
1176 : :
1177 : 11 : var.type = ECPGt_char;
1178 : 11 : var.varcharsize = strlen(desc_item->data);
1179 : 11 : var.value = desc_item->data;
1180 : 11 : var.pointer = &(desc_item->data);
1181 : 11 : var.arrsize = 1;
1182 : 11 : var.offset = 0;
1183 : :
1184 [ + + ]: 11 : if (!desc_item->indicator)
1185 : : {
1186 : 9 : var.ind_type = ECPGt_NO_INDICATOR;
1187 : 9 : var.ind_value = var.ind_pointer = NULL;
1188 : 9 : var.ind_varcharsize = var.ind_arrsize = var.ind_offset = 0;
1189 : : }
1190 : : else
1191 : : {
1192 : 2 : var.ind_type = ECPGt_int;
1193 : 2 : var.ind_value = &(desc_item->indicator);
1194 : 2 : var.ind_pointer = &(var.ind_value);
1195 : 2 : var.ind_varcharsize = var.ind_arrsize = 1;
1196 : 2 : var.ind_offset = 0;
1197 : : }
1198 : :
1199 [ - + ]: 11 : if (!ecpg_store_input(stmt->lineno, stmt->force_indicator, &var, tobeinserted, false))
1882 meskes@postgresql.or 1200 :UBC 0 : return false;
1201 : :
1882 meskes@postgresql.or 1202 :CBC 11 : return true;
1203 : : }
1204 : :
1205 : : /*
1206 : : * ecpg_build_params
1207 : : * Build statement parameters
1208 : : *
1209 : : * The input values are taken from user variables, and the results are stored
1210 : : * in arrays which can be used by PQexecParams().
1211 : : */
1212 : : bool
2489 tgl@sss.pgh.pa.us 1213 : 2651 : ecpg_build_params(struct statement *stmt)
1214 : : {
1215 : : struct variable *var;
7168 bruce@momjian.us 1216 : 2651 : int desc_counter = 0;
5995 1217 : 2651 : int position = 0;
1218 : : const char *value;
2362 meskes@postgresql.or 1219 : 2651 : bool std_strings = false;
1220 : :
1221 : : /* Get standard_conforming_strings setting. */
1222 : 2651 : value = PQparameterStatus(stmt->connection->connection, "standard_conforming_strings");
1223 [ + - + + ]: 2651 : if (value && strcmp(value, "on") == 0)
1224 : 2642 : std_strings = true;
1225 : :
1226 : : /*
1227 : : * If the type is one of the fill in types then we take the argument and
1228 : : * enter it to our parameter array at the first position. Then if there
1229 : : * are any more fill in types we add more parameters.
1230 : : */
7700 1231 : 2651 : var = stmt->inlist;
1232 [ + + ]: 4480 : while (var)
1233 : : {
1234 : : char *tobeinserted;
5995 bruce@momjian.us 1235 : 1829 : int counter = 1;
1236 : : bool binary_format;
1237 : : int binary_length;
1238 : :
1239 : :
7228 meskes@postgresql.or 1240 : 1829 : tobeinserted = NULL;
1882 1241 : 1829 : binary_length = 0;
1242 : 1829 : binary_format = false;
1243 : :
1244 : : /*
1245 : : * A descriptor is a special case since it contains many variables but
1246 : : * is listed only once.
1247 : : */
7228 1248 [ + + ]: 1829 : if (var->type == ECPGt_descriptor)
1249 : : {
1250 : : /*
1251 : : * We create an additional variable list here, so the same logic
1252 : : * applies.
1253 : : */
1254 : : struct descriptor *desc;
1255 : : struct descriptor_item *desc_item;
1256 : :
6038 1257 : 13 : desc = ecpg_find_desc(stmt->lineno, var->pointer);
7228 1258 [ - + ]: 13 : if (desc == NULL)
7228 meskes@postgresql.or 1259 :UBC 0 : return false;
1260 : :
7228 meskes@postgresql.or 1261 :CBC 13 : desc_counter++;
6088 1262 [ + - ]: 20 : for (desc_item = desc->items; desc_item; desc_item = desc_item->next)
1263 : : {
1882 1264 [ + + ]: 20 : if (desc_item->num != desc_counter)
1265 : 7 : continue;
1266 : :
1267 [ - + ]: 13 : if (!store_input_from_desc(stmt, desc_item, &tobeinserted))
1882 meskes@postgresql.or 1268 :UBC 0 : return false;
1269 : :
1882 meskes@postgresql.or 1270 [ + + ]:CBC 13 : if (desc_item->is_binary)
1271 : : {
1272 : 2 : binary_length = desc_item->data_len;
1273 : 2 : binary_format = true;
1274 : : }
1275 : 13 : break;
1276 : : }
6088 1277 [ + + ]: 13 : if (desc->count == desc_counter)
7228 1278 : 7 : desc_counter = 0;
1279 : : }
5213 1280 [ + + ]: 1816 : else if (var->type == ECPGt_sqlda)
1281 : : {
1282 [ + + - + ]: 4 : if (INFORMIX_MODE(stmt->compat))
1283 : 2 : {
5161 bruce@momjian.us 1284 : 2 : struct sqlda_compat *sqlda = *(struct sqlda_compat **) var->pointer;
1285 : : struct variable desc_inlist;
1286 : : int i;
1287 : :
5213 meskes@postgresql.or 1288 [ - + ]: 2 : if (sqlda == NULL)
5213 meskes@postgresql.or 1289 :UBC 0 : return false;
1290 : :
5213 meskes@postgresql.or 1291 :CBC 2 : desc_counter++;
1292 [ + - ]: 2 : for (i = 0; i < sqlda->sqld; i++)
1293 : : {
1294 [ + - ]: 2 : if (i + 1 == desc_counter)
1295 : : {
1296 : 2 : desc_inlist.type = sqlda->sqlvar[i].sqltype;
1297 : 2 : desc_inlist.value = sqlda->sqlvar[i].sqldata;
1298 : 2 : desc_inlist.pointer = &(sqlda->sqlvar[i].sqldata);
1299 [ - + ]: 2 : switch (desc_inlist.type)
1300 : : {
5213 meskes@postgresql.or 1301 :UBC 0 : case ECPGt_char:
1302 : : case ECPGt_varchar:
1303 : 0 : desc_inlist.varcharsize = strlen(sqlda->sqlvar[i].sqldata);
1304 : 0 : break;
5213 meskes@postgresql.or 1305 :CBC 2 : default:
1306 : 2 : desc_inlist.varcharsize = 0;
1307 : 2 : break;
1308 : : }
1309 : 2 : desc_inlist.arrsize = 1;
1310 : 2 : desc_inlist.offset = 0;
1311 [ - + ]: 2 : if (sqlda->sqlvar[i].sqlind)
1312 : : {
5213 meskes@postgresql.or 1313 :UBC 0 : desc_inlist.ind_type = ECPGt_short;
1314 : : /* ECPG expects indicator value < 0 */
1315 [ # # ]: 0 : if (*(sqlda->sqlvar[i].sqlind))
1316 : 0 : *(sqlda->sqlvar[i].sqlind) = -1;
1317 : 0 : desc_inlist.ind_value = sqlda->sqlvar[i].sqlind;
1318 : 0 : desc_inlist.ind_pointer = &(sqlda->sqlvar[i].sqlind);
1319 : 0 : desc_inlist.ind_varcharsize = desc_inlist.ind_arrsize = 1;
1320 : 0 : desc_inlist.ind_offset = 0;
1321 : : }
1322 : : else
1323 : : {
5213 meskes@postgresql.or 1324 :CBC 2 : desc_inlist.ind_type = ECPGt_NO_INDICATOR;
1325 : 2 : desc_inlist.ind_value = desc_inlist.ind_pointer = NULL;
1326 : 2 : desc_inlist.ind_varcharsize = desc_inlist.ind_arrsize = desc_inlist.ind_offset = 0;
1327 : : }
1328 [ - + ]: 2 : if (!ecpg_store_input(stmt->lineno, stmt->force_indicator, &desc_inlist, &tobeinserted, false))
5213 meskes@postgresql.or 1329 :UBC 0 : return false;
1330 : :
5213 meskes@postgresql.or 1331 :CBC 2 : break;
1332 : : }
1333 : : }
1334 [ + - ]: 2 : if (sqlda->sqld == desc_counter)
1335 : 2 : desc_counter = 0;
1336 : : }
1337 : : else
1338 : : {
5161 bruce@momjian.us 1339 : 2 : struct sqlda_struct *sqlda = *(struct sqlda_struct **) var->pointer;
1340 : : struct variable desc_inlist;
1341 : : int i;
1342 : :
5213 meskes@postgresql.or 1343 [ - + ]: 2 : if (sqlda == NULL)
5213 meskes@postgresql.or 1344 :UBC 0 : return false;
1345 : :
5213 meskes@postgresql.or 1346 :CBC 2 : desc_counter++;
1347 [ + - ]: 2 : for (i = 0; i < sqlda->sqln; i++)
1348 : : {
1349 [ + - ]: 2 : if (i + 1 == desc_counter)
1350 : : {
1351 : 2 : desc_inlist.type = sqlda->sqlvar[i].sqltype;
1352 : 2 : desc_inlist.value = sqlda->sqlvar[i].sqldata;
1353 : 2 : desc_inlist.pointer = &(sqlda->sqlvar[i].sqldata);
1354 [ - + ]: 2 : switch (desc_inlist.type)
1355 : : {
5213 meskes@postgresql.or 1356 :UBC 0 : case ECPGt_char:
1357 : : case ECPGt_varchar:
1358 : 0 : desc_inlist.varcharsize = strlen(sqlda->sqlvar[i].sqldata);
1359 : 0 : break;
5213 meskes@postgresql.or 1360 :CBC 2 : default:
1361 : 2 : desc_inlist.varcharsize = 0;
1362 : 2 : break;
1363 : : }
1364 : 2 : desc_inlist.arrsize = 1;
1365 : 2 : desc_inlist.offset = 0;
1366 [ - + ]: 2 : if (sqlda->sqlvar[i].sqlind)
1367 : : {
5213 meskes@postgresql.or 1368 :UBC 0 : desc_inlist.ind_type = ECPGt_short;
1369 : : /* ECPG expects indicator value < 0 */
1370 [ # # ]: 0 : if (*(sqlda->sqlvar[i].sqlind))
1371 : 0 : *(sqlda->sqlvar[i].sqlind) = -1;
1372 : 0 : desc_inlist.ind_value = sqlda->sqlvar[i].sqlind;
1373 : 0 : desc_inlist.ind_pointer = &(sqlda->sqlvar[i].sqlind);
1374 : 0 : desc_inlist.ind_varcharsize = desc_inlist.ind_arrsize = 1;
1375 : 0 : desc_inlist.ind_offset = 0;
1376 : : }
1377 : : else
1378 : : {
5213 meskes@postgresql.or 1379 :CBC 2 : desc_inlist.ind_type = ECPGt_NO_INDICATOR;
1380 : 2 : desc_inlist.ind_value = desc_inlist.ind_pointer = NULL;
1381 : 2 : desc_inlist.ind_varcharsize = desc_inlist.ind_arrsize = desc_inlist.ind_offset = 0;
1382 : : }
1383 [ - + ]: 2 : if (!ecpg_store_input(stmt->lineno, stmt->force_indicator, &desc_inlist, &tobeinserted, false))
5213 meskes@postgresql.or 1384 :UBC 0 : return false;
1385 : :
5213 meskes@postgresql.or 1386 :CBC 2 : break;
1387 : : }
1388 : : }
1389 [ + - ]: 2 : if (sqlda->sqln == desc_counter)
1390 : 2 : desc_counter = 0;
1391 : : }
1392 : : }
1393 : : else
1394 : : {
6038 1395 [ - + ]: 1812 : if (!ecpg_store_input(stmt->lineno, stmt->force_indicator, var, &tobeinserted, false))
7228 meskes@postgresql.or 1396 :UBC 0 : return false;
1397 : :
1882 meskes@postgresql.or 1398 [ + + ]:CBC 1812 : if (var->type == ECPGt_bytea)
1399 : : {
1357 michael@paquier.xyz 1400 : 11 : binary_length = ((struct ECPGgeneric_bytea *) (var->value))->len;
1882 meskes@postgresql.or 1401 : 11 : binary_format = true;
1402 : : }
1403 : : }
1404 : :
1405 : : /*
1406 : : * now tobeinserted points to an area that contains the next
1407 : : * parameter; now find the position in the string where it belongs
1408 : : */
2362 1409 [ - + ]: 1829 : if ((position = next_insert(stmt->command, position, stmt->questionmarks, std_strings) + 1) == 0)
1410 : : {
1411 : : /*
1412 : : * We have an argument but we don't have the matched up
1413 : : * placeholder in the string
1414 : : */
5934 meskes@postgresql.or 1415 :UBC 0 : ecpg_raise(stmt->lineno, ECPG_TOO_MANY_ARGUMENTS,
1416 : : ECPG_SQLSTATE_USING_CLAUSE_DOES_NOT_MATCH_PARAMETERS,
1417 : : NULL);
3741 alvherre@alvh.no-ip. 1418 : 0 : ecpg_free_params(stmt, false);
1874 meskes@postgresql.or 1419 : 0 : ecpg_free(tobeinserted);
5934 1420 : 0 : return false;
1421 : : }
1422 : :
1423 : : /*
1424 : : * if var->type=ECPGt_char_variable we have a dynamic cursor we have
1425 : : * to simulate a dynamic cursor because there is no backend
1426 : : * functionality for it
1427 : : */
5934 meskes@postgresql.or 1428 [ + + ]:CBC 1829 : if (var->type == ECPGt_char_variable)
1429 : : {
5421 bruce@momjian.us 1430 [ - + ]: 21 : int ph_len = (stmt->command[position] == '?') ? strlen("?") : strlen("$1");
1431 : :
5934 meskes@postgresql.or 1432 [ - + ]: 21 : if (!insert_tobeinserted(position, ph_len, stmt, tobeinserted))
1433 : : {
3741 alvherre@alvh.no-ip. 1434 :UBC 0 : ecpg_free_params(stmt, false);
5934 meskes@postgresql.or 1435 : 0 : return false;
1436 : : }
5934 meskes@postgresql.or 1437 :CBC 21 : tobeinserted = NULL;
1438 : : }
1439 : :
1440 : : /*
1441 : : * if the placeholder is '$0' we have to replace it on the client side
1442 : : * this is for places we want to support variables at that are not
1443 : : * supported in the backend
1444 : : */
5421 bruce@momjian.us 1445 [ + + ]: 1808 : else if (stmt->command[position] == '0')
1446 : : {
1789 meskes@postgresql.or 1447 [ + + ]: 62 : if (stmt->statement_type == ECPGst_prepare ||
1448 [ + + ]: 57 : stmt->statement_type == ECPGst_exec_with_exprlist)
1449 : : {
1450 : : /* Need to double-quote the inserted statement name. */
1785 tgl@sss.pgh.pa.us 1451 : 14 : char *str = ecpg_alloc(strlen(tobeinserted) + 2 + 1,
1452 : : stmt->lineno);
1453 : :
1454 [ - + ]: 14 : if (!str)
1455 : : {
1785 tgl@sss.pgh.pa.us 1456 :UBC 0 : ecpg_free(tobeinserted);
1457 : 0 : ecpg_free_params(stmt, false);
1458 : 0 : return false;
1459 : : }
1789 meskes@postgresql.or 1460 :CBC 14 : sprintf(str, "\"%s\"", tobeinserted);
1461 : 14 : ecpg_free(tobeinserted);
1462 : 14 : tobeinserted = str;
1463 : : }
1464 : :
1465 [ - + ]: 62 : if (!insert_tobeinserted(position, 2, stmt, tobeinserted))
1466 : : {
1789 meskes@postgresql.or 1467 :UBC 0 : ecpg_free_params(stmt, false);
1468 : 0 : return false;
1469 : : }
1789 meskes@postgresql.or 1470 :CBC 62 : tobeinserted = NULL;
1471 : : }
1472 [ + + ]: 1746 : else if (stmt->statement_type == ECPGst_exec_with_exprlist)
1473 : : {
1474 [ - + ]: 14 : if (binary_format)
1475 : : {
1785 tgl@sss.pgh.pa.us 1476 :UBC 0 : char *p = convert_bytea_to_string(tobeinserted,
1477 : : binary_length,
1478 : : stmt->lineno);
1479 : :
1480 : 0 : ecpg_free(tobeinserted);
1789 meskes@postgresql.or 1481 [ # # ]: 0 : if (!p)
1482 : : {
1483 : 0 : ecpg_free_params(stmt, false);
1484 : 0 : return false;
1485 : : }
1486 : 0 : tobeinserted = p;
1487 : : }
1488 : :
5934 meskes@postgresql.or 1489 [ - + ]:CBC 14 : if (!insert_tobeinserted(position, 2, stmt, tobeinserted))
1490 : : {
3741 alvherre@alvh.no-ip. 1491 :UBC 0 : ecpg_free_params(stmt, false);
5934 meskes@postgresql.or 1492 : 0 : return false;
1493 : : }
5934 meskes@postgresql.or 1494 :CBC 14 : tobeinserted = NULL;
1495 : : }
1496 : : else
1497 : : {
1547 tgl@sss.pgh.pa.us 1498 : 1732 : bool realloc_failed = false;
1499 : : char **newparamvalues;
1500 : : int *newparamlengths;
1501 : : int *newparamformats;
1502 : :
1503 : : /* enlarge all the param arrays */
1504 [ + - ]: 1732 : if ((newparamvalues = (char **) ecpg_realloc(stmt->paramvalues, sizeof(char *) * (stmt->nparams + 1), stmt->lineno)))
1505 : 1732 : stmt->paramvalues = newparamvalues;
1506 : : else
1547 tgl@sss.pgh.pa.us 1507 :UBC 0 : realloc_failed = true;
1508 : :
1547 tgl@sss.pgh.pa.us 1509 [ + - ]:CBC 1732 : if ((newparamlengths = (int *) ecpg_realloc(stmt->paramlengths, sizeof(int) * (stmt->nparams + 1), stmt->lineno)))
1510 : 1732 : stmt->paramlengths = newparamlengths;
1511 : : else
1547 tgl@sss.pgh.pa.us 1512 :UBC 0 : realloc_failed = true;
1513 : :
1547 tgl@sss.pgh.pa.us 1514 [ + - ]:CBC 1732 : if ((newparamformats = (int *) ecpg_realloc(stmt->paramformats, sizeof(int) * (stmt->nparams + 1), stmt->lineno)))
1515 : 1732 : stmt->paramformats = newparamformats;
1516 : : else
1547 tgl@sss.pgh.pa.us 1517 :UBC 0 : realloc_failed = true;
1518 : :
1547 tgl@sss.pgh.pa.us 1519 [ - + ]:CBC 1732 : if (realloc_failed)
1520 : : {
3741 alvherre@alvh.no-ip. 1521 :UBC 0 : ecpg_free_params(stmt, false);
1874 meskes@postgresql.or 1522 : 0 : ecpg_free(tobeinserted);
6088 1523 : 0 : return false;
1524 : : }
1525 : :
1526 : : /* only now can we assign ownership of "tobeinserted" to stmt */
1547 tgl@sss.pgh.pa.us 1527 :CBC 1732 : stmt->paramvalues[stmt->nparams] = tobeinserted;
1874 meskes@postgresql.or 1528 : 1732 : stmt->paramlengths[stmt->nparams] = binary_length;
1529 : 1732 : stmt->paramformats[stmt->nparams] = (binary_format ? 1 : 0);
3741 alvherre@alvh.no-ip. 1530 : 1732 : stmt->nparams++;
1531 : :
1532 : : /* let's see if this was an old style placeholder */
5934 meskes@postgresql.or 1533 [ - + ]: 1732 : if (stmt->command[position] == '?')
1534 : : {
1535 : : /* yes, replace with new style */
2489 tgl@sss.pgh.pa.us 1536 :UBC 0 : int buffersize = sizeof(int) * CHAR_BIT * 10 / 3; /* a rough guess of the
1537 : : * size we need */
1538 : :
5934 meskes@postgresql.or 1539 [ # # ]: 0 : if (!(tobeinserted = (char *) ecpg_alloc(buffersize, stmt->lineno)))
1540 : : {
3741 alvherre@alvh.no-ip. 1541 : 0 : ecpg_free_params(stmt, false);
6088 meskes@postgresql.or 1542 : 0 : return false;
1543 : : }
1544 : :
5934 1545 : 0 : snprintf(tobeinserted, buffersize, "$%d", counter++);
1546 : :
1547 [ # # ]: 0 : if (!insert_tobeinserted(position, 2, stmt, tobeinserted))
1548 : : {
3741 alvherre@alvh.no-ip. 1549 : 0 : ecpg_free_params(stmt, false);
6088 meskes@postgresql.or 1550 : 0 : return false;
1551 : : }
5934 1552 : 0 : tobeinserted = NULL;
1553 : : }
1554 : : }
1555 : :
7228 meskes@postgresql.or 1556 [ + + ]:CBC 1829 : if (desc_counter == 0)
7168 bruce@momjian.us 1557 : 1823 : var = var->next;
1558 : : }
1559 : :
1560 : : /*
1561 : : * Check if there are unmatched things left. PREPARE AS has no parameter.
1562 : : * Check other statement.
1563 : : */
1789 meskes@postgresql.or 1564 [ + + - + ]: 5297 : if (stmt->statement_type != ECPGst_prepare &&
1565 : 2646 : next_insert(stmt->command, position, stmt->questionmarks, std_strings) >= 0)
1566 : : {
6038 meskes@postgresql.or 1567 :UBC 0 : ecpg_raise(stmt->lineno, ECPG_TOO_FEW_ARGUMENTS,
1568 : : ECPG_SQLSTATE_USING_CLAUSE_DOES_NOT_MATCH_PARAMETERS, NULL);
3741 alvherre@alvh.no-ip. 1569 : 0 : ecpg_free_params(stmt, false);
7700 meskes@postgresql.or 1570 : 0 : return false;
1571 : : }
1572 : :
3741 alvherre@alvh.no-ip. 1573 :CBC 2651 : return true;
1574 : : }
1575 : :
1576 : : /*
1577 : : * ecpg_autostart_transaction
1578 : : * If we are in non-autocommit mode, automatically start a transaction.
1579 : : */
1580 : : bool
2489 tgl@sss.pgh.pa.us 1581 : 2651 : ecpg_autostart_transaction(struct statement *stmt)
1582 : : {
4931 meskes@postgresql.or 1583 [ + + + + ]: 2651 : if (PQtransactionStatus(stmt->connection->connection) == PQTRANS_IDLE && !stmt->connection->autocommit)
1584 : : {
3741 alvherre@alvh.no-ip. 1585 : 92 : stmt->results = PQexec(stmt->connection->connection, "begin transaction");
1586 [ - + ]: 92 : if (!ecpg_check_PQresult(stmt->results, stmt->lineno, stmt->connection->connection, stmt->compat))
1587 : : {
3741 alvherre@alvh.no-ip. 1588 :UBC 0 : ecpg_free_params(stmt, false);
7700 meskes@postgresql.or 1589 : 0 : return false;
1590 : : }
3741 alvherre@alvh.no-ip. 1591 :CBC 92 : PQclear(stmt->results);
1592 : 92 : stmt->results = NULL;
1593 : : }
1594 : 2651 : return true;
1595 : : }
1596 : :
1597 : : /*
1598 : : * ecpg_execute
1599 : : * Execute the SQL statement.
1600 : : */
1601 : : bool
2489 tgl@sss.pgh.pa.us 1602 : 2651 : ecpg_execute(struct statement *stmt)
1603 : : {
3741 alvherre@alvh.no-ip. 1604 : 2651 : ecpg_log("ecpg_execute on line %d: query: %s; with %d parameter(s) on connection %s\n", stmt->lineno, stmt->command, stmt->nparams, stmt->connection->name);
6088 meskes@postgresql.or 1605 [ + + ]: 2651 : if (stmt->statement_type == ECPGst_execute)
1606 : : {
1882 1607 : 1664 : stmt->results = PQexecPrepared(stmt->connection->connection,
1608 : 832 : stmt->name,
1609 : : stmt->nparams,
1610 : 832 : (const char *const *) stmt->paramvalues,
1611 : 832 : (const int *) stmt->paramlengths,
1612 : 832 : (const int *) stmt->paramformats,
1613 : : 0);
5812 peter_e@gmx.net 1614 : 832 : ecpg_log("ecpg_execute on line %d: using PQexecPrepared for \"%s\"\n", stmt->lineno, stmt->command);
1615 : : }
1616 : : else
1617 : : {
3741 alvherre@alvh.no-ip. 1618 [ + + ]: 1819 : if (stmt->nparams == 0)
1619 : : {
1620 : 1365 : stmt->results = PQexec(stmt->connection->connection, stmt->command);
5812 peter_e@gmx.net 1621 : 1365 : ecpg_log("ecpg_execute on line %d: using PQexec\n", stmt->lineno);
1622 : : }
1623 : : else
1624 : : {
1882 meskes@postgresql.or 1625 : 908 : stmt->results = PQexecParams(stmt->connection->connection,
1626 : 454 : stmt->command, stmt->nparams, NULL,
1627 : 454 : (const char *const *) stmt->paramvalues,
1628 : 454 : (const int *) stmt->paramlengths,
1629 : 454 : (const int *) stmt->paramformats,
1630 : : 0);
1631 : :
5812 peter_e@gmx.net 1632 : 454 : ecpg_log("ecpg_execute on line %d: using PQexecParams\n", stmt->lineno);
1633 : : }
1634 : :
1789 meskes@postgresql.or 1635 [ + + ]: 1819 : if (stmt->statement_type == ECPGst_prepare)
1636 : : {
tgl@sss.pgh.pa.us 1637 [ - + ]: 5 : if (!ecpg_register_prepared_stmt(stmt))
1638 : : {
1789 meskes@postgresql.or 1639 :UBC 0 : ecpg_free_params(stmt, true);
1640 : 0 : return false;
1641 : : }
1642 : : }
1643 : : }
1644 : :
3741 alvherre@alvh.no-ip. 1645 :CBC 2651 : ecpg_free_params(stmt, true);
1646 : :
1647 [ + + ]: 2651 : if (!ecpg_check_PQresult(stmt->results, stmt->lineno, stmt->connection->connection, stmt->compat))
1648 : 13 : return false;
1649 : :
1650 : 2638 : return true;
1651 : : }
1652 : :
1653 : : /*-------
1654 : : * ecpg_process_output
1655 : : *
1656 : : * Process the statement result and store it into application variables. This
1657 : : * function can be called repeatedly during the same statement in case cursor
1658 : : * readahead is used and the application does FETCH N which overflows the
1659 : : * readahead window.
1660 : : *
1661 : : * Parameters
1662 : : * stmt statement structure holding the PGresult and
1663 : : * the list of output variables
1664 : : * clear_result
1665 : : * PQclear() the result upon returning from this function
1666 : : *
1667 : : * Returns success as boolean. Also an SQL error is raised in case of failure.
1668 : : *-------
1669 : : */
1670 : : bool
2489 tgl@sss.pgh.pa.us 1671 : 2638 : ecpg_process_output(struct statement *stmt, bool clear_result)
1672 : : {
1673 : : struct variable *var;
3741 alvherre@alvh.no-ip. 1674 : 2638 : bool status = false;
1675 : : char *cmdstat;
1676 : : PGnotify *notify;
1677 : 2638 : struct sqlca_t *sqlca = ECPGget_sqlca();
1678 : : int nfields,
1679 : : ntuples,
1680 : : act_field;
1681 : :
3226 meskes@postgresql.or 1682 [ - + ]: 2638 : if (sqlca == NULL)
1683 : : {
3226 meskes@postgresql.or 1684 :UBC 0 : ecpg_raise(stmt->lineno, ECPG_OUT_OF_MEMORY,
1685 : : ECPG_SQLSTATE_ECPG_OUT_OF_MEMORY, NULL);
2432 peter_e@gmx.net 1686 : 0 : return false;
1687 : : }
1688 : :
6088 meskes@postgresql.or 1689 :CBC 2638 : var = stmt->outlist;
3741 alvherre@alvh.no-ip. 1690 [ + + + - ]: 2638 : switch (PQresultStatus(stmt->results))
1691 : : {
6088 meskes@postgresql.or 1692 : 1045 : case PGRES_TUPLES_OK:
3741 alvherre@alvh.no-ip. 1693 : 1045 : nfields = PQnfields(stmt->results);
1694 : 1045 : sqlca->sqlerrd[2] = ntuples = PQntuples(stmt->results);
1695 : :
1696 : 1045 : ecpg_log("ecpg_process_output on line %d: correctly got %d tuples with %d fields\n", stmt->lineno, ntuples, nfields);
6088 meskes@postgresql.or 1697 : 1045 : status = true;
1698 : :
1699 [ + + ]: 1045 : if (ntuples < 1)
1700 : : {
1701 [ - + ]: 20 : if (ntuples)
3741 alvherre@alvh.no-ip. 1702 :UBC 0 : ecpg_log("ecpg_process_output on line %d: incorrect number of matches (%d)\n",
1703 : : stmt->lineno, ntuples);
6038 meskes@postgresql.or 1704 :CBC 20 : ecpg_raise(stmt->lineno, ECPG_NOT_FOUND, ECPG_SQLSTATE_NO_DATA, NULL);
6088 1705 : 20 : status = false;
1706 : 20 : break;
1707 : : }
1708 : :
1709 [ + + + + ]: 1025 : if (var != NULL && var->type == ECPGt_descriptor)
1710 : 7 : {
6038 1711 : 7 : struct descriptor *desc = ecpg_find_desc(stmt->lineno, var->pointer);
1712 : :
6039 1713 [ - + ]: 7 : if (desc == NULL)
7700 meskes@postgresql.or 1714 :UBC 0 : status = false;
1715 : : else
1716 : : {
651 peter@eisentraut.org 1717 :CBC 7 : PQclear(desc->result);
3741 alvherre@alvh.no-ip. 1718 : 7 : desc->result = stmt->results;
6039 meskes@postgresql.or 1719 : 7 : clear_result = false;
3741 alvherre@alvh.no-ip. 1720 : 7 : ecpg_log("ecpg_process_output on line %d: putting result (%d tuples) into descriptor %s\n",
1721 : 7 : stmt->lineno, PQntuples(stmt->results), (const char *) var->pointer);
1722 : : }
6088 meskes@postgresql.or 1723 : 7 : var = var->next;
1724 : : }
5213 1725 [ + + + + ]: 1018 : else if (var != NULL && var->type == ECPGt_sqlda)
1726 : : {
1727 [ + + - + ]: 17 : if (INFORMIX_MODE(stmt->compat))
1728 : 8 : {
5161 bruce@momjian.us 1729 : 8 : struct sqlda_compat **_sqlda = (struct sqlda_compat **) var->pointer;
1730 : 8 : struct sqlda_compat *sqlda = *_sqlda;
1731 : : struct sqlda_compat *sqlda_new;
1732 : : int i;
1733 : :
1734 : : /*
1735 : : * If we are passed in a previously existing sqlda (chain)
1736 : : * then free it.
1737 : : */
5213 meskes@postgresql.or 1738 [ + + ]: 12 : while (sqlda)
1739 : : {
1740 : 4 : sqlda_new = sqlda->desc_next;
1741 : 4 : free(sqlda);
1742 : 4 : sqlda = sqlda_new;
1743 : : }
1744 : 8 : *_sqlda = sqlda = sqlda_new = NULL;
1745 [ + + ]: 16 : for (i = ntuples - 1; i >= 0; i--)
1746 : : {
1747 : : /*
1748 : : * Build a new sqlda structure. Note that only
1749 : : * fetching 1 record is supported
1750 : : */
3741 alvherre@alvh.no-ip. 1751 : 8 : sqlda_new = ecpg_build_compat_sqlda(stmt->lineno, stmt->results, i, stmt->compat);
1752 : :
5213 meskes@postgresql.or 1753 [ - + ]: 8 : if (!sqlda_new)
1754 : : {
1755 : : /* cleanup all SQLDAs we created up */
5213 meskes@postgresql.or 1756 [ # # ]:UBC 0 : while (sqlda)
1757 : : {
1758 : 0 : sqlda_new = sqlda->desc_next;
1759 : 0 : free(sqlda);
1760 : 0 : sqlda = sqlda_new;
1761 : : }
1762 : 0 : *_sqlda = NULL;
1763 : :
3741 alvherre@alvh.no-ip. 1764 : 0 : ecpg_log("ecpg_process_output on line %d: out of memory allocating a new sqlda\n", stmt->lineno);
5213 meskes@postgresql.or 1765 : 0 : status = false;
1766 : 0 : break;
1767 : : }
1768 : : else
1769 : : {
3741 alvherre@alvh.no-ip. 1770 :CBC 8 : ecpg_log("ecpg_process_output on line %d: new sqlda was built\n", stmt->lineno);
1771 : :
5213 meskes@postgresql.or 1772 : 8 : *_sqlda = sqlda_new;
1773 : :
3741 alvherre@alvh.no-ip. 1774 : 8 : ecpg_set_compat_sqlda(stmt->lineno, _sqlda, stmt->results, i, stmt->compat);
1775 : 8 : ecpg_log("ecpg_process_output on line %d: putting result (1 tuple %d fields) into sqlda descriptor\n",
1776 : 8 : stmt->lineno, PQnfields(stmt->results));
1777 : :
5213 meskes@postgresql.or 1778 : 8 : sqlda_new->desc_next = sqlda;
1779 : 8 : sqlda = sqlda_new;
1780 : : }
1781 : : }
1782 : : }
1783 : : else
1784 : : {
5161 bruce@momjian.us 1785 : 9 : struct sqlda_struct **_sqlda = (struct sqlda_struct **) var->pointer;
1786 : 9 : struct sqlda_struct *sqlda = *_sqlda;
1787 : : struct sqlda_struct *sqlda_new;
1788 : : int i;
1789 : :
1790 : : /*
1791 : : * If we are passed in a previously existing sqlda (chain)
1792 : : * then free it.
1793 : : */
5213 meskes@postgresql.or 1794 [ + + ]: 13 : while (sqlda)
1795 : : {
1796 : 4 : sqlda_new = sqlda->desc_next;
1797 : 4 : free(sqlda);
1798 : 4 : sqlda = sqlda_new;
1799 : : }
1800 : 9 : *_sqlda = sqlda = sqlda_new = NULL;
1801 [ + + ]: 22 : for (i = ntuples - 1; i >= 0; i--)
1802 : : {
1803 : : /*
1804 : : * Build a new sqlda structure. Note that only
1805 : : * fetching 1 record is supported
1806 : : */
3741 alvherre@alvh.no-ip. 1807 : 13 : sqlda_new = ecpg_build_native_sqlda(stmt->lineno, stmt->results, i, stmt->compat);
1808 : :
5213 meskes@postgresql.or 1809 [ - + ]: 13 : if (!sqlda_new)
1810 : : {
1811 : : /* cleanup all SQLDAs we created up */
5213 meskes@postgresql.or 1812 [ # # ]:UBC 0 : while (sqlda)
1813 : : {
1814 : 0 : sqlda_new = sqlda->desc_next;
1815 : 0 : free(sqlda);
1816 : 0 : sqlda = sqlda_new;
1817 : : }
1818 : 0 : *_sqlda = NULL;
1819 : :
3741 alvherre@alvh.no-ip. 1820 : 0 : ecpg_log("ecpg_process_output on line %d: out of memory allocating a new sqlda\n", stmt->lineno);
5213 meskes@postgresql.or 1821 : 0 : status = false;
1822 : 0 : break;
1823 : : }
1824 : : else
1825 : : {
3741 alvherre@alvh.no-ip. 1826 :CBC 13 : ecpg_log("ecpg_process_output on line %d: new sqlda was built\n", stmt->lineno);
1827 : :
5213 meskes@postgresql.or 1828 : 13 : *_sqlda = sqlda_new;
1829 : :
3741 alvherre@alvh.no-ip. 1830 : 13 : ecpg_set_native_sqlda(stmt->lineno, _sqlda, stmt->results, i, stmt->compat);
1831 : 13 : ecpg_log("ecpg_process_output on line %d: putting result (1 tuple %d fields) into sqlda descriptor\n",
1832 : 13 : stmt->lineno, PQnfields(stmt->results));
1833 : :
5213 meskes@postgresql.or 1834 : 13 : sqlda_new->desc_next = sqlda;
1835 : 13 : sqlda = sqlda_new;
1836 : : }
1837 : : }
1838 : : }
1839 : :
1840 : 17 : var = var->next;
1841 : : }
1842 : : else
6088 1843 [ + + + - ]: 2225 : for (act_field = 0; act_field < nfields && status; act_field++)
1844 : : {
1845 [ + + ]: 1224 : if (var != NULL)
1846 : : {
3741 alvherre@alvh.no-ip. 1847 : 1222 : status = ecpg_store_result(stmt->results, act_field, stmt, var);
6088 meskes@postgresql.or 1848 : 1222 : var = var->next;
1849 : : }
1850 [ - + - - ]: 2 : else if (!INFORMIX_MODE(stmt->compat))
1851 : : {
6038 meskes@postgresql.or 1852 :UBC 0 : ecpg_raise(stmt->lineno, ECPG_TOO_FEW_ARGUMENTS, ECPG_SQLSTATE_USING_CLAUSE_DOES_NOT_MATCH_TARGETS, NULL);
2432 peter_e@gmx.net 1853 : 0 : return false;
1854 : : }
1855 : : }
1856 : :
6088 meskes@postgresql.or 1857 [ + + - + ]:CBC 1025 : if (status && var != NULL)
1858 : : {
6038 meskes@postgresql.or 1859 :UBC 0 : ecpg_raise(stmt->lineno, ECPG_TOO_MANY_ARGUMENTS, ECPG_SQLSTATE_USING_CLAUSE_DOES_NOT_MATCH_TARGETS, NULL);
7700 1860 : 0 : status = false;
1861 : : }
1862 : :
6088 meskes@postgresql.or 1863 :CBC 1025 : break;
1864 : 1592 : case PGRES_COMMAND_OK:
1865 : 1592 : status = true;
3741 alvherre@alvh.no-ip. 1866 : 1592 : cmdstat = PQcmdStatus(stmt->results);
1867 : 1592 : sqlca->sqlerrd[1] = PQoidValue(stmt->results);
1868 : 1592 : sqlca->sqlerrd[2] = atol(PQcmdTuples(stmt->results));
1869 : 1592 : ecpg_log("ecpg_process_output on line %d: OK: %s\n", stmt->lineno, cmdstat);
6088 meskes@postgresql.or 1870 [ + - ]: 1592 : if (stmt->compat != ECPG_COMPAT_INFORMIX_SE &&
1871 [ + + ]: 1592 : !sqlca->sqlerrd[2] &&
4492 peter_e@gmx.net 1872 [ + + ]: 233 : (strncmp(cmdstat, "UPDATE", 6) == 0
1873 [ + + ]: 232 : || strncmp(cmdstat, "INSERT", 6) == 0
1874 [ + + ]: 231 : || strncmp(cmdstat, "DELETE", 6) == 0))
6038 meskes@postgresql.or 1875 : 4 : ecpg_raise(stmt->lineno, ECPG_NOT_FOUND, ECPG_SQLSTATE_NO_DATA, NULL);
6088 1876 : 1592 : break;
1877 : 1 : case PGRES_COPY_OUT:
1878 : : {
1879 : : char *buffer;
1880 : : int res;
1881 : :
3741 alvherre@alvh.no-ip. 1882 : 1 : ecpg_log("ecpg_process_output on line %d: COPY OUT data transfer in progress\n", stmt->lineno);
6088 meskes@postgresql.or 1883 : 4 : while ((res = PQgetCopyData(stmt->connection->connection,
1884 [ + + ]: 4 : &buffer, 0)) > 0)
1885 : : {
1886 : 3 : printf("%s", buffer);
1887 : 3 : PQfreemem(buffer);
1888 : : }
1889 [ + - ]: 1 : if (res == -1)
1890 : : {
1891 : : /* COPY done */
3741 alvherre@alvh.no-ip. 1892 : 1 : PQclear(stmt->results);
1893 : 1 : stmt->results = PQgetResult(stmt->connection->connection);
1894 [ + - ]: 1 : if (PQresultStatus(stmt->results) == PGRES_COMMAND_OK)
1895 : 1 : ecpg_log("ecpg_process_output on line %d: got PGRES_COMMAND_OK after PGRES_COPY_OUT\n", stmt->lineno);
1896 : : else
3741 alvherre@alvh.no-ip. 1897 :UBC 0 : ecpg_log("ecpg_process_output on line %d: got error after PGRES_COPY_OUT: %s", stmt->lineno, PQresultErrorMessage(stmt->results));
1898 : : }
7700 meskes@postgresql.or 1899 :CBC 1 : break;
1900 : : }
6088 meskes@postgresql.or 1901 :UBC 0 : default:
1902 : :
1903 : : /*
1904 : : * execution should never reach this code because it is already
1905 : : * handled in ecpg_check_PQresult()
1906 : : */
3741 alvherre@alvh.no-ip. 1907 : 0 : ecpg_log("ecpg_process_output on line %d: unknown execution status type\n",
1908 : : stmt->lineno);
1909 : 0 : ecpg_raise_backend(stmt->lineno, stmt->results, stmt->connection->connection, stmt->compat);
6088 meskes@postgresql.or 1910 : 0 : status = false;
1911 : 0 : break;
1912 : : }
1913 : :
6088 meskes@postgresql.or 1914 [ + + ]:CBC 2638 : if (clear_result)
1915 : : {
3741 alvherre@alvh.no-ip. 1916 : 2631 : PQclear(stmt->results);
1917 : 2631 : stmt->results = NULL;
1918 : : }
1919 : :
1920 : : /* check for asynchronous returns */
2004 tgl@sss.pgh.pa.us 1921 : 2638 : PQconsumeInput(stmt->connection->connection);
1922 [ - + ]: 2638 : while ((notify = PQnotifies(stmt->connection->connection)) != NULL)
1923 : : {
3741 alvherre@alvh.no-ip. 1924 :UBC 0 : ecpg_log("ecpg_process_output on line %d: asynchronous notification of \"%s\" from backend PID %d received\n",
1925 : : stmt->lineno, notify->relname, notify->be_pid);
7604 meskes@postgresql.or 1926 : 0 : PQfreemem(notify);
2004 tgl@sss.pgh.pa.us 1927 : 0 : PQconsumeInput(stmt->connection->connection);
1928 : : }
1929 : :
7700 meskes@postgresql.or 1930 :CBC 2638 : return status;
1931 : : }
1932 : :
1933 : : /*
1934 : : * ecpg_do_prologue
1935 : : *
1936 : : * Initialize various infrastructure elements for executing the statement:
1937 : : *
1938 : : * - create the statement structure
1939 : : * - set the C numeric locale for communicating with the backend
1940 : : * - preprocess the variable list of input/output parameters into
1941 : : * linked lists
1942 : : */
1943 : : bool
3741 alvherre@alvh.no-ip. 1944 : 2657 : ecpg_do_prologue(int lineno, const int compat, const int force_indicator,
1945 : : const char *connection_name, const bool questionmarks,
1946 : : enum ECPG_statement_type statement_type, const char *query,
1947 : : va_list args, struct statement **stmt_out)
1948 : : {
1902 meskes@postgresql.or 1949 : 2657 : struct statement *stmt = NULL;
1950 : : struct connection *con;
1951 : : enum ECPGttype type;
1952 : : struct variable **list;
1953 : : char *prepname;
1954 : : bool is_prepared_name_set;
1955 : :
3741 alvherre@alvh.no-ip. 1956 : 2657 : *stmt_out = NULL;
1957 : :
6088 meskes@postgresql.or 1958 [ - + ]: 2657 : if (!query)
1959 : : {
6038 meskes@postgresql.or 1960 :UBC 0 : ecpg_raise(lineno, ECPG_EMPTY, ECPG_SQLSTATE_ECPG_INTERNAL_ERROR, NULL);
3741 alvherre@alvh.no-ip. 1961 : 0 : return false;
1962 : : }
1963 : :
652 noah@leadboat.com 1964 :CBC 2657 : ecpg_pthreads_init();
1965 : :
1966 : 2657 : con = ecpg_get_connection(connection_name);
1967 : :
1968 [ + + ]: 2657 : if (!ecpg_init(con, connection_name, lineno))
1969 : 6 : return false;
1970 : :
3741 alvherre@alvh.no-ip. 1971 : 2651 : stmt = (struct statement *) ecpg_alloc(sizeof(struct statement), lineno);
1972 : :
1973 [ - + ]: 2651 : if (stmt == NULL)
3741 alvherre@alvh.no-ip. 1974 :UBC 0 : return false;
1975 : :
1976 : : /*
1977 : : * Make sure we do NOT honor the locale for numeric input/output since the
1978 : : * database wants the standard decimal point. If available, use
1979 : : * uselocale() for this because it's thread-safe. Windows doesn't have
1980 : : * that, but it usually does have _configthreadlocale(). In some versions
1981 : : * of MinGW, _configthreadlocale() exists but always returns -1 --- so
1982 : : * treat that situation as if the function doesn't exist.
1983 : : */
1984 : : #ifdef HAVE_USELOCALE
1985 : :
1986 : : /*
1987 : : * Since ecpg_init() succeeded, we have a connection. Any successful
1988 : : * connection initializes ecpg_clocale.
1989 : : */
652 noah@leadboat.com 1990 [ - + ]:CBC 2651 : Assert(ecpg_clocale);
1991 : 2651 : stmt->oldlocale = uselocale(ecpg_clocale);
1910 tgl@sss.pgh.pa.us 1992 [ - + ]: 2651 : if (stmt->oldlocale == (locale_t) 0)
1993 : : {
1910 tgl@sss.pgh.pa.us 1994 :UBC 0 : ecpg_do_epilogue(stmt);
1995 : 0 : return false;
1996 : : }
1997 : : #else
1998 : : #ifdef HAVE__CONFIGTHREADLOCALE
1999 : : stmt->oldthreadlocale = _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
2000 : : #endif
2001 : : stmt->oldlocale = ecpg_strdup(setlocale(LC_NUMERIC, NULL), lineno);
2002 : : if (stmt->oldlocale == NULL)
2003 : : {
2004 : : ecpg_do_epilogue(stmt);
2005 : : return false;
2006 : : }
2007 : : setlocale(LC_NUMERIC, "C");
2008 : : #endif
2009 : :
2010 : : /*
2011 : : * If statement type is ECPGst_prepnormal we are supposed to prepare the
2012 : : * statement before executing them
2013 : : */
6088 meskes@postgresql.or 2014 [ + + ]:CBC 2651 : if (statement_type == ECPGst_prepnormal)
2015 : : {
4608 2016 [ - + ]: 8 : if (!ecpg_auto_prepare(lineno, connection_name, compat, &prepname, query))
2017 : : {
3741 alvherre@alvh.no-ip. 2018 :UBC 0 : ecpg_do_epilogue(stmt);
2019 : 0 : return false;
2020 : : }
2021 : :
2022 : : /*
2023 : : * statement is now prepared, so instead of the query we have to
2024 : : * execute the name
2025 : : */
6088 meskes@postgresql.or 2026 :CBC 8 : stmt->command = prepname;
2027 : 8 : statement_type = ECPGst_execute;
2028 : : }
2029 : : else
6038 2030 : 2643 : stmt->command = ecpg_strdup(query, lineno);
2031 : :
6088 2032 : 2651 : stmt->name = NULL;
2033 : :
2034 [ + + ]: 2651 : if (statement_type == ECPGst_execute)
2035 : : {
2036 : : /* if we have an EXECUTE command, only the name is send */
5443 2037 : 832 : char *command = ecpg_prepared(stmt->command, con);
2038 : :
6088 2039 [ + - ]: 832 : if (command)
2040 : : {
2041 : 832 : stmt->name = stmt->command;
6038 2042 : 832 : stmt->command = ecpg_strdup(command, lineno);
2043 : : }
2044 : : else
2045 : : {
6038 meskes@postgresql.or 2046 :UBC 0 : ecpg_raise(lineno, ECPG_INVALID_STMT, ECPG_SQLSTATE_INVALID_SQL_STATEMENT_NAME, stmt->command);
3741 alvherre@alvh.no-ip. 2047 : 0 : ecpg_do_epilogue(stmt);
2432 peter_e@gmx.net 2048 : 0 : return false;
2049 : : }
2050 : : }
2051 : : /* name of PREPARE AS will be set in loop of inlist */
2052 : :
6197 meskes@postgresql.or 2053 :CBC 2651 : stmt->connection = con;
2054 : 2651 : stmt->lineno = lineno;
2055 : 2651 : stmt->compat = compat;
2056 : 2651 : stmt->force_indicator = force_indicator;
6088 2057 : 2651 : stmt->questionmarks = questionmarks;
2058 : 2651 : stmt->statement_type = statement_type;
2059 : :
2060 : : /*------
2061 : : * create a list of variables
2062 : : *
2063 : : * The variables are listed with input variables preceding output
2064 : : * variables. The end of each group is marked by an end marker.
2065 : : * Per variable we list:
2066 : : *
2067 : : * type - as defined in ecpgtype.h
2068 : : * value - where to store the data
2069 : : * varcharsize - length of string in case we have a stringvariable, else 0
2070 : : * arraysize - 0 for pointer (we don't know the size of the array), 1 for
2071 : : * simple variable, size for arrays
2072 : : * offset - offset between ith and (i+1)th entry in an array, normally
2073 : : * that means sizeof(type)
2074 : : * ind_type - type of indicator variable
2075 : : * ind_pointer - pointer to indicator variable
2076 : : * ind_varcharsize - empty
2077 : : * ind_arrsize - arraysize of indicator array
2078 : : * ind_offset - indicator offset
2079 : : *------
2080 : : */
2081 : :
1789 2082 : 2651 : is_prepared_name_set = false;
2083 : :
6197 2084 : 2651 : list = &(stmt->inlist);
2085 : :
2086 : 2651 : type = va_arg(args, enum ECPGttype);
2087 : :
2088 [ + + ]: 8434 : while (type != ECPGt_EORT)
2089 : : {
2090 [ + + ]: 5783 : if (type == ECPGt_EOIT)
2091 : 2651 : list = &(stmt->outlist);
2092 : : else
2093 : : {
2094 : : struct variable *var,
2095 : : *ptr;
2096 : :
6038 2097 [ - + ]: 3132 : if (!(var = (struct variable *) ecpg_alloc(sizeof(struct variable), lineno)))
2098 : : {
3741 alvherre@alvh.no-ip. 2099 :UBC 0 : ecpg_do_epilogue(stmt);
6197 meskes@postgresql.or 2100 : 0 : return false;
2101 : : }
2102 : :
6197 meskes@postgresql.or 2103 :CBC 3132 : var->type = type;
2104 : 3132 : var->pointer = va_arg(args, char *);
2105 : :
2106 : 3132 : var->varcharsize = va_arg(args, long);
2107 : 3132 : var->arrsize = va_arg(args, long);
2108 : 3132 : var->offset = va_arg(args, long);
2109 : :
2110 : : /*
2111 : : * Unknown array size means pointer to an array. Unknown
2112 : : * varcharsize usually also means pointer. But if the type is
2113 : : * character and the array size is known, it is an array of
2114 : : * pointers to char, so use var->pointer as it is.
2115 : : */
3631 2116 [ + + ]: 3132 : if (var->arrsize == 0 ||
bruce@momjian.us 2117 [ + + - + : 2298 : (var->varcharsize == 0 && ((var->type != ECPGt_char && var->type != ECPGt_unsigned_char) || (var->arrsize <= 1))))
- - + - ]
6197 meskes@postgresql.or 2118 : 882 : var->value = *((char **) (var->pointer));
2119 : : else
2120 : 2250 : var->value = var->pointer;
2121 : :
2122 : : /*
2123 : : * negative values are used to indicate an array without given
2124 : : * bounds
2125 : : */
2126 : : /* reset to zero for us */
2127 [ + + ]: 3132 : if (var->arrsize < 0)
2128 : 14 : var->arrsize = 0;
2129 [ - + ]: 3132 : if (var->varcharsize < 0)
6197 meskes@postgresql.or 2130 :UBC 0 : var->varcharsize = 0;
2131 : :
6197 meskes@postgresql.or 2132 :CBC 3132 : var->next = NULL;
2133 : :
2134 : 3132 : var->ind_type = va_arg(args, enum ECPGttype);
2135 : 3132 : var->ind_pointer = va_arg(args, char *);
2136 : 3132 : var->ind_varcharsize = va_arg(args, long);
2137 : 3132 : var->ind_arrsize = va_arg(args, long);
2138 : 3132 : var->ind_offset = va_arg(args, long);
2139 : :
2140 [ + + ]: 3132 : if (var->ind_type != ECPGt_NO_INDICATOR
2141 [ + - - + ]: 112 : && (var->ind_arrsize == 0 || var->ind_varcharsize == 0))
6197 meskes@postgresql.or 2142 :UBC 0 : var->ind_value = *((char **) (var->ind_pointer));
2143 : : else
6197 meskes@postgresql.or 2144 :CBC 3132 : var->ind_value = var->ind_pointer;
2145 : :
2146 : : /*
2147 : : * negative values are used to indicate an array without given
2148 : : * bounds
2149 : : */
2150 : : /* reset to zero for us */
2151 [ + + ]: 3132 : if (var->ind_arrsize < 0)
2152 : 14 : var->ind_arrsize = 0;
2153 [ - + ]: 3132 : if (var->ind_varcharsize < 0)
6197 meskes@postgresql.or 2154 :UBC 0 : var->ind_varcharsize = 0;
2155 : :
2156 : : /* if variable is NULL, the statement hasn't been prepared */
6197 meskes@postgresql.or 2157 [ - + ]:CBC 3132 : if (var->pointer == NULL)
2158 : : {
6038 meskes@postgresql.or 2159 :UBC 0 : ecpg_raise(lineno, ECPG_INVALID_STMT, ECPG_SQLSTATE_INVALID_SQL_STATEMENT_NAME, NULL);
2160 : 0 : ecpg_free(var);
3741 alvherre@alvh.no-ip. 2161 : 0 : ecpg_do_epilogue(stmt);
6197 meskes@postgresql.or 2162 : 0 : return false;
2163 : : }
2164 : :
3741 alvherre@alvh.no-ip. 2165 [ + + + + ]:CBC 3452 : for (ptr = *list; ptr && ptr->next; ptr = ptr->next)
2166 : : ;
2167 : :
6197 meskes@postgresql.or 2168 [ + + ]: 3132 : if (ptr == NULL)
2169 : 2398 : *list = var;
2170 : : else
2171 : 734 : ptr->next = var;
2172 : :
1789 2173 [ + - + + ]: 3132 : if (!is_prepared_name_set && stmt->statement_type == ECPGst_prepare)
2174 : : {
2175 : 5 : stmt->name = ecpg_strdup(var->value, lineno);
2176 : 5 : is_prepared_name_set = true;
2177 : : }
2178 : : }
2179 : :
6197 2180 : 5783 : type = va_arg(args, enum ECPGttype);
2181 : : }
2182 : :
2183 : : /* are we connected? */
7700 2184 [ + - - + ]: 2651 : if (con == NULL || con->connection == NULL)
2185 : : {
5568 peter_e@gmx.net 2186 [ # # ]:UBC 0 : ecpg_raise(lineno, ECPG_NOT_CONN, ECPG_SQLSTATE_ECPG_INTERNAL_ERROR, (con) ? con->name : ecpg_gettext("<empty>"));
3741 alvherre@alvh.no-ip. 2187 : 0 : ecpg_do_epilogue(stmt);
1789 meskes@postgresql.or 2188 : 0 : return false;
2189 : : }
2190 : :
1789 meskes@postgresql.or 2191 [ + + - + ]:CBC 2651 : if (!is_prepared_name_set && stmt->statement_type == ECPGst_prepare)
2192 : : {
1789 meskes@postgresql.or 2193 [ # # ]:UBC 0 : ecpg_raise(lineno, ECPG_TOO_FEW_ARGUMENTS, ECPG_SQLSTATE_ECPG_INTERNAL_ERROR, (con) ? con->name : ecpg_gettext("<empty>"));
2194 : 0 : ecpg_do_epilogue(stmt);
7700 2195 : 0 : return false;
2196 : : }
2197 : :
2198 : : /* initialize auto_mem struct */
6038 meskes@postgresql.or 2199 :CBC 2651 : ecpg_clear_auto_mem();
2200 : :
3741 alvherre@alvh.no-ip. 2201 : 2651 : *stmt_out = stmt;
2202 : :
2203 : 2651 : return true;
2204 : : }
2205 : :
2206 : : /*
2207 : : * ecpg_do_epilogue
2208 : : * Restore the application locale and free the statement structure.
2209 : : */
2210 : : void
2489 tgl@sss.pgh.pa.us 2211 : 2657 : ecpg_do_epilogue(struct statement *stmt)
2212 : : {
3741 alvherre@alvh.no-ip. 2213 [ + + ]: 2657 : if (stmt == NULL)
2214 : 6 : return;
2215 : :
2216 : : #ifdef HAVE_USELOCALE
1910 tgl@sss.pgh.pa.us 2217 [ + - ]: 2651 : if (stmt->oldlocale != (locale_t) 0)
2218 : 2651 : uselocale(stmt->oldlocale);
2219 : : #else
2220 : : if (stmt->oldlocale)
2221 : : setlocale(LC_NUMERIC, stmt->oldlocale);
2222 : : #ifdef HAVE__CONFIGTHREADLOCALE
2223 : :
2224 : : /*
2225 : : * This is a bit trickier than it looks: if we failed partway through
2226 : : * statement initialization, oldthreadlocale could still be 0. But that's
2227 : : * okay because a call with 0 is defined to be a no-op.
2228 : : */
2229 : : if (stmt->oldthreadlocale != -1)
2230 : : (void) _configthreadlocale(stmt->oldthreadlocale);
2231 : : #endif
2232 : : #endif
2233 : :
7700 meskes@postgresql.or 2234 : 2651 : free_statement(stmt);
2235 : : }
2236 : :
2237 : : /*
2238 : : * Execute SQL statements in the backend.
2239 : : * The input/output parameters (variable argument list) are passed
2240 : : * in a va_list, so other functions can use this interface.
2241 : : */
2242 : : bool
3741 alvherre@alvh.no-ip. 2243 : 2657 : ecpg_do(const int lineno, const int compat, const int force_indicator, const char *connection_name, const bool questionmarks, const int st, const char *query, va_list args)
2244 : : {
2245 : 2657 : struct statement *stmt = NULL;
2246 : :
2247 [ + + ]: 2657 : if (!ecpg_do_prologue(lineno, compat, force_indicator, connection_name,
2248 : : questionmarks, (enum ECPG_statement_type) st,
2249 : : query, args, &stmt))
2250 : 6 : goto fail;
2251 : :
2252 [ - + ]: 2651 : if (!ecpg_build_params(stmt))
3741 alvherre@alvh.no-ip. 2253 :UBC 0 : goto fail;
2254 : :
3741 alvherre@alvh.no-ip. 2255 [ - + ]:CBC 2651 : if (!ecpg_autostart_transaction(stmt))
3741 alvherre@alvh.no-ip. 2256 :UBC 0 : goto fail;
2257 : :
3741 alvherre@alvh.no-ip. 2258 [ + + ]:CBC 2651 : if (!ecpg_execute(stmt))
2259 : 13 : goto fail;
2260 : :
2261 [ + + ]: 2638 : if (!ecpg_process_output(stmt, true))
2262 : 27 : goto fail;
2263 : :
2264 : 2611 : ecpg_do_epilogue(stmt);
2265 : 2611 : return true;
2266 : :
2267 : 46 : fail:
2268 : 46 : ecpg_do_epilogue(stmt);
2269 : 46 : return false;
2270 : : }
2271 : :
2272 : : /*
2273 : : * Execute SQL statements in the backend.
2274 : : * The input/output parameters are passed as variable-length argument list.
2275 : : */
2276 : : bool
2277 : 2657 : ECPGdo(const int lineno, const int compat, const int force_indicator, const char *connection_name, const bool questionmarks, const int st, const char *query,...)
2278 : : {
2279 : : va_list args;
2280 : : bool ret;
2281 : :
2282 : 2657 : va_start(args, query);
1668 tgl@sss.pgh.pa.us 2283 : 2657 : ret = ecpg_do(lineno, compat, force_indicator, connection_name,
2284 : : questionmarks, st, query, args);
3741 alvherre@alvh.no-ip. 2285 : 2657 : va_end(args);
2286 : :
2287 : 2657 : return ret;
2288 : : }
2289 : :
2290 : : /* old descriptor interface */
2291 : : bool
7700 meskes@postgresql.or 2292 :UBC 0 : ECPGdo_descriptor(int line, const char *connection,
2293 : : const char *descriptor, const char *query)
2294 : : {
4599 peter_e@gmx.net 2295 : 0 : return ECPGdo(line, ECPG_COMPAT_PGSQL, true, connection, '\0', 0, query, ECPGt_EOIT,
2296 : : ECPGt_descriptor, descriptor, 0L, 0L, 0L,
2297 : : ECPGt_NO_INDICATOR, NULL, 0L, 0L, 0L, ECPGt_EORT);
2298 : : }
|