os/persistentdata/persistentstorage/sql/SQLite/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.93 2008/07/28 19:34:53 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 errorflag = 0;      /* True if an error is encountered */
sl@0
   250
  etByte xtype = 0;          /* Conversion paradigm */
sl@0
   251
  char *zExtra;              /* Extra memory used for etTCLESCAPE conversions */
sl@0
   252
#ifndef SQLITE_OMIT_FLOATING_POINT
sl@0
   253
  int  exp, e2;              /* exponent of real numbers */
sl@0
   254
  double rounder;            /* Used for rounding floating point values */
sl@0
   255
  etByte flag_dp;            /* True if decimal point should be shown */
sl@0
   256
  etByte flag_rtz;           /* True if trailing zeros should be removed */
sl@0
   257
  etByte flag_exp;           /* True to force display of the exponent */
sl@0
   258
  int nsd;                   /* Number of significant digits returned */
sl@0
   259
#endif
sl@0
   260
sl@0
   261
  length = 0;
sl@0
   262
  bufpt = 0;
sl@0
   263
  for(; (c=(*fmt))!=0; ++fmt){
sl@0
   264
    if( c!='%' ){
sl@0
   265
      int amt;
sl@0
   266
      bufpt = (char *)fmt;
sl@0
   267
      amt = 1;
sl@0
   268
      while( (c=(*++fmt))!='%' && c!=0 ) amt++;
sl@0
   269
      sqlite3StrAccumAppend(pAccum, bufpt, amt);
sl@0
   270
      if( c==0 ) break;
sl@0
   271
    }
sl@0
   272
    if( (c=(*++fmt))==0 ){
sl@0
   273
      errorflag = 1;
sl@0
   274
      sqlite3StrAccumAppend(pAccum, "%", 1);
sl@0
   275
      break;
sl@0
   276
    }
sl@0
   277
    /* Find out what flags are present */
sl@0
   278
    flag_leftjustify = flag_plussign = flag_blanksign = 
sl@0
   279
     flag_alternateform = flag_altform2 = flag_zeropad = 0;
sl@0
   280
    done = 0;
sl@0
   281
    do{
sl@0
   282
      switch( c ){
sl@0
   283
        case '-':   flag_leftjustify = 1;     break;
sl@0
   284
        case '+':   flag_plussign = 1;        break;
sl@0
   285
        case ' ':   flag_blanksign = 1;       break;
sl@0
   286
        case '#':   flag_alternateform = 1;   break;
sl@0
   287
        case '!':   flag_altform2 = 1;        break;
sl@0
   288
        case '0':   flag_zeropad = 1;         break;
sl@0
   289
        default:    done = 1;                 break;
sl@0
   290
      }
sl@0
   291
    }while( !done && (c=(*++fmt))!=0 );
sl@0
   292
    /* Get the field width */
sl@0
   293
    width = 0;
sl@0
   294
    if( c=='*' ){
sl@0
   295
      width = va_arg(ap,int);
sl@0
   296
      if( width<0 ){
sl@0
   297
        flag_leftjustify = 1;
sl@0
   298
        width = -width;
sl@0
   299
      }
sl@0
   300
      c = *++fmt;
sl@0
   301
    }else{
sl@0
   302
      while( c>='0' && c<='9' ){
sl@0
   303
        width = width*10 + c - '0';
sl@0
   304
        c = *++fmt;
sl@0
   305
      }
sl@0
   306
    }
sl@0
   307
    if( width > etBUFSIZE-10 ){
sl@0
   308
      width = etBUFSIZE-10;
sl@0
   309
    }
sl@0
   310
    /* Get the precision */
sl@0
   311
    if( c=='.' ){
sl@0
   312
      precision = 0;
sl@0
   313
      c = *++fmt;
sl@0
   314
      if( c=='*' ){
sl@0
   315
        precision = va_arg(ap,int);
sl@0
   316
        if( precision<0 ) precision = -precision;
sl@0
   317
        c = *++fmt;
sl@0
   318
      }else{
sl@0
   319
        while( c>='0' && c<='9' ){
sl@0
   320
          precision = precision*10 + c - '0';
sl@0
   321
          c = *++fmt;
sl@0
   322
        }
sl@0
   323
      }
sl@0
   324
    }else{
sl@0
   325
      precision = -1;
sl@0
   326
    }
sl@0
   327
    /* Get the conversion type modifier */
sl@0
   328
    if( c=='l' ){
sl@0
   329
      flag_long = 1;
sl@0
   330
      c = *++fmt;
sl@0
   331
      if( c=='l' ){
sl@0
   332
        flag_longlong = 1;
sl@0
   333
        c = *++fmt;
sl@0
   334
      }else{
sl@0
   335
        flag_longlong = 0;
sl@0
   336
      }
sl@0
   337
    }else{
sl@0
   338
      flag_long = flag_longlong = 0;
sl@0
   339
    }
sl@0
   340
    /* Fetch the info entry for the field */
sl@0
   341
    infop = 0;
sl@0
   342
    for(idx=0; idx<etNINFO; idx++){
sl@0
   343
      if( c==fmtinfo[idx].fmttype ){
sl@0
   344
        infop = &fmtinfo[idx];
sl@0
   345
        if( useExtended || (infop->flags & FLAG_INTERN)==0 ){
sl@0
   346
          xtype = infop->type;
sl@0
   347
        }else{
sl@0
   348
          return;
sl@0
   349
        }
sl@0
   350
        break;
sl@0
   351
      }
sl@0
   352
    }
sl@0
   353
    zExtra = 0;
sl@0
   354
    if( infop==0 ){
sl@0
   355
      return;
sl@0
   356
    }
sl@0
   357
sl@0
   358
sl@0
   359
    /* Limit the precision to prevent overflowing buf[] during conversion */
sl@0
   360
    if( precision>etBUFSIZE-40 && (infop->flags & FLAG_STRING)==0 ){
sl@0
   361
      precision = etBUFSIZE-40;
sl@0
   362
    }
sl@0
   363
sl@0
   364
    /*
sl@0
   365
    ** At this point, variables are initialized as follows:
sl@0
   366
    **
sl@0
   367
    **   flag_alternateform          TRUE if a '#' is present.
sl@0
   368
    **   flag_altform2               TRUE if a '!' is present.
sl@0
   369
    **   flag_plussign               TRUE if a '+' is present.
sl@0
   370
    **   flag_leftjustify            TRUE if a '-' is present or if the
sl@0
   371
    **                               field width was negative.
sl@0
   372
    **   flag_zeropad                TRUE if the width began with 0.
sl@0
   373
    **   flag_long                   TRUE if the letter 'l' (ell) prefixed
sl@0
   374
    **                               the conversion character.
sl@0
   375
    **   flag_longlong               TRUE if the letter 'll' (ell ell) prefixed
sl@0
   376
    **                               the conversion character.
sl@0
   377
    **   flag_blanksign              TRUE if a ' ' is present.
sl@0
   378
    **   width                       The specified field width.  This is
sl@0
   379
    **                               always non-negative.  Zero is the default.
sl@0
   380
    **   precision                   The specified precision.  The default
sl@0
   381
    **                               is -1.
sl@0
   382
    **   xtype                       The class of the conversion.
sl@0
   383
    **   infop                       Pointer to the appropriate info struct.
sl@0
   384
    */
sl@0
   385
    switch( xtype ){
sl@0
   386
      case etPOINTER:
sl@0
   387
        flag_longlong = sizeof(char*)==sizeof(i64);
sl@0
   388
        flag_long = sizeof(char*)==sizeof(long int);
sl@0
   389
        /* Fall through into the next case */
sl@0
   390
      case etORDINAL:
sl@0
   391
      case etRADIX:
sl@0
   392
        if( infop->flags & FLAG_SIGNED ){
sl@0
   393
          i64 v;
sl@0
   394
          if( flag_longlong )   v = va_arg(ap,i64);
sl@0
   395
          else if( flag_long )  v = va_arg(ap,long int);
sl@0
   396
          else                  v = va_arg(ap,int);
sl@0
   397
          if( v<0 ){
sl@0
   398
            longvalue = -v;
sl@0
   399
            prefix = '-';
sl@0
   400
          }else{
sl@0
   401
            longvalue = v;
sl@0
   402
            if( flag_plussign )        prefix = '+';
sl@0
   403
            else if( flag_blanksign )  prefix = ' ';
sl@0
   404
            else                       prefix = 0;
sl@0
   405
          }
sl@0
   406
        }else{
sl@0
   407
          if( flag_longlong )   longvalue = va_arg(ap,u64);
sl@0
   408
          else if( flag_long )  longvalue = va_arg(ap,unsigned long int);
sl@0
   409
          else                  longvalue = va_arg(ap,unsigned int);
sl@0
   410
          prefix = 0;
sl@0
   411
        }
sl@0
   412
        if( longvalue==0 ) flag_alternateform = 0;
sl@0
   413
        if( flag_zeropad && precision<width-(prefix!=0) ){
sl@0
   414
          precision = width-(prefix!=0);
sl@0
   415
        }
sl@0
   416
        bufpt = &buf[etBUFSIZE-1];
sl@0
   417
        if( xtype==etORDINAL ){
sl@0
   418
          static const char zOrd[] = "thstndrd";
sl@0
   419
          int x = longvalue % 10;
sl@0
   420
          if( x>=4 || (longvalue/10)%10==1 ){
sl@0
   421
            x = 0;
sl@0
   422
          }
sl@0
   423
          buf[etBUFSIZE-3] = zOrd[x*2];
sl@0
   424
          buf[etBUFSIZE-2] = zOrd[x*2+1];
sl@0
   425
          bufpt -= 2;
sl@0
   426
        }
sl@0
   427
        {
sl@0
   428
          register const char *cset;      /* Use registers for speed */
sl@0
   429
          register int base;
sl@0
   430
          cset = &aDigits[infop->charset];
sl@0
   431
          base = infop->base;
sl@0
   432
          do{                                           /* Convert to ascii */
sl@0
   433
            *(--bufpt) = cset[longvalue%base];
sl@0
   434
            longvalue = longvalue/base;
sl@0
   435
          }while( longvalue>0 );
sl@0
   436
        }
sl@0
   437
        length = &buf[etBUFSIZE-1]-bufpt;
sl@0
   438
        for(idx=precision-length; idx>0; idx--){
sl@0
   439
          *(--bufpt) = '0';                             /* Zero pad */
sl@0
   440
        }
sl@0
   441
        if( prefix ) *(--bufpt) = prefix;               /* Add sign */
sl@0
   442
        if( flag_alternateform && infop->prefix ){      /* Add "0" or "0x" */
sl@0
   443
          const char *pre;
sl@0
   444
          char x;
sl@0
   445
          pre = &aPrefix[infop->prefix];
sl@0
   446
          for(; (x=(*pre))!=0; pre++) *(--bufpt) = x;
sl@0
   447
        }
sl@0
   448
        length = &buf[etBUFSIZE-1]-bufpt;
sl@0
   449
        break;
sl@0
   450
      case etFLOAT:
sl@0
   451
      case etEXP:
sl@0
   452
      case etGENERIC:
sl@0
   453
        realvalue = va_arg(ap,double);
sl@0
   454
#ifndef SQLITE_OMIT_FLOATING_POINT
sl@0
   455
        if( precision<0 ) precision = 6;         /* Set default precision */
sl@0
   456
        if( precision>etBUFSIZE/2-10 ) precision = etBUFSIZE/2-10;
sl@0
   457
        if( realvalue<0.0 ){
sl@0
   458
          realvalue = -realvalue;
sl@0
   459
          prefix = '-';
sl@0
   460
        }else{
sl@0
   461
          if( flag_plussign )          prefix = '+';
sl@0
   462
          else if( flag_blanksign )    prefix = ' ';
sl@0
   463
          else                         prefix = 0;
sl@0
   464
        }
sl@0
   465
        if( xtype==etGENERIC && precision>0 ) precision--;
sl@0
   466
#if 0
sl@0
   467
        /* Rounding works like BSD when the constant 0.4999 is used.  Wierd! */
sl@0
   468
        for(idx=precision, rounder=0.4999; idx>0; idx--, rounder*=0.1);
sl@0
   469
#else
sl@0
   470
        /* It makes more sense to use 0.5 */
sl@0
   471
        for(idx=precision, rounder=0.5; idx>0; idx--, rounder*=0.1){}
sl@0
   472
#endif
sl@0
   473
        if( xtype==etFLOAT ) realvalue += rounder;
sl@0
   474
        /* Normalize realvalue to within 10.0 > realvalue >= 1.0 */
sl@0
   475
        exp = 0;
sl@0
   476
        if( sqlite3IsNaN(realvalue) ){
sl@0
   477
          bufpt = "NaN";
sl@0
   478
          length = 3;
sl@0
   479
          break;
sl@0
   480
        }
sl@0
   481
        if( realvalue>0.0 ){
sl@0
   482
          while( realvalue>=1e32 && exp<=350 ){ realvalue *= 1e-32; exp+=32; }
sl@0
   483
          while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; }
sl@0
   484
          while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
sl@0
   485
          while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; }
sl@0
   486
          while( realvalue<1.0 ){ realvalue *= 10.0; exp--; }
sl@0
   487
          if( exp>350 ){
sl@0
   488
            if( prefix=='-' ){
sl@0
   489
              bufpt = "-Inf";
sl@0
   490
            }else if( prefix=='+' ){
sl@0
   491
              bufpt = "+Inf";
sl@0
   492
            }else{
sl@0
   493
              bufpt = "Inf";
sl@0
   494
            }
sl@0
   495
            length = strlen(bufpt);
sl@0
   496
            break;
sl@0
   497
          }
sl@0
   498
        }
