os/persistentdata/persistentstorage/sql/SQLite364/printf.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** The "printf" code that follows dates from the 1980's.  It is in
sl@0
     3
** the public domain.  The original comments are included here for
sl@0
     4
** completeness.  They are very out-of-date but might be useful as
sl@0
     5
** an historical reference.  Most of the "enhancements" have been backed
sl@0
     6
** out so that the functionality is now the same as standard printf().
sl@0
     7
**
sl@0
     8
** $Id: printf.c,v 1.94 2008/08/22 14:08:36 drh Exp $
sl@0
     9
**
sl@0
    10
**************************************************************************
sl@0
    11
**
sl@0
    12
** The following modules is an enhanced replacement for the "printf" subroutines
sl@0
    13
** found in the standard C library.  The following enhancements are
sl@0
    14
** supported:
sl@0
    15
**
sl@0
    16
**      +  Additional functions.  The standard set of "printf" functions
sl@0
    17
**         includes printf, fprintf, sprintf, vprintf, vfprintf, and
sl@0
    18
**         vsprintf.  This module adds the following:
sl@0
    19
**
sl@0
    20
**           *  snprintf -- Works like sprintf, but has an extra argument
sl@0
    21
**                          which is the size of the buffer written to.
sl@0
    22
**
sl@0
    23
**           *  mprintf --  Similar to sprintf.  Writes output to memory
sl@0
    24
**                          obtained from malloc.
sl@0
    25
**
sl@0
    26
**           *  xprintf --  Calls a function to dispose of output.
sl@0
    27
**
sl@0
    28
**           *  nprintf --  No output, but returns the number of characters
sl@0
    29
**                          that would have been output by printf.
sl@0
    30
**
sl@0
    31
**           *  A v- version (ex: vsnprintf) of every function is also
sl@0
    32
**              supplied.
sl@0
    33
**
sl@0
    34
**      +  A few extensions to the formatting notation are supported:
sl@0
    35
**
sl@0
    36
**           *  The "=" flag (similar to "-") causes the output to be
sl@0
    37
**              be centered in the appropriately sized field.
sl@0
    38
**
sl@0
    39
**           *  The %b field outputs an integer in binary notation.
sl@0
    40
**
sl@0
    41
**           *  The %c field now accepts a precision.  The character output
sl@0
    42
**              is repeated by the number of times the precision specifies.
sl@0
    43
**
sl@0
    44
**           *  The %' field works like %c, but takes as its character the
sl@0
    45
**              next character of the format string, instead of the next
sl@0
    46
**              argument.  For example,  printf("%.78'-")  prints 78 minus
sl@0
    47
**              signs, the same as  printf("%.78c",'-').
sl@0
    48
**
sl@0
    49
**      +  When compiled using GCC on a SPARC, this version of printf is
sl@0
    50
**         faster than the library printf for SUN OS 4.1.
sl@0
    51
**
sl@0
    52
**      +  All functions are fully reentrant.
sl@0
    53
**
sl@0
    54
*/
sl@0
    55
#include "sqliteInt.h"
sl@0
    56
sl@0
    57
/*
sl@0
    58
** Conversion types fall into various categories as defined by the
sl@0
    59
** following enumeration.
sl@0
    60
*/
sl@0
    61
#define etRADIX       1 /* Integer types.  %d, %x, %o, and so forth */
sl@0
    62
#define etFLOAT       2 /* Floating point.  %f */
sl@0
    63
#define etEXP         3 /* Exponentional notation. %e and %E */
sl@0
    64
#define etGENERIC     4 /* Floating or exponential, depending on exponent. %g */
sl@0
    65
#define etSIZE        5 /* Return number of characters processed so far. %n */
sl@0
    66
#define etSTRING      6 /* Strings. %s */
sl@0
    67
#define etDYNSTRING   7 /* Dynamically allocated strings. %z */
sl@0
    68
#define etPERCENT     8 /* Percent symbol. %% */
sl@0
    69
#define etCHARX       9 /* Characters. %c */
sl@0
    70
/* The rest are extensions, not normally found in printf() */
sl@0
    71
#define etSQLESCAPE  10 /* Strings with '\'' doubled.  %q */
sl@0
    72
#define etSQLESCAPE2 11 /* Strings with '\'' doubled and enclosed in '',
sl@0
    73
                          NULL pointers replaced by SQL NULL.  %Q */
sl@0
    74
#define etTOKEN      12 /* a pointer to a Token structure */
sl@0
    75
#define etSRCLIST    13 /* a pointer to a SrcList */
sl@0
    76
#define etPOINTER    14 /* The %p conversion */
sl@0
    77
#define etSQLESCAPE3 15 /* %w -> Strings with '\"' doubled */
sl@0
    78
#define etORDINAL    16 /* %r -> 1st, 2nd, 3rd, 4th, etc.  English only */
sl@0
    79
sl@0
    80
sl@0
    81
/*
sl@0
    82
** An "etByte" is an 8-bit unsigned value.
sl@0
    83
*/
sl@0
    84
typedef unsigned char etByte;
sl@0
    85
sl@0
    86
/*
sl@0
    87
** Each builtin conversion character (ex: the 'd' in "%d") is described
sl@0
    88
** by an instance of the following structure
sl@0
    89
*/
sl@0
    90
typedef struct et_info {   /* Information about each format field */
sl@0
    91
  char fmttype;            /* The format field code letter */
sl@0
    92
  etByte base;             /* The base for radix conversion */
sl@0
    93
  etByte flags;            /* One or more of FLAG_ constants below */
sl@0
    94
  etByte type;             /* Conversion paradigm */
sl@0
    95
  etByte charset;          /* Offset into aDigits[] of the digits string */
sl@0
    96
  etByte prefix;           /* Offset into aPrefix[] of the prefix string */
sl@0
    97
} et_info;
sl@0
    98
sl@0
    99
/*
sl@0
   100
** Allowed values for et_info.flags
sl@0
   101
*/
sl@0
   102
#define FLAG_SIGNED  1     /* True if the value to convert is signed */
sl@0
   103
#define FLAG_INTERN  2     /* True if for internal use only */
sl@0
   104
#define FLAG_STRING  4     /* Allow infinity precision */
sl@0
   105
sl@0
   106
sl@0
   107
/*
sl@0
   108
** The following table is searched linearly, so it is good to put the
sl@0
   109
** most frequently used conversion types first.
sl@0
   110
*/
sl@0
   111
