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 ** This file contains routines used to translate between UTF-8,
13 ** UTF-16, UTF-16BE, and UTF-16LE.
15 ** $Id: utf.c,v 1.65 2008/08/12 15:04:59 danielk1977 Exp $
19 ** Byte-0 Byte-1 Byte-2 Byte-3 Value
20 ** 0xxxxxxx 00000000 00000000 0xxxxxxx
21 ** 110yyyyy 10xxxxxx 00000000 00000yyy yyxxxxxx
22 ** 1110zzzz 10yyyyyy 10xxxxxx 00000000 zzzzyyyy yyxxxxxx
23 ** 11110uuu 10uuzzzz 10yyyyyy 10xxxxxx 000uuuuu zzzzyyyy yyxxxxxx
26 ** Notes on UTF-16: (with wwww+1==uuuuu)
28 ** Word-0 Word-1 Value
29 ** 110110ww wwzzzzyy 110111yy yyxxxxxx 000uuuuu zzzzyyyy yyxxxxxx
30 ** zzzzyyyy yyxxxxxx 00000000 zzzzyyyy yyxxxxxx
33 ** BOM or Byte Order Mark:
34 ** 0xff 0xfe little-endian utf-16 follows
35 ** 0xfe 0xff big-endian utf-16 follows
38 #include "sqliteInt.h"
43 ** The following constant value is used by the SQLITE_BIGENDIAN and
44 ** SQLITE_LITTLEENDIAN macros.
46 const int sqlite3one = 1;
49 ** This lookup table is used to help decode the first byte of
50 ** a multi-byte UTF8 character.
52 static const unsigned char sqlite3UtfTrans1[] = {
53 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
54 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
55 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
56 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
57 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
58 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
59 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
60 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00,
64 #define WRITE_UTF8(zOut, c) { \
68 else if( c<0x00800 ){ \
69 *zOut++ = 0xC0 + ((c>>6)&0x1F); \
70 *zOut++ = 0x80 + (c & 0x3F); \
72 else if( c<0x10000 ){ \
73 *zOut++ = 0xE0 + ((c>>12)&0x0F); \
74 *zOut++ = 0x80 + ((c>>6) & 0x3F); \
75 *zOut++ = 0x80 + (c & 0x3F); \
77 *zOut++ = 0xF0 + ((c>>18) & 0x07); \
78 *zOut++ = 0x80 + ((c>>12) & 0x3F); \
79 *zOut++ = 0x80 + ((c>>6) & 0x3F); \
80 *zOut++ = 0x80 + (c & 0x3F); \
84 #define WRITE_UTF16LE(zOut, c) { \
86 *zOut++ = (c&0x00FF); \
87 *zOut++ = ((c>>8)&0x00FF); \
89 *zOut++ = (((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \
90 *zOut++ = (0x00D8 + (((c-0x10000)>>18)&0x03)); \
91 *zOut++ = (c&0x00FF); \
92 *zOut++ = (0x00DC + ((c>>8)&0x03)); \
96 #define WRITE_UTF16BE(zOut, c) { \
98 *zOut++ = ((c>>8)&0x00FF); \
99 *zOut++ = (c&0x00FF); \
101 *zOut++ = (0x00D8 + (((c-0x10000)>>18)&0x03)); \
102 *zOut++ = (((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \
103 *zOut++ = (0x00DC + ((c>>8)&0x03)); \
104 *zOut++ = (c&0x00FF); \
108 #define READ_UTF16LE(zIn, c){ \
110 c += ((*zIn++)<<8); \
111 if( c>=0xD800 && c<0xE000 ){ \
113 c2 += ((*zIn++)<<8); \
114 c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \
115 if( (c & 0xFFFF0000)==0 ) c = 0xFFFD; \
119 #define READ_UTF16BE(zIn, c){ \
122 if( c>=0xD800 && c<0xE000 ){ \
123 int c2 = ((*zIn++)<<8); \
125 c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \
126 if( (c & 0xFFFF0000)==0 ) c = 0xFFFD; \
131 ** Translate a single UTF-8 character. Return the unicode value.
133 ** During translation, assume that the byte that zTerm points
136 ** Write a pointer to the next unread byte back into *pzNext.
138 ** Notes On Invalid UTF-8:
140 ** * This routine never allows a 7-bit character (0x00 through 0x7f) to
141 ** be encoded as a multi-byte character. Any multi-byte character that
142 ** attempts to encode a value between 0x00 and 0x7f is rendered as 0xfffd.
144 ** * This routine never allows a UTF16 surrogate value to be encoded.
145 ** If a multi-byte character attempts to encode a value between
146 ** 0xd800 and 0xe000 then it is rendered as 0xfffd.
148 ** * Bytes in the range of 0x80 through 0xbf which occur as the first
149 ** byte of a character are interpreted as single-byte characters
150 ** and rendered as themselves even though they are technically
151 ** invalid characters.
153 ** * This routine accepts an infinite number of different UTF8 encodings
154 ** for unicode values 0x80 and greater. It do not change over-length
155 ** encodings to 0xfffd as some systems recommend.
157 #define READ_UTF8(zIn, zTerm, c) \
160 c = sqlite3UtfTrans1[c-0xc0]; \
161 while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \
162 c = (c<<6) + (0x3f & *(zIn++)); \
165 || (c&0xFFFFF800)==0xD800 \
166 || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \
169 const unsigned char *z, /* First byte of UTF-8 character */
170 const unsigned char *zTerm, /* Pretend this byte is 0x00 */
171 const unsigned char **pzNext /* Write first byte past UTF-8 char here */
174 READ_UTF8(z, zTerm, c);
183 ** If the TRANSLATE_TRACE macro is defined, the value of each Mem is
184 ** printed on stderr on the way into and out of sqlite3VdbeMemTranslate().
186 /* #define TRANSLATE_TRACE 1 */
188 #ifndef SQLITE_OMIT_UTF16
190 ** This routine transforms the internal text encoding used by pMem to
191 ** desiredEnc. It is an error if the string is already of the desired
192 ** encoding, or if *pMem does not contain a string value.
194 int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){
195 int len; /* Maximum length of output string in bytes */
196 unsigned char *zOut; /* Output buffer */
197 unsigned char *zIn; /* Input iterator */
198 unsigned char *zTerm; /* End of input */
199 unsigned char *z; /* Output iterator */
202 assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) );
203 assert( pMem->flags&MEM_Str );
204 assert( pMem->enc!=desiredEnc );
205 assert( pMem->enc!=0 );
206 assert( pMem->n>=0 );
208 #if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG)
211 sqlite3VdbeMemPrettyPrint(pMem, zBuf);
212 fprintf(stderr, "INPUT: %s\n", zBuf);
216 /* If the translation is between UTF-16 little and big endian, then
217 ** all that is required is to swap the byte order. This case is handled
218 ** differently from the others.
220 if( pMem->enc!=SQLITE_UTF8 && desiredEnc!=SQLITE_UTF8 ){
223 rc = sqlite3VdbeMemMakeWriteable(pMem);
225 assert( rc==SQLITE_NOMEM );
229 zTerm = &zIn[pMem->n];
236 pMem->enc = desiredEnc;
240 /* Set len to the maximum number of bytes required in the output buffer. */
241 if( desiredEnc==SQLITE_UTF8 ){
242 /* When converting from UTF-16, the maximum growth results from
243 ** translating a 2-byte character to a 4-byte UTF-8 character.
244 ** A single byte is required for the output string
247 len = pMem->n * 2 + 1;
249 /* When converting from UTF-8 to UTF-16 the maximum growth is caused
250 ** when a 1-byte UTF-8 character is translated into a 2-byte UTF-16
251 ** character. Two bytes are required in the output buffer for the
254 len = pMem->n * 2 + 2;
257 /* Set zIn to point at the start of the input buffer and zTerm to point 1
258 ** byte past the end.
260 ** Variable zOut is set to point at the output buffer, space obtained
261 ** from sqlite3_malloc().
264 zTerm = &zIn[pMem->n];
265 zOut = sqlite3DbMallocRaw(pMem->db, len);
271 if( pMem->enc==SQLITE_UTF8 ){
272 if( desiredEnc==SQLITE_UTF16LE ){
273 /* UTF-8 -> UTF-16 Little-endian */
275 /* c = sqlite3Utf8Read(zIn, zTerm, (const u8**)&zIn); */
276 READ_UTF8(zIn, zTerm, c);
280 assert( desiredEnc==SQLITE_UTF16BE );
281 /* UTF-8 -> UTF-16 Big-endian */
283 /* c = sqlite3Utf8Read(zIn, zTerm, (const u8**)&zIn); */
284 READ_UTF8(zIn, zTerm, c);
291 assert( desiredEnc==SQLITE_UTF8 );
292 if( pMem->enc==SQLITE_UTF16LE ){
293 /* UTF-16 Little-endian -> UTF-8 */
295 READ_UTF16LE(zIn, c);
299 /* UTF-16 Big-endian -> UTF-8 */
301 READ_UTF16BE(zIn, c);
308 assert( (pMem->n+(desiredEnc==SQLITE_UTF8?1:2))<=len );
310 sqlite3VdbeMemRelease(pMem);
311 pMem->flags &= ~(MEM_Static|MEM_Dyn|MEM_Ephem);
312 pMem->enc = desiredEnc;
313 pMem->flags |= (MEM_Term|MEM_Dyn);
314 pMem->z = (char*)zOut;
315 pMem->zMalloc = pMem->z;
318 #if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG)
321 sqlite3VdbeMemPrettyPrint(pMem, zBuf);
322 fprintf(stderr, "OUTPUT: %s\n", zBuf);
329 ** This routine checks for a byte-order mark at the beginning of the
330 ** UTF-16 string stored in *pMem. If one is present, it is removed and
331 ** the encoding of the Mem adjusted. This routine does not do any
332 ** byte-swapping, it just sets Mem.enc appropriately.
334 ** The allocation (static, dynamic etc.) and encoding of the Mem may be
335 ** changed by this function.
337 int sqlite3VdbeMemHandleBom(Mem *pMem){
341 if( pMem->n<0 || pMem->n>1 ){
342 u8 b1 = *(u8 *)pMem->z;
343 u8 b2 = *(((u8 *)pMem->z) + 1);
344 if( b1==0xFE && b2==0xFF ){
345 bom = SQLITE_UTF16BE;
347 if( b1==0xFF && b2==0xFE ){
348 bom = SQLITE_UTF16LE;
353 rc = sqlite3VdbeMemMakeWriteable(pMem);
356 memmove(pMem->z, &pMem->z[2], pMem->n);
357 pMem->z[pMem->n] = '\0';
358 pMem->z[pMem->n+1] = '\0';
359 pMem->flags |= MEM_Term;
365 #endif /* SQLITE_OMIT_UTF16 */
368 ** pZ is a UTF-8 encoded unicode string. If nByte is less than zero,
369 ** return the number of unicode characters in pZ up to (but not including)
370 ** the first 0x00 byte. If nByte is not less than zero, return the
371 ** number of unicode characters in the first nByte of pZ (or up to
372 ** the first 0x00, whichever comes first).
374 int sqlite3Utf8CharLen(const char *zIn, int nByte){
376 const u8 *z = (const u8*)zIn;
381 zTerm = (const u8*)(-1);
384 while( *z!=0 && z<zTerm ){
391 /* This test function is not currently used by the automated test-suite.
392 ** Hence it is only available in debug builds.
394 #if defined(SQLITE_TEST) && defined(SQLITE_DEBUG)
396 ** Translate UTF-8 to UTF-8.
398 ** This has the effect of making sure that the string is well-formed
399 ** UTF-8. Miscoded characters are removed.
401 ** The translation is done in-place (since it is impossible for the
402 ** correct UTF-8 encoding to be longer than a malformed encoding).
404 int sqlite3Utf8To8(unsigned char *zIn){
405 unsigned char *zOut = zIn;
406 unsigned char *zStart = zIn;
407 unsigned char *zTerm = &zIn[strlen((char *)zIn)];
411 c = sqlite3Utf8Read(zIn, zTerm, (const u8**)&zIn);
417 return zOut - zStart;
421 #ifndef SQLITE_OMIT_UTF16
423 ** Convert a UTF-16 string in the native encoding into a UTF-8 string.
424 ** Memory to hold the UTF-8 string is obtained from sqlite3_malloc and must
425 ** be freed by the calling function.
427 ** NULL is returned if there is an allocation error.
429 char *sqlite3Utf16to8(sqlite3 *db, const void *z, int nByte){
431 memset(&m, 0, sizeof(m));
433 sqlite3VdbeMemSetStr(&m, z, nByte, SQLITE_UTF16NATIVE, SQLITE_STATIC);
434 sqlite3VdbeChangeEncoding(&m, SQLITE_UTF8);
435 if( db->mallocFailed ){
436 sqlite3VdbeMemRelease(&m);
439 assert( (m.flags & MEM_Term)!=0 || db->mallocFailed );
440 assert( (m.flags & MEM_Str)!=0 || db->mallocFailed );
441 return (m.flags & MEM_Dyn)!=0 ? m.z : sqlite3DbStrDup(db, m.z);
445 ** pZ is a UTF-16 encoded unicode string. If nChar is less than zero,
446 ** return the number of bytes up to (but not including), the first pair
447 ** of consecutive 0x00 bytes in pZ. If nChar is not less than zero,
448 ** then return the number of bytes in the first nChar unicode characters
449 ** in pZ (or up until the first pair of 0x00 bytes, whichever comes first).
451 int sqlite3Utf16ByteLen(const void *zIn, int nChar){
455 if( SQLITE_UTF16NATIVE==SQLITE_UTF16BE ){
456 /* Using an "if (SQLITE_UTF16NATIVE==SQLITE_UTF16BE)" construct here
457 ** and in other parts of this file means that at one branch will
458 ** not be covered by coverage testing on any single host. But coverage
459 ** will be complete if the tests are run on both a little-endian and
460 ** big-endian host. Because both the UTF16NATIVE and SQLITE_UTF16BE
461 ** macros are constant at compile time the compiler can determine
462 ** which branch will be followed. It is therefore assumed that no runtime
463 ** penalty is paid for this "if" statement.
465 while( c && ((nChar<0) || n<nChar) ){
470 while( c && ((nChar<0) || n<nChar) ){
475 return (z-(char const *)zIn)-((c==0)?2:0);
478 #if defined(SQLITE_TEST)
480 ** This routine is called from the TCL test function "translate_selftest".
481 ** It checks that the primitives for serializing and deserializing
482 ** characters in each encoding are inverses of each other.
484 void sqlite3UtfSelfTest(void){
486 unsigned char zBuf[20];
488 unsigned char *zTerm;
492 for(i=0; i<0x00110000; i++){
499 c = sqlite3Utf8Read(z, zTerm, (const u8**)&z);
501 if( i>=0xD800 && i<=0xDFFF ) t = 0xFFFD;
502 if( (i&0xFFFFFFFE)==0xFFFE ) t = 0xFFFD;
504 assert( (z-zBuf)==n );
506 for(i=0; i<0x00110000; i++){
507 if( i>=0xD800 && i<0xE000 ) continue;
515 assert( (z-zBuf)==n );
517 for(i=0; i<0x00110000; i++){
518 if( i>=0xD800 && i<0xE000 ) continue;
526 assert( (z-zBuf)==n );
529 #endif /* SQLITE_TEST */
530 #endif /* SQLITE_OMIT_UTF16 */