sl@0
   499
        bufpt = buf;
sl@0
   500
        /*
sl@0
   501
        ** If the field type is etGENERIC, then convert to either etEXP
sl@0
   502
        ** or etFLOAT, as appropriate.
sl@0
   503
        */
sl@0
   504
        flag_exp = xtype==etEXP;
sl@0
   505
        if( xtype!=etFLOAT ){
sl@0
   506
          realvalue += rounder;
sl@0
   507
          if( realvalue>=10.0 ){ realvalue *= 0.1; exp++; }
sl@0
   508
        }
sl@0
   509
        if( xtype==etGENERIC ){
sl@0
   510
          flag_rtz = !flag_alternateform;
sl@0
   511
          if( exp<-4 || exp>precision ){
sl@0
   512
            xtype = etEXP;
sl@0
   513
          }else{
sl@0
   514
            precision = precision - exp;
sl@0
   515
            xtype = etFLOAT;
sl@0
   516
          }
sl@0
   517
        }else{
sl@0
   518
          flag_rtz = 0;
sl@0
   519
        }
sl@0
   520
        if( xtype==etEXP ){
sl@0
   521
          e2 = 0;
sl@0
   522
        }else{
sl@0
   523
          e2 = exp;
sl@0
   524
        }
sl@0
   525
        nsd = 0;