static const char aDigits[] = "0123456789ABCDEF0123456789abcdef";
sl@0
   112
static const char aPrefix[] = "-x0\000X0";
sl@0
   113
static const et_info fmtinfo[] = {
sl@0
   114
  {  'd', 10, 1, etRADIX,      0,  0 },
sl@0
   115
  {  's',  0, 4, etSTRING,     0,  0 },
sl@0
   116
  {  'g',  0, 1, etGENERIC,    30, 0 },
sl@0
   117
  {  'z',  0, 4, etDYNSTRING,  0,  0 },
sl@0
   118
  {  'q',  0, 4, etSQLESCAPE,  0,  0 },
sl@0
   119
  {  'Q',  0, 4, etSQLESCAPE2, 0,  0 },
sl@0
   120
  {  'w',  0, 4, etSQLESCAPE3, 0,  0 },
sl@0
   121
  {  'c',  0, 0, etCHARX,      0,  0 },
sl@0
   122
  {  'o',  8, 0, etRADIX,      0,  2 },
sl@0
   123
  {  'u', 10, 0, etRADIX,      0,  0 },
sl@0
   124
  {  'x', 16, 0, etRADIX,      16, 1 },
sl@0
   125
  {  'X', 16, 0, etRADIX,      0,  4 },
sl@0
   126
#ifndef SQLITE_OMIT_FLOATING_POINT
sl@0
   127
  {  'f',  0, 1, etFLOAT,      0,  0 },
sl@0
   128
  {  'e',  0, 1, etEXP,        30, 0 },
sl@0
   129
  {  'E',  0, 1, etEXP,        14, 0 },
sl@0
   130
  {  'G',  0, 1, etGENERIC,    14, 0 },
sl@0
   131
#endif
sl@0
   132
  {  'i', 10, 1, etRADIX,      0,  0 },
sl@0
   133
  {  'n',  0, 0, etSIZE,       0,  0 },
sl@0
   134
  {  '%',  0, 0, etPERCENT,    0,  0 },
sl@0
   135
  {  'p', 16, 0, etPOINTER,    0,  1 },
sl@0
   136
  {  'T',  0, 2, etTOKEN,      0,  0 },
sl@0
   137
  {  'S',  0, 2, etSRCLIST,    0,  0 },
sl@0
   138
  {  'r', 10, 3, etORDINAL,    0,  0 },
sl@0
   139
};
sl@0
   140
#define etNINFO  (sizeof(fmtinfo)/sizeof(fmtinfo[0]))
sl@0
   141
sl@0
   142
/*
sl@0
   143
** If SQLITE_OMIT_FLOATING_POINT is defined, then none of the floating point
sl@0
   144
** conversions will work.
sl@0
   145
*/
sl@0
   146
#ifndef SQLITE_OMIT_FLOATING_POINT
sl@0
   147
/*
sl@0
   148
** "*val" is a double such that 0.1 <= *val < 10.0
sl@0
   149
** Return the ascii code for the leading digit of *val, then
sl@0
   150
** multiply "*val" by 10.0 to renormalize.
sl@0
   151
**
sl@0
   152
** Example:
sl@0
   153
**     input:     *val = 3.14159
sl@0
   154
**     output:    *val = 1.4159    function return = '3'
sl@0
   155
**
sl@0
   156
** The counter *cnt is incremented each time.  After counter exceeds
sl@0
   157
** 16 (the number of significant digits in a 64-bit float) '0' is
sl@0
   158
** always returned.
sl@0
   159
*/
sl@0
   160
static int et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){
sl@0
   161
  int digit;
sl@0
   162
  LONGDOUBLE_TYPE d;
sl@0
   163
  if( (*cnt)++ >= 16 ) return '0';
sl@0
   164
  digit = (int)*val;
sl@0
   165
  d = digit;
sl@0
   166
  digit += '0';
sl@0
   167
  *val = (*val - d)*10.0;
sl@0
   168
  return digit;
sl@0
   169
}
sl@0
   170
#endif /* SQLITE_OMIT_FLOATING_POINT */
sl@0
   171
sl@0
   172
/*
sl@0
   173
** Append N space characters to the given string buffer.
sl@0
   174
*/
sl@0
   175
static void appendSpace(StrAccum *pAccum, int N){
sl@0
   176
  static const char zSpaces[] = "                             ";
sl@0
   177
  while( N>=sizeof(zSpaces)-1 ){
sl@0
   178
    sqlite3StrAccumAppend(pAccum, zSpaces, sizeof(zSpaces)-1);
sl@0
   179
    N -= sizeof(zSpaces)-1;
sl@0
   180
  }
sl@0
   181
  if( N>0 ){
sl@0
   182
    sqlite3StrAccumAppend(pAccum, zSpaces, N);
sl@0
   183
  }
sl@0
   184
}
sl@0
   185
sl@0
   186
/*
sl@0
   187
** On machines with a small stack size, you can redefine the
sl@0
   188
** SQLITE_PRINT_BUF_SIZE to be less than 350.  But beware - for
sl@0
   189
** smaller values some %f conversions may go into an infinite loop.
sl@0
   190
*/
sl@0
   191
#ifndef SQLITE_PRINT_BUF_SIZE
sl@0
   192
# define SQLITE_PRINT_BUF_SIZE 350
sl@0
   193
#endif
sl@0
   194
#define etBUFSIZE SQLITE_PRINT_BUF_SIZE  /* Size of the output buffer */
sl@0
   195
sl@0
   196
/*
sl@0
   197
** The root program.  All variations call this core.
sl@0
   198
**
sl@0
   199
** INPUTS:
sl@0
   200
**   func   This is a pointer to a function taking three arguments
sl@0
   201
**            1. A pointer to anything.  Same as the "arg" parameter.
sl@0
   202
**            2. A pointer to the list of characters to be output
sl@0
   203
**               (Note, this list is NOT null terminated.)
sl@0
   204
**            3. An integer number of characters to be output.
sl@0
   205
**               (Note: This number might be zero.)
sl@0
   206
**
sl@0
   207
**   arg    This is the pointer to anything which will be passed as the
sl@0
   208
**          first argument to "func".  Use it for whatever you like.
sl@0
   209
**
sl@0
   210
**   fmt    This is the format string, as in the usual print.
sl@0
   211
**
sl@0
   212
**   ap     This is a pointer to a list of arguments.  Same as in
sl@0
   213
**          vfprint.
sl@0
   214
**
sl@0
   215
** OUTPUTS:
sl@0
   216
**          The return value is the total number of characters sent to
sl@0
   217
**          the function "func".  Returns -1 on a error.
sl@0
   218
**
sl@0
   219
** Note that the order in which automatic variables are declared below
sl@0
   220
** seems to make a big difference in determining how fast this beast
sl@0
   221
** will run.
sl@0
   222
*/
sl@0
   223
