sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2007 May 6
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
** $Id: icu.c,v 1.7 2007/12/13 21:54:11 drh Exp $
|
sl@0
|
13 |
**
|
sl@0
|
14 |
** This file implements an integration between the ICU library
|
sl@0
|
15 |
** ("International Components for Unicode", an open-source library
|
sl@0
|
16 |
** for handling unicode data) and SQLite. The integration uses
|
sl@0
|
17 |
** ICU to provide the following to SQLite:
|
sl@0
|
18 |
**
|
sl@0
|
19 |
** * An implementation of the SQL regexp() function (and hence REGEXP
|
sl@0
|
20 |
** operator) using the ICU uregex_XX() APIs.
|
sl@0
|
21 |
**
|
sl@0
|
22 |
** * Implementations of the SQL scalar upper() and lower() functions
|
sl@0
|
23 |
** for case mapping.
|
sl@0
|
24 |
**
|
sl@0
|
25 |
** * Integration of ICU and SQLite collation seqences.
|
sl@0
|
26 |
**
|
sl@0
|
27 |
** * An implementation of the LIKE operator that uses ICU to
|
sl@0
|
28 |
** provide case-independent matching.
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
|
sl@0
|
31 |
#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU)
|
sl@0
|
32 |
|
sl@0
|
33 |
/* Include ICU headers */
|
sl@0
|
34 |
#include <unicode/utypes.h>
|
sl@0
|
35 |
#include <unicode/uregex.h>
|
sl@0
|
36 |
#include <unicode/ustring.h>
|
sl@0
|
37 |
#include <unicode/ucol.h>
|
sl@0
|
38 |
|
sl@0
|
39 |
#include <assert.h>
|
sl@0
|
40 |
|
sl@0
|
41 |
#ifndef SQLITE_CORE
|
sl@0
|
42 |
#include "sqlite3ext.h"
|
sl@0
|
43 |
SQLITE_EXTENSION_INIT1
|
sl@0
|
44 |
#else
|
sl@0
|
45 |
#include "sqlite3.h"
|
sl@0
|
46 |
#endif
|
sl@0
|
47 |
|
sl@0
|
48 |
/*
|
sl@0
|
49 |
** Maximum length (in bytes) of the pattern in a LIKE or GLOB
|
sl@0
|
50 |
** operator.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
#ifndef SQLITE_MAX_LIKE_PATTERN_LENGTH
|
sl@0
|
53 |
# define SQLITE_MAX_LIKE_PATTERN_LENGTH 50000
|
sl@0
|
54 |
#endif
|
sl@0
|
55 |
|
sl@0
|
56 |
/*
|
sl@0
|
57 |
** Version of sqlite3_free() that is always a function, never a macro.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
static void xFree(void *p){
|
sl@0
|
60 |
sqlite3_free(p);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
/*
|
sl@0
|
64 |
** Compare two UTF-8 strings for equality where the first string is
|
sl@0
|
65 |
** a "LIKE" expression. Return true (1) if they are the same and
|
sl@0
|
66 |
** false (0) if they are different.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
static int icuLikeCompare(
|
sl@0
|
69 |
const uint8_t *zPattern, /* LIKE pattern */
|
sl@0
|
70 |
const uint8_t *zString, /* The UTF-8 string to compare against */
|
sl@0
|
71 |
const UChar32 uEsc /* The escape character */
|
sl@0
|
72 |
){
|
sl@0
|
73 |
static const int MATCH_ONE = (UChar32)'_';
|
sl@0
|
74 |
static const int MATCH_ALL = (UChar32)'%';
|
sl@0
|
75 |
|
sl@0
|
76 |
int iPattern = 0; /* Current byte index in zPattern */
|
sl@0
|
77 |
int iString = 0; /* Current byte index in zString */
|
sl@0
|
78 |
|
sl@0
|
79 |
int prevEscape = 0; /* True if the previous character was uEsc */
|
sl@0
|
80 |
|
sl@0
|
81 |
while( zPattern[iPattern]!=0 ){
|
sl@0
|
82 |
|
sl@0
|
83 |
/* Read (and consume) the next character from the input pattern. */
|
sl@0
|
84 |
UChar32 uPattern;
|
sl@0
|
85 |
U8_NEXT_UNSAFE(zPattern, iPattern, uPattern);
|
sl@0
|
86 |
assert(uPattern!=0);
|
sl@0
|
87 |
|
sl@0
|
88 |
/* There are now 4 possibilities:
|
sl@0
|
89 |
**
|
sl@0
|
90 |
** 1. uPattern is an unescaped match-all character "%",
|
sl@0
|
91 |
** 2. uPattern is an unescaped match-one character "_",
|
sl@0
|
92 |
** 3. uPattern is an unescaped escape character, or
|
sl@0
|
93 |
** 4. uPattern is to be handled as an ordinary character
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
if( !prevEscape && uPattern==MATCH_ALL ){
|
sl@0
|
96 |
/* Case 1. */
|
sl@0
|
97 |
uint8_t c;
|
sl@0
|
98 |
|
sl@0
|
99 |
/* Skip any MATCH_ALL or MATCH_ONE characters that follow a
|
sl@0
|
100 |
** MATCH_ALL. For each MATCH_ONE, skip one character in the
|
sl@0
|
101 |
** test string.
|
sl@0
|
102 |
*/
|
sl@0
|
103 |
while( (c=zPattern[iPattern]) == MATCH_ALL || c == MATCH_ONE ){
|
sl@0
|
104 |
if( c==MATCH_ONE ){
|
sl@0
|
105 |
if( zString[iString]==0 ) return 0;
|
sl@0
|
106 |
U8_FWD_1_UNSAFE(zString, iString);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
iPattern++;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
if( zPattern[iPattern]==0 ) return 1;
|
sl@0
|
112 |
|
sl@0
|
113 |
while( zString[iString] ){
|
sl@0
|
114 |
if( icuLikeCompare(&zPattern[iPattern], &zString[iString], uEsc) ){
|
sl@0
|
115 |
return 1;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
U8_FWD_1_UNSAFE(zString, iString);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
return 0;
|
sl@0
|
120 |
|
sl@0
|
121 |
}else if( !prevEscape && uPattern==MATCH_ONE ){
|
sl@0
|
122 |
/* Case 2. */
|
sl@0
|
123 |
if( zString[iString]==0 ) return 0;
|
sl@0
|
124 |
U8_FWD_1_UNSAFE(zString, iString);
|
sl@0
|
125 |
|
sl@0
|
126 |
}else if( !prevEscape && uPattern==uEsc){
|
sl@0
|
127 |
/* Case 3. */
|
sl@0
|
128 |
prevEscape = 1;
|
sl@0
|
129 |
|
sl@0
|
130 |
}else{
|
sl@0
|
131 |
/* Case 4. */
|
sl@0
|
132 |
UChar32 uString;
|
sl@0
|
133 |
U8_NEXT_UNSAFE(zString, iString, uString);
|
sl@0
|
134 |
uString = u_foldCase(uString, U_FOLD_CASE_DEFAULT);
|
sl@0
|
135 |
uPattern = u_foldCase(uPattern, U_FOLD_CASE_DEFAULT);
|
sl@0
|
136 |
if( uString!=uPattern ){
|
sl@0
|
137 |
return 0;
|
sl@0
|
138 |
}
|
sl@0
|
139 |
prevEscape = 0;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
return zString[iString]==0;
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
/*
|
sl@0
|
147 |
** Implementation of the like() SQL function. This function implements
|
sl@0
|
148 |
** the build-in LIKE operator. The first argument to the function is the
|
sl@0
|
149 |
** pattern and the second argument is the string. So, the SQL statements:
|
sl@0
|
150 |
**
|
sl@0
|
151 |
** A LIKE B
|
sl@0
|
152 |
**
|
sl@0
|
153 |
** is implemented as like(B, A). If there is an escape character E,
|
sl@0
|
154 |
**
|
sl@0
|
155 |
** A LIKE B ESCAPE E
|
sl@0
|
156 |
**
|
sl@0
|
157 |
** is mapped to like(B, A, E).
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
static void icuLikeFunc(
|
sl@0
|
160 |
sqlite3_context *context,
|
sl@0
|
161 |
int argc,
|
sl@0
|
162 |
sqlite3_value **argv
|
sl@0
|
163 |
){
|
sl@0
|
164 |
const unsigned char *zA = sqlite3_value_text(argv[0]);
|
sl@0
|
165 |
const unsigned char *zB = sqlite3_value_text(argv[1]);
|
sl@0
|
166 |
UChar32 uEsc = 0;
|
sl@0
|
167 |
|
sl@0
|
168 |
/* Limit the length of the LIKE or GLOB pattern to avoid problems
|
sl@0
|
169 |
** of deep recursion and N*N behavior in patternCompare().
|
sl@0
|
170 |
*/
|
sl@0
|
171 |
if( sqlite3_value_bytes(argv[0])>SQLITE_MAX_LIKE_PATTERN_LENGTH ){
|
sl@0
|
172 |
sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1);
|
sl@0
|
173 |
return;
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
|
sl@0
|
177 |
if( argc==3 ){
|
sl@0
|
178 |
/* The escape character string must consist of a single UTF-8 character.
|
sl@0
|
179 |
** Otherwise, return an error.
|
sl@0
|
180 |
*/
|
sl@0
|
181 |
int nE= sqlite3_value_bytes(argv[2]);
|
sl@0
|
182 |
const unsigned char *zE = sqlite3_value_text(argv[2]);
|
sl@0
|
183 |
int i = 0;
|
sl@0
|
184 |
if( zE==0 ) return;
|
sl@0
|
185 |
U8_NEXT(zE, i, nE, uEsc);
|
sl@0
|
186 |
if( i!=nE){
|
sl@0
|
187 |
sqlite3_result_error(context,
|
sl@0
|
188 |
"ESCAPE expression must be a single character", -1);
|
sl@0
|
189 |
return;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
if( zA && zB ){
|
sl@0
|
194 |
sqlite3_result_int(context, icuLikeCompare(zA, zB, uEsc));
|
sl@0
|
195 |
}
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
/*
|
sl@0
|
199 |
** This function is called when an ICU function called from within
|
sl@0
|
200 |
** the implementation of an SQL scalar function returns an error.
|
sl@0
|
201 |
**
|
sl@0
|
202 |
** The scalar function context passed as the first argument is
|
sl@0
|
203 |
** loaded with an error message based on the following two args.
|
sl@0
|
204 |
*/
|
sl@0
|
205 |
static void icuFunctionError(
|
sl@0
|
206 |
sqlite3_context *pCtx, /* SQLite scalar function context */
|
sl@0
|
207 |
const char *zName, /* Name of ICU function that failed */
|
sl@0
|
208 |
UErrorCode e /* Error code returned by ICU function */
|
sl@0
|
209 |
){
|
sl@0
|
210 |
char zBuf[128];
|
sl@0
|
211 |
sqlite3_snprintf(128, zBuf, "ICU error: %s(): %s", zName, u_errorName(e));
|
sl@0
|
212 |
zBuf[127] = '\0';
|
sl@0
|
213 |
sqlite3_result_error(pCtx, zBuf, -1);
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
/*
|
sl@0
|
217 |
** Function to delete compiled regexp objects. Registered as
|
sl@0
|
218 |
** a destructor function with sqlite3_set_auxdata().
|
sl@0
|
219 |
*/
|
sl@0
|
220 |
static void icuRegexpDelete(void *p){
|
sl@0
|
221 |
URegularExpression *pExpr = (URegularExpression *)p;
|
sl@0
|
222 |
uregex_close(pExpr);
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
/*
|
sl@0
|
226 |
** Implementation of SQLite REGEXP operator. This scalar function takes
|
sl@0
|
227 |
** two arguments. The first is a regular expression pattern to compile
|
sl@0
|
228 |
** the second is a string to match against that pattern. If either
|
sl@0
|
229 |
** argument is an SQL NULL, then NULL Is returned. Otherwise, the result
|
sl@0
|
230 |
** is 1 if the string matches the pattern, or 0 otherwise.
|
sl@0
|
231 |
**
|
sl@0
|
232 |
** SQLite maps the regexp() function to the regexp() operator such
|
sl@0
|
233 |
** that the following two are equivalent:
|
sl@0
|
234 |
**
|
sl@0
|
235 |
** zString REGEXP zPattern
|
sl@0
|
236 |
** regexp(zPattern, zString)
|
sl@0
|
237 |
**
|
sl@0
|
238 |
** Uses the following ICU regexp APIs:
|
sl@0
|
239 |
**
|
sl@0
|
240 |
** uregex_open()
|
sl@0
|
241 |
** uregex_matches()
|
sl@0
|
242 |
** uregex_close()
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){
|
sl@0
|
245 |
UErrorCode status = U_ZERO_ERROR;
|
sl@0
|
246 |
URegularExpression *pExpr;
|
sl@0
|
247 |
UBool res;
|
sl@0
|
248 |
const UChar *zString = sqlite3_value_text16(apArg[1]);
|
sl@0
|
249 |
|
sl@0
|
250 |
/* If the left hand side of the regexp operator is NULL,
|
sl@0
|
251 |
** then the result is also NULL.
|
sl@0
|
252 |
*/
|
sl@0
|
253 |
if( !zString ){
|
sl@0
|
254 |
return;
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
pExpr = sqlite3_get_auxdata(p, 0);
|
sl@0
|
258 |
if( !pExpr ){
|
sl@0
|
259 |
const UChar *zPattern = sqlite3_value_text16(apArg[0]);
|
sl@0
|
260 |
if( !zPattern ){
|
sl@0
|
261 |
return;
|
sl@0
|
262 |
}
|
sl@0
|
263 |
pExpr = uregex_open(zPattern, -1, 0, 0, &status);
|
sl@0
|
264 |
|
sl@0
|
265 |
if( U_SUCCESS(status) ){
|
sl@0
|
266 |
sqlite3_set_auxdata(p, 0, pExpr, icuRegexpDelete);
|
sl@0
|
267 |
}else{
|
sl@0
|
268 |
assert(!pExpr);
|
sl@0
|
269 |
icuFunctionError(p, "uregex_open", status);
|
sl@0
|
270 |
return;
|
sl@0
|
271 |
}
|
sl@0
|
272 |
}
|
sl@0
|
273 |
|
sl@0
|
274 |
/* Configure the text that the regular expression operates on. */
|
sl@0
|
275 |
uregex_setText(pExpr, zString, -1, &status);
|
sl@0
|
276 |
if( !U_SUCCESS(status) ){
|
sl@0
|
277 |
icuFunctionError(p, "uregex_setText", status);
|
sl@0
|
278 |
return;
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
/* Attempt the match */
|
sl@0
|
282 |
res = uregex_matches(pExpr, 0, &status);
|
sl@0
|
283 |
if( !U_SUCCESS(status) ){
|
sl@0
|
284 |
icuFunctionError(p, "uregex_matches", status);
|
sl@0
|
285 |
return;
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
/* Set the text that the regular expression operates on to a NULL
|
sl@0
|
289 |
** pointer. This is not really necessary, but it is tidier than
|
sl@0
|
290 |
** leaving the regular expression object configured with an invalid
|
sl@0
|
291 |
** pointer after this function returns.
|
sl@0
|
292 |
*/
|
sl@0
|
293 |
uregex_setText(pExpr, 0, 0, &status);
|
sl@0
|
294 |
|
sl@0
|
295 |
/* Return 1 or 0. */
|
sl@0
|
296 |
sqlite3_result_int(p, res ? 1 : 0);
|
sl@0
|
297 |
}
|
sl@0
|
298 |
|
sl@0
|
299 |
/*
|
sl@0
|
300 |
** Implementations of scalar functions for case mapping - upper() and
|
sl@0
|
301 |
** lower(). Function upper() converts its input to upper-case (ABC).
|
sl@0
|
302 |
** Function lower() converts to lower-case (abc).
|
sl@0
|
303 |
**
|
sl@0
|
304 |
** ICU provides two types of case mapping, "general" case mapping and
|
sl@0
|
305 |
** "language specific". Refer to ICU documentation for the differences
|
sl@0
|
306 |
** between the two.
|
sl@0
|
307 |
**
|
sl@0
|
308 |
** To utilise "general" case mapping, the upper() or lower() scalar
|
sl@0
|
309 |
** functions are invoked with one argument:
|
sl@0
|
310 |
**
|
sl@0
|
311 |
** upper('ABC') -> 'abc'
|
sl@0
|
312 |
** lower('abc') -> 'ABC'
|
sl@0
|
313 |
**
|
sl@0
|
314 |
** To access ICU "language specific" case mapping, upper() or lower()
|
sl@0
|
315 |
** should be invoked with two arguments. The second argument is the name
|
sl@0
|
316 |
** of the locale to use. Passing an empty string ("") or SQL NULL value
|
sl@0
|
317 |
** as the second argument is the same as invoking the 1 argument version
|
sl@0
|
318 |
** of upper() or lower().
|
sl@0
|
319 |
**
|
sl@0
|
320 |
** lower('I', 'en_us') -> 'i'
|
sl@0
|
321 |
** lower('I', 'tr_tr') -> 'ı' (small dotless i)
|
sl@0
|
322 |
**
|
sl@0
|
323 |
** http://www.icu-project.org/userguide/posix.html#case_mappings
|
sl@0
|
324 |
*/
|
sl@0
|
325 |
static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){
|
sl@0
|
326 |
const UChar *zInput;
|
sl@0
|
327 |
UChar *zOutput;
|
sl@0
|
328 |
int nInput;
|
sl@0
|
329 |
int nOutput;
|
sl@0
|
330 |
|
sl@0
|
331 |
UErrorCode status = U_ZERO_ERROR;
|
sl@0
|
332 |
const char *zLocale = 0;
|
sl@0
|
333 |
|
sl@0
|
334 |
assert(nArg==1 || nArg==2);
|
sl@0
|
335 |
if( nArg==2 ){
|
sl@0
|
336 |
zLocale = (const char *)sqlite3_value_text(apArg[1]);
|
sl@0
|
337 |
}
|
sl@0
|
338 |
|
sl@0
|
339 |
zInput = sqlite3_value_text16(apArg[0]);
|
sl@0
|
340 |
if( !zInput ){
|
sl@0
|
341 |
return;
|
sl@0
|
342 |
}
|
sl@0
|
343 |
nInput = sqlite3_value_bytes16(apArg[0]);
|
sl@0
|
344 |
|
sl@0
|
345 |
nOutput = nInput * 2 + 2;
|
sl@0
|
346 |
zOutput = sqlite3_malloc(nOutput);
|
sl@0
|
347 |
if( !zOutput ){
|
sl@0
|
348 |
return;
|
sl@0
|
349 |
}
|
sl@0
|
350 |
|
sl@0
|
351 |
if( sqlite3_user_data(p) ){
|
sl@0
|
352 |
u_strToUpper(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
|
sl@0
|
353 |
}else{
|
sl@0
|
354 |
u_strToLower(zOutput, nOutput/2, zInput, nInput/2, zLocale, &status);
|
sl@0
|
355 |
}
|
sl@0
|
356 |
|
sl@0
|
357 |
if( !U_SUCCESS(status) ){
|
sl@0
|
358 |
icuFunctionError(p, "u_strToLower()/u_strToUpper", status);
|
sl@0
|
359 |
return;
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
sqlite3_result_text16(p, zOutput, -1, xFree);
|
sl@0
|
363 |
}
|
sl@0
|
364 |
|
sl@0
|
365 |
/*
|
sl@0
|
366 |
** Collation sequence destructor function. The pCtx argument points to
|
sl@0
|
367 |
** a UCollator structure previously allocated using ucol_open().
|
sl@0
|
368 |
*/
|
sl@0
|
369 |
static void icuCollationDel(void *pCtx){
|
sl@0
|
370 |
UCollator *p = (UCollator *)pCtx;
|
sl@0
|
371 |
ucol_close(p);
|
sl@0
|
372 |
}
|
sl@0
|
373 |
|
sl@0
|
374 |
/*
|
sl@0
|
375 |
** Collation sequence comparison function. The pCtx argument points to
|
sl@0
|
376 |
** a UCollator structure previously allocated using ucol_open().
|
sl@0
|
377 |
*/
|
sl@0
|
378 |
static int icuCollationColl(
|
sl@0
|
379 |
void *pCtx,
|
sl@0
|
380 |
int nLeft,
|
sl@0
|
381 |
const void *zLeft,
|
sl@0
|
382 |
int nRight,
|
sl@0
|
383 |
const void *zRight
|
sl@0
|
384 |
){
|
sl@0
|
385 |
UCollationResult res;
|
sl@0
|
386 |
UCollator *p = (UCollator *)pCtx;
|
sl@0
|
387 |
res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2);
|
sl@0
|
388 |
switch( res ){
|
sl@0
|
389 |
case UCOL_LESS: return -1;
|
sl@0
|
390 |
case UCOL_GREATER: return +1;
|
sl@0
|
391 |
case UCOL_EQUAL: return 0;
|
sl@0
|
392 |
}
|
sl@0
|
393 |
assert(!"Unexpected return value from ucol_strcoll()");
|
sl@0
|
394 |
return 0;
|
sl@0
|
395 |
}
|
sl@0
|
396 |
|
sl@0
|
397 |
/*
|
sl@0
|
398 |
** Implementation of the scalar function icu_load_collation().
|
sl@0
|
399 |
**
|
sl@0
|
400 |
** This scalar function is used to add ICU collation based collation
|
sl@0
|
401 |
** types to an SQLite database connection. It is intended to be called
|
sl@0
|
402 |
** as follows:
|
sl@0
|
403 |
**
|
sl@0
|
404 |
** SELECT icu_load_collation(<locale>, <collation-name>);
|
sl@0
|
405 |
**
|
sl@0
|
406 |
** Where <locale> is a string containing an ICU locale identifier (i.e.
|
sl@0
|
407 |
** "en_AU", "tr_TR" etc.) and <collation-name> is the name of the
|
sl@0
|
408 |
** collation sequence to create.
|
sl@0
|
409 |
*/
|
sl@0
|
410 |
static void icuLoadCollation(
|
sl@0
|
411 |
sqlite3_context *p,
|
sl@0
|
412 |
int nArg,
|
sl@0
|
413 |
sqlite3_value **apArg
|
sl@0
|
414 |
){
|
sl@0
|
415 |
sqlite3 *db = (sqlite3 *)sqlite3_user_data(p);
|
sl@0
|
416 |
UErrorCode status = U_ZERO_ERROR;
|
sl@0
|
417 |
const char *zLocale; /* Locale identifier - (eg. "jp_JP") */
|
sl@0
|
418 |
const char *zName; /* SQL Collation sequence name (eg. "japanese") */
|
sl@0
|
419 |
UCollator *pUCollator; /* ICU library collation object */
|
sl@0
|
420 |
int rc; /* Return code from sqlite3_create_collation_x() */
|
sl@0
|
421 |
|
sl@0
|
422 |
assert(nArg==2);
|
sl@0
|
423 |
zLocale = (const char *)sqlite3_value_text(apArg[0]);
|
sl@0
|
424 |
zName = (const char *)sqlite3_value_text(apArg[1]);
|
sl@0
|
425 |
|
sl@0
|
426 |
if( !zLocale || !zName ){
|
sl@0
|
427 |
return;
|
sl@0
|
428 |
}
|
sl@0
|
429 |
|
sl@0
|
430 |
pUCollator = ucol_open(zLocale, &status);
|
sl@0
|
431 |
if( !U_SUCCESS(status) ){
|
sl@0
|
432 |
icuFunctionError(p, "ucol_open", status);
|
sl@0
|
433 |
return;
|
sl@0
|
434 |
}
|
sl@0
|
435 |
assert(p);
|
sl@0
|
436 |
|
sl@0
|
437 |
rc = sqlite3_create_collation_v2(db, zName, SQLITE_UTF16, (void *)pUCollator,
|
sl@0
|
438 |
icuCollationColl, icuCollationDel
|
sl@0
|
439 |
);
|
sl@0
|
440 |
if( rc!=SQLITE_OK ){
|
sl@0
|
441 |
ucol_close(pUCollator);
|
sl@0
|
442 |
sqlite3_result_error(p, "Error registering collation function", -1);
|
sl@0
|
443 |
}
|
sl@0
|
444 |
}
|
sl@0
|
445 |
|
sl@0
|
446 |
/*
|
sl@0
|
447 |
** Register the ICU extension functions with database db.
|
sl@0
|
448 |
*/
|
sl@0
|
449 |
int sqlite3IcuInit(sqlite3 *db){
|
sl@0
|
450 |
struct IcuScalar {
|
sl@0
|
451 |
const char *zName; /* Function name */
|
sl@0
|
452 |
int nArg; /* Number of arguments */
|
sl@0
|
453 |
int enc; /* Optimal text encoding */
|
sl@0
|
454 |
void *pContext; /* sqlite3_user_data() context */
|
sl@0
|
455 |
void (*xFunc)(sqlite3_context*,int,sqlite3_value**);
|
sl@0
|
456 |
} scalars[] = {
|
sl@0
|
457 |
{"regexp",-1, SQLITE_ANY, 0, icuRegexpFunc},
|
sl@0
|
458 |
|
sl@0
|
459 |
{"lower", 1, SQLITE_UTF16, 0, icuCaseFunc16},
|
sl@0
|
460 |
{"lower", 2, SQLITE_UTF16, 0, icuCaseFunc16},
|
sl@0
|
461 |
{"upper", 1, SQLITE_UTF16, (void*)1, icuCaseFunc16},
|
sl@0
|
462 |
{"upper", 2, SQLITE_UTF16, (void*)1, icuCaseFunc16},
|
sl@0
|
463 |
|
sl@0
|
464 |
{"lower", 1, SQLITE_UTF8, 0, icuCaseFunc16},
|
sl@0
|
465 |
{"lower", 2, SQLITE_UTF8, 0, icuCaseFunc16},
|
sl@0
|
466 |
{"upper", 1, SQLITE_UTF8, (void*)1, icuCaseFunc16},
|
sl@0
|
467 |
{"upper", 2, SQLITE_UTF8, (void*)1, icuCaseFunc16},
|
sl@0
|
468 |
|
sl@0
|
469 |
{"like", 2, SQLITE_UTF8, 0, icuLikeFunc},
|
sl@0
|
470 |
{"like", 3, SQLITE_UTF8, 0, icuLikeFunc},
|
sl@0
|
471 |
|
sl@0
|
472 |
{"icu_load_collation", 2, SQLITE_UTF8, (void*)db, icuLoadCollation},
|
sl@0
|
473 |
};
|
sl@0
|
474 |
|
sl@0
|
475 |
int rc = SQLITE_OK;
|
sl@0
|
476 |
int i;
|
sl@0
|
477 |
|
sl@0
|
478 |
for(i=0; rc==SQLITE_OK && i<(sizeof(scalars)/sizeof(struct IcuScalar)); i++){
|
sl@0
|
479 |
struct IcuScalar *p = &scalars[i];
|
sl@0
|
480 |
rc = sqlite3_create_function(
|
sl@0
|
481 |
db, p->zName, p->nArg, p->enc, p->pContext, p->xFunc, 0, 0
|
sl@0
|
482 |
);
|
sl@0
|
483 |
}
|
sl@0
|
484 |
|
sl@0
|
485 |
return rc;
|
sl@0
|
486 |
}
|
sl@0
|
487 |
|
sl@0
|
488 |
#if !SQLITE_CORE
|
sl@0
|
489 |
int sqlite3_extension_init(
|
sl@0
|
490 |
sqlite3 *db,
|
sl@0
|
491 |
char **pzErrMsg,
|
sl@0
|
492 |
const sqlite3_api_routines *pApi
|
sl@0
|
493 |
){
|
sl@0
|
494 |
SQLITE_EXTENSION_INIT2(pApi)
|
sl@0
|
495 |
return sqlite3IcuInit(db);
|
sl@0
|
496 |
}
|
sl@0
|
497 |
#endif
|
sl@0
|
498 |
|
sl@0
|
499 |
#endif
|