sl@0
   526
        flag_dp = (precision>0) | flag_alternateform | flag_altform2;
sl@0
   527
        /* The sign in front of the number */
sl@0
   528
        if( prefix ){
sl@0
   529
          *(bufpt++) = prefix;
sl@0
   530
        }
sl@0
   531
        /* Digits prior to the decimal point */
sl@0
   532
        if( e2<0 ){
sl@0
   533
          *(bufpt++) = '0';
sl@0
   534
        }else{
sl@0
   535
          for(; e2>=0; e2--){
sl@0
   536
            *(bufpt++) = et_getdigit(&realvalue,&nsd);
sl@0
   537
          }
sl@0
   538
        }
sl@0
   539
        /* The decimal point */
sl@0
   540
        if( flag_dp ){
sl@0
   541
          *(bufpt++) = '.';
sl@0
   542
        }
sl@0
   543
        /* "0" digits after the decimal point but before the first
sl@0
   544
        ** significant digit of the number */
sl@0
   545
        for(e2++; e2<0; precision--, e2++){
sl@0
   546
          assert( precision>0 );
sl@0
   547
          *(bufpt++) = '0';
sl@0
   548
        }
sl@0
   549
        /* Significant digits after the decimal point */
sl@0
   550
        while( (precision--)>0 ){
sl@0
   551
          *(bufpt++) = et_getdigit(&realvalue,&nsd);
sl@0
   552
        }