void sqlite3VXPrintf(
sl@0
   224
  StrAccum *pAccum,                  /* Accumulate results here */
sl@0
   225
  int useExtended,                   /* Allow extended %-conversions */
sl@0
   226
  const char *fmt,                   /* Format string */
sl@0
   227
  va_list ap                         /* arguments */
sl@0
   228
){
sl@0
   229
  int c;                     /* Next character in the format string */
sl@0
   230
  char *bufpt;               /* Pointer to the conversion buffer */
sl@0
   231
  int precision;             /* Precision of the current field */
sl@0
   232
  int length;                /* Length of the field */
sl@0
   233
  int idx;                   /* A general purpose loop counter */
sl@0
   234
  int width;                 /* Width of the current field */
sl@0
   235
  etByte flag_leftjustify;   /* True if "-" flag is present */
sl@0
   236
  etByte flag_plussign;      /* True if "+" flag is present */
sl@0
   237
  etByte flag_blanksign;     /* True if " " flag is present */
sl@0
   238
  etByte flag_alternateform; /* True if "#" flag is present */
sl@0
   239
  etByte flag_altform2;      /* True if "!" flag is present */
sl@0
   240
  etByte flag_zeropad;       /* True if field width constant starts with zero */
sl@0
   241
  etByte flag_long;          /* True if "l" flag is present */
sl@0
   242
  etByte flag_longlong;      /* True if the "ll" flag is present */
sl@0
   243
  etByte done;               /* Loop termination flag */
sl@0
   244
  sqlite_uint64 longvalue;   /* Value for integer types */
sl@0
   245
  LONGDOUBLE_TYPE realvalue; /* Value for real types */
sl@0
   246
  const et_info *infop;      /* Pointer to the appropriate info structure */
sl@0
   247
  char buf[etBUFSIZE];       /* Conversion buffer */
sl@0
   248
  char prefix;               /* Prefix character.  "+" or "-" or " " or '\0'. */
sl@0
   249
  etByte xtype;              /* Conversion paradigm */
sl@0
   250
  char *zExtra;              /* Extra memory used for etTCLESCAPE conversions */
sl@0
   251
#ifndef SQLITE_OMIT_FLOATING_POINT
sl@0
   252
  int  exp, e2;              /* exponent of real numbers */
sl@0
   253
  double rounder;            /* Used for rounding floating point values */
sl@0
   254
  etByte flag_dp;            /* True if decimal point should be shown */
sl@0
   255
  etByte flag_rtz;           /* True if trailing zeros should be removed */
sl@0
   256
  etByte flag_exp;           /* True to force display of the exponent */
sl@0
   257
  int nsd;                   /* Number of significant digits returned */
sl@0
   258
#endif
sl@0
   259
sl@0
   260
  length = 0;
sl@0
   261
  bufpt = 0;
sl@0
   262
  for(; (c=(*fmt))!=0; ++fmt){
sl@0
   263
    if( c!='%' ){
sl@0
   264
      int amt;
sl@0
   265
      bufpt = (char *)fmt;
sl@0
   266
      amt = 1;
sl@0
   267
      while( (c=(*++fmt))!='%' && c!=0 ) amt++;
sl@0
   268
      sqlite3StrAccumAppend(pAccum, bufpt, amt);
sl@0
   269
      if( c==0 ) break;
sl@0
   270
    }
sl@0
   271
    if( (c=(*++fmt))==0 ){
sl@0
   272
      sqlite3StrAccumAppend(pAccum, "%", 1);
sl@0
   273
      break;
sl@0
   274
    }
sl@0
   275
    /* Find out what flags are present */
sl@0
   276
    flag_leftjustify = flag_plussign = flag_blanksign = 
sl@0
   277
     flag_alternateform = flag_altform2 = flag_zeropad = 0;
sl@0
   278
    done = 0;
sl@0
   279
    do{
sl@0
   280
      switch( c ){
sl@0
   281
        case '-':   flag_leftjustify = 1;     break;
sl@0
   282
        case '+':   flag_plussign = 1;        break;
sl@0
   283
        case ' ':   flag_blanksign = 1;       break;
sl@0
   284
        case '#':   flag_alternateform = 1;   break;
sl@0
   285
        case '!':   flag_altform2 = 1;        break;
sl@0
   286
        case '0':   flag_zeropad = 1;         break;
sl@0
   287
        default:    done = 1;                 break;
sl@0
   288
      }
sl@0
   289
    }while( !done && (c=(*++fmt))!=0 );
sl@0
   290
    /* Get the field width */
sl@0
   291
    width = 0;
sl@0
   292
    if( c=='*' ){
sl@0
   293
      width = va_arg(ap,int);
sl@0
   294
      if( width<0 ){
sl@0
   295
        flag_leftjustify = 1;
sl@0
   296
        width = -width;
sl@0
   297
      }
sl@0
   298
      c = *++fmt;
sl@0
   299
    }else{
sl@0
   300
      while( c>='0' && c<='9' ){
sl@0
   301
        width = width*10 + c - '0';
sl@0
   302
        c = *++fmt;
sl@0
   303
      }
sl@0
   304
    }
sl@0
   305
    if( width > etBUFSIZE-10 ){
sl@0
   306
      width = etBUFSIZE-10;
sl@0
   307
    }
sl@0
   308
    /* Get the precision */
sl@0
   309
    if( c=='.' ){
sl@0
   310
      precision = 0;
sl@0
   311
      c = *++fmt;
sl@0
   312
      if( c=='*' ){
sl@0
   313
        precision = va_arg(ap,int);
sl@0
   314
        if( precision<0 ) precision = -precision;
sl@0
   315
        c = *++fmt;
sl@0
   316
      }else{
sl@0
   317
        while( c>='0' && c<='9' ){
sl@0
   318
          precision = precision*10 + c - '0';
sl@0
   319
          c = *++fmt;
sl@0
   320
        }
sl@0
   321
      }
sl@0
   322
    }else{
sl@0
   323
      precision = -1;
sl@0
   324
    }
sl@0
   325
    /* Get the conversion type modifier */
sl@0
   326
    if( c=='l' ){
sl@0
   327
      flag_long = 1;
sl@0
   328
      c = *++fmt;
sl@0
   329
      if( c=='l' ){
sl@0
   330
        flag_longlong = 1;
sl@0
   331
        c = *++fmt;
sl@0
   332
      }else{
sl@0
   333
        flag_longlong = 0;
sl@0
   334
      }
sl@0
   335
    }else{
sl@0
   336
      flag_long = flag_longlong = 0;
sl@0
   337
    }
sl@0
   338
    /* Fetch the info entry for the field */
sl@0
   339
    infop = 0;
sl@0
   340
    for(idx=0; idx<etNINFO; idx++){
sl@0
   341
      if( c==fmtinfo[idx].fmttype ){
sl@0
   342
        infop = &fmtinfo[idx];
sl@0
   343
        if( useExtended || (infop->flags & FLAG_INTERN)==0 ){
sl@0
   344
          xtype = infop->type;
sl@0
   345
        }else{
sl@0
   346
          return;
sl@0
   347
        }
sl@0
   348
        break;
sl@0
   349
      }
sl@0
   350
    }
sl@0
   351
    zExtra = 0;
sl@0
   352
    if( infop==0 ){
sl@0
   353
      return;
sl@0
   354
    }
sl@0
   355
sl@0
   356
sl@0
   357
    /* Limit the precision to prevent overflowing buf[] during conversion */
sl@0
   358
    if( precision>etBUFSIZE-40 && (infop->flags & FLAG_STRING)==0 ){
sl@0
   359
      precision = etBUFSIZE-40;
sl@0
   360
    }
sl@0
   361
sl@0
   362
    /*
sl@0
   363
    ** At this point, variables are initialized as follows:
sl@0
   364
    **
sl@0
   365
    **   flag_alternateform          TRUE if a '#' is present.
sl@0
   366
    **   flag_altform2               TRUE if a '!' is present.
sl@0
   367
    **   flag_plussign               TRUE if a '+' is present.
sl@0
   368
    **   flag_leftjustify            TRUE if a '-' is present or if the
sl@0
   369
    **                               field width was negative.
sl@0
   370
    **   flag_zeropad                TRUE if the width began with 0.
sl@0
   371
    **   flag_long                   TRUE if the letter 'l' (ell) prefixed
sl@0
   372
    **                               the conversion character.
sl@0
   373
    **   flag_longlong               TRUE if the letter 'll' (ell ell) prefixed
sl@0
   374
    **                               the conversion character.
sl@0
   375
    **   flag_blanksign              TRUE if a ' ' is present.
sl@0
   376
    **   width                       The specified field width.  This is
sl@0
   377
    **                               always non-negative.  Zero is the default.
sl@0
   378
    **   precision                   The specified precision.  The default
sl@0
   379
    **                               is -1.
sl@0
   380
    **   xtype                       The class of the conversion.
sl@0
   381
    **   infop                       Pointer to the appropriate info struct.
sl@0
   382
    */
sl@0
   383
    switch( xtype ){
sl@0
   384
      case etPOINTER:
sl@0
   385
        flag_longlong = sizeof(char*)==sizeof(i64);
sl@0
   386
        flag_long = sizeof(char*)==sizeof(long int);
sl@0
   387
        /* Fall through into the next case */
sl@0
   388
      case etORDINAL:
sl@0
   389
      case etRADIX:
sl@0
   390
        if( infop->flags & FLAG_SIGNED ){
sl@0
   391
          i64 v;
sl@0
   392
          if( flag_longlong )   v = va_arg(ap,i64);
sl@0
   393
          else if( flag_long )  v = va_arg(ap,long int);
sl@0
   394
          else                  v = va_arg(ap,int);
sl@0
   395
          if( v<0 ){
sl@0
   396
            longvalue = -v;
sl@0
   397
            prefix = '-';
sl@0
   398
          }else{
sl@0
   399
            longvalue = v;
sl@0
   400
            if( flag_plussign )        prefix = '+';
sl@0
   401
            else if( flag_blanksign )  prefix = ' ';
sl@0
   402
            else                       prefix = 0;
sl@0
   403
          }
sl@0
   404
        }else{
sl@0
   405
          if( flag_longlong )   longvalue = va_arg(ap,u64);
sl@0
   406
          else if( flag_long )  longvalue = va_arg(ap,unsigned long int);
sl@0
   407
          else                  longvalue = va_arg(ap,unsigned int);
sl@0
   408
          prefix = 0;
sl@0
   409
        }
sl@0
   410
        if( longvalue==0 ) flag_alternateform = 0;
sl@0
   411
        if( flag_zeropad && precision<width-(prefix!=0) ){
sl@0
   412
          precision = width-(prefix!=0);
sl@0
   413
        }
sl@0
   414
        bufpt = &buf[etBUFSIZE-1];
sl@0
   415
        if( xtype==etORDINAL ){
sl@0
   416
          static const char zOrd[] = "thstndrd";
sl@0
   417
          int x = longvalue % 10;
sl@0
   418
          if( x>=4 || (longvalue/10)%10==1 ){
sl@0
   419
            x = 0;
sl@0
   420
          }
sl@0
   421
          buf[etBUFSIZE-3] = zOrd[x*2];
sl@0
   422
          buf[etBUFSIZE-2] = zOrd[x*2+1];
sl@0
   423
          bufpt -= 2;
sl@0
   424
        }
sl@0
   425
        {
sl@0
   426
          register const char *cset;      /* Use registers for speed */
sl@0
   427
          register int base;
sl@0
   428
          cset = &aDigits[infop->charset];
sl@0
   429
          base = infop->base;
sl@0
   430
          do{                                           /* Convert to ascii */
sl@0
   431
            *(--bufpt) = cset[longvalue%base];
sl@0
   432
            longvalue = longvalue/base;
sl@0
   433
          }while( longvalue>0 );
sl@0
   434
        }
sl@0
   435
        length = &buf[etBUFSIZE-1]-bufpt;
sl@0
   436
        for(idx=precision-length; idx>0; idx--){
sl@0
   437
          *(--bufpt) = '0';                             /* Zero pad */
sl@0
   438
        }
sl@0
   439
        if( prefix ) *(--bufpt) = prefix;               /* Add sign */
sl@0
   440
        if( flag_alternateform && infop->prefix ){      /* Add "0" or "0x" */
sl@0
   441
          const char *pre;
sl@0
   442
          char x;
sl@0
   443
          pre = &aPrefix[infop->prefix];
sl@0
   444
          for(; (x=(*pre))!=0; pre++) *(--bufpt) = x;
sl@0
   445
        }
sl@0
   446
        length = &buf[etBUFSIZE-1]-bufpt;
sl@0
   447
        break;
sl@0
   448
      case etFLOAT:
sl@0
   449
      case etEXP:
sl@0
   450
      case etGENERIC:
sl@0
   451
        realvalue = va_arg(ap,double);
sl@0
   452
#ifndef SQLITE_OMIT_FLOATING_POINT
sl@0
   453
        if( precision<0 ) precision = 6;         /* Set default precision */
sl@0
   454
        if( precision>etBUFSIZE/2-10 ) precision = etBUFSIZE/2-10;
sl@0
   455
        if( realvalue<0.0 ){
sl@0
   456
          realvalue = -realvalue;
sl@0
   457
          prefix = '-';
sl@0
   458
        }else{
sl@0
   459
          if( flag_plussign )          prefix = '+';
sl@0
   460
          else if( flag_blanksign )    prefix = ' ';
sl@0
   461
          else                         prefix = 0;
sl@0
   462
        }
sl@0
   463
        if( xtype==etGENERIC && precision>0 ) precision--;
sl@0
   464
#if 0
sl@0
   465
        /* Rounding works like BSD when the constant 0.4999 is used.  Wierd! */
sl@0
   466
        for(idx=precision, rounder=0.4999; idx>0; idx--, rounder*=0.1);
sl@0
   467
#else
sl@0
   468
        /* It makes more sense to use 0.5 */
sl@0
   469
        for(idx=precision, rounder=0.5; idx>0; idx--, rounder*=0.1){}
sl@0
   470
#endif
sl@0
   471
        if( xtype==etFLOAT ) realvalue += rounder;
sl@0
   472
        /* Normalize realvalue to within 10.0 > realvalue >= 1.0 */
sl@0
   473
        exp = 0;
sl@0
   474
        if( sqlite3IsNaN(realvalue) ){
sl@0
   475
          bufpt = "NaN";
sl@0
   476
          length = 3;
sl@0
   477
          break;
sl@0
   478
        }
sl@0
   479
        if( realvalue>0.0 ){
sl@0
   480
          while( realvalue>=1e32 && exp<=350 ){ realvalue *= 1e-32; exp+=32; }
sl@0
   481
          while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; }
sl@0
   482
          while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
sl@0
   483
          while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; }
sl@0
   484
          while( realvalue<1.0 ){ realvalue *= 10.0; exp--; }
sl@0
   485
          if( exp>350 ){
sl@0
   486
            if( prefix=='-' ){
sl@0
   487
              bufpt = "-Inf";
sl@0
   488
            }else if( prefix=='+' ){
sl@0
   489
              bufpt = "+Inf";
sl@0
   490
            }else{
sl@0
   491
              bufpt = "Inf";
sl@0
   492
            }
sl@0
   493
            length = strlen(bufpt);
sl@0
   494
            break;
sl@0
   495
          }
sl@0
   496
        }
sl@0
   497
        bufpt = buf;
sl@0
   498
        /*
sl@0
   499
        ** If the field type is etGENERIC, then convert to either etEXP
sl@0
   500
        ** or etFLOAT, as appropriate.
sl@0
   501
        */
sl@0
   502
        flag_exp = xtype==etEXP;
sl@0
   503
        if( xtype!=etFLOAT ){
sl@0
   504
          realvalue += rounder;
sl@0
   505
          if( realvalue>=10.0 ){ realvalue *= 0.1; exp++; }
sl@0
   506
        }
sl@0
   507
        if( xtype==etGENERIC ){
sl@0
   508
          flag_rtz = !flag_alternateform;
sl@0
   509
          if( exp<-4 || exp>precision ){
sl@0
   510
            xtype = etEXP;
sl@0
   511
          }else{
sl@0
   512
            precision = precision - exp;
sl@0
   513
            xtype = etFLOAT;
sl@0
   514
          }
sl@0
   515
        }else{
sl@0
   516
          flag_rtz = 0;
sl@0
   517
        }
sl@0
   518
        if( xtype==etEXP ){
sl@0
   519
          e2 = 0;
sl@0
   520
        }else{
sl@0
   521
          e2 = exp;
sl@0
   522
        }
sl@0
   523
        nsd = 0;
sl@0
   524
        flag_dp = (precision>0) | flag_alternateform | flag_altform2;
sl@0
   525
        /* The sign in front of the number */
sl@0
   526
        if( prefix ){
sl@0
   527
          *(bufpt++) = prefix;
sl@0
   528
        }
sl@0
   529
        /* Digits prior to the decimal point */
sl@0
   530
        if( e2<0 ){
sl@0
   531
          *(bufpt++) = '0';
sl@0
   532
        }else{
sl@0
   533
          for(; e2>=0; e2--){
sl@0
   534
            *(bufpt++) = et_getdigit(&realvalue,&nsd);
sl@0
   535
          }
sl@0
   536
        }
sl@0
   537
        /* The decimal point */
sl@0
   538
        if( flag_dp ){
sl@0
   539
          *(bufpt++) = '.';
sl@0
   540
        }
sl@0
   541
        /* "0" digits after the decimal point but before the first
sl@0
   542
        ** significant digit of the number */
sl@0
   543
        for(e2++; e2<0; precision--, e2++){
sl@0
   544
          assert( precision>0 );
sl@0
   545
          *(bufpt++) = '0';
sl@0
   546
        }
sl@0
   547
        /* Significant digits after the decimal point */
sl@0
   548
        while( (precision--)>0 ){
sl@0
   549
          *(bufpt++) = et_getdigit(&realvalue,&nsd);
sl@0
   550
        }
sl@0
   551
        /* Remove trailing zeros and the "." if no digits follow the "." */
sl@0
   552
        if( flag_rtz && flag_dp ){
sl@0
   553
          while( bufpt[-1]=='0' ) *(--bufpt) = 0;
sl@0
   554
          assert( bufpt>buf );
sl@0
   555
          if( bufpt[-1]=='.' ){
sl@0
   556
            if( flag_altform2 ){
sl@0
   557
              *(bufpt++) = '0';
sl@0
   558
            }else{
sl@0
   559
              *(--bufpt) = 0;
sl@0
   560
            }
sl@0
   561
          }
sl@0
   562
        }
sl@0
   563
        /* Add the "eNNN" suffix */
sl@0
   564
        if( flag_exp || xtype==etEXP ){
sl@0
   565
          *(bufpt++) = aDigits[infop->charset];
sl@0
   566
          if( exp<0 ){
sl@0
   567
            *(bufpt++) = '-'; exp = -exp;
sl@0
   568
          }else{
sl@0
   569
            *(bufpt++) = '+';
sl@0
   570
          }
sl@0
   571
          if( exp>=100 ){
sl@0
   572
            *(bufpt++) = (exp/100)+'0';                /* 100's digit */
sl@0
   573
            exp %= 100;
sl@0
   574
          }
sl@0
   575
          *(bufpt++) = exp/10+'0';                     /* 10's digit */
sl@0
   576
          *(bufpt++) = exp%10+'0';                     /* 1's digit */
sl@0
   577
        }
sl@0
   578
        *bufpt = 0;
sl@0
   579
sl@0
   580
        /* The converted number is in buf[] and zero terminated. Output it.
sl@0
   581
        ** Note that the number is in the usual order, not reversed as with
sl@0
   582
        ** integer conversions. */
sl@0
   583
        length = bufpt-buf;
sl@0
   584
        bufpt = buf;
sl@0
   585
sl@0
   586
        /* Special case:  Add leading zeros if the flag_zeropad flag is
sl@0
   587
        ** set and we are not left justified */
sl@0
   588
        if( flag_zeropad && !flag_leftjustify && length < width){
sl@0
   589
          int i;
sl@0
   590
          int nPad = width - length;
sl@0
   591
          for(i=width; i>=nPad; i--){
sl@0
   592
            bufpt[i] = bufpt[i-nPad];
sl@0
   593
          }
sl@0
   594
          i = prefix!=0;
sl@0
   595
          while( nPad-- ) bufpt[i++] = '0';
sl@0
   596
          length = width;
sl@0
   597
        }
sl@0
   598
#endif
sl@0
   599
        break;
sl@0
   600
      case etSIZE:
sl@0
   601
        *(va_arg(ap,int*)) = pAccum->nChar;
sl@0
   602
        length = width = 0;
sl@0
   603
        break;
sl@0
   604
      case etPERCENT:
sl@0
   605
        buf[0] = '%';
sl@0
   606
        bufpt = buf;
sl@0
   607
        length = 1;
sl@0
   608
        break;
sl@0
   609
      case etCHARX:
sl@0
   610
        c = buf[0] = va_arg(ap,int);
sl@0
   611
        if( precision>=0 ){
sl@0
   612
          for(idx=1; idx<precision; idx++) buf[idx] = c;
sl@0
   613
          length = precision;
sl@0
   614
        }else{
sl@0
   615
          length =1;
sl@0
   616
        }
sl@0
   617
        bufpt = buf;
sl@0
   618
        break;
sl@0
   619
      case etSTRING:
sl@0
   620
      case etDYNSTRING:
sl@0
   621
        bufpt = va_arg(ap,char*);
sl@0
   622
        if( bufpt==0 ){
sl@0
   623
          bufpt = "";
sl@0
   624
        }else if( xtype==etDYNSTRING ){
sl@0
   625
          zExtra = bufpt;
sl@0
   626
        }
sl@0
   627
        if( precision>=0 ){
sl@0
   628
          for(length=0; length<precision && bufpt[length]; length++){}
sl@0
   629
        }else{
sl@0
   630
          length = strlen(bufpt);
sl@0
   631
        }
sl@0
   632
        break;
sl@0
   633
      case etSQLESCAPE:
sl@0
   634
      case etSQLESCAPE2:
sl@0
   635
      case etSQLESCAPE3: {
sl@0
   636
        int i, j, n, ch, isnull;
sl@0
   637
        int needQuote;
sl@0
   638
        char q = ((xtype==etSQLESCAPE3)?'"':'\'');   /* Quote character */
sl@0
   639
        char *escarg = va_arg(ap,char*);
sl@0
   640
        isnull = escarg==0;
sl@0
   641
        if( isnull ) escarg = (xtype==etSQLESCAPE2 ? "NULL" : "(NULL)");
sl@0
   642
        for(i=n=0; (ch=escarg[i])!=0; i++){
sl@0
   643
          if( ch==q )  n++;
sl@0
   644
        }
sl@0
   645
        needQuote = !isnull && xtype==etSQLESCAPE2;
sl@0
   646
        n += i + 1 + needQuote*2;
sl@0
   647
        if( n>etBUFSIZE ){
sl@0
   648
          bufpt = zExtra = sqlite3Malloc( n );
sl@0
   649
          if( bufpt==0 ) return;
sl@0
   650
        }else{
sl@0
   651
          bufpt = buf;
sl@0
   652
        }
sl@0
   653
        j = 0;
sl@0
   654
        if( needQuote ) bufpt[j++] = q;
sl@0
   655
        for(i=0; (ch=escarg[i])!=0; i++){
sl@0
   656
          bufpt[j++] = ch;
sl@0
   657
          if( ch==q ) bufpt[j++] = ch;
sl@0
   658
        }
sl@0
   659
        if( needQuote ) bufpt[j++] = q;
sl@0
   660
        bufpt[j] = 0;
sl@0
   661
        length = j;
sl@0
   662
        /* The precision is ignored on %q and %Q */
sl@0
   663
        /* if( precision>=0 && precision<length ) length = precision; */
sl@0
   664
        break;
sl@0
   665
      }
sl@0
   666
      case etTOKEN: {
sl@0
   667
        Token *pToken = va_arg(ap, Token*);
sl@0
   668
        if( pToken ){
sl@0
   669
          sqlite3StrAccumAppend(pAccum, (const char*)pToken->z, pToken->n);
sl@0
   670
        }
sl@0
   671
        length = width = 0;
sl@0
   672
        break;
sl@0
   673
      }
sl@0
   674
      case etSRCLIST: {
sl@0
   675
        SrcList *pSrc = va_arg(ap, SrcList*);
sl@0
   676
        int k = va_arg(ap, int);
sl@0
   677
        struct SrcList_item *pItem = &pSrc->a[k];
sl@0
   678
        assert( k>=0 && k<pSrc->nSrc );
sl@0
   679
        if( pItem->zDatabase ){
sl@0
   680
          sqlite3StrAccumAppend(pAccum, pItem->zDatabase, -1);
sl@0
   681
          sqlite3StrAccumAppend(pAccum, ".", 1);
sl@0
   682
        }
sl@0
   683
        sqlite3StrAccumAppend(pAccum, pItem->zName, -1);
sl@0
   684
        length = width = 0;
sl@0
   685
        break;
sl@0
   686
      }
sl@0
   687
    }/* End switch over the format type */
