Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
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.
11 *************************************************************************
12 ** Utility functions used throughout sqlite.
14 ** This file contains functions for allocating memory, comparing
15 ** strings, and stuff like that.
17 ** $Id: util.c,v 1.241 2008/07/28 19:34:54 drh Exp $
19 #include "sqliteInt.h"
25 ** Return true if the floating point value is Not a Number (NaN).
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
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.
37 ** Under MSVC, this NaN test may fail if compiled with a floating-
38 ** point precision mode other than /fp:precise. From the MSDN
41 ** The compiler [with /fp:precise] will properly handle comparisons
42 ** involving NaN. For example, x != x evaluates to true if x is NaN
46 # error SQLite will not work correctly with the -ffast-math option of GCC.
48 volatile double y = x;
49 volatile double z = y;
54 ** Return the length of a string, except do not allow the string length
55 ** to exceed the SQLITE_LIMIT_LENGTH setting.
57 int sqlite3Strlen(sqlite3 *db, const char *z){
64 if( len!=x || len > db->aLimit[SQLITE_LIMIT_LENGTH] ){
65 return db->aLimit[SQLITE_LIMIT_LENGTH];
72 ** Set the most recent error code and error string for the sqlite
73 ** handle "db". The error code is set to "err_code".
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:
80 ** %z A string that should be freed after use
81 ** %d Insert an integer
83 ** %S Insert the first element of a SrcList
85 ** zFormat and any string tokens that follow it are assumed to be
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
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;
98 va_start(ap, zFormat);
99 z = sqlite3VMPrintf(db, zFormat, ap);
101 sqlite3ValueSetStr(db->pErr, -1, z, SQLITE_UTF8, SQLITE_DYNAMIC);
103 sqlite3ValueSetStr(db->pErr, 0, 0, SQLITE_UTF8, SQLITE_STATIC);
109 ** Add an error message to pParse->zErrMsg and increment pParse->nErr.
110 ** The following formatting characters are allowed:
112 ** %s Insert a string
113 ** %z A string that should be freed after use
114 ** %d Insert an integer
116 ** %S Insert the first element of a SrcList
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.).
125 void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){
127 sqlite3 *db = pParse->db;
129 sqlite3DbFree(db, pParse->zErrMsg);
130 va_start(ap, zFormat);
131 pParse->zErrMsg = sqlite3VMPrintf(db, zFormat, ap);
133 if( pParse->rc==SQLITE_OK ){
134 pParse->rc = SQLITE_ERROR;
139 ** Clear the error message in pParse, if any
141 void sqlite3ErrorClear(Parse *pParse){
142 sqlite3DbFree(pParse->db, pParse->zErrMsg);
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
153 ** 2002-Feb-14: This routine is extended to remove MS-Access style
154 ** brackets from around identifers. For example: "[a-b-c]" becomes
157 void sqlite3Dequote(char *z){
165 case '`': break; /* For MySQL compatibility */
166 case '[': quote = ']'; break; /* For MS SqlServer compatibility */
169 for(i=1, j=0; z[i]; i++){
184 /* Convenient short-hand */
185 #define UpperToLower sqlite3UpperToLower
188 ** Some systems have stricmp(). Others have strcasecmp(). Because
189 ** there is no consistency, we will define our own.
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];
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];
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).
212 ** An empty string is considered non-numeric.
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) ){
222 if( realnum ) *realnum = 0;
223 while( isdigit(*(u8*)z) ){ z += incr; }
226 if( !isdigit(*(u8*)z) ) return 0;
227 while( isdigit(*(u8*)z) ){ z += incr; }
228 if( realnum ) *realnum = 1;
230 if( *z=='e' || *z=='E' ){
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;
241 ** The string z[] is an ascii representation of a real number.
242 ** Convert this string to a double.
244 ** This routine assumes that z[] really is a valid number. If it
245 ** is not, the result is undefined.
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.
252 int sqlite3AtoF(const char *z, double *pResult){
253 #ifndef SQLITE_OMIT_FLOATING_POINT
255 const char *zBegin = z;
256 LONGDOUBLE_TYPE v1 = 0.0;
257 int nSignificant = 0;
258 while( isspace(*(u8*)z) ) z++;
268 while( isdigit(*(u8*)z) ){
269 v1 = v1*10.0 + (*z - '0');
274 LONGDOUBLE_TYPE divisor = 1.0;
276 if( nSignificant==0 ){
282 while( isdigit(*(u8*)z) ){
283 if( nSignificant<18 ){
284 v1 = v1*10.0 + (*z - '0');
292 if( *z=='e' || *z=='E' ){
295 LONGDOUBLE_TYPE scale = 1.0;
303 while( isdigit(*(u8*)z) ){
304 eval = eval*10 + *z - '0';
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; }
317 *pResult = sign<0 ? -v1 : v1;
320 return sqlite3Atoi64(z, pResult);
321 #endif /* SQLITE_OMIT_FLOATING_POINT */
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.
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,
333 ** compare2pow63("9223372036854775800")
337 static int compare2pow63(const char *zNum){
339 c = memcmp(zNum,"922337203685477580",18);
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.
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.
357 int sqlite3Atoi64(const char *zNum, i64 *pNum){
362 while( isspace(*(u8*)zNum) ) zNum++;
366 }else if( *zNum=='+' ){
373 while( zNum[0]=='0' ){ zNum++; } /* Skip over leading zeros. Ticket #2454 */
374 for(i=0; (c=zNum[i])>='0' && c<='9'; i++){
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) */
383 /* Less than 19 digits, so we know that it fits in 64 bits */
386 /* 19-digit numbers must be no larger than 9223372036854775807 if positive
387 ** or 9223372036854775808 if negative. Note that 9223372036854665808
389 return compare2pow63(zNum)<neg;
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.
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
404 int sqlite3FitsIn64Bits(const char *zNum, int negFlag){
410 }else if( *zNum=='+' ){
413 if( negFlag ) neg = 1-neg;
415 zNum++; /* Skip leading zeros. Ticket #2454 */
417 for(i=0; (c=zNum[i])>='0' && c<='9'; i++){}
419 /* Guaranteed to fit if less than 19 digits */
422 /* Guaranteed to be too big if greater than 19 digits */
425 /* Compare against 2^63. */
426 return compare2pow63(zNum)<neg;
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.
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.
438 int sqlite3GetInt32(const char *zNum, int *pValue){
445 }else if( zNum[0]=='+' ){
448 while( zNum[0]=='0' ) zNum++;
449 for(i=0; i<11 && (c = zNum[i] - '0')>=0 && c<=9; i++){
453 /* The longest decimal representation of a 32 bit integer is 10 digits:
456 ** 2^31 -> 2147483648
461 if( v-neg>2147483647 ){
472 ** The variable-length integer encoding is as follows:
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
486 ** 56 bits - BBBBBBBA
487 ** 64 bits - BBBBBBBBC
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.
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.
500 int sqlite3PutVarint(unsigned char *p, u64 v){
503 if( v & (((u64)0xff000000)<<32) ){
507 p[i] = (v & 0x7f) | 0x80;
514 buf[n++] = (v & 0x7f) | 0x80;
519 for(i=0, j=n-1; j>=0; j--, i++){
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.
533 int sqlite3PutVarint32(unsigned char *p, u32 v){
535 if( (v & ~0x7f)==0 ){
540 if( (v & ~0x3fff)==0 ){
541 p[0] = (v>>7) | 0x80;
545 return sqlite3PutVarint(p, v);
549 ** Read a 64-bit variable-length integer from memory starting at p[0].
550 ** Return the number of bytes read. The value is stored in *v.
552 int sqlite3GetVarint(const unsigned char *p, u64 *v){
556 /* a: p0 (unmasked) */
565 /* b: p1 (unmasked) */
578 /* a: p0<<14 | p2 (unmasked) */
581 a &= (0x7f<<14)|(0x7f);
589 /* CSE1 from below */
590 a &= (0x7f<<14)|(0x7f);
594 /* b: p1<<14 | p3 (unmasked) */
597 b &= (0x7f<<14)|(0x7f);
599 /* a &= (0x7f<<14)|(0x7f); */
606 /* a: p0<<14 | p2 (masked) */
607 /* b: p1<<14 | p3 (unmasked) */
608 /* 1:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */
610 /* a &= (0x7f<<14)|(0x7f); */
611 b &= (0x7f<<14)|(0x7f);
613 /* s: p0<<14 | p2 (masked) */
618 /* a: p0<<28 | p2<<14 | p4 (unmasked) */
621 /* we can skip these cause they were (effectively) done above in calc'ing s */
622 /* a &= (0x7f<<28)|(0x7f<<14)|(0x7f); */
623 /* b &= (0x7f<<14)|(0x7f); */
627 *v = ((u64)s)<<32 | a;
631 /* 2:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */
634 /* s: p0<<21 | p1<<14 | p2<<7 | p3 (masked) */
639 /* b: p1<<28 | p3<<14 | p5 (unmasked) */
642 /* we can skip this cause it was (effectively) done above in calc'ing s */
643 /* b &= (0x7f<<28)|(0x7f<<14)|(0x7f); */
644 a &= (0x7f<<14)|(0x7f);
648 *v = ((u64)s)<<32 | a;
655 /* a: p2<<28 | p4<<14 | p6 (unmasked) */
658 a &= (0x7f<<28)|(0x7f<<14)|(0x7f);
659 b &= (0x7f<<14)|(0x7f);
663 *v = ((u64)s)<<32 | a;
667 /* CSE2 from below */
668 a &= (0x7f<<14)|(0x7f);
672 /* b: p3<<28 | p5<<14 | p7 (unmasked) */
675 b &= (0x7f<<28)|(0x7f<<14)|(0x7f);
677 /* a &= (0x7f<<14)|(0x7f); */
681 *v = ((u64)s)<<32 | a;
688 /* a: p4<<29 | p6<<15 | p8 (unmasked) */
691 /* a &= (0x7f<<29)|(0x7f<<15)|(0xff); */
692 b &= (0x7f<<14)|(0x7f);
702 *v = ((u64)s)<<32 | a;
708 ** Read a 32-bit variable-length integer from memory starting at p[0].
709 ** Return the number of bytes read. The value is stored in *v.
710 ** A MACRO version, getVarint32, is provided which inlines the
711 ** single-byte case. All code should use the MACRO version as
712 ** this function assumes the single-byte case has already been handled.
714 int sqlite3GetVarint32(const unsigned char *p, u32 *v){
718 /* a: p0 (unmasked) */
729 /* b: p1 (unmasked) */
741 /* a: p0<<14 | p2 (unmasked) */
744 a &= (0x7f<<14)|(0x7f);
754 /* b: p1<<14 | p3 (unmasked) */
757 b &= (0x7f<<14)|(0x7f);
758 a &= (0x7f<<14)|(0x7f);
767 /* a: p0<<28 | p2<<14 | p4 (unmasked) */
770 a &= (0x7f<<28)|(0x7f<<14)|(0x7f);
771 b &= (0x7f<<28)|(0x7f<<14)|(0x7f);
777 /* We can only reach this point when reading a corrupt database
778 ** file. In that case we are not in any hurry. Use the (relatively
779 ** slow) general-purpose sqlite3GetVarint() routine to extract the
786 n = sqlite3GetVarint(p, &v64);
787 assert( n>5 && n<=9 );
794 ** Return the number of bytes that will be needed to store the given
797 int sqlite3VarintLen(u64 v){
802 }while( v!=0 && i<9 );
808 ** Read or write a four-byte big-endian integer value.
810 u32 sqlite3Get4byte(const u8 *p){
811 return (p[0]<<24) | (p[1]<<16) | (p[2]<<8) | p[3];
813 void sqlite3Put4byte(unsigned char *p, u32 v){
822 #if !defined(SQLITE_OMIT_BLOB_LITERAL) || defined(SQLITE_HAS_CODEC)
824 ** Translate a single byte of Hex into an integer.
825 ** This routinen only works if h really is a valid hexadecimal
826 ** character: 0..9a..fA..F
828 static int hexToInt(int h){
829 assert( (h>='0' && h<='9') || (h>='a' && h<='f') || (h>='A' && h<='F') );
838 #endif /* !SQLITE_OMIT_BLOB_LITERAL || SQLITE_HAS_CODEC */
840 #if !defined(SQLITE_OMIT_BLOB_LITERAL) || defined(SQLITE_HAS_CODEC)
842 ** Convert a BLOB literal of the form "x'hhhhhh'" into its binary
843 ** value. Return a pointer to its binary value. Space to hold the
844 ** binary value has been obtained from malloc and must be freed by
845 ** the calling routine.
847 void *sqlite3HexToBlob(sqlite3 *db, const char *z, int n){
851 zBlob = (char *)sqlite3DbMallocRaw(db, n/2 + 1);
855 zBlob[i/2] = (hexToInt(z[i])<<4) | hexToInt(z[i+1]);
861 #endif /* !SQLITE_OMIT_BLOB_LITERAL || SQLITE_HAS_CODEC */
865 ** Change the sqlite.magic from SQLITE_MAGIC_OPEN to SQLITE_MAGIC_BUSY.
866 ** Return an error (non-zero) if the magic was not SQLITE_MAGIC_OPEN
867 ** when this routine is called.
869 ** This routine is called when entering an SQLite API. The SQLITE_MAGIC_OPEN
870 ** value indicates that the database connection passed into the API is
871 ** open and is not being used by another thread. By changing the value
872 ** to SQLITE_MAGIC_BUSY we indicate that the connection is in use.
873 ** sqlite3SafetyOff() below will change the value back to SQLITE_MAGIC_OPEN
874 ** when the API exits.
876 ** This routine is a attempt to detect if two threads use the
877 ** same sqlite* pointer at the same time. There is a race
878 ** condition so it is possible that the error is not detected.
879 ** But usually the problem will be seen. The result will be an
880 ** error which can be used to debug the application that is
881 ** using SQLite incorrectly.
883 ** Ticket #202: If db->magic is not a valid open value, take care not
884 ** to modify the db structure at all. It could be that db is a stale
885 ** pointer. In other words, it could be that there has been a prior
886 ** call to sqlite3_close(db) and db has been deallocated. And we do
887 ** not want to write into deallocated memory.
890 int sqlite3SafetyOn(sqlite3 *db){
891 if( db->magic==SQLITE_MAGIC_OPEN ){
892 db->magic = SQLITE_MAGIC_BUSY;
893 assert( sqlite3_mutex_held(db->mutex) );
895 }else if( db->magic==SQLITE_MAGIC_BUSY ){
896 db->magic = SQLITE_MAGIC_ERROR;
897 db->u1.isInterrupted = 1;
904 ** Change the magic from SQLITE_MAGIC_BUSY to SQLITE_MAGIC_OPEN.
905 ** Return an error (non-zero) if the magic was not SQLITE_MAGIC_BUSY
906 ** when this routine is called.
909 int sqlite3SafetyOff(sqlite3 *db){
910 if( db->magic==SQLITE_MAGIC_BUSY ){
911 db->magic = SQLITE_MAGIC_OPEN;
912 assert( sqlite3_mutex_held(db->mutex) );
915 db->magic = SQLITE_MAGIC_ERROR;
916 db->u1.isInterrupted = 1;
923 ** Check to make sure we have a valid db pointer. This test is not
924 ** foolproof but it does provide some measure of protection against
925 ** misuse of the interface such as passing in db pointers that are
926 ** NULL or which have been previously closed. If this routine returns
927 ** 1 it means that the db pointer is valid and 0 if it should not be
928 ** dereferenced for any reason. The calling function should invoke
929 ** SQLITE_MISUSE immediately.
931 ** sqlite3SafetyCheckOk() requires that the db pointer be valid for
932 ** use. sqlite3SafetyCheckSickOrOk() allows a db pointer that failed to
933 ** open properly and is not fit for general use but which can be
934 ** used as an argument to sqlite3_errmsg() or sqlite3_close().
936 int sqlite3SafetyCheckOk(sqlite3 *db){
938 if( db==0 ) return 0;
940 if( magic!=SQLITE_MAGIC_OPEN &&
941 magic!=SQLITE_MAGIC_BUSY ) return 0;
944 int sqlite3SafetyCheckSickOrOk(sqlite3 *db){
946 if( db==0 ) return 0;
948 if( magic!=SQLITE_MAGIC_SICK &&
949 magic!=SQLITE_MAGIC_OPEN &&
950 magic!=SQLITE_MAGIC_BUSY ) return 0;