sl@0
   553
        /* Remove trailing zeros and the "." if no digits follow the "." */
sl@0
   554
        if( flag_rtz && flag_dp ){
sl@0
   555
          while( bufpt[-1]=='0' ) *(--bufpt) = 0;
sl@0
   556
          assert( bufpt>buf );
sl@0
   557
          if( bufpt[-1]=='.' ){
sl@0
   558
            if( flag_altform2 ){
sl@0
   559
              *(bufpt++) = '0';
sl@0
   560
            }else{
sl@0
   561
              *(--bufpt) = 0;
sl@0
   562
            }
sl@0
   563
          }
sl@0
   564
        }
sl@0
   565
        /* Add the "eNNN" suffix */
sl@0
   566
        if( flag_exp || xtype==etEXP ){
sl@0
   567
          *(bufpt++) = aDigits[infop->charset];
sl@0
   568
          if( exp<0 ){
sl@0
   569
            *(bufpt++) = '-'; exp = -exp;
sl@0
   570
          }else{
sl@0
   571
            *(bufpt++) = '+';
sl@0
   572
          }
sl@0
   573
          if( exp>=100 ){
sl@0
   574
            *(bufpt++) = (exp/100)+'0';                /* 100's digit */
sl@0
   575
            exp %= 100;
sl@0
   576
          }
sl@0
   577
          *(bufpt++) = exp/10+'0';                     /* 10's digit */
sl@0
   578
          *(bufpt++) = exp%10+'0';                     /* 1's digit */
sl@0
   579
        }
sl@0
   580
        *bufpt = 0;
sl@0
   581