sl@0
   688
    /*
sl@0
   689
    ** The text of the conversion is pointed to by "bufpt" and is
sl@0
   690
    ** "length" characters long.  The field width is "width".  Do
sl@0
   691
    ** the output.
sl@0
   692
    */
sl@0
   693
    if( !flag_leftjustify ){
sl@0
   694
      register int nspace;
sl@0
   695
      nspace = width-length;
sl@0
   696
      if( nspace>0 ){
sl@0
   697
        appendSpace(pAccum, nspace);
sl@0
   698
      }
sl@0
   699
    }
sl@0
   700
    if( length>0 ){
sl@0
   701
      sqlite3StrAccumAppend(pAccum, bufpt, length);
sl@0
   702
    }
sl@0
   703
    if( flag_leftjustify ){
sl@0
   704
      register int nspace;
sl@0
   705
      nspace = width-length;
sl@0
   706
      if( nspace>0 ){
sl@0
   707
        appendSpace(pAccum, nspace);
sl@0
   708
      }
sl@0
   709
    }
sl@0
   710
    if( zExtra ){
sl@0
   711
      sqlite3_free(zExtra);
sl@0
   712
    }
sl@0
   713
  }/* End for loop over the format string */
sl@0
   714
} /* End of function */
sl@0
   715
sl@0
   716
