xref: /sqlite-3.40.0/src/callback.c (revision 1feeaed2)
1fd9a0a45Sdanielk1977 /*
2fd9a0a45Sdanielk1977 ** 2005 May 23
3fd9a0a45Sdanielk1977 **
4fd9a0a45Sdanielk1977 ** The author disclaims copyright to this source code.  In place of
5fd9a0a45Sdanielk1977 ** a legal notice, here is a blessing:
6fd9a0a45Sdanielk1977 **
7fd9a0a45Sdanielk1977 **    May you do good and not evil.
8fd9a0a45Sdanielk1977 **    May you find forgiveness for yourself and forgive others.
9fd9a0a45Sdanielk1977 **    May you share freely, never taking more than you give.
10fd9a0a45Sdanielk1977 **
11fd9a0a45Sdanielk1977 *************************************************************************
12fd9a0a45Sdanielk1977 **
13fd9a0a45Sdanielk1977 ** This file contains functions used to access the internal hash tables
14fd9a0a45Sdanielk1977 ** of user defined functions and collation sequences.
15fd9a0a45Sdanielk1977 */
16fd9a0a45Sdanielk1977 
17fd9a0a45Sdanielk1977 #include "sqliteInt.h"
18fd9a0a45Sdanielk1977 
19fd9a0a45Sdanielk1977 /*
204dade037Sdanielk1977 ** Invoke the 'collation needed' callback to request a collation sequence
219aeda79cSdrh ** in the encoding enc of name zName, length nName.
224dade037Sdanielk1977 */
239aeda79cSdrh static void callCollNeeded(sqlite3 *db, int enc, const char *zName){
244dade037Sdanielk1977   assert( !db->xCollNeeded || !db->xCollNeeded16 );
254dade037Sdanielk1977   if( db->xCollNeeded ){
26c4a64facSdrh     char *zExternal = sqlite3DbStrDup(db, zName);
274dade037Sdanielk1977     if( !zExternal ) return;
289aeda79cSdrh     db->xCollNeeded(db->pCollNeededArg, db, enc, zExternal);
29633e6d57Sdrh     sqlite3DbFree(db, zExternal);
304dade037Sdanielk1977   }
314dade037Sdanielk1977 #ifndef SQLITE_OMIT_UTF16
324dade037Sdanielk1977   if( db->xCollNeeded16 ){
334dade037Sdanielk1977     char const *zExternal;
341e536953Sdanielk1977     sqlite3_value *pTmp = sqlite3ValueNew(db);
35c4a64facSdrh     sqlite3ValueSetStr(pTmp, -1, zName, SQLITE_UTF8, SQLITE_STATIC);
36b21c8cd4Sdrh     zExternal = sqlite3ValueText(pTmp, SQLITE_UTF16NATIVE);
3726abcb1eSdrh     if( zExternal ){
3814db2665Sdanielk1977       db->xCollNeeded16(db->pCollNeededArg, db, (int)ENC(db), zExternal);
394dade037Sdanielk1977     }
4026abcb1eSdrh     sqlite3ValueFree(pTmp);
4126abcb1eSdrh   }
424dade037Sdanielk1977 #endif
434dade037Sdanielk1977 }
444dade037Sdanielk1977 
454dade037Sdanielk1977 /*
464dade037Sdanielk1977 ** This routine is called if the collation factory fails to deliver a
474dade037Sdanielk1977 ** collation function in the best encoding but there may be other versions
484dade037Sdanielk1977 ** of this collation function (for other text encodings) available. Use one
494dade037Sdanielk1977 ** of these instead if they exist. Avoid a UTF-8 <-> UTF-16 conversion if
504dade037Sdanielk1977 ** possible.
514dade037Sdanielk1977 */
524dade037Sdanielk1977 static int synthCollSeq(sqlite3 *db, CollSeq *pColl){
534dade037Sdanielk1977   CollSeq *pColl2;
544dade037Sdanielk1977   char *z = pColl->zName;
554dade037Sdanielk1977   int i;
564dade037Sdanielk1977   static const u8 aEnc[] = { SQLITE_UTF16BE, SQLITE_UTF16LE, SQLITE_UTF8 };
574dade037Sdanielk1977   for(i=0; i<3; i++){
58c4a64facSdrh     pColl2 = sqlite3FindCollSeq(db, aEnc[i], z, 0);
594dade037Sdanielk1977     if( pColl2->xCmp!=0 ){
604dade037Sdanielk1977       memcpy(pColl, pColl2, sizeof(CollSeq));
61a9808b31Sdanielk1977       pColl->xDel = 0;         /* Do not copy the destructor */
624dade037Sdanielk1977       return SQLITE_OK;
634dade037Sdanielk1977     }
644dade037Sdanielk1977   }
654dade037Sdanielk1977   return SQLITE_ERROR;
664dade037Sdanielk1977 }
674dade037Sdanielk1977 
684dade037Sdanielk1977 /*
694dade037Sdanielk1977 ** This function is responsible for invoking the collation factory callback
704dade037Sdanielk1977 ** or substituting a collation sequence of a different encoding when the
719aeda79cSdrh ** requested collation sequence is not available in the desired encoding.
724dade037Sdanielk1977 **
734dade037Sdanielk1977 ** If it is not NULL, then pColl must point to the database native encoding
744dade037Sdanielk1977 ** collation sequence with name zName, length nName.
754dade037Sdanielk1977 **
764dade037Sdanielk1977 ** The return value is either the collation sequence to be used in database
774dade037Sdanielk1977 ** db for collation type name zName, length nName, or NULL, if no collation
784dade037Sdanielk1977 ** sequence can be found.
79c4a64facSdrh **
80c4a64facSdrh ** See also: sqlite3LocateCollSeq(), sqlite3FindCollSeq()
814dade037Sdanielk1977 */
824dade037Sdanielk1977 CollSeq *sqlite3GetCollSeq(
83c4a64facSdrh   sqlite3* db,          /* The database connection */
84cea72b2dSshane   u8 enc,               /* The desired encoding for the collating sequence */
85c4a64facSdrh   CollSeq *pColl,       /* Collating sequence with native encoding, or NULL */
86c4a64facSdrh   const char *zName     /* Collating sequence name */
874dade037Sdanielk1977 ){
884dade037Sdanielk1977   CollSeq *p;
894dade037Sdanielk1977 
904dade037Sdanielk1977   p = pColl;
914dade037Sdanielk1977   if( !p ){
929aeda79cSdrh     p = sqlite3FindCollSeq(db, enc, zName, 0);
934dade037Sdanielk1977   }
944dade037Sdanielk1977   if( !p || !p->xCmp ){
954dade037Sdanielk1977     /* No collation sequence of this type for this encoding is registered.
964dade037Sdanielk1977     ** Call the collation factory to see if it can supply us with one.
974dade037Sdanielk1977     */
989aeda79cSdrh     callCollNeeded(db, enc, zName);
999aeda79cSdrh     p = sqlite3FindCollSeq(db, enc, zName, 0);
1004dade037Sdanielk1977   }
1014dade037Sdanielk1977   if( p && !p->xCmp && synthCollSeq(db, p) ){
1024dade037Sdanielk1977     p = 0;
1034dade037Sdanielk1977   }
1044dade037Sdanielk1977   assert( !p || p->xCmp );
1054dade037Sdanielk1977   return p;
1064dade037Sdanielk1977 }
1074dade037Sdanielk1977 
1084dade037Sdanielk1977 /*
1094dade037Sdanielk1977 ** This routine is called on a collation sequence before it is used to
1104dade037Sdanielk1977 ** check that it is defined. An undefined collation sequence exists when
1114dade037Sdanielk1977 ** a database is loaded that contains references to collation sequences
1124dade037Sdanielk1977 ** that have not been defined by sqlite3_create_collation() etc.
1134dade037Sdanielk1977 **
1144dade037Sdanielk1977 ** If required, this routine calls the 'collation needed' callback to
1154dade037Sdanielk1977 ** request a definition of the collating sequence. If this doesn't work,
1164dade037Sdanielk1977 ** an equivalent collating sequence that uses a text encoding different
1174dade037Sdanielk1977 ** from the main database is substituted, if one is available.
1184dade037Sdanielk1977 */
1194dade037Sdanielk1977 int sqlite3CheckCollSeq(Parse *pParse, CollSeq *pColl){
1204dade037Sdanielk1977   if( pColl ){
1214dade037Sdanielk1977     const char *zName = pColl->zName;
1229aeda79cSdrh     sqlite3 *db = pParse->db;
1239aeda79cSdrh     CollSeq *p = sqlite3GetCollSeq(db, ENC(db), pColl, zName);
1244dade037Sdanielk1977     if( !p ){
1254dade037Sdanielk1977       sqlite3ErrorMsg(pParse, "no such collation sequence: %s", zName);
1264dade037Sdanielk1977       pParse->nErr++;
1274dade037Sdanielk1977       return SQLITE_ERROR;
1284dade037Sdanielk1977     }
129b3bf556eSdanielk1977     assert( p==pColl );
1304dade037Sdanielk1977   }
1314dade037Sdanielk1977   return SQLITE_OK;
1324dade037Sdanielk1977 }
1334dade037Sdanielk1977 
1344dade037Sdanielk1977 
1354dade037Sdanielk1977 
1364dade037Sdanielk1977 /*
137fd9a0a45Sdanielk1977 ** Locate and return an entry from the db.aCollSeq hash table. If the entry
138fd9a0a45Sdanielk1977 ** specified by zName and nName is not found and parameter 'create' is
139fd9a0a45Sdanielk1977 ** true, then create a new entry. Otherwise return NULL.
140fd9a0a45Sdanielk1977 **
141fd9a0a45Sdanielk1977 ** Each pointer stored in the sqlite3.aCollSeq hash table contains an
142fd9a0a45Sdanielk1977 ** array of three CollSeq structures. The first is the collation sequence
143fd9a0a45Sdanielk1977 ** prefferred for UTF-8, the second UTF-16le, and the third UTF-16be.
144fd9a0a45Sdanielk1977 **
145fd9a0a45Sdanielk1977 ** Stored immediately after the three collation sequences is a copy of
146fd9a0a45Sdanielk1977 ** the collation sequence name. A pointer to this string is stored in
147fd9a0a45Sdanielk1977 ** each collation sequence structure.
148fd9a0a45Sdanielk1977 */
149fd9a0a45Sdanielk1977 static CollSeq *findCollSeqEntry(
150c4a64facSdrh   sqlite3 *db,          /* Database connection */
151c4a64facSdrh   const char *zName,    /* Name of the collating sequence */
152c4a64facSdrh   int create            /* Create a new entry if true */
153fd9a0a45Sdanielk1977 ){
154fd9a0a45Sdanielk1977   CollSeq *pColl;
155c4a64facSdrh   int nName = sqlite3Strlen30(zName);
156fd9a0a45Sdanielk1977   pColl = sqlite3HashFind(&db->aCollSeq, zName, nName);
157fd9a0a45Sdanielk1977 
158fd9a0a45Sdanielk1977   if( 0==pColl && create ){
15917435752Sdrh     pColl = sqlite3DbMallocZero(db, 3*sizeof(*pColl) + nName + 1 );
160fd9a0a45Sdanielk1977     if( pColl ){
161fd9a0a45Sdanielk1977       CollSeq *pDel = 0;
162fd9a0a45Sdanielk1977       pColl[0].zName = (char*)&pColl[3];
163fd9a0a45Sdanielk1977       pColl[0].enc = SQLITE_UTF8;
164fd9a0a45Sdanielk1977       pColl[1].zName = (char*)&pColl[3];
165fd9a0a45Sdanielk1977       pColl[1].enc = SQLITE_UTF16LE;
166fd9a0a45Sdanielk1977       pColl[2].zName = (char*)&pColl[3];
167fd9a0a45Sdanielk1977       pColl[2].enc = SQLITE_UTF16BE;
168fd9a0a45Sdanielk1977       memcpy(pColl[0].zName, zName, nName);
169fd9a0a45Sdanielk1977       pColl[0].zName[nName] = 0;
170fd9a0a45Sdanielk1977       pDel = sqlite3HashInsert(&db->aCollSeq, pColl[0].zName, nName, pColl);
171fd9a0a45Sdanielk1977 
172be217793Sshane       /* If a malloc() failure occurred in sqlite3HashInsert(), it will
173fd9a0a45Sdanielk1977       ** return the pColl pointer to be deleted (because it wasn't added
174fd9a0a45Sdanielk1977       ** to the hash table).
175fd9a0a45Sdanielk1977       */
176f3a65f7eSdrh       assert( pDel==0 || pDel==pColl );
177f3a65f7eSdrh       if( pDel!=0 ){
178f3a65f7eSdrh         db->mallocFailed = 1;
179633e6d57Sdrh         sqlite3DbFree(db, pDel);
18091171cdeSdrh         pColl = 0;
18191171cdeSdrh       }
182fd9a0a45Sdanielk1977     }
183fd9a0a45Sdanielk1977   }
184fd9a0a45Sdanielk1977   return pColl;
185fd9a0a45Sdanielk1977 }
186fd9a0a45Sdanielk1977 
187fd9a0a45Sdanielk1977 /*
188fd9a0a45Sdanielk1977 ** Parameter zName points to a UTF-8 encoded string nName bytes long.
189fd9a0a45Sdanielk1977 ** Return the CollSeq* pointer for the collation sequence named zName
190fd9a0a45Sdanielk1977 ** for the encoding 'enc' from the database 'db'.
191fd9a0a45Sdanielk1977 **
192fd9a0a45Sdanielk1977 ** If the entry specified is not found and 'create' is true, then create a
193fd9a0a45Sdanielk1977 ** new entry.  Otherwise return NULL.
194a34001c9Sdrh **
195a34001c9Sdrh ** A separate function sqlite3LocateCollSeq() is a wrapper around
196a34001c9Sdrh ** this routine.  sqlite3LocateCollSeq() invokes the collation factory
197a34001c9Sdrh ** if necessary and generates an error message if the collating sequence
198a34001c9Sdrh ** cannot be found.
199c4a64facSdrh **
200c4a64facSdrh ** See also: sqlite3LocateCollSeq(), sqlite3GetCollSeq()
201fd9a0a45Sdanielk1977 */
202fd9a0a45Sdanielk1977 CollSeq *sqlite3FindCollSeq(
203fd9a0a45Sdanielk1977   sqlite3 *db,
204fd9a0a45Sdanielk1977   u8 enc,
205fd9a0a45Sdanielk1977   const char *zName,
206fd9a0a45Sdanielk1977   int create
207fd9a0a45Sdanielk1977 ){
208b3bf556eSdanielk1977   CollSeq *pColl;
209b3bf556eSdanielk1977   if( zName ){
210c4a64facSdrh     pColl = findCollSeqEntry(db, zName, create);
211b3bf556eSdanielk1977   }else{
212b3bf556eSdanielk1977     pColl = db->pDfltColl;
213b3bf556eSdanielk1977   }
214fd9a0a45Sdanielk1977   assert( SQLITE_UTF8==1 && SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 );
215fd9a0a45Sdanielk1977   assert( enc>=SQLITE_UTF8 && enc<=SQLITE_UTF16BE );
216fd9a0a45Sdanielk1977   if( pColl ) pColl += enc-1;
217fd9a0a45Sdanielk1977   return pColl;
218fd9a0a45Sdanielk1977 }
219fd9a0a45Sdanielk1977 
2208c0a791aSdanielk1977 /* During the search for the best function definition, this procedure
2218c0a791aSdanielk1977 ** is called to test how well the function passed as the first argument
2228c0a791aSdanielk1977 ** matches the request for a function with nArg arguments in a system
2238c0a791aSdanielk1977 ** that uses encoding enc. The value returned indicates how well the
2248c0a791aSdanielk1977 ** request is matched. A higher value indicates a better match.
2258c0a791aSdanielk1977 **
226dfbc3a8aSdrh ** The returned value is always between 0 and 6, as follows:
2278c0a791aSdanielk1977 **
228dfbc3a8aSdrh ** 0: Not a match, or if nArg<0 and the function is has no implementation.
2298c0a791aSdanielk1977 ** 1: A variable arguments function that prefers UTF-8 when a UTF-16
2308c0a791aSdanielk1977 **    encoding is requested, or vice versa.
2318c0a791aSdanielk1977 ** 2: A variable arguments function that uses UTF-16BE when UTF-16LE is
2328c0a791aSdanielk1977 **    requested, or vice versa.
2338c0a791aSdanielk1977 ** 3: A variable arguments function using the same text encoding.
2348c0a791aSdanielk1977 ** 4: A function with the exact number of arguments requested that
2358c0a791aSdanielk1977 **    prefers UTF-8 when a UTF-16 encoding is requested, or vice versa.
2368c0a791aSdanielk1977 ** 5: A function with the exact number of arguments requested that
2378c0a791aSdanielk1977 **    prefers UTF-16LE when UTF-16BE is requested, or vice versa.
2388c0a791aSdanielk1977 ** 6: An exact match.
2398c0a791aSdanielk1977 **
2408c0a791aSdanielk1977 */
2418c0a791aSdanielk1977 static int matchQuality(FuncDef *p, int nArg, u8 enc){
2428c0a791aSdanielk1977   int match = 0;
243dfbc3a8aSdrh   if( p->nArg==-1 || p->nArg==nArg
244dfbc3a8aSdrh    || (nArg==-1 && (p->xFunc!=0 || p->xStep!=0))
245dfbc3a8aSdrh   ){
2468c0a791aSdanielk1977     match = 1;
2478c0a791aSdanielk1977     if( p->nArg==nArg || nArg==-1 ){
2488c0a791aSdanielk1977       match = 4;
2498c0a791aSdanielk1977     }
2508c0a791aSdanielk1977     if( enc==p->iPrefEnc ){
2518c0a791aSdanielk1977       match += 2;
2528c0a791aSdanielk1977     }
2538c0a791aSdanielk1977     else if( (enc==SQLITE_UTF16LE && p->iPrefEnc==SQLITE_UTF16BE) ||
2548c0a791aSdanielk1977              (enc==SQLITE_UTF16BE && p->iPrefEnc==SQLITE_UTF16LE) ){
2558c0a791aSdanielk1977       match += 1;
2568c0a791aSdanielk1977     }
2578c0a791aSdanielk1977   }
2588c0a791aSdanielk1977   return match;
2598c0a791aSdanielk1977 }
2608c0a791aSdanielk1977 
261fd9a0a45Sdanielk1977 /*
26270a8ca3cSdrh ** Search a FuncDefHash for a function with the given name.  Return
26370a8ca3cSdrh ** a pointer to the matching FuncDef if found, or 0 if there is no match.
26470a8ca3cSdrh */
26570a8ca3cSdrh static FuncDef *functionSearch(
26670a8ca3cSdrh   FuncDefHash *pHash,  /* Hash table to search */
26770a8ca3cSdrh   int h,               /* Hash of the name */
26870a8ca3cSdrh   const char *zFunc,   /* Name of function */
26970a8ca3cSdrh   int nFunc            /* Number of bytes in zFunc */
27070a8ca3cSdrh ){
27170a8ca3cSdrh   FuncDef *p;
27270a8ca3cSdrh   for(p=pHash->a[h]; p; p=p->pHash){
27370a8ca3cSdrh     if( sqlite3StrNICmp(p->zName, zFunc, nFunc)==0 && p->zName[nFunc]==0 ){
27470a8ca3cSdrh       return p;
27570a8ca3cSdrh     }
27670a8ca3cSdrh   }
27770a8ca3cSdrh   return 0;
27870a8ca3cSdrh }
27970a8ca3cSdrh 
28070a8ca3cSdrh /*
28170a8ca3cSdrh ** Insert a new FuncDef into a FuncDefHash hash table.
28270a8ca3cSdrh */
28370a8ca3cSdrh void sqlite3FuncDefInsert(
28470a8ca3cSdrh   FuncDefHash *pHash,  /* The hash table into which to insert */
28570a8ca3cSdrh   FuncDef *pDef        /* The function definition to insert */
28670a8ca3cSdrh ){
28770a8ca3cSdrh   FuncDef *pOther;
288ea678832Sdrh   int nName = sqlite3Strlen30(pDef->zName);
28970a8ca3cSdrh   u8 c1 = (u8)pDef->zName[0];
29070a8ca3cSdrh   int h = (sqlite3UpperToLower[c1] + nName) % ArraySize(pHash->a);
29170a8ca3cSdrh   pOther = functionSearch(pHash, h, pDef->zName, nName);
29270a8ca3cSdrh   if( pOther ){
2937aaa8786Sdrh     assert( pOther!=pDef && pOther->pNext!=pDef );
29470a8ca3cSdrh     pDef->pNext = pOther->pNext;
29570a8ca3cSdrh     pOther->pNext = pDef;
29670a8ca3cSdrh   }else{
29770a8ca3cSdrh     pDef->pNext = 0;
29870a8ca3cSdrh     pDef->pHash = pHash->a[h];
29970a8ca3cSdrh     pHash->a[h] = pDef;
30070a8ca3cSdrh   }
30170a8ca3cSdrh }
30270a8ca3cSdrh 
30370a8ca3cSdrh 
30470a8ca3cSdrh 
30570a8ca3cSdrh /*
306fd9a0a45Sdanielk1977 ** Locate a user function given a name, a number of arguments and a flag
307fd9a0a45Sdanielk1977 ** indicating whether the function prefers UTF-16 over UTF-8.  Return a
308fd9a0a45Sdanielk1977 ** pointer to the FuncDef structure that defines that function, or return
309fd9a0a45Sdanielk1977 ** NULL if the function does not exist.
310fd9a0a45Sdanielk1977 **
311fd9a0a45Sdanielk1977 ** If the createFlag argument is true, then a new (blank) FuncDef
312fd9a0a45Sdanielk1977 ** structure is created and liked into the "db" structure if a
313fd9a0a45Sdanielk1977 ** no matching function previously existed.  When createFlag is true
314fd9a0a45Sdanielk1977 ** and the nArg parameter is -1, then only a function that accepts
315fd9a0a45Sdanielk1977 ** any number of arguments will be returned.
316fd9a0a45Sdanielk1977 **
317fd9a0a45Sdanielk1977 ** If createFlag is false and nArg is -1, then the first valid
318fd9a0a45Sdanielk1977 ** function found is returned.  A function is valid if either xFunc
319fd9a0a45Sdanielk1977 ** or xStep is non-zero.
320fd9a0a45Sdanielk1977 **
321fd9a0a45Sdanielk1977 ** If createFlag is false, then a function with the required name and
322fd9a0a45Sdanielk1977 ** number of arguments may be returned even if the eTextRep flag does not
323fd9a0a45Sdanielk1977 ** match that requested.
324fd9a0a45Sdanielk1977 */
325fd9a0a45Sdanielk1977 FuncDef *sqlite3FindFunction(
326fd9a0a45Sdanielk1977   sqlite3 *db,       /* An open database */
327fd9a0a45Sdanielk1977   const char *zName, /* Name of the function.  Not null-terminated */
328fd9a0a45Sdanielk1977   int nName,         /* Number of characters in the name */
329fd9a0a45Sdanielk1977   int nArg,          /* Number of arguments.  -1 means any number */
330fd9a0a45Sdanielk1977   u8 enc,            /* Preferred text encoding */
331fd9a0a45Sdanielk1977   int createFlag     /* Create new entry if true and does not otherwise exist */
332fd9a0a45Sdanielk1977 ){
333fd9a0a45Sdanielk1977   FuncDef *p;         /* Iterator variable */
334fd9a0a45Sdanielk1977   FuncDef *pBest = 0; /* Best match found so far */
33570a8ca3cSdrh   int bestScore = 0;  /* Score of best match */
33670a8ca3cSdrh   int h;              /* Hash value */
337fd9a0a45Sdanielk1977 
338fd9a0a45Sdanielk1977 
339fd9a0a45Sdanielk1977   assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE );
34070a8ca3cSdrh   h = (sqlite3UpperToLower[(u8)zName[0]] + nName) % ArraySize(db->aFunc.a);
341fd9a0a45Sdanielk1977 
342e3602be8Sdrh   /* First search for a match amongst the application-defined functions.
343e3602be8Sdrh   */
34470a8ca3cSdrh   p = functionSearch(&db->aFunc, h, zName, nName);
34570a8ca3cSdrh   while( p ){
34670a8ca3cSdrh     int score = matchQuality(p, nArg, enc);
34770a8ca3cSdrh     if( score>bestScore ){
348fd9a0a45Sdanielk1977       pBest = p;
34970a8ca3cSdrh       bestScore = score;
350fd9a0a45Sdanielk1977     }
35170a8ca3cSdrh     p = p->pNext;
352fd9a0a45Sdanielk1977   }
3538c0a791aSdanielk1977 
354e3602be8Sdrh   /* If no match is found, search the built-in functions.
355e3602be8Sdrh   **
356545f587fSdrh   ** If the SQLITE_PreferBuiltin flag is set, then search the built-in
357545f587fSdrh   ** functions even if a prior app-defined function was found.  And give
358545f587fSdrh   ** priority to built-in functions.
359545f587fSdrh   **
360e3602be8Sdrh   ** Except, if createFlag is true, that means that we are trying to
361e3602be8Sdrh   ** install a new function.  Whatever FuncDef structure is returned will
362e3602be8Sdrh   ** have fields overwritten with new information appropriate for the
363e3602be8Sdrh   ** new function.  But the FuncDefs for built-in functions are read-only.
364e3602be8Sdrh   ** So we must not search for built-ins when creating a new function.
3658c0a791aSdanielk1977   */
366545f587fSdrh   if( !createFlag && (pBest==0 || (db->flags & SQLITE_PreferBuiltin)!=0) ){
367075c23afSdanielk1977     FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions);
368545f587fSdrh     bestScore = 0;
369075c23afSdanielk1977     p = functionSearch(pHash, h, zName, nName);
37070a8ca3cSdrh     while( p ){
37170a8ca3cSdrh       int score = matchQuality(p, nArg, enc);
37270a8ca3cSdrh       if( score>bestScore ){
37370a8ca3cSdrh         pBest = p;
37470a8ca3cSdrh         bestScore = score;
3758c0a791aSdanielk1977       }
37670a8ca3cSdrh       p = p->pNext;
3778c0a791aSdanielk1977     }
378fd9a0a45Sdanielk1977   }
379fd9a0a45Sdanielk1977 
380e3602be8Sdrh   /* If the createFlag parameter is true and the search did not reveal an
381fd9a0a45Sdanielk1977   ** exact match for the name, number of arguments and encoding, then add a
382fd9a0a45Sdanielk1977   ** new entry to the hash table and return it.
383fd9a0a45Sdanielk1977   */
384e3602be8Sdrh   if( createFlag && (bestScore<6 || pBest->nArg!=nArg) &&
3858c0a791aSdanielk1977       (pBest = sqlite3DbMallocZero(db, sizeof(*pBest)+nName+1))!=0 ){
3868c0a791aSdanielk1977     pBest->zName = (char *)&pBest[1];
3871bd10f8aSdrh     pBest->nArg = (u16)nArg;
388fd9a0a45Sdanielk1977     pBest->iPrefEnc = enc;
389fd9a0a45Sdanielk1977     memcpy(pBest->zName, zName, nName);
390fd9a0a45Sdanielk1977     pBest->zName[nName] = 0;
39170a8ca3cSdrh     sqlite3FuncDefInsert(&db->aFunc, pBest);
392fd9a0a45Sdanielk1977   }
393fd9a0a45Sdanielk1977 
394fd9a0a45Sdanielk1977   if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){
395fd9a0a45Sdanielk1977     return pBest;
396fd9a0a45Sdanielk1977   }
397fd9a0a45Sdanielk1977   return 0;
398fd9a0a45Sdanielk1977 }
39903b808a6Sdrh 
40003b808a6Sdrh /*
40103b808a6Sdrh ** Free all resources held by the schema structure. The void* argument points
402633e6d57Sdrh ** at a Schema struct. This function does not call sqlite3DbFree(db, ) on the
40303b808a6Sdrh ** pointer itself, it just cleans up subsiduary resources (i.e. the contents
40403b808a6Sdrh ** of the schema hash tables).
4058cf6c554Sdanielk1977 **
4068cf6c554Sdanielk1977 ** The Schema.cache_size variable is not cleared.
40703b808a6Sdrh */
40803b808a6Sdrh void sqlite3SchemaFree(void *p){
40903b808a6Sdrh   Hash temp1;
41003b808a6Sdrh   Hash temp2;
41103b808a6Sdrh   HashElem *pElem;
41203b808a6Sdrh   Schema *pSchema = (Schema *)p;
41303b808a6Sdrh 
41403b808a6Sdrh   temp1 = pSchema->tblHash;
41503b808a6Sdrh   temp2 = pSchema->trigHash;
416e61922a6Sdrh   sqlite3HashInit(&pSchema->trigHash);
41703b808a6Sdrh   sqlite3HashClear(&pSchema->idxHash);
41803b808a6Sdrh   for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){
419633e6d57Sdrh     sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem));
42003b808a6Sdrh   }
42103b808a6Sdrh   sqlite3HashClear(&temp2);
422e61922a6Sdrh   sqlite3HashInit(&pSchema->tblHash);
42303b808a6Sdrh   for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){
42403b808a6Sdrh     Table *pTab = sqliteHashData(pElem);
425d9da78a2Sdrh     assert( pTab->dbMem==0 );
426*1feeaed2Sdan     sqlite3DeleteTable(0, pTab);
42703b808a6Sdrh   }
42803b808a6Sdrh   sqlite3HashClear(&temp1);
4291da40a38Sdan   sqlite3HashClear(&pSchema->fkeyHash);
43003b808a6Sdrh   pSchema->pSeqTab = 0;
43103b808a6Sdrh   pSchema->flags &= ~DB_SchemaLoaded;
43203b808a6Sdrh }
43303b808a6Sdrh 
43403b808a6Sdrh /*
43503b808a6Sdrh ** Find and return the schema associated with a BTree.  Create
43603b808a6Sdrh ** a new one if necessary.
43703b808a6Sdrh */
43817435752Sdrh Schema *sqlite3SchemaGet(sqlite3 *db, Btree *pBt){
43903b808a6Sdrh   Schema * p;
44003b808a6Sdrh   if( pBt ){
44103b808a6Sdrh     p = (Schema *)sqlite3BtreeSchema(pBt, sizeof(Schema), sqlite3SchemaFree);
44203b808a6Sdrh   }else{
443a1644fd8Sdanielk1977     p = (Schema *)sqlite3MallocZero(sizeof(Schema));
44403b808a6Sdrh   }
445a1644fd8Sdanielk1977   if( !p ){
446a1644fd8Sdanielk1977     db->mallocFailed = 1;
447a1644fd8Sdanielk1977   }else if ( 0==p->file_format ){
448e61922a6Sdrh     sqlite3HashInit(&p->tblHash);
449e61922a6Sdrh     sqlite3HashInit(&p->idxHash);
450e61922a6Sdrh     sqlite3HashInit(&p->trigHash);
4511da40a38Sdan     sqlite3HashInit(&p->fkeyHash);
452f012ea3bSdrh     p->enc = SQLITE_UTF8;
45303b808a6Sdrh   }
45403b808a6Sdrh   return p;
45503b808a6Sdrh }
456