sl@0
   582
        /* The converted number is in buf[] and zero terminated. Output it.
sl@0
   583
        ** Note that the number is in the usual order, not reversed as with
sl@0
   584
        ** integer conversions. */
sl@0
   585
        length = bufpt-buf;
sl@0
   586
        bufpt = buf;
sl@0
   587
sl@0
   588
        /* Special case:  Add leading zeros if the flag_zeropad flag is
sl@0
   589
        ** set and we are not left justified */
sl@0
   590
        if( flag_zeropad && !flag_leftjustify && length < width){
sl@0
   591
          int i;
sl@0
   592
          int nPad = width - length;
sl@0
   593
          for(i=width; i>=nPad; i--){
sl@0
   594
            bufpt[i] = bufpt[i-nPad];
sl@0
   595
          }
sl@0
   596
          i = prefix!=0;
sl@0
   597
          while( nPad-- ) bufpt[i++] = '0';
sl@0
   598
          length = width;
sl@0
   599
        }
sl@0
   600
#endif
sl@0
   601
        break;
sl@0
   602
      case etSIZE:
sl@0
   603
        *(va_arg(ap,int*)) = pAccum->nChar;
sl@0
   604
        length = width = 0;
sl@0
   605
        break;
sl@0
   606
      case etPERCENT:
sl@0
   607
        buf[0] = '%';
sl@0
   608
        bufpt = buf;
sl@0
   609
        length = 1;
sl@0
   610
        break;
sl@0
   611
      case etCHARX:
sl@0
   612
        c = buf[0] = va_arg(ap,int);
sl@0
   613
        if( precision>=0 ){
sl@0
   614
          for(idx=1; idx<precision; idx++) buf[idx] = c;
sl@0
   615
          length = precision;
sl@0
   616
        }else{
sl@0
   617
          length =1;
sl@0
   618
        }
sl@0
   619
        bufpt = buf;
sl@0
   620
        break;
sl@0
   621
      case etSTRING:
sl@0
   622
      case etDYNSTRING:
sl@0
   623
        bufpt = va_arg(ap,char*);
sl@0
   624
        if( bufpt==0 ){
sl@0
   625
          bufpt = "";
sl@0
   626
        }else if( xtype==etDYNSTRING ){
sl@0
   627
          zExtra = bufpt;
sl@0
   628
        }
sl@0
   629
        if( precision>=0 ){
sl@0
   630
          for(length=0; length<precision && bufpt[length]; length++){}
sl@0
   631
        }else{
sl@0
   632
          length = strlen(bufpt);
sl@0
   633
        }
sl@0
   634
        break;
sl@0
   635
      case etSQLESCAPE:
sl@0
   636
      case etSQLESCAPE2:
sl@0
   637
      case etSQLESCAPE3: {
sl@0
   638
        int i, j, n, ch, isnull;
sl@0
   639
        int needQuote;
sl@0
   640
        char q = ((xtype==etSQLESCAPE3)?'"':'\'');   /* Quote character */
sl@0
   641
        char *escarg = va_arg(ap,char*);
sl@0
   642
        isnull = escarg==0;
sl@0
   643
        if( isnull ) escarg = (xtype==etSQLESCAPE2 ? "NULL" : "(NULL)");
sl@0
   644
        for(i=n=0; (ch=escarg[i])!=0; i++){
sl@0
   645
          if( ch==q )  n++;
sl@0
   646
        }
sl@0
   647
        needQuote = !isnull && xtype==etSQLESCAPE2;
sl@0
   648
        n += i + 1 + needQuote*2;
sl@0
   649
        if( n>etBUFSIZE ){
sl@0
   650
          bufpt = zExtra = sqlite3Malloc( n );
sl@0
   651
          if( bufpt==0 ) return;
sl@0
   652
        }else{
sl@0
   653
          bufpt = buf;
sl@0
   654
        }
sl@0
   655
        j = 0;
sl@0
   656
        if( needQuote ) bufpt[j++] = q;
sl@0
   657
        for(i=0; (ch=escarg[i])!=0; i++){
sl@0
   658
          bufpt[j++] = ch;
sl@0
   659
          if( ch==q ) bufpt[j++] = ch;
sl@0
   660
        }
sl@0
   661
        if( needQuote ) bufpt[j++] = q;
sl@0
   662
        bufpt[j] = 0;
sl@0
   663
        length = j;
sl@0
   664
        /* The precision is ignored on %q and %Q */
sl@0
   665
        /* if( precision>=0 && precision<length ) length = precision; */
sl@0
   666
        break;
sl@0
   667
      }