/*
sl@0
   717
** Append N bytes of text from z to the StrAccum object.
sl@0
   718
*/
sl@0
   719
void sqlite3StrAccumAppend(StrAccum *p, const char *z, int N){
sl@0
   720
  if( p->tooBig | p->mallocFailed ){
sl@0
   721
    return;
sl@0
   722
  }
sl@0
   723
  if( N<0 ){
sl@0
   724
    N = strlen(z);
sl@0
   725
  }
sl@0
   726
  if( N==0 ){
sl@0
   727
    return;
sl@0
   728
  }
sl@0
   729
  if( p->nChar+N >= p->nAlloc ){
sl@0
   730
    char *zNew;
sl@0
   731
    if( !p->useMalloc ){
sl@0
   732
      p->tooBig = 1;
sl@0
   733
      N = p->nAlloc - p->nChar - 1;
sl@0
   734
      if( N<=0 ){
sl@0
   735
        return;
sl@0
   736
      }
sl@0
   737
    }else{
sl@0
   738
      i64 szNew = p->nChar;
sl@0
   739
      szNew += N + 1;
sl@0
   740
      if( szNew > p->mxAlloc ){
sl@0
   741
        sqlite3StrAccumReset(p);
sl@0
   742
        p->tooBig = 1;
sl@0
   743
        return;
sl@0
   744
      }else{
sl@0
   745
        p->nAlloc = szNew;
sl@0
   746
      }
sl@0
   747
      zNew = sqlite3DbMallocRaw(p->db, p->nAlloc );
sl@0
   748
      if( zNew ){
sl@0
   749
        memcpy(zNew, p->zText, p->nChar);
sl@0
   750
        sqlite3StrAccumReset(p);
sl@0
   751
        p->zText = zNew;
sl@0
   752
      }else{
sl@0
   753
        p->mallocFailed = 1;
sl@0
   754
        sqlite3StrAccumReset(p);
sl@0
   755
        return;
sl@0
   756
      }
sl@0
   757
    }
sl@0
   758
  }
sl@0
   759
  memcpy(&p->zText[p->nChar], z, N);
sl@0
   760
  p->nChar += N;
sl@0
   761
}
sl@0
   762
