os/persistentdata/persistentstorage/sql/SQLite/util.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 ** 2001 September 15
     3 **
     4 ** The author disclaims copyright to this source code.  In place of
     5 ** a legal notice, here is a blessing:
     6 **
     7 **    May you do good and not evil.
     8 **    May you find forgiveness for yourself and forgive others.
     9 **    May you share freely, never taking more than you give.
    10 **
    11 *************************************************************************
    12 ** Utility functions used throughout sqlite.
    13 **
    14 ** This file contains functions for allocating memory, comparing
    15 ** strings, and stuff like that.
    16 **
    17 ** $Id: util.c,v 1.241 2008/07/28 19:34:54 drh Exp $
    18 */
    19 #include "sqliteInt.h"
    20 #include <stdarg.h>
    21 #include <ctype.h>
    22 
    23 
    24 /*
    25 ** Return true if the floating point value is Not a Number (NaN).
    26 */
    27 int sqlite3IsNaN(double x){
    28   /* This NaN test sometimes fails if compiled on GCC with -ffast-math.
    29   ** On the other hand, the use of -ffast-math comes with the following
    30   ** warning:
    31   **
    32   **      This option [-ffast-math] should never be turned on by any
    33   **      -O option since it can result in incorrect output for programs
    34   **      which depend on an exact implementation of IEEE or ISO 
    35   **      rules/specifications for math functions.
    36   **
    37   ** Under MSVC, this NaN test may fail if compiled with a floating-
    38   ** point precision mode other than /fp:precise.  From the MSDN 
    39   ** documentation:
    40   **
    41   **      The compiler [with /fp:precise] will properly handle comparisons 
    42   **      involving NaN. For example, x != x evaluates to true if x is NaN 
    43   **      ...
    44   */
    45 #ifdef __FAST_MATH__
    46 # error SQLite will not work correctly with the -ffast-math option of GCC.
    47 #endif
    48   volatile double y = x;
    49   volatile double z = y;
    50   return y!=z;
    51 }
    52 
    53 /*
    54 ** Return the length of a string, except do not allow the string length
    55 ** to exceed the SQLITE_LIMIT_LENGTH setting.
    56 */
    57 int sqlite3Strlen(sqlite3 *db, const char *z){
    58   const char *z2 = z;
    59   int len;
    60   size_t x;
    61   while( *z2 ){ z2++; }
    62   x = z2 - z;
    63   len = 0x7fffffff & x;
    64   if( len!=x || len > db->aLimit[SQLITE_LIMIT_LENGTH] ){
    65     return db->aLimit[SQLITE_LIMIT_LENGTH];
    66   }else{
    67     return len;
    68   }
    69 }
    70 
    71 /*
    72 ** Set the most recent error code and error string for the sqlite
    73 ** handle "db". The error code is set to "err_code".
    74 **
    75 ** If it is not NULL, string zFormat specifies the format of the
    76 ** error string in the style of the printf functions: The following
    77 ** format characters are allowed:
    78 **
    79 **      %s      Insert a string
    80 **      %z      A string that should be freed after use
    81 **      %d      Insert an integer
    82 **      %T      Insert a token
    83 **      %S      Insert the first element of a SrcList
    84 **
    85 ** zFormat and any string tokens that follow it are assumed to be
    86 ** encoded in UTF-8.
    87 **
    88 ** To clear the most recent error for sqlite handle "db", sqlite3Error
    89 ** should be called with err_code set to SQLITE_OK and zFormat set
    90 ** to NULL.
    91 */
    92 void sqlite3Error(sqlite3 *db, int err_code, const char *zFormat, ...){
    93   if( db && (db->pErr || (db->pErr = sqlite3ValueNew(db))!=0) ){
    94     db->errCode = err_code;
    95     if( zFormat ){
    96       char *z;
    97       va_list ap;
    98       va_start(ap, zFormat);
    99       z = sqlite3VMPrintf(db, zFormat, ap);
   100       va_end(ap);
   101       sqlite3ValueSetStr(db->pErr, -1, z, SQLITE_UTF8, SQLITE_DYNAMIC);
   102     }else{
   103       sqlite3ValueSetStr(db->pErr, 0, 0, SQLITE_UTF8, SQLITE_STATIC);
   104     }
   105   }
   106 }
   107 
   108 /*
   109 ** Add an error message to pParse->zErrMsg and increment pParse->nErr.
   110 ** The following formatting characters are allowed:
   111 **
   112 **      %s      Insert a string
   113 **      %z      A string that should be freed after use
   114 **      %d      Insert an integer
   115 **      %T      Insert a token
   116 **      %S      Insert the first element of a SrcList
   117 **
   118 ** This function should be used to report any error that occurs whilst
   119 ** compiling an SQL statement (i.e. within sqlite3_prepare()). The
   120 ** last thing the sqlite3_prepare() function does is copy the error
   121 ** stored by this function into the database handle using sqlite3Error().
   122 ** Function sqlite3Error() should be used during statement execution
   123 ** (sqlite3_step() etc.).
   124 */
   125 void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){
   126   va_list ap;
   127   sqlite3 *db = pParse->db;
   128   pParse->nErr++;
   129   sqlite3DbFree(db, pParse->zErrMsg);
   130   va_start(ap, zFormat);
   131   pParse->zErrMsg = sqlite3VMPrintf(db, zFormat, ap);
   132   va_end(ap);
   133   if( pParse->rc==SQLITE_OK ){
   134     pParse->rc = SQLITE_ERROR;
   135   }
   136 }
   137 
   138 /*
   139 ** Clear the error message in pParse, if any
   140 */
   141 void sqlite3ErrorClear(Parse *pParse){
   142   sqlite3DbFree(pParse->db, pParse->zErrMsg);
   143   pParse->zErrMsg = 0;
   144   pParse->nErr = 0;
   145 }
   146 
   147 /*
   148 ** Convert an SQL-style quoted string into a normal string by removing
   149 ** the quote characters.  The conversion is done in-place.  If the
   150 ** input does not begin with a quote character, then this routine
   151 ** is a no-op.
   152 **
   153 ** 2002-Feb-14: This routine is extended to remove MS-Access style
   154 ** brackets from around identifers.  For example:  "[a-b-c]" becomes
   155 ** "a-b-c".
   156 */
   157 void sqlite3Dequote(char *z){
   158   int quote;
   159   int i, j;
   160   if( z==0 ) return;
   161   quote = z[0];
   162   switch( quote ){
   163     case '\'':  break;
   164     case '"':   break;
   165     case '`':   break;                /* For MySQL compatibility */
   166     case '[':   quote = ']';  break;  /* For MS SqlServer compatibility */
   167     default:    return;
   168   }
   169   for(i=1, j=0; z[i]; i++){
   170     if( z[i]==quote ){
   171       if( z[i+1]==quote ){
   172         z[j++] = quote;
   173         i++;
   174       }else{
   175         z[j++] = 0;
   176         break;
   177       }
   178     }else{
   179       z[j++] = z[i];
   180     }
   181   }
   182 }
   183 
   184 /* Convenient short-hand */
   185 #define UpperToLower sqlite3UpperToLower
   186 
   187 /*
   188 ** Some systems have stricmp().  Others have strcasecmp().  Because
   189 ** there is no consistency, we will define our own.
   190 */
   191 int sqlite3StrICmp(const char *zLeft, const char *zRight){
   192   register unsigned char *a, *b;
   193   a = (unsigned char *)zLeft;
   194   b = (unsigned char *)zRight;
   195   while( *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; }
   196   return UpperToLower[*a] - UpperToLower[*b];
   197 }
   198 int sqlite3StrNICmp(const char *zLeft, const char *zRight, int N){
   199   register unsigned char *a, *b;
   200   a = (unsigned char *)zLeft;
   201   b = (unsigned char *)zRight;
   202   while( N-- > 0 && *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; }
   203   return N<0 ? 0 : UpperToLower[*a] - UpperToLower[*b];
   204 }
   205 
   206 /*
   207 ** Return TRUE if z is a pure numeric string.  Return FALSE if the
   208 ** string contains any character which is not part of a number. If
   209 ** the string is numeric and contains the '.' character, set *realnum
   210 ** to TRUE (otherwise FALSE).
   211 **
   212 ** An empty string is considered non-numeric.
   213 */
   214 int sqlite3IsNumber(const char *z, int *realnum, u8 enc){
   215   int incr = (enc==SQLITE_UTF8?1:2);
   216   if( enc==SQLITE_UTF16BE ) z++;
   217   if( *z=='-' || *z=='+' ) z += incr;
   218   if( !isdigit(*(u8*)z) ){
   219     return 0;
   220   }
   221   z += incr;
   222   if( realnum ) *realnum = 0;
   223   while( isdigit(*(u8*)z) ){ z += incr; }
   224   if( *z=='.' ){
   225     z += incr;
   226     if( !isdigit(*(u8*)z) ) return 0;
   227     while( isdigit(*(u8*)z) ){ z += incr; }
   228     if( realnum ) *realnum = 1;
   229   }
   230   if( *z=='e' || *z=='E' ){
   231     z += incr;
   232     if( *z=='+' || *z=='-' ) z += incr;
   233     if( !isdigit(*(u8*)z) ) return 0;
   234     while( isdigit(*(u8*)z) ){ z += incr; }
   235     if( realnum ) *realnum = 1;
   236   }
   237   return *z==0;
   238 }
   239 
   240 /*
   241 ** The string z[] is an ascii representation of a real number.
   242 ** Convert this string to a double.
   243 **
   244 ** This routine assumes that z[] really is a valid number.  If it
   245 ** is not, the result is undefined.
   246 **
   247 ** This routine is used instead of the library atof() function because
   248 ** the library atof() might want to use "," as the decimal point instead
   249 ** of "." depending on how locale is set.  But that would cause problems
   250 ** for SQL.  So this routine always uses "." regardless of locale.
   251 */
   252 int sqlite3AtoF(const char *z, double *pResult){
   253 #ifndef SQLITE_OMIT_FLOATING_POINT
   254   int sign = 1;
   255   const char *zBegin = z;
   256   LONGDOUBLE_TYPE v1 = 0.0;
   257   int nSignificant = 0;
   258   while( isspace(*(u8*)z) ) z++;
   259   if( *z=='-' ){
   260     sign = -1;
   261     z++;
   262   }else if( *z=='+' ){
   263     z++;
   264   }
   265   while( z[0]=='0' ){
   266     z++;
   267   }
   268   while( isdigit(*(u8*)z) ){
   269     v1 = v1*10.0 + (*z - '0');
   270     z++;
   271     nSignificant++;
   272   }
   273   if( *z=='.' ){
   274     LONGDOUBLE_TYPE divisor = 1.0;
   275     z++;
   276     if( nSignificant==0 ){
   277       while( z[0]=='0' ){
   278         divisor *= 10.0;
   279         z++;
   280       }
   281     }
   282     while( isdigit(*(u8*)z) ){
   283       if( nSignificant<18 ){
   284         v1 = v1*10.0 + (*z - '0');
   285         divisor *= 10.0;
   286         nSignificant++;
   287       }
   288       z++;
   289     }
   290     v1 /= divisor;
   291   }
   292   if( *z=='e' || *z=='E' ){
   293     int esign = 1;
   294     int eval = 0;
   295     LONGDOUBLE_TYPE scale = 1.0;
   296     z++;
   297     if( *z=='-' ){
   298       esign = -1;
   299       z++;
   300     }else if( *z=='+' ){
   301       z++;
   302     }
   303     while( isdigit(*(u8*)z) ){
   304       eval = eval*10 + *z - '0';
   305       z++;
   306     }
   307     while( eval>=64 ){ scale *= 1.0e+64; eval -= 64; }
   308     while( eval>=16 ){ scale *= 1.0e+16; eval -= 16; }
   309     while( eval>=4 ){ scale *= 1.0e+4; eval -= 4; }
   310     while( eval>=1 ){ scale *= 1.0e+1; eval -= 1; }
   311     if( esign<0 ){
   312       v1 /= scale;
   313     }else{
   314       v1 *= scale;
   315     }
   316   }
   317   *pResult = sign<0 ? -v1 : v1;
   318   return z - zBegin;
   319 #else
   320   return sqlite3Atoi64(z, pResult);
   321 #endif /* SQLITE_OMIT_FLOATING_POINT */
   322 }
   323 
   324 /*
   325 ** Compare the 19-character string zNum against the text representation
   326 ** value 2^63:  9223372036854775808.  Return negative, zero, or positive
   327 ** if zNum is less than, equal to, or greater than the string.
   328 **
   329 ** Unlike memcmp() this routine is guaranteed to return the difference
   330 ** in the values of the last digit if the only difference is in the
   331 ** last digit.  So, for example,
   332 **
   333 **      compare2pow63("9223372036854775800")
   334 **
   335 ** will return -8.
   336 */
   337 static int compare2pow63(const char *zNum){
   338   int c;
   339   c = memcmp(zNum,"922337203685477580",18);
   340   if( c==0 ){
   341     c = zNum[18] - '8';
   342   }
   343   return c;
   344 }
   345 
   346 
   347 /*
   348 ** Return TRUE if zNum is a 64-bit signed integer and write
   349 ** the value of the integer into *pNum.  If zNum is not an integer
   350 ** or is an integer that is too large to be expressed with 64 bits,
   351 ** then return false.
   352 **
   353 ** When this routine was originally written it dealt with only
   354 ** 32-bit numbers.  At that time, it was much faster than the
   355 ** atoi() library routine in RedHat 7.2.
   356 */
   357 int sqlite3Atoi64(const char *zNum, i64 *pNum){
   358   i64 v = 0;
   359   int neg;
   360   int i, c;
   361   const char *zStart;
   362   while( isspace(*(u8*)zNum) ) zNum++;
   363   if( *zNum=='-' ){
   364     neg = 1;
   365     zNum++;
   366   }else if( *zNum=='+' ){
   367     neg = 0;
   368     zNum++;
   369   }else{
   370     neg = 0;
   371   }
   372   zStart = zNum;
   373   while( zNum[0]=='0' ){ zNum++; } /* Skip over leading zeros. Ticket #2454 */
   374   for(i=0; (c=zNum[i])>='0' && c<='9'; i++){
   375     v = v*10 + c - '0';
   376   }
   377   *pNum = neg ? -v : v;
   378   if( c!=0 || (i==0 && zStart==zNum) || i>19 ){
   379     /* zNum is empty or contains non-numeric text or is longer
   380     ** than 19 digits (thus guaranting that it is too large) */
   381     return 0;
   382   }else if( i<19 ){
   383     /* Less than 19 digits, so we know that it fits in 64 bits */
   384     return 1;
   385   }else{
   386     /* 19-digit numbers must be no larger than 9223372036854775807 if positive
   387     ** or 9223372036854775808 if negative.  Note that 9223372036854665808
   388     ** is 2^63. */
   389     return compare2pow63(zNum)<neg;
   390   }
   391 }
   392 
   393 /*
   394 ** The string zNum represents an integer.  There might be some other
   395 ** information following the integer too, but that part is ignored.
   396 ** If the integer that the prefix of zNum represents will fit in a
   397 ** 64-bit signed integer, return TRUE.  Otherwise return FALSE.
   398 **
   399 ** This routine returns FALSE for the string -9223372036854775808 even that
   400 ** that number will, in theory fit in a 64-bit integer.  Positive
   401 ** 9223373036854775808 will not fit in 64 bits.  So it seems safer to return
   402 ** false.
   403 */
   404 int sqlite3FitsIn64Bits(const char *zNum, int negFlag){
   405   int i, c;
   406   int neg = 0;
   407   if( *zNum=='-' ){
   408     neg = 1;
   409     zNum++;
   410   }else if( *zNum=='+' ){
   411     zNum++;
   412   }
   413   if( negFlag ) neg = 1-neg;
   414   while( *zNum=='0' ){
   415     zNum++;   /* Skip leading zeros.  Ticket #2454 */
   416   }
   417   for(i=0; (c=zNum[i])>='0' && c<='9'; i++){}
   418   if( i<19 ){
   419     /* Guaranteed to fit if less than 19 digits */
   420     return 1;
   421   }else if( i>19 ){
   422     /* Guaranteed to be too big if greater than 19 digits */
   423     return 0;
   424   }else{
   425     /* Compare against 2^63. */
   426     return compare2pow63(zNum)<neg;
   427   }
   428 }
   429 
   430 /*
   431 ** If zNum represents an integer that will fit in 32-bits, then set
   432 ** *pValue to that integer and return true.  Otherwise return false.
   433 **
   434 ** Any non-numeric characters that following zNum are ignored.
   435 ** This is different from sqlite3Atoi64() which requires the
   436 ** input number to be zero-terminated.
   437 */
   438 int sqlite3GetInt32(const char *zNum, int *pValue){
   439   sqlite_int64 v = 0;
   440   int i, c;
   441   int neg = 0;
   442   if( zNum[0]=='-' ){
   443     neg = 1;
   444     zNum++;
   445   }else if( zNum[0]=='+' ){
   446     zNum++;
   447   }
   448   while( zNum[0]=='0' ) zNum++;
   449   for(i=0; i<11 && (c = zNum[i] - '0')>=0 && c<=9; i++){
   450     v = v*10 + c;
   451   }
   452 
   453   /* The longest decimal representation of a 32 bit integer is 10 digits:
   454   **
   455   **             1234567890
   456   **     2^31 -> 2147483648
   457   */
   458   if( i>10 ){
   459     return 0;
   460   }
   461   if( v-neg>2147483647 ){
   462     return 0;
   463   }
   464   if( neg ){
   465     v = -v;
   466   }
   467   *pValue = (int)v;
   468   return 1;
   469 }
   470 
   471 /*
   472 ** The variable-length integer encoding is as follows:
   473 **
   474 ** KEY:
   475 **         A = 0xxxxxxx    7 bits of data and one flag bit
   476 **         B = 1xxxxxxx    7 bits of data and one flag bit
   477 **         C = xxxxxxxx    8 bits of data
   478 **
   479 **  7 bits - A
   480 ** 14 bits - BA
   481 ** 21 bits - BBA
   482 ** 28 bits - BBBA
   483 ** 35 bits - BBBBA
   484 ** 42 bits - BBBBBA
   485 ** 49 bits - BBBBBBA
   486 ** 56 bits - BBBBBBBA
   487 ** 64 bits - BBBBBBBBC
   488 */
   489 
   490 /*
   491 ** Write a 64-bit variable-length integer to memory starting at p[0].
   492 ** The length of data write will be between 1 and 9 bytes.  The number
   493 ** of bytes written is returned.
   494 **
   495 ** A variable-length integer consists of the lower 7 bits of each byte
   496 ** for all bytes that have the 8th bit set and one byte with the 8th
   497 ** bit clear.  Except, if we get to the 9th byte, it stores the full
   498 ** 8 bits and is the last byte.
   499 */
   500 int sqlite3PutVarint(unsigned char *p, u64 v){
   501   int i, j, n;
   502   u8 buf[10];
   503   if( v & (((u64)0xff000000)<<32) ){
   504     p[8] = v;
   505     v >>= 8;
   506     for(i=7; i>=0; i--){
   507       p[i] = (v & 0x7f) | 0x80;
   508       v >>= 7;
   509     }
   510     return 9;
   511   }    
   512   n = 0;
   513   do{
   514     buf[n++] = (v & 0x7f) | 0x80;
   515     v >>= 7;
   516   }while( v!=0 );
   517   buf[0] &= 0x7f;
   518   assert( n<=9 );
   519   for(i=0, j=n-1; j>=0; j--, i++){
   520     p[i] = buf[j];
   521   }
   522   return n;
   523 }
   524 
   525 /*
   526 ** This routine is a faster version of sqlite3PutVarint() that only
   527 ** works for 32-bit positive integers and which is optimized for
   528 ** the common case of small integers.  A MACRO version, putVarint32,
   529 ** is provided which inlines the single-byte case.  All code should use
   530 ** the MACRO version as this function assumes the single-byte case has
   531 ** already been handled.
   532 */
   533 int sqlite3PutVarint32(unsigned char *p, u32 v){
   534 #ifndef putVarint32
   535   if( (v & ~0x7f)==0 ){
   536     p[0] = v;
   537     return 1;
   538   }
   539 #endif
   540   if( (v & ~0x3fff)==0 ){
   541     p[0] = (v>>7) | 0x80;
   542     p[1] = v & 0x7f;
   543     return 2;
   544   }
   545   return sqlite3PutVarint(p, v);
   546 }
   547 
   548 /*
   549 ** Bitmasks used by sqlite3GetVarint().  These precomputed constants
   550 ** are defined here rather than simply putting the constant expressions
   551 ** inline in order to work around bugs in the RVT compiler.
   552 **
   553 ** SLOT_2_0     A mask for  (0x7f<<14) | 0x7f
   554 **
   555 ** SLOT_4_2_0   A mask for  (0x7f<<28) | SLOT_2_0
   556 */
   557 #define SLOT_2_0     0x001fc07f
   558 #define SLOT_4_2_0   0xf01fc07f
   559 
   560 
   561 /*
   562 ** Read a 64-bit variable-length integer from memory starting at p[0].
   563 ** Return the number of bytes read.  The value is stored in *v.
   564 */
   565 int sqlite3GetVarint(const unsigned char *p, u64 *v){
   566   u32 a,b,s;
   567 
   568   a = *p;
   569   /* a: p0 (unmasked) */
   570   if (!(a&0x80))
   571   {
   572     *v = a;
   573     return 1;
   574   }
   575 
   576   p++;
   577   b = *p;
   578   /* b: p1 (unmasked) */
   579   if (!(b&0x80))
   580   {
   581     a &= 0x7f;
   582     a = a<<7;
   583     a |= b;
   584     *v = a;
   585     return 2;
   586   }
   587 
   588   /* Verify that constants are precomputed correctly */
   589   assert( SLOT_2_0 == ((0x7f<<14) | (0x7f)) );
   590   assert( SLOT_4_2_0 == ((0xf<<28) | (0x7f<<14) | (0x7f)) );
   591 
   592   p++;
   593   a = a<<14;
   594   a |= *p;
   595   /* a: p0<<14 | p2 (unmasked) */
   596   if (!(a&0x80))
   597   {
   598     a &= SLOT_2_0;
   599     b &= 0x7f;
   600     b = b<<7;
   601     a |= b;
   602     *v = a;
   603     return 3;
   604   }
   605 
   606   /* CSE1 from below */
   607   a &= SLOT_2_0;
   608   p++;
   609   b = b<<14;
   610   b |= *p;
   611   /* b: p1<<14 | p3 (unmasked) */
   612   if (!(b&0x80))
   613   {
   614     b &= SLOT_2_0;
   615     /* moved CSE1 up */
   616     /* a &= (0x7f<<14)|(0x7f); */
   617     a = a<<7;
   618     a |= b;
   619     *v = a;
   620     return 4;
   621   }
   622 
   623   /* a: p0<<14 | p2 (masked) */
   624   /* b: p1<<14 | p3 (unmasked) */
   625   /* 1:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */
   626   /* moved CSE1 up */
   627   /* a &= (0x7f<<14)|(0x7f); */
   628   b &= SLOT_2_0;
   629   s = a;
   630   /* s: p0<<14 | p2 (masked) */
   631 
   632   p++;
   633   a = a<<14;
   634   a |= *p;
   635   /* a: p0<<28 | p2<<14 | p4 (unmasked) */
   636   if (!(a&0x80))
   637   {
   638     /* we can skip these cause they were (effectively) done above in calc'ing s */
   639     /* a &= (0x7f<<28)|(0x7f<<14)|(0x7f); */
   640     /* b &= (0x7f<<14)|(0x7f); */
   641     b = b<<7;
   642     a |= b;
   643     s = s>>18;
   644     *v = ((u64)s)<<32 | a;
   645     return 5;
   646   }
   647 
   648   /* 2:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */
   649   s = s<<7;
   650   s |= b;
   651   /* s: p0<<21 | p1<<14 | p2<<7 | p3 (masked) */
   652 
   653   p++;
   654   b = b<<14;
   655   b |= *p;
   656   /* b: p1<<28 | p3<<14 | p5 (unmasked) */
   657   if (!(b&0x80))
   658   {
   659     /* we can skip this cause it was (effectively) done above in calc'ing s */
   660     /* b &= (0x7f<<28)|(0x7f<<14)|(0x7f); */
   661     a &= SLOT_2_0;
   662     a = a<<7;
   663     a |= b;
   664     s = s>>18;
   665     *v = ((u64)s)<<32 | a;
   666     return 6;
   667   }
   668 
   669   p++;
   670   a = a<<14;
   671   a |= *p;
   672   /* a: p2<<28 | p4<<14 | p6 (unmasked) */
   673   if (!(a&0x80))
   674   {
   675     a &= SLOT_4_2_0;
   676     b &= SLOT_2_0;
   677     b = b<<7;
   678     a |= b;
   679     s = s>>11;
   680     *v = ((u64)s)<<32 | a;
   681     return 7;
   682   }
   683 
   684   /* CSE2 from below */
   685   a &= SLOT_2_0;
   686   p++;
   687   b = b<<14;
   688   b |= *p;
   689   /* b: p3<<28 | p5<<14 | p7 (unmasked) */
   690   if (!(b&0x80))
   691   {
   692     b &= SLOT_4_2_0;
   693     /* moved CSE2 up */
   694     /* a &= (0x7f<<14)|(0x7f); */
   695     a = a<<7;
   696     a |= b;
   697     s = s>>4;
   698     *v = ((u64)s)<<32 | a;
   699     return 8;
   700   }
   701 
   702   p++;
   703   a = a<<15;
   704   a |= *p;
   705   /* a: p4<<29 | p6<<15 | p8 (unmasked) */
   706 
   707   /* moved CSE2 up */
   708   /* a &= (0x7f<<29)|(0x7f<<15)|(0xff); */
   709   b &= SLOT_2_0;
   710   b = b<<8;
   711   a |= b;
   712 
   713   s = s<<4;
   714   b = p[-4];
   715   b &= 0x7f;
   716   b = b>>3;
   717   s |= b;
   718 
   719   *v = ((u64)s)<<32 | a;
   720 
   721   return 9;
   722 }
   723 
   724 /*
   725 ** Read a 32-bit variable-length integer from memory starting at p[0].
   726 ** Return the number of bytes read.  The value is stored in *v.
   727 ** A MACRO version, getVarint32, is provided which inlines the 
   728 ** single-byte case.  All code should use the MACRO version as 
   729 ** this function assumes the single-byte case has already been handled.
   730 */
   731 int sqlite3GetVarint32(const unsigned char *p, u32 *v){
   732   u32 a,b;
   733 
   734   a = *p;
   735   /* a: p0 (unmasked) */
   736 #ifndef getVarint32
   737   if (!(a&0x80))
   738   {
   739     *v = a;
   740     return 1;
   741   }
   742 #endif
   743 
   744   p++;
   745   b = *p;
   746   /* b: p1 (unmasked) */
   747   if (!(b&0x80))
   748   {
   749     a &= 0x7f;
   750     a = a<<7;
   751     *v = a | b;
   752     return 2;
   753   }
   754 
   755   p++;
   756   a = a<<14;
   757   a |= *p;
   758   /* a: p0<<14 | p2 (unmasked) */
   759   if (!(a&0x80))
   760   {
   761     a &= (0x7f<<14)|(0x7f);
   762     b &= 0x7f;
   763     b = b<<7;
   764     *v = a | b;
   765     return 3;
   766   }
   767 
   768   p++;
   769   b = b<<14;
   770   b |= *p;
   771   /* b: p1<<14 | p3 (unmasked) */
   772   if (!(b&0x80))
   773   {
   774     b &= (0x7f<<14)|(0x7f);
   775     a &= (0x7f<<14)|(0x7f);
   776     a = a<<7;
   777     *v = a | b;
   778     return 4;
   779   }
   780 
   781   p++;
   782   a = a<<14;
   783   a |= *p;
   784   /* a: p0<<28 | p2<<14 | p4 (unmasked) */
   785   if (!(a&0x80))
   786   {
   787     a &= SLOT_4_2_0;
   788     b &= SLOT_4_2_0;
   789     b = b<<7;
   790     *v = a | b;
   791     return 5;
   792   }
   793 
   794   /* We can only reach this point when reading a corrupt database
   795   ** file.  In that case we are not in any hurry.  Use the (relatively
   796   ** slow) general-purpose sqlite3GetVarint() routine to extract the
   797   ** value. */
   798   {
   799     u64 v64;
   800     int n;
   801 
   802     p -= 4;
   803     n = sqlite3GetVarint(p, &v64);
   804     assert( n>5 && n<=9 );
   805     *v = (u32)v64;
   806     return n;
   807   }
   808 }
   809 
   810 /*
   811 ** Return the number of bytes that will be needed to store the given
   812 ** 64-bit integer.
   813 */
   814 int sqlite3VarintLen(u64 v){
   815   int i = 0;
   816   do{
   817     i++;
   818     v >>= 7;
   819   }while( v!=0 && i<9 );
   820   return i;
   821 }
   822 
   823 
   824 /*
   825 ** Read or write a four-byte big-endian integer value.
   826 */
   827 u32 sqlite3Get4byte(const u8 *p){
   828   return (p[0]<<24) | (p[1]<<16) | (p[2]<<8) | p[3];
   829 }
   830 void sqlite3Put4byte(unsigned char *p, u32 v){
   831   p[0] = v>>24;
   832   p[1] = v>>16;
   833   p[2] = v>>8;
   834   p[3] = v;
   835 }
   836 
   837 
   838 
   839 #if !defined(SQLITE_OMIT_BLOB_LITERAL) || defined(SQLITE_HAS_CODEC)
   840 /*
   841 ** Translate a single byte of Hex into an integer.
   842 ** This routinen only works if h really is a valid hexadecimal
   843 ** character:  0..9a..fA..F
   844 */
   845 static int hexToInt(int h){
   846   assert( (h>='0' && h<='9') ||  (h>='a' && h<='f') ||  (h>='A' && h<='F') );
   847 #ifdef SQLITE_ASCII
   848   h += 9*(1&(h>>6));
   849 #endif
   850 #ifdef SQLITE_EBCDIC
   851   h += 9*(1&~(h>>4));
   852 #endif
   853   return h & 0xf;
   854 }
   855 #endif /* !SQLITE_OMIT_BLOB_LITERAL || SQLITE_HAS_CODEC */
   856 
   857 #if !defined(SQLITE_OMIT_BLOB_LITERAL) || defined(SQLITE_HAS_CODEC)
   858 /*
   859 ** Convert a BLOB literal of the form "x'hhhhhh'" into its binary
   860 ** value.  Return a pointer to its binary value.  Space to hold the
   861 ** binary value has been obtained from malloc and must be freed by
   862 ** the calling routine.
   863 */
   864 void *sqlite3HexToBlob(sqlite3 *db, const char *z, int n){
   865   char *zBlob;
   866   int i;
   867 
   868   zBlob = (char *)sqlite3DbMallocRaw(db, n/2 + 1);
   869   n--;
   870   if( zBlob ){
   871     for(i=0; i<n; i+=2){
   872       zBlob[i/2] = (hexToInt(z[i])<<4) | hexToInt(z[i+1]);
   873     }
   874     zBlob[i/2] = 0;
   875   }
   876   return zBlob;
   877 }
   878 #endif /* !SQLITE_OMIT_BLOB_LITERAL || SQLITE_HAS_CODEC */
   879 
   880 
   881 /*
   882 ** Change the sqlite.magic from SQLITE_MAGIC_OPEN to SQLITE_MAGIC_BUSY.
   883 ** Return an error (non-zero) if the magic was not SQLITE_MAGIC_OPEN
   884 ** when this routine is called.
   885 **
   886 ** This routine is called when entering an SQLite API.  The SQLITE_MAGIC_OPEN
   887 ** value indicates that the database connection passed into the API is
   888 ** open and is not being used by another thread.  By changing the value
   889 ** to SQLITE_MAGIC_BUSY we indicate that the connection is in use.
   890 ** sqlite3SafetyOff() below will change the value back to SQLITE_MAGIC_OPEN
   891 ** when the API exits. 
   892 **
   893 ** This routine is a attempt to detect if two threads use the
   894 ** same sqlite* pointer at the same time.  There is a race 
   895 ** condition so it is possible that the error is not detected.
   896 ** But usually the problem will be seen.  The result will be an
   897 ** error which can be used to debug the application that is
   898 ** using SQLite incorrectly.
   899 **
   900 ** Ticket #202:  If db->magic is not a valid open value, take care not
   901 ** to modify the db structure at all.  It could be that db is a stale
   902 ** pointer.  In other words, it could be that there has been a prior
   903 ** call to sqlite3_close(db) and db has been deallocated.  And we do
   904 ** not want to write into deallocated memory.
   905 */
   906 #ifdef SQLITE_DEBUG
   907 int sqlite3SafetyOn(sqlite3 *db){
   908   if( db->magic==SQLITE_MAGIC_OPEN ){
   909     db->magic = SQLITE_MAGIC_BUSY;
   910     assert( sqlite3_mutex_held(db->mutex) );
   911     return 0;
   912   }else if( db->magic==SQLITE_MAGIC_BUSY ){
   913     db->magic = SQLITE_MAGIC_ERROR;
   914     db->u1.isInterrupted = 1;
   915   }
   916   return 1;
   917 }
   918 #endif
   919 
   920 /*
   921 ** Change the magic from SQLITE_MAGIC_BUSY to SQLITE_MAGIC_OPEN.
   922 ** Return an error (non-zero) if the magic was not SQLITE_MAGIC_BUSY
   923 ** when this routine is called.
   924 */
   925 #ifdef SQLITE_DEBUG
   926 int sqlite3SafetyOff(sqlite3 *db){
   927   if( db->magic==SQLITE_MAGIC_BUSY ){
   928     db->magic = SQLITE_MAGIC_OPEN;
   929     assert( sqlite3_mutex_held(db->mutex) );
   930     return 0;
   931   }else{
   932     db->magic = SQLITE_MAGIC_ERROR;
   933     db->u1.isInterrupted = 1;
   934     return 1;
   935   }
   936 }
   937 #endif
   938 
   939 /*
   940 ** Check to make sure we have a valid db pointer.  This test is not
   941 ** foolproof but it does provide some measure of protection against
   942 ** misuse of the interface such as passing in db pointers that are
   943 ** NULL or which have been previously closed.  If this routine returns
   944 ** 1 it means that the db pointer is valid and 0 if it should not be
   945 ** dereferenced for any reason.  The calling function should invoke
   946 ** SQLITE_MISUSE immediately.
   947 **
   948 ** sqlite3SafetyCheckOk() requires that the db pointer be valid for
   949 ** use.  sqlite3SafetyCheckSickOrOk() allows a db pointer that failed to
   950 ** open properly and is not fit for general use but which can be
   951 ** used as an argument to sqlite3_errmsg() or sqlite3_close().
   952 */
   953 int sqlite3SafetyCheckOk(sqlite3 *db){
   954   int magic;
   955   if( db==0 ) return 0;
   956   magic = db->magic;
   957   if( magic!=SQLITE_MAGIC_OPEN &&
   958       magic!=SQLITE_MAGIC_BUSY ) return 0;
   959   return 1;
   960 }
   961 int sqlite3SafetyCheckSickOrOk(sqlite3 *db){
   962   int magic;
   963   if( db==0 ) return 0;
   964   magic = db->magic;
   965   if( magic!=SQLITE_MAGIC_SICK &&
   966       magic!=SQLITE_MAGIC_OPEN &&
   967       magic!=SQLITE_MAGIC_BUSY ) return 0;
   968   return 1;
   969 }