sl@0
   668
      case etTOKEN: {
sl@0
   669
        Token *pToken = va_arg(ap, Token*);
sl@0
   670
        if( pToken ){
sl@0
   671
          sqlite3StrAccumAppend(pAccum, (const char*)pToken->z, pToken->n);
sl@0
   672
        }
sl@0
   673
        length = width = 0;
sl@0
   674
        break;
sl@0
   675
      }
sl@0
   676
      case etSRCLIST: {
sl@0
   677
        SrcList *pSrc = va_arg(ap, SrcList*);
sl@0
   678
        int k = va_arg(ap, int);
sl@0
   679
        struct SrcList_item *pItem = &pSrc->a[k];
sl@0
   680
        assert( k>=0 && k<pSrc->nSrc );
sl@0
   681
        if( pItem->zDatabase ){
sl@0
   682
          sqlite3StrAccumAppend(pAccum, pItem->zDatabase, -1);
sl@0
   683
          sqlite3StrAccumAppend(pAccum, ".", 1);
sl@0
   684
        }
sl@0
   685
        sqlite3StrAccumAppend(pAccum, pItem->zName, -1);
sl@0
   686
        length = width = 0;
sl@0
   687
        break;
sl@0
   688
      }
sl@0
   689
    }/* End switch over the format type */
sl@0
   690
    /*
sl@0
   691
    ** The text of the conversion is pointed to by "bufpt" and is
sl@0
   692
    ** "length" characters long.  The field width is "width".  Do
sl@0
   693
    ** the output.
sl@0
   694
    */
sl@0
   695
    if( !flag_leftjustify ){
sl@0
   696
      register int nspace;
sl@0
   697
      nspace = width-length;
sl@0
   698
      if( nspace>0 ){
sl@0
   699
        appendSpace(pAccum, nspace);
sl@0
   700
      }
sl@0
   701
    }
sl@0
   702
    if( length>0 ){
sl@0
   703
      sqlite3StrAccumAppend(pAccum, bufpt, length);
sl@0
   704
    }
sl@0
   705
    if( flag_leftjustify ){
sl@0
   706
      register int nspace;
sl@0
   707
      nspace = width-length;
sl@0
   708
      if( nspace>0 ){
sl@0
   709
        appendSpace(pAccum, nspace);
sl@0
   710
      }
sl@0
   711
    }
sl@0
   712
    if( zExtra ){
sl@0
   713
      sqlite3_free(zExtra);
sl@0
   714
    }
sl@0
   715
  }/* End for loop over the format string */
sl@0
   716
} /* End of function */
sl@0
   717
sl@0
   718
/*
sl@0
   719
** Append N bytes of text from z to the StrAccum object.
sl@0
   720
*/
sl@0
   721
void sqlite3StrAccumAppend(StrAccum *p, const char *z, int N){
sl@0
   722
  if( p->tooBig | p->mallocFailed ){
sl@0
   723
    return;
sl@0
   724
  }
sl@0
   725
  if( N<0 ){
sl@0
   726
    N = strlen(z);
sl@0
   727
  }
sl@0
   728
  if( N==0 ){
sl@0
   729
    return;
sl@0
   730
  }
sl@0
   731
  if( p->nChar+N >= p->nAlloc ){
sl@0
   732
    char *zNew;
sl@0
   733
    if( !p->useMalloc ){
sl@0
   734
      p->tooBig = 1;
sl@0
   735
      N = p->nAlloc - p->nChar - 1;
sl@0
   736
      if( N<=0 ){
sl@0
   737
        return;
sl@0
   738
      }
sl@0
   739
    }else{
sl@0
   740
      i64 szNew = p->nChar;
sl@0
   741
      szNew += N + 1;
sl@0
   742
      if( szNew > p->mxAlloc ){
sl@0
   743
        sqlite3StrAccumReset(p);
sl@0
   744
        p->tooBig = 1;
sl@0
   745
        return;
sl@0
   746
      }else{
sl@0
   747
        p->nAlloc = szNew;
sl@0
   748
      }
sl@0
   749
      zNew = sqlite3DbMallocRaw(p->db, p->nAlloc );
sl@0
   750
      if( zNew ){
sl@0
   751
        memcpy(zNew, p->zText, p->nChar);
sl@0
   752
        sqlite3StrAccumReset(p);
sl@0
   753
        p->zText = zNew;
sl@0
   754
      }else{
sl@0
   755
        p->mallocFailed = 1;
sl@0
   756
        sqlite3StrAccumReset(p);
sl@0
   757
        return;
sl@0
   758
      }
sl@0
   759
    }
sl@0
   760
  }
sl@0
   761
  memcpy(&p->zText[p->nChar], z, N);
sl@0
   762
  p->nChar += N;
sl@0
   763
}
sl@0
   764