sl@0
   763
/*
sl@0
   764
** Finish off a string by making sure it is zero-terminated.
sl@0
   765
** Return a pointer to the resulting string.  Return a NULL
sl@0
   766
** pointer if any kind of error was encountered.
sl@0
   767
*/
sl@0
   768
char *sqlite3StrAccumFinish(StrAccum *p){
sl@0
   769
  if( p->zText ){
sl@0
   770
    p->zText[p->nChar] = 0;
sl@0
   771
    if( p->useMalloc && p->zText==p->zBase ){
sl@0
   772
      p->zText = sqlite3DbMallocRaw(p->db, p->nChar+1 );
sl@0
   773
      if( p->zText ){
sl@0
   774
        memcpy(p->zText, p->zBase, p->nChar+1);
sl@0
   775
      }else{
sl@0
   776
        p->mallocFailed = 1;
sl@0
   777
      }
sl@0
   778
    }
sl@0
   779
  }
sl@0
   780
  return p->zText;
sl@0
   781
}
sl@0
   782
sl@0
   783
/*
sl@0
   784
** Reset an StrAccum string.  Reclaim all malloced memory.
sl@0
   785
*/
sl@0
   786
void sqlite3StrAccumReset(StrAccum *p){
sl@0
   787
  if( p->zText!=p->zBase ){
sl@0
   788
    sqlite3DbFree(p->db, p->zText);
sl@0
   789
  }
sl@0
   790
  p->zText = 0;
sl@0
   791
}
sl@0
   792
