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 ** $Id: icu.c,v 1.7 2007/12/13 21:54:11 drh Exp $
14 ** This file implements an integration between the ICU library
15 ** ("International Components for Unicode", an open-source library
16 ** for handling unicode data) and SQLite. The integration uses
17 ** ICU to provide the following to SQLite:
19 ** * An implementation of the SQL regexp() function (and hence REGEXP
20 ** operator) using the ICU uregex_XX() APIs.
22 ** * Implementations of the SQL scalar upper() and lower() functions
25 ** * Integration of ICU and SQLite collation seqences.
27 ** * An implementation of the LIKE operator that uses ICU to
28 ** provide case-independent matching.
31 #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU)
33 /* Include ICU headers */
34 #include <unicode/utypes.h>
35 #include <unicode/uregex.h>
36 #include <unicode/ustring.h>
37 #include <unicode/ucol.h>
42 #include "sqlite3ext.h"
43 SQLITE_EXTENSION_INIT1
49 ** Maximum length (in bytes) of the pattern in a LIKE or GLOB
52 #ifndef SQLITE_MAX_LIKE_PATTERN_LENGTH
53 # define SQLITE_MAX_LIKE_PATTERN_LENGTH 50000
57 ** Version of sqlite3_free() that is always a function, never a macro.
59 static void xFree(void *p){
64 ** Compare two UTF-8 strings for equality where the first string is
65 ** a "LIKE" expression. Return true (1) if they are the same and
66 ** false (0) if they are different.
68 static int icuLikeCompare(
69 const uint8_t *zPattern, /* LIKE pattern */
70 const uint8_t *zString, /* The UTF-8 string to compare against */
71 const UChar32 uEsc /* The escape character */
73 static const int MATCH_ONE = (UChar32)'_';
74 static const int MATCH_ALL = (UChar32)'%';
76 int iPattern = 0; /* Current byte index in zPattern */
77 int iString = 0; /* Current byte index in zString */
79 int prevEscape = 0; /* True if the previous character was uEsc */
81 while( zPattern[iPattern]!=0 ){
83 /* Read (and consume) the next character from the input pattern. */
85 U8_NEXT_UNSAFE(zPattern, iPattern, uPattern);
88 /* There are now 4 possibilities:
90 ** 1. uPattern is an unescaped match-all character "%",
91 ** 2. uPattern is an unescaped match-one character "_",
92 ** 3. uPattern is an unescaped escape character, or
93 ** 4. uPattern is to be handled as an ordinary character
95 if( !prevEscape && uPattern==MATCH_ALL ){
99 /* Skip any MATCH_ALL or MATCH_ONE characters that follow a
100 ** MATCH_ALL. For each MATCH_ONE, skip one character in the
103 while( (c=zPattern[iPattern]) == MATCH_ALL || c == MATCH_ONE ){
105 if( zString[iString]==0 ) return 0;
106 U8_FWD_1_UNSAFE(zString, iString);
111 if( zPattern[iPattern]==0 ) return 1;
113 while( zString[iString] ){
114 if( icuLikeCompare(&zPattern[iPattern], &zString[iString], uEsc) ){
117 U8_FWD_1_UNSAFE(zString, iString);
121 }else if( !prevEscape && uPattern==MATCH_ONE ){
123 if( zString[iString]==0 ) return 0;
124 U8_FWD_1_UNSAFE(zString, iString);
126 }else if( !prevEscape && uPattern==uEsc){
133 U8_NEXT_UNSAFE(zString, iString, uString);
134 uString = u_foldCase(uString, U_FOLD_CASE_DEFAULT);
135 uPattern = u_foldCase(uPattern, U_FOLD_CASE_DEFAULT);
136 if( uString!=uPattern ){
143 return zString[iString]==0;
147 ** Implementation of the like() SQL function. This function implements
148 ** the build-in LIKE operator. The first argument to the function is the
149 ** pattern and the second argument is the string. So, the SQL statements:
153 ** is implemented as like(B, A). If there is an escape character E,
157 ** is mapped to like(B, A, E).
159 static void icuLikeFunc(
160 sqlite3_context *context,
164 const unsigned char *zA = sqlite3_value_text(argv[0]);
165 const unsigned char *zB = sqlite3_value_text(argv[1]);
168 /* Limit the length of the LIKE or GLOB pattern to avoid problems
169 ** of deep recursion and N*N behavior in patternCompare().
171 if( sqlite3_value_bytes(argv[0])>SQLITE_MAX_LIKE_PATTERN_LENGTH ){
172 sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1);
178 /* The escape character string must consist of a single UTF-8 character.
179 ** Otherwise, return an error.
181 int nE= sqlite3_value_bytes(argv[2]);
182 const unsigned char *zE = sqlite3_value_text(argv[2]);
185 U8_NEXT(zE, i, nE, uEsc);
187 sqlite3_result_error(context,
188 "ESCAPE expression must be a single character", -1);
194 sqlite3_result_int(context, icuLikeCompare(zA, zB, uEsc));
199 ** This function is called when an ICU function called from within
200 ** the implementation of an SQL scalar function returns an error.
202 ** The scalar function context passed as the first argument is
203 ** loaded with an error message based on the following two args.
205 static void icuFunctionError(
206 sqlite3_context *pCtx, /* SQLite scalar function context */
207 const char *zName, /* Name of ICU function that failed */
208 UErrorCode e /* Error code returned by ICU function */
211 sqlite3_snprintf(128, zBuf, "ICU error: %s(): %s", zName, u_errorName(e));
213 sqlite3_result_error(pCtx, zBuf, -1);
217 ** Function to delete compiled regexp objects. Registered as
218 ** a destructor function with sqlite3_set_auxdata().
220 static void icuRegexpDelete(void *p){
221 URegularExpression *pExpr = (URegularExpression *)p;
226 ** Implementation of SQLite REGEXP operator. This scalar function takes
227 ** two arguments. The first is a regular expression pattern to compile
228 ** the second is a string to match against that pattern. If either
229 ** argument is an SQL NULL, then NULL Is returned. Otherwise, the result
230 ** is 1 if the string matches the pattern, or 0 otherwise.
232 ** SQLite maps the regexp() function to the regexp() operator such
233 ** that the following two are equivalent:
235 ** zString REGEXP zPattern
236 ** regexp(zPattern, zString)
238 ** Uses the following ICU regexp APIs:
244 static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){
245 UErrorCode status = U_ZERO_ERROR;
246 URegularExpression *pExpr;
248 const UChar *zString = sqlite3_value_text16(apArg[1]);
250 /* If the left hand side of the regexp operator is NULL,
251 ** then the result is also NULL.
257 pExpr = sqlite3_get_auxdata(p, 0);
259 const UChar *zPattern = sqlite3_value_text16(apArg[0]);
263 pExpr = uregex_open(zPattern, -1, 0, 0, &status);
265 if( U_SUCCESS(status) ){
266 sqlite3_set_auxdata(p, 0, pExpr, icuRegexpDelete);
269 icuFunctionError(p, "uregex_open", status);
274 /* Configure the text that the regular expression operates on. */
275 uregex_setText(pExpr, zString, -1, &status);
276 if( !U_SUCCESS(status) ){
277 icuFunctionError(p, "uregex_setText", status);
281 /* Attempt the match */
282 res = uregex_matches(pExpr, 0, &status);
283 if( !U_SUCCESS(status) ){
284 icuFunctionError(p, "uregex_matches", status);
288 /* Set the text that the regular expression operates on to a NULL
289 ** pointer. This is not really necessary, but it is tidier than
290 ** leaving the regular expression object configured with an invalid
291 ** pointer after this function returns.
293 uregex_setText(pExpr, 0, 0, &status);
296 sqlite3_result_int(p, res ? 1 : 0);
300 ** Implementations of scalar functions for case mapping - upper() and
301 ** lower(). Function upper() converts its input to upper-case (ABC).
302 ** Function lower() converts to lower-case (abc).
304 ** ICU provides two types of case mapping, "general" case mapping and
305 ** "language specific". Refer to ICU documentation for the differences
308 ** To utilise "general" case mapping, the upper() or lower() scalar
309 ** functions are invoked with one argument:
311 ** upper('ABC') -> 'abc'
312 ** lower('abc') -> 'ABC'
314 ** To access ICU "language specific" case mapping, upper() or lower()
315 ** should be invoked with two arguments. The second argument is the name
316 ** of the locale to use. Passing an empty string ("") or SQL NULL value
317 ** as the second argument is the same as invoking the 1 argument version
318 ** of upper() or lower().
320 ** lower('I', 'en_us') -> 'i'
321 ** lower('I', 'tr_tr') -> 'ı' (small dotless i)
323 ** http://www.icu-project.org/userguide/posix.html#case_mappings
325 static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){
331 UErrorCode status = U_ZERO_ERROR;
332 const char *zLocale = 0;
334 assert(nArg==1 || nArg==2);
336 zLocale = (const char *)sqlite3_value_text(apArg[1]);
339 zInput = sqlite3_value_text16(apArg[0]);
343 nInput = sqlite3_value_bytes16(apArg[0]);
345 nOutput = nInput * 2 + 2;
346 zOutput = sqlite3_malloc(nOutput);
351 if( sqlite3_user_data(p) ){
352 u_strToUpper(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
354 u_strToLower(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
357 if( !U_SUCCESS(status) ){
358 icuFunctionError(p, "u_strToLower()/u_strToUpper", status);
362 sqlite3_result_text16(p, zOutput, -1, xFree);
366 ** Collation sequence destructor function. The pCtx argument points to
367 ** a UCollator structure previously allocated using ucol_open().
369 static void icuCollationDel(void *pCtx){
370 UCollator *p = (UCollator *)pCtx;
375 ** Collation sequence comparison function. The pCtx argument points to
376 ** a UCollator structure previously allocated using ucol_open().
378 static int icuCollationColl(
385 UCollationResult res;
386 UCollator *p = (UCollator *)pCtx;
387 res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
389 case UCOL_LESS: return -1;
390 case UCOL_GREATER: return +1;
391 case UCOL_EQUAL: return 0;
393 assert(!"Unexpected return value from ucol_strcoll()");
398 ** Implementation of the scalar function icu_load_collation().
400 ** This scalar function is used to add ICU collation based collation
401 ** types to an SQLite database connection. It is intended to be called
404 ** SELECT icu_load_collation(<locale>, <collation-name>);
406 ** Where <locale> is a string containing an ICU locale identifier (i.e.
407 ** "en_AU", "tr_TR" etc.) and <collation-name> is the name of the
408 ** collation sequence to create.
410 static void icuLoadCollation(
413 sqlite3_value **apArg
415 sqlite3 *db = (sqlite3 *)sqlite3_user_data(p);
416 UErrorCode status = U_ZERO_ERROR;
417 const char *zLocale; /* Locale identifier - (eg. "jp_JP") */
418 const char *zName; /* SQL Collation sequence name (eg. "japanese") */
419 UCollator *pUCollator; /* ICU library collation object */
420 int rc; /* Return code from sqlite3_create_collation_x() */
423 zLocale = (const char *)sqlite3_value_text(apArg[0]);
424 zName = (const char *)sqlite3_value_text(apArg[1]);
426 if( !zLocale || !zName ){
430 pUCollator = ucol_open(zLocale, &status);
431 if( !U_SUCCESS(status) ){
432 icuFunctionError(p, "ucol_open", status);
437 rc = sqlite3_create_collation_v2(db, zName, SQLITE_UTF16, (void *)pUCollator,
438 icuCollationColl, icuCollationDel
441 ucol_close(pUCollator);
442 sqlite3_result_error(p, "Error registering collation function", -1);
447 ** Register the ICU extension functions with database db.
449 int sqlite3IcuInit(sqlite3 *db){
451 const char *zName; /* Function name */
452 int nArg; /* Number of arguments */
453 int enc; /* Optimal text encoding */
454 void *pContext; /* sqlite3_user_data() context */
455 void (*xFunc)(sqlite3_context*,int,sqlite3_value**);
457 {"regexp",-1, SQLITE_ANY, 0, icuRegexpFunc},
459 {"lower", 1, SQLITE_UTF16, 0, icuCaseFunc16},
460 {"lower", 2, SQLITE_UTF16, 0, icuCaseFunc16},
461 {"upper", 1, SQLITE_UTF16, (void*)1, icuCaseFunc16},
462 {"upper", 2, SQLITE_UTF16, (void*)1, icuCaseFunc16},
464 {"lower", 1, SQLITE_UTF8, 0, icuCaseFunc16},
465 {"lower", 2, SQLITE_UTF8, 0, icuCaseFunc16},
466 {"upper", 1, SQLITE_UTF8, (void*)1, icuCaseFunc16},
467 {"upper", 2, SQLITE_UTF8, (void*)1, icuCaseFunc16},
469 {"like", 2, SQLITE_UTF8, 0, icuLikeFunc},
470 {"like", 3, SQLITE_UTF8, 0, icuLikeFunc},
472 {"icu_load_collation", 2, SQLITE_UTF8, (void*)db, icuLoadCollation},
478 for(i=0; rc==SQLITE_OK && i<(sizeof(scalars)/sizeof(struct IcuScalar)); i++){
479 struct IcuScalar *p = &scalars[i];
480 rc = sqlite3_create_function(
481 db, p->zName, p->nArg, p->enc, p->pContext, p->xFunc, 0, 0
489 int sqlite3_extension_init(
492 const sqlite3_api_routines *pApi
494 SQLITE_EXTENSION_INIT2(pApi)
495 return sqlite3IcuInit(db);