sl@0
   765
/*
sl@0
   766
** Finish off a string by making sure it is zero-terminated.
sl@0
   767
** Return a pointer to the resulting string.  Return a NULL
sl@0
   768
** pointer if any kind of error was encountered.
sl@0
   769
*/
sl@0
   770
char *sqlite3StrAccumFinish(StrAccum *p){
sl@0
   771
  if( p->zText ){
sl@0
   772
    p->zText[p->nChar] = 0;
sl@0
   773
    if( p->useMalloc && p->zText==p->zBase ){
sl@0
   774
      p->zText = sqlite3DbMallocRaw(p->db, p->nChar+1 );
sl@0
   775
      if( p->zText ){
sl@0
   776
        memcpy(p->zText, p->zBase, p->nChar+1);
sl@0
   777
      }else{
sl@0
   778
        p->mallocFailed = 1;
sl@0
   779
      }
sl@0
   780
    }
sl@0
   781
  }
sl@0
   782
  return p->zText;
sl@0
   783
}
sl@0
   784
sl@0
   785
/*
sl@0
   786
** Reset an StrAccum string.  Reclaim all malloced memory.
sl@0
   787
*/
sl@0
   788
void sqlite3StrAccumReset(StrAccum *p){
sl@0
   789
  if( p->zText!=p->zBase ){
sl@0
   790
    sqlite3DbFree(p->db, p->zText);
sl@0
   791
  }
sl@0
   792
  p->zText = 0;
sl@0
   793
}
sl@0
   794
sl@0
   795
/*
sl@0
   796
** Initialize a string accumulator
sl@0
   797
*/
sl@0
   798
void sqlite3StrAccumInit(StrAccum *p, char *zBase, int n, int mx){
sl@0
   799
  p->zText = p->zBase = zBase;
sl@0
   800
  p->db = 0;
sl@0
   801
  p->nChar = 0;
sl@0
   802
  p->nAlloc = n;
sl@0
   803
  p->mxAlloc = mx;
sl@0
   804
  p->useMalloc = 1;
sl@0
   805
  p->tooBig = 0;
sl@0
   806
  p->mallocFailed = 0;
sl@0
   807
}
sl@0
   808
sl@0
   809
/*
sl@0
   810
** Print into memory obtained from sqliteMalloc().  Use the internal
sl@0
   811
** %-conversion extensions.
sl@0
   812
*/
sl@0
   813
char *sqlite3VMPrintf(sqlite3 *db, const char *zFormat, va_list ap){
sl@0
   814
  char *z;
sl@0
   815
  char zBase[SQLITE_PRINT_BUF_SIZE];
sl@0
   816
  StrAccum acc;
sl@0
   817
  sqlite3StrAccumInit(&acc, zBase, sizeof(zBase),
sl@0
   818
                      db ? db->aLimit[SQLITE_LIMIT_LENGTH] : SQLITE_MAX_LENGTH);
sl@0
   819
  acc.db = db;
sl@0
   820
  sqlite3VXPrintf(&acc, 1, zFormat, ap);
sl@0
   821
  z = sqlite3StrAccumFinish(&acc);
sl@0
   822
  if( acc.mallocFailed && db ){
sl@0
   823
    db->mallocFailed = 1;
sl@0
   824
  }
sl@0
   825
  return z;
sl@0
   826
}
sl@0
   827
sl@0
   828
/*
sl@0
   829
** Print into memory obtained from sqliteMalloc().  Use the internal
sl@0
   830
** %-conversion extensions.
sl@0
   831
*/
sl@0
   832
char *sqlite3MPrintf(sqlite3 *db, const char *zFormat, ...){
sl@0
   833
  va_list ap;
sl@0
   834
  char *z;
sl@0
   835
  va_start(ap, zFormat);
sl@0
   836
  z = sqlite3VMPrintf(db, zFormat, ap);
sl@0
   837
  va_end(ap);
sl@0
   838
  return z;
sl@0
   839
}
sl@0
   840
sl@0
   841
/*
sl@0
   842
** Like sqlite3MPrintf(), but call sqlite3DbFree() on zStr after formatting
sl@0
   843
** the string and before returnning.  This routine is intended to be used
sl@0
   844
** to modify an existing string.  For example:
sl@0
   845
**
sl@0
   846
**       x = sqlite3MPrintf(db, x, "prefix %s suffix", x);
sl@0
   847
**
sl@0
   848
*/
sl@0
   849