sl@0
   793
/*
sl@0
   794
** Initialize a string accumulator
sl@0
   795
*/
sl@0
   796
void sqlite3StrAccumInit(StrAccum *p, char *zBase, int n, int mx){
sl@0
   797
  p->zText = p->zBase = zBase;
sl@0
   798
  p->db = 0;
sl@0
   799
  p->nChar = 0;
sl@0
   800
  p->nAlloc = n;
sl@0
   801
  p->mxAlloc = mx;
sl@0
   802
  p->useMalloc = 1;
sl@0
   803
  p->tooBig = 0;
sl@0
   804
  p->mallocFailed = 0;
sl@0
   805
}
sl@0
   806
sl@0
   807
/*
sl@0
   808
** Print into memory obtained from sqliteMalloc().  Use the internal
sl@0
   809
** %-conversion extensions.
sl@0
   810
*/
sl@0
   811
char *sqlite3VMPrintf(sqlite3 *db, const char *zFormat, va_list ap){
sl@0
   812
  char *z;
sl@0
   813
  char zBase[SQLITE_PRINT_BUF_SIZE];
sl@0
   814
  StrAccum acc;
sl@0
   815
  sqlite3StrAccumInit(&acc, zBase, sizeof(zBase),
sl@0
   816
                      db ? db->aLimit[SQLITE_LIMIT_LENGTH] : SQLITE_MAX_LENGTH);
sl@0
   817
  acc.db = db;
sl@0
   818
  sqlite3VXPrintf(&acc, 1, zFormat, ap);
sl@0
   819
  z = sqlite3StrAccumFinish(&acc);
sl@0
   820
  if( acc.mallocFailed && db ){
sl@0
   821
    db->mallocFailed = 1;
sl@0
   822
  }
sl@0
   823
  return z;
sl@0
   824
}
sl@0
   825
