LCOV - differential code coverage report
Current view: top level - src/interfaces/ecpg/ecpglib - execute.c (source / functions) Coverage Total Hit UIC UBC GBC GIC GNC CBC EUB ECB DCB
Current: Differential Code Coverage HEAD vs 15 Lines: 67.9 % 1124 763 32 329 6 99 4 654 26 104 5
Current Date: 2023-04-08 15:15:32 Functions: 91.7 % 24 22 1 1 4 2 16 1 4
Baseline: 15
Baseline Date: 2023-04-08 15:09:40
Legend: Lines: hit not hit

           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 *
      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)
      52             561 :         return arg;
      53                 :     else
      54                 :     {
      55 UBC           0 :         length = strlen(arg);
      56               0 :         buffer_len = 2 * length + 1;
      57               0 :         res = (char *) ecpg_alloc(buffer_len + 3, lineno);
      58               0 :         if (!res)
      59               0 :             return res;
      60               0 :         escaped_len = PQescapeString(res + 1, arg, buffer_len);
      61               0 :         if (length == escaped_len)
      62                 :         {
      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);
      73               0 :             res[0] = ESCAPE_STRING_SYNTAX;
      74               0 :             res[1] = res[escaped_len + 2] = '\'';
      75               0 :             res[escaped_len + 3] = '\0';
      76                 :         }
      77               0 :         ecpg_free(arg);
      78               0 :         return res;
      79                 :     }
      80                 : }
      81                 : 
      82                 : static void
      83 CBC        5252 : free_variable(struct variable *var)
      84                 : {
      85                 :     struct variable *var_next;
      86                 : 
      87            8362 :     while (var)
      88                 :     {
      89            3110 :         var_next = var->next;
      90            3110 :         ecpg_free(var);
      91            3110 :         var = var_next;
      92                 :     }
      93            5252 : }
      94                 : 
      95                 : static void
      96            2626 : free_statement(struct statement *stmt)
      97                 : {
      98            2626 :     if (stmt == NULL)
      99 UBC           0 :         return;
     100 CBC        2626 :     free_variable(stmt->inlist);
     101            2626 :     free_variable(stmt->outlist);
     102            2626 :     ecpg_free(stmt->command);
     103            2626 :     ecpg_free(stmt->name);
     104                 : #ifndef HAVE_USELOCALE
     105                 :     ecpg_free(stmt->oldlocale);
     106                 : #endif
     107            2626 :     ecpg_free(stmt);
     108                 : }
     109                 : 
     110                 : static int
     111            4449 : next_insert(char *text, int pos, bool questionmarks, bool std_strings)
     112                 : {
     113            4449 :     bool        string = false;
     114            4449 :     int         p = pos;
     115                 : 
     116          118580 :     for (; text[p] != '\0'; p++)
     117                 :     {
     118          115959 :         if (string && !std_strings && text[p] == '\\')  /* escape character */
     119               4 :             p++;
     120          115955 :         else if (text[p] == '\'')
     121            1932 :             string = string ? false : true;
     122          114023 :         else if (!string)
     123                 :         {
     124          106664 :             if (text[p] == '$' && isdigit((unsigned char) text[p + 1]))
     125 UBC           0 :             {
     126                 :                 /* this can be either a dollar quote or a variable */
     127                 :                 int         i;
     128                 : 
     129 CBC        3657 :                 for (i = p + 1; isdigit((unsigned char) text[i]); i++)
     130                 :                      /* empty loop body */ ;
     131            1828 :                 if (!isalpha((unsigned char) text[i]) &&
     132            1828 :                     isascii((unsigned char) text[i]) && text[i] != '_')
     133                 :                     /* not dollar delimited quote */
     134            1828 :                     return p;
     135                 :             }
     136          104836 :             else if (questionmarks && text[p] == '?')
     137                 :             {
     138                 :                 /* also allow old style placeholders */
     139 UBC           0 :                 return p;
     140                 :             }
     141                 :         }
     142                 :     }
     143                 : 
     144 CBC        2621 :     return -1;
     145                 : }
     146                 : 
     147                 : static bool
     148            2503 : 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
     151            2503 :     = (struct ECPGtype_information_cache *) ecpg_alloc(sizeof(struct ECPGtype_information_cache), lineno);
     152                 : 
     153            2503 :     if (new_entry == NULL)
     154 UBC           0 :         return false;
     155                 : 
     156 CBC        2503 :     new_entry->oid = oid;
     157            2503 :     new_entry->isarray = isarray;
     158            2503 :     new_entry->next = *cache;
     159            2503 :     *cache = new_entry;
     160            2503 :     return true;
     161                 : }
     162                 : 
     163                 : static enum ARRAY_TYPE
     164            1232 : ecpg_is_type_an_array(int type, const struct statement *stmt, const struct variable *var)
     165                 : {
     166                 :     char       *array_query;
     167            1232 :     enum ARRAY_TYPE isarray = ECPG_ARRAY_NOT_SET;
     168                 :     PGresult   *query;
     169                 :     struct ECPGtype_information_cache *cache_entry;
     170                 : 
     171            1232 :     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 */
     180              64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BOOLOID, ECPG_ARRAY_NONE, stmt->lineno))
     181 UBC           0 :             return ECPG_ARRAY_ERROR;
     182 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BYTEAOID, ECPG_ARRAY_NONE, stmt->lineno))
     183 UBC           0 :             return ECPG_ARRAY_ERROR;
     184 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), CHAROID, ECPG_ARRAY_NONE, stmt->lineno))
     185 UBC           0 :             return ECPG_ARRAY_ERROR;
     186 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), NAMEOID, not_an_array_in_ecpg, stmt->lineno))
     187 UBC           0 :             return ECPG_ARRAY_ERROR;
     188 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INT8OID, ECPG_ARRAY_NONE, stmt->lineno))
     189 UBC           0 :             return ECPG_ARRAY_ERROR;
     190 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INT2OID, ECPG_ARRAY_NONE, stmt->lineno))
     191 UBC           0 :             return ECPG_ARRAY_ERROR;
     192 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INT2VECTOROID, ECPG_ARRAY_VECTOR, stmt->lineno))
     193 UBC           0 :             return ECPG_ARRAY_ERROR;
     194 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INT4OID, ECPG_ARRAY_NONE, stmt->lineno))
     195 UBC           0 :             return ECPG_ARRAY_ERROR;
     196 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), REGPROCOID, ECPG_ARRAY_NONE, stmt->lineno))
     197 UBC           0 :             return ECPG_ARRAY_ERROR;
     198 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TEXTOID, ECPG_ARRAY_NONE, stmt->lineno))
     199 UBC           0 :             return ECPG_ARRAY_ERROR;
     200 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), OIDOID, ECPG_ARRAY_NONE, stmt->lineno))
     201 UBC           0 :             return ECPG_ARRAY_ERROR;
     202 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIDOID, ECPG_ARRAY_NONE, stmt->lineno))
     203 UBC           0 :             return ECPG_ARRAY_ERROR;
     204 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), XIDOID, ECPG_ARRAY_NONE, stmt->lineno))
     205 UBC           0 :             return ECPG_ARRAY_ERROR;
     206 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), CIDOID, ECPG_ARRAY_NONE, stmt->lineno))
     207 UBC           0 :             return ECPG_ARRAY_ERROR;
     208 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), OIDVECTOROID, ECPG_ARRAY_VECTOR, stmt->lineno))
     209 UBC           0 :             return ECPG_ARRAY_ERROR;
     210 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), POINTOID, ECPG_ARRAY_VECTOR, stmt->lineno))
     211 UBC           0 :             return ECPG_ARRAY_ERROR;
     212 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), LSEGOID, ECPG_ARRAY_VECTOR, stmt->lineno))
     213 UBC           0 :             return ECPG_ARRAY_ERROR;
     214 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), PATHOID, ECPG_ARRAY_NONE, stmt->lineno))
     215 UBC           0 :             return ECPG_ARRAY_ERROR;
     216 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BOXOID, ECPG_ARRAY_VECTOR, stmt->lineno))
     217 UBC           0 :             return ECPG_ARRAY_ERROR;
     218 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), POLYGONOID, ECPG_ARRAY_NONE, stmt->lineno))
     219 UBC           0 :             return ECPG_ARRAY_ERROR;
     220 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), LINEOID, ECPG_ARRAY_VECTOR, stmt->lineno))
     221 UBC           0 :             return ECPG_ARRAY_ERROR;
     222 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), FLOAT4OID, ECPG_ARRAY_NONE, stmt->lineno))
     223 UBC           0 :             return ECPG_ARRAY_ERROR;
     224 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), FLOAT8OID, ECPG_ARRAY_NONE, stmt->lineno))
     225 UBC           0 :             return ECPG_ARRAY_ERROR;
     226 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), UNKNOWNOID, ECPG_ARRAY_NONE, stmt->lineno))
     227 UBC           0 :             return ECPG_ARRAY_ERROR;
     228 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), CIRCLEOID, ECPG_ARRAY_NONE, stmt->lineno))
     229 UBC           0 :             return ECPG_ARRAY_ERROR;
     230 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), MONEYOID, ECPG_ARRAY_NONE, stmt->lineno))
     231 UBC           0 :             return ECPG_ARRAY_ERROR;
     232 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INETOID, ECPG_ARRAY_NONE, stmt->lineno))
     233 UBC           0 :             return ECPG_ARRAY_ERROR;
     234 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), CIDROID, ECPG_ARRAY_NONE, stmt->lineno))
     235 UBC           0 :             return ECPG_ARRAY_ERROR;
     236 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BPCHAROID, ECPG_ARRAY_NONE, stmt->lineno))
     237 UBC           0 :             return ECPG_ARRAY_ERROR;
     238 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), VARCHAROID, ECPG_ARRAY_NONE, stmt->lineno))
     239 UBC           0 :             return ECPG_ARRAY_ERROR;
     240 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), DATEOID, ECPG_ARRAY_NONE, stmt->lineno))
     241 UBC           0 :             return ECPG_ARRAY_ERROR;
     242 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIMEOID, ECPG_ARRAY_NONE, stmt->lineno))
     243 UBC           0 :             return ECPG_ARRAY_ERROR;
     244 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIMESTAMPOID, ECPG_ARRAY_NONE, stmt->lineno))
     245 UBC           0 :             return ECPG_ARRAY_ERROR;
     246 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIMESTAMPTZOID, ECPG_ARRAY_NONE, stmt->lineno))
     247 UBC           0 :             return ECPG_ARRAY_ERROR;
     248 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), INTERVALOID, ECPG_ARRAY_NONE, stmt->lineno))
     249 UBC           0 :             return ECPG_ARRAY_ERROR;
     250 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), TIMETZOID, ECPG_ARRAY_NONE, stmt->lineno))
     251 UBC           0 :             return ECPG_ARRAY_ERROR;
     252 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), BITOID, ECPG_ARRAY_NONE, stmt->lineno))
     253 UBC           0 :             return ECPG_ARRAY_ERROR;
     254 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), VARBITOID, ECPG_ARRAY_NONE, stmt->lineno))
     255 UBC           0 :             return ECPG_ARRAY_ERROR;
     256 CBC          64 :         if (!ecpg_type_infocache_push(&(stmt->connection->cache_head), NUMERICOID, ECPG_ARRAY_NONE, stmt->lineno))
     257 UBC           0 :             return ECPG_ARRAY_ERROR;
     258                 :     }
     259                 : 
     260 CBC       39642 :     for (cache_entry = (stmt->connection->cache_head); cache_entry != NULL; cache_entry = cache_entry->next)
     261                 :     {
     262           39635 :         if (cache_entry->oid == type)
     263            1225 :             return cache_entry->isarray;
     264                 :     }
     265                 : 
     266               7 :     array_query = (char *) ecpg_alloc(strlen("select typlen from pg_type where oid= and typelem<>0") + 11, stmt->lineno);
     267               7 :     if (array_query == NULL)
     268 UBC           0 :         return ECPG_ARRAY_ERROR;
     269                 : 
     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);
     272               7 :     ecpg_free(array_query);
     273               7 :     if (!ecpg_check_PQresult(query, stmt->lineno, stmt->connection->connection, stmt->compat))
     274 UBC           0 :         return ECPG_ARRAY_ERROR;
     275 CBC           7 :     else if (PQresultStatus(query) == PGRES_TUPLES_OK)
     276                 :     {
     277               7 :         if (PQntuples(query) == 0)
     278               2 :             isarray = ECPG_ARRAY_NONE;
     279                 :         else
     280                 :         {
     281               5 :             isarray = (atol((char *) PQgetvalue(query, 0, 0)) == -1) ? ECPG_ARRAY_ARRAY : ECPG_ARRAY_VECTOR;
     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                 :                  */
     288 UBC           0 :                 isarray = ECPG_ARRAY_NONE;
     289                 :             }
     290                 :         }
     291 CBC           7 :         PQclear(query);
     292                 :     }
     293                 :     else
     294 UBC           0 :         return ECPG_ARRAY_ERROR;
     295                 : 
     296 CBC           7 :     ecpg_type_infocache_push(&(stmt->connection->cache_head), type, isarray, stmt->lineno);
     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");
     298               7 :     return isarray;
     299                 : }
     300                 : 
     301                 : 
     302                 : bool
     303            1232 : 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,
     308            1232 :                 ntuples = PQntuples(results);
     309            1232 :     bool        status = true;
     310                 : 
     311            1232 :     if ((isarray = ecpg_is_type_an_array(PQftype(results, act_field), stmt, var)) == ECPG_ARRAY_ERROR)
     312                 :     {
     313 UBC           0 :         ecpg_raise(stmt->lineno, ECPG_OUT_OF_MEMORY, ECPG_SQLSTATE_ECPG_OUT_OF_MEMORY, NULL);
     314               0 :         return false;
     315                 :     }
     316                 : 
     317 CBC        1232 :     if (isarray == ECPG_ARRAY_NONE)
     318                 :     {
     319                 :         /*
     320                 :          * if we don't have enough space, we cannot read all tuples
     321                 :          */
     322            1226 :         if ((var->arrsize > 0 && ntuples > var->arrsize) || (var->ind_arrsize > 0 && ntuples > var->ind_arrsize))
     323                 :         {
     324 UBC           0 :             ecpg_log("ecpg_store_result on line %d: incorrect number of matches; %d don't fit into array of %ld\n",
     325               0 :                      stmt->lineno, ntuples, var->arrsize);
     326               0 :             ecpg_raise(stmt->lineno, INFORMIX_MODE(stmt->compat) ? ECPG_INFORMIX_SUBSELECT_NOT_ONE : ECPG_TOO_MANY_MATCHES, ECPG_SQLSTATE_CARDINALITY_VIOLATION, NULL);
     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                 :          */
     335 CBC           6 :         if (var->arrsize == 0)
     336                 :         {
     337 UBC           0 :             ecpg_raise(stmt->lineno, ECPG_NO_ARRAY, ECPG_SQLSTATE_DATATYPE_MISMATCH, NULL);
     338               0 :             return false;
     339                 :         }
     340                 :     }
     341                 : 
     342                 :     /*
     343                 :      * allocate memory for NULL pointers
     344                 :      */
     345 CBC        1232 :     if ((var->arrsize == 0 || var->varcharsize == 0) && var->value == NULL)
     346                 :     {
     347             826 :         int         len = 0;
     348                 : 
     349             826 :         if (!PQfformat(results, act_field))
     350                 :         {
     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;
     361             807 :                         len *= var->offset; /* should be 1, but YMNK */
     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                 :                         {
     370 GNC          14 :                             int         slen = strlen(PQgetvalue(results, act_tuple, act_field)) + 1;
     371                 : 
     372              14 :                             if (slen > var->varcharsize)
     373              14 :                                 var->varcharsize = slen;
     374                 :                         }
     375 CBC          14 :                         var->offset *= var->varcharsize;
     376              14 :                         len = var->offset * ntuples;
     377                 :                     }
     378             821 :                     break;
     379 UBC           0 :                 case ECPGt_varchar:
     380               0 :                     len = ntuples * (var->varcharsize + sizeof(int));
     381               0 :                     break;
     382 CBC           4 :                 default:
     383               4 :                     len = var->offset * ntuples;
     384               4 :                     break;
     385                 :             }
     386                 :         }
     387                 :         else
     388                 :         {
     389               2 :             for (act_tuple = 0; act_tuple < ntuples; act_tuple++)
     390               1 :                 len += PQgetlength(results, act_tuple, act_field);
     391                 :         }
     392                 : 
     393             826 :         ecpg_log("ecpg_store_result on line %d: allocating memory for %d tuples\n", stmt->lineno, ntuples);
     394             826 :         var->value = (char *) ecpg_auto_alloc(len, stmt->lineno);
     395             826 :         if (!var->value)
     396 UBC           0 :             return false;
     397 CBC         826 :         *((char **) var->pointer) = var->value;
     398                 :     }
     399                 : 
     400                 :     /* allocate indicator variable if needed */
     401            1232 :     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                 : 
     405              10 :         var->ind_value = (char *) ecpg_auto_alloc(len, stmt->lineno);
     406              10 :         if (!var->ind_value)
     407 UBC           0 :             return false;
     408 CBC          10 :         *((char **) var->ind_pointer) = var->ind_value;
     409                 :     }
     410                 : 
     411                 :     /* fill the variable with the tuple(s) */
     412            1232 :     if (!var->varcharsize && !var->arrsize &&
     413             807 :         (var->type == ECPGt_char || var->type == ECPGt_unsigned_char || var->type == ECPGt_string))
     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 *) &current_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                 : 
     427             818 :             if (!ecpg_get_data(results, act_tuple, act_field, stmt->lineno,
     428                 :                                var->type, var->ind_type, current_data_location,
     429             818 :                                var->ind_value, len, 0, var->ind_offset, isarray, stmt->compat, stmt->force_indicator))
     430 UBC           0 :                 status = false;
     431                 :             else
     432                 :             {
     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             934 :         for (act_tuple = 0; act_tuple < ntuples && status; act_tuple++)
     445                 :         {
     446             509 :             if (!ecpg_get_data(results, act_tuple, act_field, stmt->lineno,
     447             509 :                                var->type, var->ind_type, var->value,
     448             509 :                                var->ind_value, var->varcharsize, var->offset, var->ind_offset, isarray, stmt->compat, stmt->force_indicator))
     449               2 :                 status = false;
     450                 :         }
     451                 :     }
     452            1232 :     return status;
     453                 : }
     454                 : 
     455                 : static void
     456               6 : sprintf_double_value(char *ptr, double value, const char *delim)
     457                 : {
     458               6 :     if (isnan(value))
     459               1 :         sprintf(ptr, "%s%s", "NaN", delim);
     460               5 :     else if (isinf(value))
     461                 :     {
     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
     468               3 :         sprintf(ptr, "%.15g%s", value, delim);
     469               6 : }
     470                 : 
     471                 : static void
     472               1 : sprintf_float_value(char *ptr, float value, const char *delim)
     473                 : {
     474               1 :     if (isnan(value))
     475 UBC           0 :         sprintf(ptr, "%s%s", "NaN", delim);
     476 CBC           1 :     else if (isinf(value))
     477                 :     {
     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
     484 CBC           1 :         sprintf(ptr, "%.15g%s", value, delim);
     485               1 : }
     486                 : 
     487                 : static char *
     488 UBC           0 : convert_bytea_to_string(char *from_data, int from_len, int lineno)
     489                 : {
     490                 :     char       *to_data;
     491               0 :     int         to_len = ecpg_hex_enc_len(from_len) + 4 + 1;    /* backslash + 'x' +
     492                 :                                                                  * quote + quote */
     493                 : 
     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
     506 CBC        1837 : ecpg_store_input(const int lineno, const bool force_indicator, const struct variable *var,
     507                 :                  char **tobeinserted_p, bool quote)
     508                 : {
     509            1837 :     char       *mallocedval = NULL;
     510            1837 :     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            1837 :     *tobeinserted_p = "";
     524                 : 
     525                 :     /* check for null value and set input buffer accordingly */
     526            1837 :     switch (var->ind_type)
     527                 :     {
     528 UBC           0 :         case ECPGt_short:
     529                 :         case ECPGt_unsigned_short:
     530               0 :             if (*(short *) var->ind_value < 0)
     531               0 :                 *tobeinserted_p = NULL;
     532               0 :             break;
     533 CBC           5 :         case ECPGt_int:
     534                 :         case ECPGt_unsigned_int:
     535               5 :             if (*(int *) var->ind_value < 0)
     536               3 :                 *tobeinserted_p = NULL;
     537               5 :             break;
     538 UBC           0 :         case ECPGt_long:
     539                 :         case ECPGt_unsigned_long:
     540               0 :             if (*(long *) var->ind_value < 0L)
     541               0 :                 *tobeinserted_p = NULL;
     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)
     546               0 :                 *tobeinserted_p = NULL;
     547               0 :             break;
     548 CBC        1821 :         case ECPGt_NO_INDICATOR:
     549            1821 :             if (force_indicator == false)
     550                 :             {
     551              17 :                 if (ECPGis_noind_null(var->type, var->value))
     552               9 :                     *tobeinserted_p = NULL;
     553                 :             }
     554            1821 :             break;
     555              11 :         default:
     556              11 :             break;
     557                 :     }
     558            1837 :     if (*tobeinserted_p != NULL)
     559                 :     {
     560            1825 :         int         asize = var->arrsize ? var->arrsize : 1;
     561                 : 
     562            1825 :         switch (var->type)
     563                 :         {
     564                 :                 int         element;
     565                 : 
     566               4 :             case ECPGt_short:
     567               4 :                 if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
     568 UBC           0 :                     return false;
     569                 : 
     570 CBC           4 :                 if (asize > 1)
     571                 :                 {
     572               2 :                     strcpy(mallocedval, "{");
     573                 : 
     574              22 :                     for (element = 0; element < asize; element++)
     575              20 :                         sprintf(mallocedval + strlen(mallocedval), "%hd,", ((short *) var->value)[element]);
     576                 : 
     577               2 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     578                 :                 }
     579                 :                 else
     580               2 :                     sprintf(mallocedval, "%hd", *((short *) var->value));
     581                 : 
     582               4 :                 *tobeinserted_p = mallocedval;
     583               4 :                 break;
     584                 : 
     585            1271 :             case ECPGt_int:
     586            1271 :                 if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
     587 UBC           0 :                     return false;
     588                 : 
     589 CBC        1271 :                 if (asize > 1)
     590                 :                 {
     591 UBC           0 :                     strcpy(mallocedval, "{");
     592                 : 
     593               0 :                     for (element = 0; element < asize; element++)
     594               0 :                         sprintf(mallocedval + strlen(mallocedval), "%d,", ((int *) var->value)[element]);
     595                 : 
     596               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     597                 :                 }
     598                 :                 else
     599 CBC        1271 :                     sprintf(mallocedval, "%d", *((int *) var->value));
     600                 : 
     601            1271 :                 *tobeinserted_p = mallocedval;
     602            1271 :                 break;
     603                 : 
     604 UBC           0 :             case ECPGt_unsigned_short:
     605               0 :                 if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
     606               0 :                     return false;
     607                 : 
     608               0 :                 if (asize > 1)
     609                 :                 {
     610               0 :                     strcpy(mallocedval, "{");
     611                 : 
     612               0 :                     for (element = 0; element < asize; element++)
     613               0 :                         sprintf(mallocedval + strlen(mallocedval), "%hu,", ((unsigned short *) var->value)[element]);
     614                 : 
     615               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     616                 :                 }
     617                 :                 else
     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:
     624               0 :                 if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
     625               0 :                     return false;
     626                 : 
     627               0 :                 if (asize > 1)
     628                 :                 {
     629               0 :                     strcpy(mallocedval, "{");
     630                 : 
     631               0 :                     for (element = 0; element < asize; element++)
     632               0 :                         sprintf(mallocedval + strlen(mallocedval), "%u,", ((unsigned int *) var->value)[element]);
     633                 : 
     634               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     635                 :                 }
     636                 :                 else
     637               0 :                     sprintf(mallocedval, "%u", *((unsigned int *) var->value));
     638                 : 
     639               0 :                 *tobeinserted_p = mallocedval;
     640               0 :                 break;
     641                 : 
     642 CBC           5 :             case ECPGt_long:
     643               5 :                 if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
     644 UBC           0 :                     return false;
     645                 : 
     646 CBC           5 :                 if (asize > 1)
     647                 :                 {
     648 UBC           0 :                     strcpy(mallocedval, "{");
     649                 : 
     650               0 :                     for (element = 0; element < asize; element++)
     651               0 :                         sprintf(mallocedval + strlen(mallocedval), "%ld,", ((long *) var->value)[element]);
     652                 : 
     653               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     654                 :                 }
     655                 :                 else
     656 CBC           5 :                     sprintf(mallocedval, "%ld", *((long *) var->value));
     657                 : 
     658               5 :                 *tobeinserted_p = mallocedval;
     659               5 :                 break;
     660                 : 
     661 UBC           0 :             case ECPGt_unsigned_long:
     662               0 :                 if (!(mallocedval = ecpg_alloc(asize * 20, lineno)))
     663               0 :                     return false;
     664                 : 
     665               0 :                 if (asize > 1)
     666                 :                 {
     667               0 :                     strcpy(mallocedval, "{");
     668                 : 
     669               0 :                     for (element = 0; element < asize; element++)
     670               0 :                         sprintf(mallocedval + strlen(mallocedval), "%lu,", ((unsigned long *) var->value)[element]);
     671                 : 
     672               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     673                 :                 }
     674                 :                 else
     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:
     681               0 :                 if (!(mallocedval = ecpg_alloc(asize * 30, lineno)))
     682               0 :                     return false;
     683                 : 
     684               0 :                 if (asize > 1)
     685                 :                 {
     686               0 :                     strcpy(mallocedval, "{");
     687                 : 
     688               0 :                     for (element = 0; element < asize; element++)
     689               0 :                         sprintf(mallocedval + strlen(mallocedval), "%lld,", ((long long int *) var->value)[element]);
     690                 : 
     691               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     692                 :                 }
     693                 :                 else
     694               0 :                     sprintf(mallocedval, "%lld", *((long long int *) var->value));
     695                 : 
     696               0 :                 *tobeinserted_p = mallocedval;
     697               0 :                 break;
     698                 : 
     699               0 :             case ECPGt_unsigned_long_long:
     700               0 :                 if (!(mallocedval = ecpg_alloc(asize * 30, lineno)))
     701               0 :                     return false;
     702                 : 
     703               0 :                 if (asize > 1)
     704                 :                 {
     705               0 :                     strcpy(mallocedval, "{");
     706                 : 
     707               0 :                     for (element = 0; element < asize; element++)
     708               0 :                         sprintf(mallocedval + strlen(mallocedval), "%llu,", ((unsigned long long int *) var->value)[element]);
     709                 : 
     710               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     711                 :                 }
     712                 :                 else
     713               0 :                     sprintf(mallocedval, "%llu", *((unsigned long long int *) var->value));
     714                 : 
     715               0 :                 *tobeinserted_p = mallocedval;
     716               0 :                 break;
     717                 : 
     718 CBC           1 :             case ECPGt_float:
     719               1 :                 if (!(mallocedval = ecpg_alloc(asize * 25, lineno)))
     720 UBC           0 :                     return false;
     721                 : 
     722 CBC           1 :                 if (asize > 1)
     723                 :                 {
     724 UBC           0 :                     strcpy(mallocedval, "{");
     725                 : 
     726               0 :                     for (element = 0; element < asize; element++)
     727               0 :                         sprintf_float_value(mallocedval + strlen(mallocedval), ((float *) var->value)[element], ",");
     728                 : 
     729               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     730                 :                 }
     731                 :                 else
     732 CBC           1 :                     sprintf_float_value(mallocedval, *((float *) var->value), "");
     733                 : 
     734               1 :                 *tobeinserted_p = mallocedval;
     735               1 :                 break;
     736                 : 
     737               6 :             case ECPGt_double:
     738               6 :                 if (!(mallocedval = ecpg_alloc(asize * 25, lineno)))
     739 UBC           0 :                     return false;
     740                 : 
     741 CBC           6 :                 if (asize > 1)
     742                 :                 {
     743 UBC           0 :                     strcpy(mallocedval, "{");
     744                 : 
     745               0 :                     for (element = 0; element < asize; element++)
     746               0 :                         sprintf_double_value(mallocedval + strlen(mallocedval), ((double *) var->value)[element], ",");
     747                 : 
     748               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     749                 :                 }
     750                 :                 else
     751 CBC           6 :                     sprintf_double_value(mallocedval, *((double *) var->value), "");
     752                 : 
     753               6 :                 *tobeinserted_p = mallocedval;
     754               6 :                 break;
     755                 : 
     756               2 :             case ECPGt_bool:
     757               2 :                 if (!(mallocedval = ecpg_alloc(var->arrsize + sizeof("{}"), lineno)))
     758 UBC           0 :                     return false;
     759                 : 
     760 CBC           2 :                 if (var->arrsize > 1)
     761                 :                 {
     762 UBC           0 :                     strcpy(mallocedval, "{");
     763                 : 
     764               0 :                     for (element = 0; element < asize; element++)
     765               0 :                         sprintf(mallocedval + strlen(mallocedval), "%c,", (((bool *) var->value)[element]) ? 't' : 'f');
     766                 : 
     767               0 :                     strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     768                 :                 }
     769                 :                 else
     770                 :                 {
     771 CBC           2 :                     if (var->offset == sizeof(char))
     772               2 :                         sprintf(mallocedval, "%c", (*((char *) var->value)) ? 't' : 'f');
     773 UBC           0 :                     else if (var->offset == sizeof(int))
     774               0 :                         sprintf(mallocedval, "%c", (*((int *) var->value)) ? 't' : 'f');
     775                 :                     else
     776               0 :                         ecpg_raise(lineno, ECPG_CONVERT_BOOL, ECPG_SQLSTATE_DATATYPE_MISMATCH, NULL);
     777                 :                 }
     778                 : 
     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 * */
     787             457 :                     int         slen = (var->varcharsize == 0) ? strlen((char *) var->value) : (unsigned int) var->varcharsize;
     788                 : 
     789             457 :                     if (!(newcopy = ecpg_alloc(slen + 1, lineno)))
     790 UBC           0 :                         return false;
     791                 : 
     792 CBC         457 :                     strncpy(newcopy, (char *) var->value, slen);
     793             457 :                     newcopy[slen] = '\0';
     794                 : 
     795             457 :                     mallocedval = quote_postgres(newcopy, quote, lineno);
     796             457 :                     if (!mallocedval)
     797                 :                     {
     798 UBC           0 :                         ecpg_free(newcopy);
     799               0 :                         return false;
     800                 :                     }
     801                 : 
     802 CBC         457 :                     *tobeinserted_p = mallocedval;
     803                 :                 }
     804             457 :                 break;
     805              36 :             case ECPGt_const:
     806                 :             case ECPGt_char_variable:
     807                 :                 {
     808              36 :                     int         slen = strlen((char *) var->value);
     809                 : 
     810              36 :                     if (!(mallocedval = ecpg_alloc(slen + 1, lineno)))
     811 UBC           0 :                         return false;
     812                 : 
     813 CBC          36 :                     strncpy(mallocedval, (char *) var->value, slen);
     814              36 :                     mallocedval[slen] = '\0';
     815                 : 
     816              36 :                     *tobeinserted_p = mallocedval;
     817                 :                 }
     818              36 :                 break;
     819                 : 
     820              13 :             case ECPGt_bytea:
     821                 :                 {
     822              13 :                     struct ECPGgeneric_bytea *variable =
     823                 :                     (struct ECPGgeneric_bytea *) (var->value);
     824                 : 
     825              13 :                     if (!(mallocedval = (char *) ecpg_alloc(variable->len, lineno)))
     826 UBC           0 :                         return false;
     827                 : 
     828 CBC          13 :                     memcpy(mallocedval, variable->arr, variable->len);
     829              13 :                     *tobeinserted_p = mallocedval;
     830                 :                 }
     831              13 :                 break;
     832                 : 
     833               9 :             case ECPGt_varchar:
     834                 :                 {
     835               9 :                     struct ECPGgeneric_varchar *variable =
     836                 :                     (struct ECPGgeneric_varchar *) (var->value);
     837                 : 
     838               9 :                     if (!(newcopy = (char *) ecpg_alloc(variable->len + 1, lineno)))
     839 UBC           0 :                         return false;
     840                 : 
     841 CBC           9 :                     strncpy(newcopy, variable->arr, variable->len);
     842               9 :                     newcopy[variable->len] = '\0';
     843                 : 
     844               9 :                     mallocedval = quote_postgres(newcopy, quote, lineno);
     845               9 :                     if (!mallocedval)
     846                 :                     {
     847 UBC           0 :                         ecpg_free(newcopy);
     848               0 :                         return false;
     849                 :                     }
     850                 : 
     851 CBC           9 :                     *tobeinserted_p = mallocedval;
     852                 :                 }
     853               9 :                 break;
     854                 : 
     855               7 :             case ECPGt_decimal:
     856                 :             case ECPGt_numeric:
     857                 :                 {
     858               7 :                     char       *str = NULL;
     859                 :                     int         slen;
     860                 :                     numeric    *nval;
     861                 : 
     862               7 :                     if (var->arrsize > 1)
     863               3 :                         mallocedval = ecpg_strdup("{", lineno);
     864                 :                     else
     865               4 :                         mallocedval = ecpg_strdup("", lineno);
     866                 : 
     867               7 :                     if (!mallocedval)
     868 UBC           0 :                         return false;
     869                 : 
     870 CBC          41 :                     for (element = 0; element < asize; element++)
     871                 :                     {
     872                 :                         int         result;
     873                 : 
     874              34 :                         nval = PGTYPESnumeric_new();
     875              34 :                         if (!nval)
     876                 :                         {
     877 UBC           0 :                             ecpg_free(mallocedval);
     878               0 :                             return false;
     879                 :                         }
     880                 : 
     881 CBC          34 :                         if (var->type == ECPGt_numeric)
     882              32 :                             result = PGTYPESnumeric_copy(&(((numeric *) (var->value))[element]), nval);
     883                 :                         else
     884               2 :                             result = PGTYPESnumeric_from_decimal(&(((decimal *) (var->value))[element]), nval);
     885                 : 
     886              34 :                         if (result != 0)
     887                 :                         {
     888 UBC           0 :                             PGTYPESnumeric_free(nval);
     889               0 :                             ecpg_free(mallocedval);
     890               0 :                             return false;
     891                 :                         }
     892                 : 
     893 CBC          34 :                         str = PGTYPESnumeric_to_asc(nval, nval->dscale);
     894              34 :                         slen = strlen(str);
     895              34 :                         PGTYPESnumeric_free(nval);
     896                 : 
     897              34 :                         if (!(newcopy = ecpg_realloc(mallocedval, strlen(mallocedval) + slen + 2, lineno)))
     898                 :                         {
     899 UBC           0 :                             ecpg_free(mallocedval);
     900               0 :                             ecpg_free(str);
     901               0 :                             return false;
     902                 :                         }
     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                 : 
     910              34 :                         ecpg_free(str);
     911                 :                     }
     912                 : 
     913               7 :                     if (var->arrsize > 1)
     914               3 :                         strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     915                 : 
     916               7 :                     *tobeinserted_p = mallocedval;
     917                 :                 }
     918               7 :                 break;
     919                 : 
     920               3 :             case ECPGt_interval:
     921                 :                 {
     922               3 :                     char       *str = NULL;
     923                 :                     int         slen;
     924                 : 
     925               3 :                     if (var->arrsize > 1)
     926               3 :                         mallocedval = ecpg_strdup("{", lineno);
     927                 :                     else
     928 UBC           0 :                         mallocedval = ecpg_strdup("", lineno);
     929                 : 
     930 CBC           3 :                     if (!mallocedval)
     931 UBC           0 :                         return false;
     932                 : 
     933 CBC          33 :                     for (element = 0; element < asize; element++)
     934                 :                     {
     935              30 :                         str = quote_postgres(PGTYPESinterval_to_asc(&(((interval *) (var->value))[element])), quote, lineno);
     936              30 :                         if (!str)
     937                 :                         {
     938 UBC           0 :                             ecpg_free(mallocedval);
     939               0 :                             return false;
     940                 :                         }
     941                 : 
     942 CBC          30 :                         slen = strlen(str);
     943                 : 
     944              30 :                         if (!(newcopy = ecpg_realloc(mallocedval, strlen(mallocedval) + slen + 2, lineno)))
     945                 :                         {
     946 UBC           0 :                             ecpg_free(mallocedval);
     947               0 :                             ecpg_free(str);
     948               0 :                             return false;
     949                 :                         }
     950 CBC          30 :                         mallocedval = newcopy;
     951                 : 
     952                 :                         /* also copy trailing '\0' */
     953              30 :                         memcpy(mallocedval + strlen(mallocedval), str, slen + 1);
     954              30 :                         if (var->arrsize > 1)
     955              30 :                             strcpy(mallocedval + strlen(mallocedval), ",");
     956                 : 
     957              30 :                         ecpg_free(str);
     958                 :                     }
     959                 : 
     960               3 :                     if (var->arrsize > 1)
     961               3 :                         strcpy(mallocedval + strlen(mallocedval) - 1, "}");
     962                 : 
     963               3 :                     *tobeinserted_p = mallocedval;
     964                 :                 }
     965               3 :                 break;
     966                 : 
     967               5 :             case ECPGt_date:
     968                 :                 {
     969               5 :                     char       *str = NULL;
     970                 :                     int         slen;
     971                 : 
     972               5 :                     if (var->arrsize > 1)
     973               3 :                         mallocedval = ecpg_strdup("{", lineno);
     974                 :                     else
     975               2 :                         mallocedval = ecpg_strdup("", lineno);
     976                 : 
     977               5 :                     if (!mallocedval)
     978 UBC           0 :                         return false;
     979                 : 
     980 CBC          37 :                     for (element = 0; element < asize; element++)
     981                 :                     {
     982              32 :                         str = quote_postgres(PGTYPESdate_to_asc(((date *) (var->value))[element]), quote, lineno);
     983              32 :                         if (!str)
     984                 :                         {
     985 UBC           0 :                             ecpg_free(mallocedval);
     986               0 :                             return false;
     987                 :                         }
     988                 : 
     989 CBC          32 :                         slen = strlen(str);
     990                 : 
     991              32 :                         if (!(newcopy = ecpg_realloc(mallocedval, strlen(mallocedval) + slen + 2, lineno)))
     992                 :                         {
     993 UBC           0 :                             ecpg_free(mallocedval);
     994               0 :                             ecpg_free(str);
     995               0 :                             return false;
     996                 :                         }
     997 CBC          32 :                         mallocedval = newcopy;
     998                 : 
     999                 :                         /* also copy trailing '\0' */
    1000              32 :                         memcpy(mallocedval + strlen(mallocedval), str, slen + 1);
    1001              32 :                         if (var->arrsize > 1)
    1002              30 :                             strcpy(mallocedval + strlen(mallocedval), ",");
    1003                 : 
    1004              32 :                         ecpg_free(str);
    1005                 :                     }
    1006                 : 
    1007               5 :                     if (var->arrsize > 1)
    1008               3 :                         strcpy(mallocedval + strlen(mallocedval) - 1, "}");
    1009                 : 
    1010               5 :                     *tobeinserted_p = mallocedval;
    1011                 :                 }
    1012               5 :                 break;
    1013                 : 
    1014               6 :             case ECPGt_timestamp:
    1015                 :                 {
    1016               6 :                     char       *str = NULL;
    1017                 :                     int         slen;
    1018                 : 
    1019               6 :                     if (var->arrsize > 1)
    1020               3 :                         mallocedval = ecpg_strdup("{", lineno);
    1021                 :                     else
    1022               3 :                         mallocedval = ecpg_strdup("", lineno);
    1023                 : 
    1024               6 :                     if (!mallocedval)
    1025 UBC           0 :                         return false;
    1026                 : 
    1027 CBC          39 :                     for (element = 0; element < asize; element++)
    1028                 :                     {
    1029              33 :                         str = quote_postgres(PGTYPEStimestamp_to_asc(((timestamp *) (var->value))[element]), quote, lineno);
    1030              33 :                         if (!str)
    1031                 :                         {
    1032 UBC           0 :                             ecpg_free(mallocedval);
    1033               0 :                             return false;
    1034                 :                         }
    1035                 : 
    1036 CBC          33 :                         slen = strlen(str);
    1037                 : 
    1038              33 :                         if (!(newcopy = ecpg_realloc(mallocedval, strlen(mallocedval) + slen + 2, lineno)))
    1039                 :                         {
    1040 UBC           0 :                             ecpg_free(mallocedval);
    1041               0 :                             ecpg_free(str);
    1042               0 :                             return false;
    1043                 :                         }
    1044 CBC          33 :                         mallocedval = newcopy;
    1045                 : 
    1046                 :                         /* also copy trailing '\0' */
    1047              33 :                         memcpy(mallocedval + strlen(mallocedval), str, slen + 1);
    1048              33 :                         if (var->arrsize > 1)
    1049              30 :                             strcpy(mallocedval + strlen(mallocedval), ",");
    1050                 : 
    1051              33 :                         ecpg_free(str);
    1052                 :                     }
    1053                 : 
    1054               6 :                     if (var->arrsize > 1)
    1055               3 :                         strcpy(mallocedval + strlen(mallocedval) - 1, "}");
    1056                 : 
    1057               6 :                     *tobeinserted_p = mallocedval;
    1058                 :                 }
    1059               6 :                 break;
    1060                 : 
    1061 UBC           0 :             case ECPGt_descriptor:
    1062                 :             case ECPGt_sqlda:
    1063               0 :                 break;
    1064                 : 
    1065               0 :             default:
    1066                 :                 /* Not implemented yet */
    1067               0 :                 ecpg_raise(lineno, ECPG_UNSUPPORTED, ECPG_SQLSTATE_ECPG_INTERNAL_ERROR, ecpg_type_name(var->type));
    1068               0 :                 return false;
    1069                 :                 break;
    1070                 :         }
    1071                 :     }
    1072 CBC        1837 :     return true;
    1073                 : }
    1074                 : 
    1075                 : static void
    1076            1732 : print_param_value(char *value, int len, int is_binary, int lineno, int nth)
    1077                 : {
    1078                 :     char       *value_s;
    1079            1732 :     bool        malloced = false;
    1080                 : 
    1081            1732 :     if (value == NULL)
    1082              12 :         value_s = "null";
    1083            1720 :     else if (!is_binary)
    1084            1707 :         value_s = value;
    1085                 :     else
    1086                 :     {
    1087              13 :         value_s = ecpg_alloc(ecpg_hex_enc_len(len) + 1, lineno);
    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
    1095 UBC           0 :             value_s = "no memory for logging of parameter";
    1096                 :     }
    1097                 : 
    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
    1106            2626 : ecpg_free_params(struct statement *stmt, bool print)
    1107                 : {
    1108                 :     int         n;
    1109                 : 
    1110            4358 :     for (n = 0; n < stmt->nparams; n++)
    1111                 :     {
    1112            1732 :         if (print)
    1113            1732 :             print_param_value(stmt->paramvalues[n], stmt->paramlengths[n],
    1114            1732 :                               stmt->paramformats[n], stmt->lineno, n + 1);
    1115            1732 :         ecpg_free(stmt->paramvalues[n]);
    1116                 :     }
    1117            2626 :     ecpg_free(stmt->paramvalues);
    1118            2626 :     ecpg_free(stmt->paramlengths);
    1119            2626 :     ecpg_free(stmt->paramformats);
    1120            2626 :     stmt->paramvalues = NULL;
    1121            2626 :     stmt->paramlengths = NULL;
    1122            2626 :     stmt->paramformats = NULL;
    1123            2626 :     stmt->nparams = 0;
    1124            2626 : }
    1125                 : 
    1126                 : static bool
    1127              96 : insert_tobeinserted(int position, int ph_len, struct statement *stmt, char *tobeinserted)
    1128                 : {
    1129                 :     char       *newcopy;
    1130                 : 
    1131              96 :     if (!(newcopy = (char *) ecpg_alloc(strlen(stmt->command)
    1132              96 :                                         + strlen(tobeinserted)
    1133              96 :                                         + 1, stmt->lineno)))
    1134                 :     {
    1135 UBC           0 :         ecpg_free(tobeinserted);
    1136               0 :         return false;
    1137                 :     }
    1138                 : 
    1139 CBC          96 :     strcpy(newcopy, stmt->command);
    1140              96 :     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              96 :     strcat(newcopy,
    1147              96 :            stmt->command
    1148                 :            + position
    1149              96 :            + ph_len - 1);
    1150                 : 
    1151              96 :     ecpg_free(stmt->command);
    1152              96 :     stmt->command = newcopy;
    1153                 : 
    1154              96 :     ecpg_free(tobeinserted);
    1155              96 :     return true;
    1156                 : }
    1157                 : 
    1158                 : static bool
    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)))
    1172 UBC           0 :             return false;
    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))
    1200 UBC           0 :         return false;
    1201                 : 
    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
    1213            2626 : ecpg_build_params(struct statement *stmt)
    1214                 : {
    1215                 :     struct variable *var;
    1216            2626 :     int         desc_counter = 0;
    1217            2626 :     int         position = 0;
    1218                 :     const char *value;
    1219            2626 :     bool        std_strings = false;
    1220                 : 
    1221                 :     /* Get standard_conforming_strings setting. */
    1222            2626 :     value = PQparameterStatus(stmt->connection->connection, "standard_conforming_strings");
    1223            2626 :     if (value && strcmp(value, "on") == 0)
    1224            2617 :         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                 :      */
    1231            2626 :     var = stmt->inlist;
    1232            4454 :     while (var)
    1233                 :     {
    1234                 :         char       *tobeinserted;
    1235            1828 :         int         counter = 1;
    1236                 :         bool        binary_format;
    1237                 :         int         binary_length;
    1238                 : 
    1239                 : 
    1240            1828 :         tobeinserted = NULL;
    1241            1828 :         binary_length = 0;
    1242            1828 :         binary_format = false;
    1243                 : 
    1244                 :         /*
    1245                 :          * A descriptor is a special case since it contains many variables but
    1246                 :          * is listed only once.
    1247                 :          */
    1248            1828 :         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                 : 
    1257              13 :             desc = ecpg_find_desc(stmt->lineno, var->pointer);
    1258              13 :             if (desc == NULL)
    1259 UBC           0 :                 return false;
    1260                 : 
    1261 CBC          13 :             desc_counter++;
    1262              20 :             for (desc_item = desc->items; desc_item; desc_item = desc_item->next)
    1263                 :             {
    1264              20 :                 if (desc_item->num != desc_counter)
    1265               7 :                     continue;
    1266                 : 
    1267              13 :                 if (!store_input_from_desc(stmt, desc_item, &tobeinserted))
    1268 UBC           0 :                     return false;
    1269                 : 
    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                 :             }
    1277              13 :             if (desc->count == desc_counter)
    1278               7 :                 desc_counter = 0;
    1279                 :         }
    1280            1815 :         else if (var->type == ECPGt_sqlda)
    1281                 :         {
    1282               4 :             if (INFORMIX_MODE(stmt->compat))
    1283               2 :             {
    1284               2 :                 struct sqlda_compat *sqlda = *(struct sqlda_compat **) var->pointer;
    1285                 :                 struct variable desc_inlist;
    1286                 :                 int         i;
    1287                 : 
    1288               2 :                 if (sqlda == NULL)
    1289 UBC           0 :                     return false;
    1290                 : 
    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                 :                         {
    1301 UBC           0 :                             case ECPGt_char:
    1302                 :                             case ECPGt_varchar:
    1303               0 :                                 desc_inlist.varcharsize = strlen(sqlda->sqlvar[i].sqldata);
    1304               0 :                                 break;
    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                 :                         {
    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                 :                         {
    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))
    1329 UBC           0 :                             return false;
    1330                 : 
    1331 CBC           2 :                         break;
    1332                 :                     }
    1333                 :                 }
    1334               2 :                 if (sqlda->sqld == desc_counter)
    1335               2 :                     desc_counter = 0;
    1336                 :             }
    1337                 :             else
    1338                 :             {
    1339               2 :                 struct sqlda_struct *sqlda = *(struct sqlda_struct **) var->pointer;
    1340                 :                 struct variable desc_inlist;
    1341                 :                 int         i;
    1342                 : 
    1343               2 :                 if (sqlda == NULL)
    1344 UBC           0 :                     return false;
    1345                 : 
    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                 :                         {
    1356 UBC           0 :                             case ECPGt_char:
    1357                 :                             case ECPGt_varchar:
    1358               0 :                                 desc_inlist.varcharsize = strlen(sqlda->sqlvar[i].sqldata);
    1359               0 :                                 break;
    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                 :                         {
    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                 :                         {
    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))
    1384 UBC           0 :                             return false;
    1385                 : 
    1386 CBC           2 :                         break;
    1387                 :                     }
    1388                 :                 }
    1389               2 :                 if (sqlda->sqln == desc_counter)
    1390               2 :                     desc_counter = 0;
    1391                 :             }
    1392                 :         }
    1393                 :         else
    1394                 :         {
    1395            1811 :             if (!ecpg_store_input(stmt->lineno, stmt->force_indicator, var, &tobeinserted, false))
    1396 UBC           0 :                 return false;
    1397                 : 
    1398 CBC        1811 :             if (var->type == ECPGt_bytea)
    1399                 :             {
    1400              11 :                 binary_length = ((struct ECPGgeneric_bytea *) (var->value))->len;
    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                 :          */
    1409            1828 :         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                 :              */
    1415 UBC           0 :             ecpg_raise(stmt->lineno, ECPG_TOO_MANY_ARGUMENTS,
    1416                 :                        ECPG_SQLSTATE_USING_CLAUSE_DOES_NOT_MATCH_PARAMETERS,
    1417                 :                        NULL);
    1418               0 :             ecpg_free_params(stmt, false);
    1419               0 :             ecpg_free(tobeinserted);
    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                 :          */
    1428 CBC        1828 :         if (var->type == ECPGt_char_variable)
    1429                 :         {
    1430              20 :             int         ph_len = (stmt->command[position] == '?') ? strlen("?") : strlen("$1");
    1431                 : 
    1432              20 :             if (!insert_tobeinserted(position, ph_len, stmt, tobeinserted))
    1433                 :             {
    1434 UBC           0 :                 ecpg_free_params(stmt, false);
    1435               0 :                 return false;
    1436                 :             }
    1437 CBC          20 :             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                 :          */
    1445            1808 :         else if (stmt->command[position] == '0')
    1446                 :         {
    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. */
    1451              14 :                 char       *str = ecpg_alloc(strlen(tobeinserted) + 2 + 1,
    1452                 :                                              stmt->lineno);
    1453                 : 
    1454              14 :                 if (!str)
    1455                 :                 {
    1456 UBC           0 :                     ecpg_free(tobeinserted);
    1457               0 :                     ecpg_free_params(stmt, false);
    1458               0 :                     return false;
    1459                 :                 }
    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                 :             {
    1467 UBC           0 :                 ecpg_free_params(stmt, false);
    1468               0 :                 return false;
    1469                 :             }
    1470 CBC          62 :             tobeinserted = NULL;
    1471                 :         }
    1472            1746 :         else if (stmt->statement_type == ECPGst_exec_with_exprlist)
    1473                 :         {
    1474              14 :             if (binary_format)
    1475                 :             {
    1476 UBC           0 :                 char       *p = convert_bytea_to_string(tobeinserted,
    1477                 :                                                         binary_length,
    1478                 :                                                         stmt->lineno);
    1479                 : 
    1480               0 :                 ecpg_free(tobeinserted);
    1481               0 :                 if (!p)
    1482                 :                 {
    1483               0 :                     ecpg_free_params(stmt, false);
    1484               0 :                     return false;
    1485                 :                 }
    1486               0 :                 tobeinserted = p;
    1487                 :             }
    1488                 : 
    1489 CBC          14 :             if (!insert_tobeinserted(position, 2, stmt, tobeinserted))
    1490                 :             {
    1491 UBC           0 :                 ecpg_free_params(stmt, false);
    1492               0 :                 return false;
    1493                 :             }
    1494 CBC          14 :             tobeinserted = NULL;
    1495                 :         }
    1496                 :         else
    1497                 :         {
    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
    1507 UBC           0 :                 realloc_failed = true;
    1508                 : 
    1509 CBC        1732 :             if ((newparamlengths = (int *) ecpg_realloc(stmt->paramlengths, sizeof(int) * (stmt->nparams + 1), stmt->lineno)))
    1510            1732 :                 stmt->paramlengths = newparamlengths;
    1511                 :             else
    1512 UBC           0 :                 realloc_failed = true;
    1513                 : 
    1514 CBC        1732 :             if ((newparamformats = (int *) ecpg_realloc(stmt->paramformats, sizeof(int) * (stmt->nparams + 1), stmt->lineno)))
    1515            1732 :                 stmt->paramformats = newparamformats;
    1516                 :             else
    1517 UBC           0 :                 realloc_failed = true;
    1518                 : 
    1519 CBC        1732 :             if (realloc_failed)
    1520                 :             {
    1521 UBC           0 :                 ecpg_free_params(stmt, false);
    1522               0 :                 ecpg_free(tobeinserted);
    1523               0 :                 return false;
    1524                 :             }
    1525                 : 
    1526                 :             /* only now can we assign ownership of "tobeinserted" to stmt */
    1527 CBC        1732 :             stmt->paramvalues[stmt->nparams] = tobeinserted;
    1528            1732 :             stmt->paramlengths[stmt->nparams] = binary_length;
    1529            1732 :             stmt->paramformats[stmt->nparams] = (binary_format ? 1 : 0);
    1530            1732 :             stmt->nparams++;
    1531                 : 
    1532                 :             /* let's see if this was an old style placeholder */
    1533            1732 :             if (stmt->command[position] == '?')
    1534                 :             {
    1535                 :                 /* yes, replace with new style */
    1536 UBC           0 :                 int         buffersize = sizeof(int) * CHAR_BIT * 10 / 3;   /* a rough guess of the
    1537                 :                                                                              * size we need */
    1538                 : 
    1539               0 :                 if (!(tobeinserted = (char *) ecpg_alloc(buffersize, stmt->lineno)))
    1540                 :                 {
    1541               0 :                     ecpg_free_params(stmt, false);
    1542               0 :                     return false;
    1543                 :                 }
    1544                 : 
    1545               0 :                 snprintf(tobeinserted, buffersize, "$%d", counter++);
    1546                 : 
    1547               0 :                 if (!insert_tobeinserted(position, 2, stmt, tobeinserted))
    1548                 :                 {
    1549               0 :                     ecpg_free_params(stmt, false);
    1550               0 :                     return false;
    1551                 :                 }
    1552               0 :                 tobeinserted = NULL;
    1553                 :             }
    1554                 :         }
    1555                 : 
    1556 CBC        1828 :         if (desc_counter == 0)
    1557            1822 :             var = var->next;
    1558                 :     }
    1559                 : 
    1560                 :     /*
    1561                 :      * Check if there are unmatched things left. PREPARE AS has no parameter.
    1562                 :      * Check other statement.
    1563                 :      */
    1564            5247 :     if (stmt->statement_type != ECPGst_prepare &&
    1565            2621 :         next_insert(stmt->command, position, stmt->questionmarks, std_strings) >= 0)
    1566                 :     {
    1567 UBC           0 :         ecpg_raise(stmt->lineno, ECPG_TOO_FEW_ARGUMENTS,
    1568                 :                    ECPG_SQLSTATE_USING_CLAUSE_DOES_NOT_MATCH_PARAMETERS, NULL);
    1569               0 :         ecpg_free_params(stmt, false);
    1570               0 :         return false;
    1571                 :     }
    1572                 : 
    1573 CBC        2626 :     return true;
    1574                 : }
    1575                 : 
    1576                 : /*
    1577                 :  * ecpg_autostart_transaction
    1578                 :  *      If we are in non-autocommit mode, automatically start a transaction.
    1579                 :  */
    1580                 : bool
    1581            2626 : ecpg_autostart_transaction(struct statement *stmt)
    1582                 : {
    1583            2626 :     if (PQtransactionStatus(stmt->connection->connection) == PQTRANS_IDLE && !stmt->connection->autocommit)
    1584                 :     {
    1585              91 :         stmt->results = PQexec(stmt->connection->connection, "begin transaction");
    1586              91 :         if (!ecpg_check_PQresult(stmt->results, stmt->lineno, stmt->connection->connection, stmt->compat))
    1587                 :         {
    1588 UBC           0 :             ecpg_free_params(stmt, false);
    1589               0 :             return false;
    1590                 :         }
    1591 CBC          91 :         PQclear(stmt->results);
    1592              91 :         stmt->results = NULL;
    1593                 :     }
    1594            2626 :     return true;
    1595                 : }
    1596                 : 
    1597                 : /*
    1598                 :  * ecpg_execute
    1599                 :  *      Execute the SQL statement.
    1600                 :  */
    1601                 : bool
    1602            2626 : ecpg_execute(struct statement *stmt)
    1603                 : {
    1604            2626 :     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);
    1605            2626 :     if (stmt->statement_type == ECPGst_execute)
    1606                 :     {
    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);
    1614             832 :         ecpg_log("ecpg_execute on line %d: using PQexecPrepared for \"%s\"\n", stmt->lineno, stmt->command);
    1615                 :     }
    1616                 :     else
    1617                 :     {
    1618            1794 :         if (stmt->nparams == 0)
    1619                 :         {
    1620            1340 :             stmt->results = PQexec(stmt->connection->connection, stmt->command);
    1621            1340 :             ecpg_log("ecpg_execute on line %d: using PQexec\n", stmt->lineno);
    1622                 :         }
    1623                 :         else
    1624                 :         {
    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                 : 
    1632             454 :             ecpg_log("ecpg_execute on line %d: using PQexecParams\n", stmt->lineno);
    1633                 :         }
    1634                 : 
    1635            1794 :         if (stmt->statement_type == ECPGst_prepare)
    1636                 :         {
    1637               5 :             if (!ecpg_register_prepared_stmt(stmt))
    1638                 :             {
    1639 UBC           0 :                 ecpg_free_params(stmt, true);
    1640               0 :                 return false;
    1641                 :             }
    1642                 :         }
    1643                 :     }
    1644                 : 
    1645 CBC        2626 :     ecpg_free_params(stmt, true);
    1646                 : 
    1647            2626 :     if (!ecpg_check_PQresult(stmt->results, stmt->lineno, stmt->connection->connection, stmt->compat))
    1648               9 :         return false;
    1649                 : 
    1650            2617 :     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
    1671            2617 : ecpg_process_output(struct statement *stmt, bool clear_result)
    1672                 : {
    1673                 :     struct variable *var;
    1674            2617 :     bool        status = false;
    1675                 :     char       *cmdstat;
    1676                 :     PGnotify   *notify;
    1677            2617 :     struct sqlca_t *sqlca = ECPGget_sqlca();
    1678                 :     int         nfields,
    1679                 :                 ntuples,
    1680                 :                 act_field;
    1681                 : 
    1682            2617 :     if (sqlca == NULL)
    1683                 :     {
    1684 UBC           0 :         ecpg_raise(stmt->lineno, ECPG_OUT_OF_MEMORY,
    1685                 :                    ECPG_SQLSTATE_ECPG_OUT_OF_MEMORY, NULL);
    1686               0 :         return false;
    1687                 :     }
    1688                 : 
    1689 CBC        2617 :     var = stmt->outlist;
    1690            2617 :     switch (PQresultStatus(stmt->results))
    1691                 :     {
    1692            1026 :         case PGRES_TUPLES_OK:
    1693            1026 :             nfields = PQnfields(stmt->results);
    1694            1026 :             sqlca->sqlerrd[2] = ntuples = PQntuples(stmt->results);
    1695                 : 
    1696            1026 :             ecpg_log("ecpg_process_output on line %d: correctly got %d tuples with %d fields\n", stmt->lineno, ntuples, nfields);
    1697            1026 :             status = true;
    1698                 : 
    1699            1026 :             if (ntuples < 1)
    1700                 :             {
    1701              20 :                 if (ntuples)
    1702 UBC           0 :                     ecpg_log("ecpg_process_output on line %d: incorrect number of matches (%d)\n",
    1703                 :                              stmt->lineno, ntuples);
    1704 CBC          20 :                 ecpg_raise(stmt->lineno, ECPG_NOT_FOUND, ECPG_SQLSTATE_NO_DATA, NULL);
    1705              20 :                 status = false;
    1706              20 :                 break;
    1707                 :             }
    1708                 : 
    1709            1006 :             if (var != NULL && var->type == ECPGt_descriptor)
    1710               7 :             {
    1711               7 :                 struct descriptor *desc = ecpg_find_desc(stmt->lineno, var->pointer);
    1712                 : 
    1713               7 :                 if (desc == NULL)
    1714 UBC           0 :                     status = false;
    1715                 :                 else
    1716                 :                 {
    1717 GNC           7 :                     PQclear(desc->result);
    1718 CBC           7 :                     desc->result = stmt->results;
    1719               7 :                     clear_result = false;
    1720               7 :                     ecpg_log("ecpg_process_output on line %d: putting result (%d tuples) into descriptor %s\n",
    1721 GIC           7 :                              stmt->lineno, PQntuples(stmt->results), (const char *) var->pointer);
    1722 ECB             :                 }
    1723 GIC           7 :                 var = var->next;
    1724 ECB             :             }
    1725 GIC         999 :             else if (var != NULL && var->type == ECPGt_sqlda)
    1726 ECB             :             {
    1727 CBC          16 :                 if (INFORMIX_MODE(stmt->compat))
    1728               8 :                 {
    1729               8 :                     struct sqlda_compat **_sqlda = (struct sqlda_compat **) var->pointer;
    1730 GIC           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 ECB             :                      */
    1738 GIC          12 :                     while (sqlda)
    1739 ECB             :                     {
    1740 CBC           4 :                         sqlda_new = sqlda->desc_next;
    1741               4 :                         free(sqlda);
    1742 GIC           4 :                         sqlda = sqlda_new;
    1743 ECB             :                     }
    1744 CBC           8 :                     *_sqlda = sqlda = sqlda_new = NULL;
    1745 GIC          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 ECB             :                          */
    1751 GIC           8 :                         sqlda_new = ecpg_build_compat_sqlda(stmt->lineno, stmt->results, i, stmt->compat);
    1752 ECB             : 
    1753 GIC           8 :                         if (!sqlda_new)
    1754                 :                         {
    1755 EUB             :                             /* cleanup all SQLDAs we created up */
    1756 UIC           0 :                             while (sqlda)
    1757 EUB             :                             {
    1758 UBC           0 :                                 sqlda_new = sqlda->desc_next;
    1759               0 :                                 free(sqlda);
    1760 UIC           0 :                                 sqlda = sqlda_new;
    1761 EUB             :                             }
    1762 UIC           0 :                             *_sqlda = NULL;
    1763 EUB             : 
    1764 UBC           0 :                             ecpg_log("ecpg_process_output on line %d: out of memory allocating a new sqlda\n", stmt->lineno);
    1765               0 :                             status = false;
    1766 UIC           0 :                             break;
    1767                 :                         }
    1768                 :                         else
    1769 ECB             :                         {
    1770 GIC           8 :                             ecpg_log("ecpg_process_output on line %d: new sqlda was built\n", stmt->lineno);
    1771 ECB             : 
    1772 GIC           8 :                             *_sqlda = sqlda_new;
    1773 ECB             : 
    1774 CBC           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 GIC           8 :                                      stmt->lineno, PQnfields(stmt->results));
    1777 ECB             : 
    1778 CBC           8 :                             sqlda_new->desc_next = sqlda;
    1779 GIC           8 :                             sqlda = sqlda_new;
    1780                 :                         }
    1781                 :                     }
    1782                 :                 }
    1783                 :                 else
    1784 ECB             :                 {
    1785 CBC           8 :                     struct sqlda_struct **_sqlda = (struct sqlda_struct **) var->pointer;
    1786 GIC           8 :                     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 ECB             :                      */
    1794 GIC          12 :                     while (sqlda)
    1795 ECB             :                     {
    1796 CBC           4 :                         sqlda_new = sqlda->desc_next;
    1797               4 :                         free(sqlda);
    1798 GIC           4 :                         sqlda = sqlda_new;
    1799 ECB             :                     }
    1800 CBC           8 :                     *_sqlda = sqlda = sqlda_new = NULL;
    1801 GIC          20 :                     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 ECB             :                          */
    1807 GIC          12 :                         sqlda_new = ecpg_build_native_sqlda(stmt->lineno, stmt->results, i, stmt->compat);
    1808 ECB             : 
    1809 GIC          12 :                         if (!sqlda_new)
    1810                 :                         {
    1811 EUB             :                             /* cleanup all SQLDAs we created up */
    1812 UIC           0 :                             while (sqlda)
    1813 EUB             :                             {
    1814 UBC           0 :                                 sqlda_new = sqlda->desc_next;
    1815               0 :                                 free(sqlda);
    1816 UIC           0 :                                 sqlda = sqlda_new;
    1817 EUB             :                             }
    1818 UIC           0 :                             *_sqlda = NULL;
    1819 EUB             : 
    1820 UBC           0 :                             ecpg_log("ecpg_process_output on line %d: out of memory allocating a new sqlda\n", stmt->lineno);
    1821               0 :                             status = false;
    1822 UIC           0 :                             break;
    1823                 :                         }
    1824                 :                         else
    1825 ECB             :                         {
    1826 GIC          12 :                             ecpg_log("ecpg_process_output on line %d: new sqlda was built\n", stmt->lineno);
    1827 ECB             : 
    1828 GIC          12 :                             *_sqlda = sqlda_new;
    1829 ECB             : 
    1830 CBC          12 :                             ecpg_set_native_sqlda(stmt->lineno, _sqlda, stmt->results, i, stmt->compat);
    1831              12 :                             ecpg_log("ecpg_process_output on line %d: putting result (1 tuple %d fields) into sqlda descriptor\n",
    1832 GIC          12 :                                      stmt->lineno, PQnfields(stmt->results));
    1833 ECB             : 
    1834 CBC          12 :                             sqlda_new->desc_next = sqlda;
    1835 GIC          12 :                             sqlda = sqlda_new;
    1836                 :                         }
    1837                 :                     }
    1838                 :                 }
    1839 ECB             : 
    1840 GIC          16 :                 var = var->next;
    1841                 :             }
    1842 ECB             :             else
    1843 GIC        2189 :                 for (act_field = 0; act_field < nfields && status; act_field++)
    1844 ECB             :                 {
    1845 GIC        1206 :                     if (var != NULL)
    1846 ECB             :                     {
    1847 CBC        1204 :                         status = ecpg_store_result(stmt->results, act_field, stmt, var);
    1848 GIC        1204 :                         var = var->next;
    1849 ECB             :                     }
    1850 GIC           2 :                     else if (!INFORMIX_MODE(stmt->compat))
    1851 EUB             :                     {
    1852 UBC           0 :                         ecpg_raise(stmt->lineno, ECPG_TOO_FEW_ARGUMENTS, ECPG_SQLSTATE_USING_CLAUSE_DOES_NOT_MATCH_TARGETS, NULL);
    1853 UIC           0 :                         return false;
    1854                 :                     }
    1855                 :                 }
    1856 ECB             : 
    1857 GIC        1006 :             if (status && var != NULL)
    1858 EUB             :             {
    1859 UBC           0 :                 ecpg_raise(stmt->lineno, ECPG_TOO_MANY_ARGUMENTS, ECPG_SQLSTATE_USING_CLAUSE_DOES_NOT_MATCH_TARGETS, NULL);
    1860 UIC           0 :                 status = false;
    1861                 :             }
    1862 ECB             : 
    1863 CBC        1006 :             break;
    1864            1590 :         case PGRES_COMMAND_OK:
    1865            1590 :             status = true;
    1866            1590 :             cmdstat = PQcmdStatus(stmt->results);
    1867            1590 :             sqlca->sqlerrd[1] = PQoidValue(stmt->results);
    1868            1590 :             sqlca->sqlerrd[2] = atol(PQcmdTuples(stmt->results));
    1869            1590 :             ecpg_log("ecpg_process_output on line %d: OK: %s\n", stmt->lineno, cmdstat);
    1870            1590 :             if (stmt->compat != ECPG_COMPAT_INFORMIX_SE &&
    1871            1590 :                 !sqlca->sqlerrd[2] &&
    1872             231 :                 (strncmp(cmdstat, "UPDATE", 6) == 0
    1873             230 :                  || strncmp(cmdstat, "INSERT", 6) == 0
    1874             229 :                  || strncmp(cmdstat, "DELETE", 6) == 0))
    1875               4 :                 ecpg_raise(stmt->lineno, ECPG_NOT_FOUND, ECPG_SQLSTATE_NO_DATA, NULL);
    1876            1590 :             break;
    1877 GIC           1 :         case PGRES_COPY_OUT:
    1878                 :             {
    1879                 :                 char       *buffer;
    1880                 :                 int         res;
    1881 ECB             : 
    1882 CBC           1 :                 ecpg_log("ecpg_process_output on line %d: COPY OUT data transfer in progress\n", stmt->lineno);
    1883               4 :                 while ((res = PQgetCopyData(stmt->connection->connection,
    1884 GIC           4 :                                             &buffer, 0)) > 0)
    1885 ECB             :                 {
    1886 CBC           3 :                     printf("%s", buffer);
    1887 GIC           3 :                     PQfreemem(buffer);
    1888 ECB             :                 }
    1889 GIC           1 :                 if (res == -1)
    1890                 :                 {
    1891 ECB             :                     /* COPY done */
    1892 CBC           1 :                     PQclear(stmt->results);
    1893               1 :                     stmt->results = PQgetResult(stmt->connection->connection);
    1894               1 :                     if (PQresultStatus(stmt->results) == PGRES_COMMAND_OK)
    1895 GIC           1 :                         ecpg_log("ecpg_process_output on line %d: got PGRES_COMMAND_OK after PGRES_COPY_OUT\n", stmt->lineno);
    1896 EUB             :                     else
    1897 UIC           0 :                         ecpg_log("ecpg_process_output on line %d: got error after PGRES_COPY_OUT: %s", stmt->lineno, PQresultErrorMessage(stmt->results));
    1898 ECB             :                 }
    1899 GIC           1 :                 break;
    1900 EUB             :             }
    1901 UIC           0 :         default:
    1902                 : 
    1903                 :             /*
    1904                 :              * execution should never reach this code because it is already
    1905                 :              * handled in ecpg_check_PQresult()
    1906 EUB             :              */
    1907 UIC           0 :             ecpg_log("ecpg_process_output on line %d: unknown execution status type\n",
    1908 EUB             :                      stmt->lineno);
    1909 UBC           0 :             ecpg_raise_backend(stmt->lineno, stmt->results, stmt->connection->connection, stmt->compat);
    1910               0 :             status = false;
    1911 UIC           0 :             break;
    1912                 :     }
    1913 ECB             : 
    1914 GIC        2617 :     if (clear_result)
    1915 ECB             :     {
    1916 CBC        2610 :         PQclear(stmt->results);
    1917 GIC        2610 :         stmt->results = NULL;
    1918                 :     }
    1919                 : 
    1920 ECB             :     /* check for asynchronous returns */
    1921 CBC        2617 :     PQconsumeInput(stmt->connection->connection);
    1922 GIC        2617 :     while ((notify = PQnotifies(stmt->connection->connection)) != NULL)
    1923 EUB             :     {
    1924 UIC           0 :         ecpg_log("ecpg_process_output on line %d: asynchronous notification of \"%s\" from backend PID %d received\n",
    1925 EUB             :                  stmt->lineno, notify->relname, notify->be_pid);
    1926 UBC           0 :         PQfreemem(notify);
    1927 UIC           0 :         PQconsumeInput(stmt->connection->connection);
    1928                 :     }
    1929 ECB             : 
    1930 GIC        2617 :     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 ECB             : bool
    1944 GIC        2632 : 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 ECB             : {
    1949 GIC        2632 :     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 ECB             : 
    1956 GIC        2632 :     *stmt_out = NULL;
    1957 ECB             : 
    1958 GIC        2632 :     if (!query)
    1959 EUB             :     {
    1960 UBC           0 :         ecpg_raise(lineno, ECPG_EMPTY, ECPG_SQLSTATE_ECPG_INTERNAL_ERROR, NULL);
    1961 UIC           0 :         return false;
    1962                 :     }
    1963                 : 
    1964 ECB             : #ifdef ENABLE_THREAD_SAFETY
    1965 GIC        2632 :     ecpg_pthreads_init();
    1966                 : #endif
    1967 ECB             : 
    1968 GIC        2632 :     con = ecpg_get_connection(connection_name);
    1969 ECB             : 
    1970 CBC        2632 :     if (!ecpg_init(con, connection_name, lineno))
    1971 GIC           6 :         return false;
    1972 ECB             : 
    1973 GIC        2626 :     stmt = (struct statement *) ecpg_alloc(sizeof(struct statement), lineno);
    1974 ECB             : 
    1975 GBC        2626 :     if (stmt == NULL)
    1976 UIC           0 :         return false;
    1977                 : 
    1978                 :     /*
    1979                 :      * Make sure we do NOT honor the locale for numeric input/output since the
    1980                 :      * database wants the standard decimal point.  If available, use
    1981                 :      * uselocale() for this because it's thread-safe.  Windows doesn't have
    1982                 :      * that, but it usually does have _configthreadlocale().  In some versions
    1983                 :      * of MinGW, _configthreadlocale() exists but always returns -1 --- so
    1984                 :      * treat that situation as if the function doesn't exist.
    1985                 :      */
    1986                 : #ifdef HAVE_USELOCALE
    1987                 : 
    1988                 :     /*
    1989                 :      * Since ecpg_init() succeeded, we have a connection.  Any successful
    1990                 :      * connection initializes ecpg_clocale.
    1991 ECB             :      */
    1992 CBC        2626 :     Assert(ecpg_clocale);
    1993            2626 :     stmt->oldlocale = uselocale(ecpg_clocale);
    1994 GIC        2626 :     if (stmt->oldlocale == (locale_t) 0)
    1995 EUB             :     {
    1996 UBC           0 :         ecpg_do_epilogue(stmt);
    1997 UIC           0 :         return false;
    1998                 :     }
    1999                 : #else
    2000                 : #ifdef HAVE__CONFIGTHREADLOCALE
    2001                 :     stmt->oldthreadlocale = _configthreadlocale(_ENABLE_PER_THREAD_LOCALE);
    2002                 : #endif
    2003                 :     stmt->oldlocale = ecpg_strdup(setlocale(LC_NUMERIC, NULL), lineno);
    2004                 :     if (stmt->oldlocale == NULL)
    2005                 :     {
    2006                 :         ecpg_do_epilogue(stmt);
    2007                 :         return false;
    2008                 :     }
    2009                 :     setlocale(LC_NUMERIC, "C");
    2010                 : #endif
    2011                 : 
    2012                 :     /*
    2013                 :      * If statement type is ECPGst_prepnormal we are supposed to prepare the
    2014                 :      * statement before executing them
    2015 ECB             :      */
    2016 GIC        2626 :     if (statement_type == ECPGst_prepnormal)
    2017 ECB             :     {
    2018 GIC           8 :         if (!ecpg_auto_prepare(lineno, connection_name, compat, &prepname, query))
    2019 EUB             :         {
    2020 UBC           0 :             ecpg_do_epilogue(stmt);
    2021 UIC           0 :             return false;
    2022                 :         }
    2023                 : 
    2024                 :         /*
    2025                 :          * statement is now prepared, so instead of the query we have to
    2026                 :          * execute the name
    2027 ECB             :          */
    2028 CBC           8 :         stmt->command = prepname;
    2029 GIC           8 :         statement_type = ECPGst_execute;
    2030                 :     }
    2031 ECB             :     else
    2032 GIC        2618 :         stmt->command = ecpg_strdup(query, lineno);
    2033 ECB             : 
    2034 GIC        2626 :     stmt->name = NULL;
    2035 ECB             : 
    2036 GIC        2626 :     if (statement_type == ECPGst_execute)
    2037                 :     {
    2038 ECB             :         /* if we have an EXECUTE command, only the name is send */
    2039 GIC         832 :         char       *command = ecpg_prepared(stmt->command, con);
    2040 ECB             : 
    2041 GIC         832 :         if (command)
    2042 ECB             :         {
    2043 CBC         832 :             stmt->name = stmt->command;
    2044 GIC         832 :             stmt->command = ecpg_strdup(command, lineno);
    2045                 :         }
    2046                 :         else
    2047 EUB             :         {
    2048 UBC           0 :             ecpg_raise(lineno, ECPG_INVALID_STMT, ECPG_SQLSTATE_INVALID_SQL_STATEMENT_NAME, stmt->command);
    2049               0 :             ecpg_do_epilogue(stmt);
    2050 UIC           0 :             return false;
    2051                 :         }
    2052                 :     }
    2053                 :     /* name of PREPARE AS will be set in loop of inlist */
    2054 ECB             : 
    2055 CBC        2626 :     stmt->connection = con;
    2056            2626 :     stmt->lineno = lineno;
    2057            2626 :     stmt->compat = compat;
    2058            2626 :     stmt->force_indicator = force_indicator;
    2059            2626 :     stmt->questionmarks = questionmarks;
    2060 GIC        2626 :     stmt->statement_type = statement_type;
    2061                 : 
    2062                 :     /*------
    2063                 :      * create a list of variables
    2064                 :      *
    2065                 :      * The variables are listed with input variables preceding output
    2066                 :      * variables.  The end of each group is marked by an end marker.
    2067                 :      * Per variable we list:
    2068                 :      *
    2069                 :      * type - as defined in ecpgtype.h
    2070                 :      * value - where to store the data
    2071                 :      * varcharsize - length of string in case we have a stringvariable, else 0
    2072                 :      * arraysize - 0 for pointer (we don't know the size of the array), 1 for
    2073                 :      * simple variable, size for arrays
    2074                 :      * offset - offset between ith and (i+1)th entry in an array, normally
    2075                 :      * that means sizeof(type)
    2076                 :      * ind_type - type of indicator variable
    2077                 :      * ind_pointer - pointer to indicator variable
    2078                 :      * ind_varcharsize - empty
    2079                 :      * ind_arrsize - arraysize of indicator array
    2080                 :      * ind_offset - indicator offset
    2081                 :      *------
    2082                 :      */
    2083 ECB             : 
    2084 GIC        2626 :     is_prepared_name_set = false;
    2085 ECB             : 
    2086 GIC        2626 :     list = &(stmt->inlist);
    2087 ECB             : 
    2088 GIC        2626 :     type = va_arg(args, enum ECPGttype);
    2089 ECB             : 
    2090 GIC        8362 :     while (type != ECPGt_EORT)
    2091 ECB             :     {
    2092 CBC        5736 :         if (type == ECPGt_EOIT)
    2093 GIC        2626 :             list = &(stmt->outlist);
    2094                 :         else
    2095                 :         {
    2096                 :             struct variable *var,
    2097                 :                        *ptr;
    2098 ECB             : 
    2099 GIC        3110 :             if (!(var = (struct variable *) ecpg_alloc(sizeof(struct variable), lineno)))
    2100 EUB             :             {
    2101 UBC           0 :                 ecpg_do_epilogue(stmt);
    2102 UIC           0 :                 return false;
    2103                 :             }
    2104 ECB             : 
    2105 CBC        3110 :             var->type = type;
    2106 GIC        3110 :             var->pointer = va_arg(args, char *);
    2107 ECB             : 
    2108 CBC        3110 :             var->varcharsize = va_arg(args, long);
    2109            3110 :             var->arrsize = va_arg(args, long);
    2110 GIC        3110 :             var->offset = va_arg(args, long);
    2111                 : 
    2112                 :             /*
    2113                 :              * Unknown array size means pointer to an array. Unknown
    2114                 :              * varcharsize usually also means pointer. But if the type is
    2115                 :              * character and the array size is known, it is an array of
    2116                 :              * pointers to char, so use var->pointer as it is.
    2117 ECB             :              */
    2118 CBC        3110 :             if (var->arrsize == 0 ||
    2119            2277 :                 (var->varcharsize == 0 && ((var->type != ECPGt_char && var->type != ECPGt_unsigned_char) || (var->arrsize <= 1))))
    2120 GIC         881 :                 var->value = *((char **) (var->pointer));
    2121 ECB             :             else
    2122 GIC        2229 :                 var->value = var->pointer;
    2123                 : 
    2124                 :             /*
    2125                 :              * negative values are used to indicate an array without given
    2126                 :              * bounds
    2127                 :              */
    2128 ECB             :             /* reset to zero for us */
    2129 CBC        3110 :             if (var->arrsize < 0)
    2130              14 :                 var->arrsize = 0;
    2131 GBC        3110 :             if (var->varcharsize < 0)
    2132 UIC           0 :                 var->varcharsize = 0;
    2133 ECB             : 
    2134 GIC        3110 :             var->next = NULL;
    2135 ECB             : 
    2136 CBC        3110 :             var->ind_type = va_arg(args, enum ECPGttype);
    2137            3110 :             var->ind_pointer = va_arg(args, char *);
    2138            3110 :             var->ind_varcharsize = va_arg(args, long);
    2139            3110 :             var->ind_arrsize = va_arg(args, long);
    2140 GIC        3110 :             var->ind_offset = va_arg(args, long);
    2141 ECB             : 
    2142 CBC        3110 :             if (var->ind_type != ECPGt_NO_INDICATOR
    2143 GBC         112 :                 && (var->ind_arrsize == 0 || var->ind_varcharsize == 0))
    2144 UIC           0 :                 var->ind_value = *((char **) (var->ind_pointer));
    2145 ECB             :             else
    2146 GIC        3110 :                 var->ind_value = var->ind_pointer;
    2147                 : 
    2148                 :             /*
    2149                 :              * negative values are used to indicate an array without given
    2150                 :              * bounds
    2151                 :              */
    2152 ECB             :             /* reset to zero for us */
    2153 CBC        3110 :             if (var->ind_arrsize < 0)
    2154              14 :                 var->ind_arrsize = 0;
    2155 GBC        3110 :             if (var->ind_varcharsize < 0)
    2156 UIC           0 :                 var->ind_varcharsize = 0;
    2157                 : 
    2158 ECB             :             /* if variable is NULL, the statement hasn't been prepared */
    2159 GIC        3110 :             if (var->pointer == NULL)
    2160 EUB             :             {
    2161 UBC           0 :                 ecpg_raise(lineno, ECPG_INVALID_STMT, ECPG_SQLSTATE_INVALID_SQL_STATEMENT_NAME, NULL);
    2162               0 :                 ecpg_free(var);
    2163               0 :                 ecpg_do_epilogue(stmt);
    2164 UIC           0 :                 return false;
    2165                 :             }
    2166 ECB             : 
    2167 GIC        3430 :             for (ptr = *list; ptr && ptr->next; ptr = ptr->next)
    2168                 :                 ;
    2169 ECB             : 
    2170 CBC        3110 :             if (ptr == NULL)
    2171 GIC        2376 :                 *list = var;
    2172 ECB             :             else
    2173 GIC         734 :                 ptr->next = var;
    2174 ECB             : 
    2175 GIC        3110 :             if (!is_prepared_name_set && stmt->statement_type == ECPGst_prepare)
    2176 ECB             :             {
    2177 CBC           5 :                 stmt->name = ecpg_strdup(var->value, lineno);
    2178 GIC           5 :                 is_prepared_name_set = true;
    2179                 :             }
    2180                 :         }
    2181 ECB             : 
    2182 GIC        5736 :         type = va_arg(args, enum ECPGttype);
    2183                 :     }
    2184                 : 
    2185 ECB             :     /* are we connected? */
    2186 GIC        2626 :     if (con == NULL || con->connection == NULL)
    2187 EUB             :     {
    2188 UBC           0 :         ecpg_raise(lineno, ECPG_NOT_CONN, ECPG_SQLSTATE_ECPG_INTERNAL_ERROR, (con) ? con->name : ecpg_gettext("<empty>"));
    2189               0 :         ecpg_do_epilogue(stmt);
    2190 UIC           0 :         return false;
    2191                 :     }
    2192 ECB             : 
    2193 GIC        2626 :     if (!is_prepared_name_set && stmt->statement_type == ECPGst_prepare)
    2194 EUB             :     {
    2195 UBC           0 :         ecpg_raise(lineno, ECPG_TOO_FEW_ARGUMENTS, ECPG_SQLSTATE_ECPG_INTERNAL_ERROR, (con) ? con->name : ecpg_gettext("<empty>"));
    2196               0 :         ecpg_do_epilogue(stmt);
    2197 UIC           0 :         return false;
    2198                 :     }
    2199                 : 
    2200 ECB             :     /* initialize auto_mem struct */
    2201 GIC        2626 :     ecpg_clear_auto_mem();
    2202 ECB             : 
    2203 GIC        2626 :     *stmt_out = stmt;
    2204 ECB             : 
    2205 GIC        2626 :     return true;
    2206                 : }
    2207                 : 
    2208                 : /*
    2209                 :  * ecpg_do_epilogue
    2210                 :  *    Restore the application locale and free the statement structure.
    2211                 :  */
    2212 ECB             : void
    2213 GIC        2632 : ecpg_do_epilogue(struct statement *stmt)
    2214 ECB             : {
    2215 CBC        2632 :     if (stmt == NULL)
    2216 GIC           6 :         return;
    2217                 : 
    2218 ECB             : #ifdef HAVE_USELOCALE
    2219 CBC        2626 :     if (stmt->oldlocale != (locale_t) 0)
    2220 GIC        2626 :         uselocale(stmt->oldlocale);
    2221                 : #else
    2222                 :     if (stmt->oldlocale)
    2223                 :         setlocale(LC_NUMERIC, stmt->oldlocale);
    2224                 : #ifdef HAVE__CONFIGTHREADLOCALE
    2225                 : 
    2226                 :     /*
    2227                 :      * This is a bit trickier than it looks: if we failed partway through
    2228                 :      * statement initialization, oldthreadlocale could still be 0.  But that's
    2229                 :      * okay because a call with 0 is defined to be a no-op.
    2230                 :      */
    2231                 :     if (stmt->oldthreadlocale != -1)
    2232                 :         (void) _configthreadlocale(stmt->oldthreadlocale);
    2233                 : #endif
    2234                 : #endif
    2235 ECB             : 
    2236 GIC        2626 :     free_statement(stmt);
    2237                 : }
    2238                 : 
    2239                 : /*
    2240                 :  * Execute SQL statements in the backend.
    2241                 :  * The input/output parameters (variable argument list) are passed
    2242                 :  * in a va_list, so other functions can use this interface.
    2243                 :  */
    2244 ECB             : bool
    2245 GIC        2632 : 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)
    2246 ECB             : {
    2247 GIC        2632 :     struct statement *stmt = NULL;
    2248 ECB             : 
    2249 GIC        2632 :     if (!ecpg_do_prologue(lineno, compat, force_indicator, connection_name,
    2250                 :                           questionmarks, (enum ECPG_statement_type) st,
    2251 ECB             :                           query, args, &stmt))
    2252 GIC           6 :         goto fail;
    2253 ECB             : 
    2254 GBC        2626 :     if (!ecpg_build_params(stmt))
    2255 UIC           0 :         goto fail;
    2256 ECB             : 
    2257 GBC        2626 :     if (!ecpg_autostart_transaction(stmt))
    2258 UIC           0 :         goto fail;
    2259 ECB             : 
    2260 CBC        2626 :     if (!ecpg_execute(stmt))
    2261 GIC           9 :         goto fail;
    2262 ECB             : 
    2263 CBC        2617 :     if (!ecpg_process_output(stmt, true))
    2264 GIC          23 :         goto fail;
    2265 ECB             : 
    2266 CBC        2594 :     ecpg_do_epilogue(stmt);
    2267 GIC        2594 :     return true;
    2268 ECB             : 
    2269 CBC          38 : fail:
    2270              38 :     ecpg_do_epilogue(stmt);
    2271 GIC          38 :     return false;
    2272                 : }
    2273                 : 
    2274                 : /*
    2275                 :  * Execute SQL statements in the backend.
    2276                 :  * The input/output parameters are passed as variable-length argument list.
    2277                 :  */
    2278 ECB             : bool
    2279 GIC        2632 : ECPGdo(const int lineno, const int compat, const int force_indicator, const char *connection_name, const bool questionmarks, const int st, const char *query,...)
    2280                 : {
    2281                 :     va_list     args;
    2282                 :     bool        ret;
    2283 ECB             : 
    2284 CBC        2632 :     va_start(args, query);
    2285 GIC        2632 :     ret = ecpg_do(lineno, compat, force_indicator, connection_name,
    2286 ECB             :                   questionmarks, st, query, args);
    2287 GIC        2632 :     va_end(args);
    2288 ECB             : 
    2289 GIC        2632 :     return ret;
    2290                 : }
    2291                 : 
    2292                 : /* old descriptor interface */
    2293 EUB             : bool
    2294 UIC           0 : ECPGdo_descriptor(int line, const char *connection,
    2295                 :                   const char *descriptor, const char *query)
    2296 EUB             : {
    2297 UIC           0 :     return ECPGdo(line, ECPG_COMPAT_PGSQL, true, connection, '\0', 0, query, ECPGt_EOIT,
    2298                 :                   ECPGt_descriptor, descriptor, 0L, 0L, 0L,
    2299                 :                   ECPGt_NO_INDICATOR, NULL, 0L, 0L, 0L, ECPGt_EORT);
    2300                 : }
        

Generated by: LCOV version v1.16-55-g56c0a2a