char *sqlite3MAppendf(sqlite3 *db, char *zStr, const char *zFormat, ...){
sl@0
   850
  va_list ap;
sl@0
   851
  char *z;
sl@0
   852
  va_start(ap, zFormat);
sl@0
   853
  z = sqlite3VMPrintf(db, zFormat, ap);
sl@0
   854
  va_end(ap);
sl@0
   855
  sqlite3DbFree(db, zStr);
sl@0
   856
  return z;
sl@0
   857
}
sl@0
   858
sl@0
   859
/*
sl@0
   860
** Print into memory obtained from sqlite3_malloc().  Omit the internal
sl@0
   861
** %-conversion extensions.
sl@0
   862
*/
sl@0
   863
char *sqlite3_vmprintf(const char *zFormat, va_list ap){
sl@0
   864
  char *z;
sl@0
   865
  char zBase[SQLITE_PRINT_BUF_SIZE];
sl@0
   866
  StrAccum acc;
sl@0
   867
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
   868
  if( sqlite3_initialize() ) return 0;
sl@0
   869
#endif
sl@0
   870
  sqlite3StrAccumInit(&acc, zBase, sizeof(zBase), SQLITE_MAX_LENGTH);
sl@0
   871
  sqlite3VXPrintf(&acc, 0, zFormat, ap);
sl@0
   872
  z = sqlite3StrAccumFinish(&acc);
sl@0
   873
  return z;
sl@0
   874
}
sl@0
   875
sl@0
   876
/*
sl@0
   877
** Print into memory obtained from sqlite3_malloc()().  Omit the internal
sl@0
   878
** %-conversion extensions.
sl@0
   879
*/
sl@0
   880
char *sqlite3_mprintf(const char *zFormat, ...){
sl@0
   881
  va_list ap;
sl@0
   882
  char *z;
sl@0
   883
#ifndef SQLITE_OMIT_AUTOINIT
sl@0
   884
  if( sqlite3_initialize() ) return 0;
sl@0
   885
#endif
sl@0
   886
  va_start(ap, zFormat);
sl@0
   887
  z = sqlite3_vmprintf(zFormat, ap);
sl@0
   888
  va_end(ap);
sl@0
   889
  return z;
sl@0
   890
}
sl@0
   891
sl@0
   892
/*
sl@0
   893
** sqlite3_snprintf() works like snprintf() except that it ignores the
sl@0
   894
** current locale settings.  This is important for SQLite because we
sl@0
   895
** are not able to use a "," as the decimal point in place of "." as
sl@0
   896
** specified by some locales.
sl@0
   897
*/
sl@0
   898
char *sqlite3_snprintf(int n, char *zBuf, const char *zFormat, ...){
sl@0
   899
  char *z;
sl@0
   900
  va_list ap;
sl@0
   901
  StrAccum acc;
sl@0
   902
sl@0
   903
  if( n<=0 ){
sl@0
   904
    return zBuf;
sl@0
   905
  }
sl@0
   906
  sqlite3StrAccumInit(&acc, zBuf, n, 0);
sl@0
   907
  acc.useMalloc = 0;
sl@0
   908
  va_start(ap,zFormat);
sl@0
   909
  sqlite3VXPrintf(&acc, 0, zFormat, ap);
sl@0
   910
  va_end(ap);
sl@0
   911
  z = sqlite3StrAccumFinish(&acc);
sl@0
   912
  return z;
sl@0
   913
}
sl@0
   914
sl@0
   915
#if defined(SQLITE_DEBUG)
sl@0
   916
/*
sl@0
   917
** A version of printf() that understands %lld.  Used for debugging.
sl@0
   918
** The printf() built into some versions of windows does not understand %lld
sl@0
   919
** and segfaults if you give it a long long int.
sl@0
   920
*/
sl@0
   921
void sqlite3DebugPrintf(const char *zFormat, ...){
sl@0
   922
  va_list ap;
sl@0
   923
  StrAccum acc;
sl@0
   924
  char zBuf[500];
sl@0
   925
  sqlite3StrAccumInit(&acc, zBuf, sizeof(zBuf), 0);
sl@0
   926
  acc.useMalloc = 0;
sl@0
   927
  va_start(ap,zFormat);
sl@0
   928
  sqlite3VXPrintf(&acc, 0, zFormat, ap);
sl@0
   929
  va_end(ap);
sl@0
   930
  sqlite3StrAccumFinish(&acc);
sl@0
   931
  fprintf(stdout,"%s", zBuf);
sl@0
   932
  fflush(stdout);
sl@0
   933
}
sl@0
   934
#endif