sl@0
   826
/*
sl@0
   827
** Print into memory obtained from sqliteMalloc().  Use the internal
sl@0
   828
** %-conversion extensions.
sl@0
   829
*/
sl@0
   830
char *sqlite3MPrintf(sqlite3 *db, const char *zFormat, ...){
sl@0
   831
  va_list ap;
sl@0
   832
  char *z;
sl@0
   833
  va_start(ap, zFormat);
sl@0
   834
  z = sqlite3VMPrintf(db, zFormat, ap);
sl@0
   835
  va_end(ap);
sl@0
   836
  return z;
sl@0
   837
}
sl@0
   838
sl@0
   839
/*
sl@0
   840
** Like sqlite3MPrintf(), but call sqlite3DbFree() on zStr after formatting
sl@0
   841
** the string and before returnning.  This routine is intended to be used
sl@0
   842
** to modify an existing string.  For example:
sl@0
   843
**
sl@0
   844
**       x = sqlite3MPrintf(db, x, "prefix %s suffix", x);
sl@0
   845
**
sl@0
   846
*/
sl@0
   847
char *sqlite3MAppendf(sqlite3 *db, char *zStr, const char *zFormat, ...){
sl@0
   848
  va_list ap;
sl@0
   849
  char *z;
sl@0
   850
  va_start(ap, zFormat);
sl@0
   851
  z = sqlite3VMPrintf(db, zFormat, ap);
sl@0
   852
  va_end(ap);
sl@0
   853
  sqlite3DbFree(db, zStr);
sl@0
   854
  return z;
sl@0
   855
}
sl@0
   856
sl@0
   857
/*
sl@0
   858
** Print into memory obtained from sqlite3_malloc().  Omit the internal
sl@0
   859
** %-conversion extensions.
sl@0
   860
*/
sl@0
   861
char *sqlite3_vmprintf(const char *zFormat, va_list ap){
sl@0
   862
  char *z;
sl@0
   863
  char zBase[SQLITE_PRINT_BUF_SIZE];
sl@0
   864
  StrAccum acc;
sl@0
   865
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
   866
  if( sqlite3_initialize() ) return 0;
sl@0
   867
#endif
sl@0
   868
  sqlite3StrAccumInit(&acc, zBase, sizeof(zBase), SQLITE_MAX_LENGTH);
sl@0
   869
  sqlite3VXPrintf(&acc, 0, zFormat, ap);
sl@0
   870
  z = sqlite3StrAccumFinish(&acc);
sl@0
   871
  return z;
sl@0
   872
}
sl@0
   873
sl@0
   874
/*
sl@0
   875
** Print into memory obtained from sqlite3_malloc()().  Omit the internal
sl@0
   876
** %-conversion extensions.
sl@0
   877
*/
sl@0
   878
char *sqlite3_mprintf(const char *zFormat, ...){
sl@0
   879
  va_list ap;
sl@0
   880
  char *z;
sl@0
   881
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
   882
  if( sqlite3_initialize() ) return 0;
sl@0
   883
#endif
sl@0
   884
  va_start(ap, zFormat);
sl@0
   885
  z = sqlite3_vmprintf(zFormat, ap);
sl@0
   886
  va_end(ap);
sl@0
   887
  return z;
sl@0
   888
}
sl@0
   889
sl@0
   890
/*
sl@0
   891
** sqlite3_snprintf() works like snprintf() except that it ignores the
sl@0
   892
** current locale settings.  This is important for SQLite because we
sl@0
   893
** are not able to use a "," as the decimal point in place of "." as
sl@0
   894
** specified by some locales.
sl@0
   895
*/
sl@0
   896
char *sqlite3_snprintf(int n, char *zBuf, const char *zFormat, ...){
sl@0
   897
  char *z;
sl@0
   898
  va_list ap;
sl@0
   899
  StrAccum acc;
sl@0
   900
sl@0
   901
  if( n<=0 ){
sl@0
   902
    return zBuf;
sl@0
   903
  }
sl@0
   904
  sqlite3StrAccumInit(&acc, zBuf, n, 0);
sl@0
   905
  acc.useMalloc = 0;
sl@0
   906
  va_start(ap,zFormat);
sl@0
   907
  sqlite3VXPrintf(&acc, 0, zFormat, ap);
sl@0
   908
  va_end(ap);
sl@0
   909
  z = sqlite3StrAccumFinish(&acc);
sl@0
   910
  return z;
sl@0
   911
}
sl@0
   912
sl@0
   913
#if defined(SQLITE_DEBUG)
sl@0
   914
/*
sl@0
   915
** A version of printf() that understands %lld.  Used for debugging.
sl@0
   916
** The printf() built into some versions of windows does not understand %lld
sl@0
   917
** and segfaults if you give it a long long int.
sl@0
   918
*/
sl@0
   919
void sqlite3DebugPrintf(const char *zFormat, ...){
sl@0
   920
  va_list ap;
sl@0
   921
  StrAccum acc;
sl@0
   922
  char zBuf[500];
sl@0
   923
  sqlite3StrAccumInit(&acc, zBuf, sizeof(zBuf), 0);
sl@0
   924
  acc.useMalloc = 0;
sl@0
   925
  va_start(ap,zFormat);
sl@0
   926
  sqlite3VXPrintf(&acc, 0, zFormat, ap);
sl@0
   927
  va_end(ap);
sl@0
   928
  sqlite3StrAccumFinish(&acc);
sl@0
   929
  fprintf(stdout,"%s", zBuf);
sl@0
   930
  fflush(stdout);
sl@0
   931
}
sl@0
   932
#endif