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.
17 ** Byte-0 Byte-1 Byte-2 Byte-3 Value
18 ** 0xxxxxxx 00000000 00000000 0xxxxxxx
19 ** 110yyyyy 10xxxxxx 00000000 00000yyy yyxxxxxx
20 ** 1110zzzz 10yyyyyy 10xxxxxx 00000000 zzzzyyyy yyxxxxxx
21 ** 11110uuu 10uuzzzz 10yyyyyy 10xxxxxx 000uuuuu zzzzyyyy yyxxxxxx
24 ** Notes on UTF-16: (with wwww+1==uuuuu)
26 ** Word-0 Word-1 Value
27 ** 110110ww wwzzzzyy 110111yy yyxxxxxx 000uuuuu zzzzyyyy yyxxxxxx
28 ** zzzzyyyy yyxxxxxx 00000000 zzzzyyyy yyxxxxxx
31 ** BOM or Byte Order Mark:
32 ** 0xff 0xfe little-endian utf-16 follows
33 ** 0xfe 0xff big-endian utf-16 follows
36 #include "sqliteInt.h"
40 #if !defined(SQLITE_AMALGAMATION) && SQLITE_BYTEORDER==0
42 ** The following constant value is used by the SQLITE_BIGENDIAN and
43 ** SQLITE_LITTLEENDIAN macros.
45 const int sqlite3one
= 1;
46 #endif /* SQLITE_AMALGAMATION && SQLITE_BYTEORDER==0 */
49 ** This lookup table is used to help decode the first byte of
50 ** a multi-byte UTF8 character.
52 static const unsigned char sqlite3Utf8Trans1
[] = {
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) { \
66 *zOut++ = (u8)(c&0xFF); \
68 else if( c<0x00800 ){ \
69 *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \
70 *zOut++ = 0x80 + (u8)(c & 0x3F); \
72 else if( c<0x10000 ){ \
73 *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \
74 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
75 *zOut++ = 0x80 + (u8)(c & 0x3F); \
77 *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \
78 *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \
79 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
80 *zOut++ = 0x80 + (u8)(c & 0x3F); \
84 #define WRITE_UTF16LE(zOut, c) { \
86 *zOut++ = (u8)(c&0x00FF); \
87 *zOut++ = (u8)((c>>8)&0x00FF); \
89 *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \
90 *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \
91 *zOut++ = (u8)(c&0x00FF); \
92 *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \
96 #define WRITE_UTF16BE(zOut, c) { \
98 *zOut++ = (u8)((c>>8)&0x00FF); \
99 *zOut++ = (u8)(c&0x00FF); \
101 *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \
102 *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \
103 *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \
104 *zOut++ = (u8)(c&0x00FF); \
108 #define READ_UTF16LE(zIn, TERM, c){ \
110 c += ((*zIn++)<<8); \
111 if( c>=0xD800 && c<0xE000 && TERM ){ \
113 c2 += ((*zIn++)<<8); \
114 c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \
118 #define READ_UTF16BE(zIn, TERM, c){ \
121 if( c>=0xD800 && c<0xE000 && TERM ){ \
122 int c2 = ((*zIn++)<<8); \
124 c = (c2&0x03FF) + ((c&0x003F)<<10) + (((c&0x03C0)+0x0040)<<10); \
129 ** Translate a single UTF-8 character. Return the unicode value.
131 ** During translation, assume that the byte that zTerm points
134 ** Write a pointer to the next unread byte back into *pzNext.
136 ** Notes On Invalid UTF-8:
138 ** * This routine never allows a 7-bit character (0x00 through 0x7f) to
139 ** be encoded as a multi-byte character. Any multi-byte character that
140 ** attempts to encode a value between 0x00 and 0x7f is rendered as 0xfffd.
142 ** * This routine never allows a UTF16 surrogate value to be encoded.
143 ** If a multi-byte character attempts to encode a value between
144 ** 0xd800 and 0xe000 then it is rendered as 0xfffd.
146 ** * Bytes in the range of 0x80 through 0xbf which occur as the first
147 ** byte of a character are interpreted as single-byte characters
148 ** and rendered as themselves even though they are technically
149 ** invalid characters.
151 ** * This routine accepts over-length UTF8 encodings
152 ** for unicode values 0x80 and greater. It does not change over-length
153 ** encodings to 0xfffd as some systems recommend.
155 #define READ_UTF8(zIn, zTerm, c) \
158 c = sqlite3Utf8Trans1[c-0xc0]; \
159 while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \
160 c = (c<<6) + (0x3f & *(zIn++)); \
163 || (c&0xFFFFF800)==0xD800 \
164 || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \
167 const unsigned char **pz
/* Pointer to string from which to read char */
171 /* Same as READ_UTF8() above but without the zTerm parameter.
172 ** For this routine, we assume the UTF8 string is always zero-terminated.
176 c
= sqlite3Utf8Trans1
[c
-0xc0];
177 while( (*(*pz
) & 0xc0)==0x80 ){
178 c
= (c
<<6) + (0x3f & *((*pz
)++));
181 || (c
&0xFFFFF800)==0xD800
182 || (c
&0xFFFFFFFE)==0xFFFE ){ c
= 0xFFFD; }
191 ** If the TRANSLATE_TRACE macro is defined, the value of each Mem is
192 ** printed on stderr on the way into and out of sqlite3VdbeMemTranslate().
194 /* #define TRANSLATE_TRACE 1 */
196 #ifndef SQLITE_OMIT_UTF16
198 ** This routine transforms the internal text encoding used by pMem to
199 ** desiredEnc. It is an error if the string is already of the desired
200 ** encoding, or if *pMem does not contain a string value.
202 SQLITE_NOINLINE
int sqlite3VdbeMemTranslate(Mem
*pMem
, u8 desiredEnc
){
203 int len
; /* Maximum length of output string in bytes */
204 unsigned char *zOut
; /* Output buffer */
205 unsigned char *zIn
; /* Input iterator */
206 unsigned char *zTerm
; /* End of input */
207 unsigned char *z
; /* Output iterator */
210 assert( pMem
->db
==0 || sqlite3_mutex_held(pMem
->db
->mutex
) );
211 assert( pMem
->flags
&MEM_Str
);
212 assert( pMem
->enc
!=desiredEnc
);
213 assert( pMem
->enc
!=0 );
214 assert( pMem
->n
>=0 );
216 #if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG)
219 sqlite3VdbeMemPrettyPrint(pMem
, zBuf
);
220 fprintf(stderr
, "INPUT: %s\n", zBuf
);
224 /* If the translation is between UTF-16 little and big endian, then
225 ** all that is required is to swap the byte order. This case is handled
226 ** differently from the others.
228 if( pMem
->enc
!=SQLITE_UTF8
&& desiredEnc
!=SQLITE_UTF8
){
231 rc
= sqlite3VdbeMemMakeWriteable(pMem
);
233 assert( rc
==SQLITE_NOMEM
);
234 return SQLITE_NOMEM_BKPT
;
237 zTerm
= &zIn
[pMem
->n
&~1];
244 pMem
->enc
= desiredEnc
;
248 /* Set len to the maximum number of bytes required in the output buffer. */
249 if( desiredEnc
==SQLITE_UTF8
){
250 /* When converting from UTF-16, the maximum growth results from
251 ** translating a 2-byte character to a 4-byte UTF-8 character.
252 ** A single byte is required for the output string
256 len
= pMem
->n
* 2 + 1;
258 /* When converting from UTF-8 to UTF-16 the maximum growth is caused
259 ** when a 1-byte UTF-8 character is translated into a 2-byte UTF-16
260 ** character. Two bytes are required in the output buffer for the
263 len
= pMem
->n
* 2 + 2;
266 /* Set zIn to point at the start of the input buffer and zTerm to point 1
267 ** byte past the end.
269 ** Variable zOut is set to point at the output buffer, space obtained
270 ** from sqlite3_malloc().
273 zTerm
= &zIn
[pMem
->n
];
274 zOut
= sqlite3DbMallocRaw(pMem
->db
, len
);
276 return SQLITE_NOMEM_BKPT
;
280 if( pMem
->enc
==SQLITE_UTF8
){
281 if( desiredEnc
==SQLITE_UTF16LE
){
282 /* UTF-8 -> UTF-16 Little-endian */
284 READ_UTF8(zIn
, zTerm
, c
);
288 assert( desiredEnc
==SQLITE_UTF16BE
);
289 /* UTF-8 -> UTF-16 Big-endian */
291 READ_UTF8(zIn
, zTerm
, c
);
295 pMem
->n
= (int)(z
- zOut
);
298 assert( desiredEnc
==SQLITE_UTF8
);
299 if( pMem
->enc
==SQLITE_UTF16LE
){
300 /* UTF-16 Little-endian -> UTF-8 */
302 READ_UTF16LE(zIn
, zIn
<zTerm
, c
);
306 /* UTF-16 Big-endian -> UTF-8 */
308 READ_UTF16BE(zIn
, zIn
<zTerm
, c
);
312 pMem
->n
= (int)(z
- zOut
);
315 assert( (pMem
->n
+(desiredEnc
==SQLITE_UTF8
?1:2))<=len
);
318 sqlite3VdbeMemRelease(pMem
);
319 pMem
->flags
= MEM_Str
|MEM_Term
|(c
&(MEM_AffMask
|MEM_Subtype
));
320 pMem
->enc
= desiredEnc
;
321 pMem
->z
= (char*)zOut
;
322 pMem
->zMalloc
= pMem
->z
;
323 pMem
->szMalloc
= sqlite3DbMallocSize(pMem
->db
, pMem
->z
);
326 #if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG)
329 sqlite3VdbeMemPrettyPrint(pMem
, zBuf
);
330 fprintf(stderr
, "OUTPUT: %s\n", zBuf
);
335 #endif /* SQLITE_OMIT_UTF16 */
337 #ifndef SQLITE_OMIT_UTF16
339 ** This routine checks for a byte-order mark at the beginning of the
340 ** UTF-16 string stored in *pMem. If one is present, it is removed and
341 ** the encoding of the Mem adjusted. This routine does not do any
342 ** byte-swapping, it just sets Mem.enc appropriately.
344 ** The allocation (static, dynamic etc.) and encoding of the Mem may be
345 ** changed by this function.
347 int sqlite3VdbeMemHandleBom(Mem
*pMem
){
351 assert( pMem
->n
>=0 );
353 u8 b1
= *(u8
*)pMem
->z
;
354 u8 b2
= *(((u8
*)pMem
->z
) + 1);
355 if( b1
==0xFE && b2
==0xFF ){
356 bom
= SQLITE_UTF16BE
;
358 if( b1
==0xFF && b2
==0xFE ){
359 bom
= SQLITE_UTF16LE
;
364 rc
= sqlite3VdbeMemMakeWriteable(pMem
);
367 memmove(pMem
->z
, &pMem
->z
[2], pMem
->n
);
368 pMem
->z
[pMem
->n
] = '\0';
369 pMem
->z
[pMem
->n
+1] = '\0';
370 pMem
->flags
|= MEM_Term
;
376 #endif /* SQLITE_OMIT_UTF16 */
379 ** pZ is a UTF-8 encoded unicode string. If nByte is less than zero,
380 ** return the number of unicode characters in pZ up to (but not including)
381 ** the first 0x00 byte. If nByte is not less than zero, return the
382 ** number of unicode characters in the first nByte of pZ (or up to
383 ** the first 0x00, whichever comes first).
385 int sqlite3Utf8CharLen(const char *zIn
, int nByte
){
387 const u8
*z
= (const u8
*)zIn
;
392 zTerm
= (const u8
*)(-1);
395 while( *z
!=0 && z
<zTerm
){
402 /* This test function is not currently used by the automated test-suite.
403 ** Hence it is only available in debug builds.
405 #if defined(SQLITE_TEST) && defined(SQLITE_DEBUG)
407 ** Translate UTF-8 to UTF-8.
409 ** This has the effect of making sure that the string is well-formed
410 ** UTF-8. Miscoded characters are removed.
412 ** The translation is done in-place and aborted if the output
413 ** overruns the input.
415 int sqlite3Utf8To8(unsigned char *zIn
){
416 unsigned char *zOut
= zIn
;
417 unsigned char *zStart
= zIn
;
420 while( zIn
[0] && zOut
<=zIn
){
421 c
= sqlite3Utf8Read((const u8
**)&zIn
);
427 return (int)(zOut
- zStart
);
431 #ifndef SQLITE_OMIT_UTF16
433 ** Convert a UTF-16 string in the native encoding into a UTF-8 string.
434 ** Memory to hold the UTF-8 string is obtained from sqlite3_malloc and must
435 ** be freed by the calling function.
437 ** NULL is returned if there is an allocation error.
439 char *sqlite3Utf16to8(sqlite3
*db
, const void *z
, int nByte
, u8 enc
){
441 memset(&m
, 0, sizeof(m
));
443 sqlite3VdbeMemSetStr(&m
, z
, nByte
, enc
, SQLITE_STATIC
);
444 sqlite3VdbeChangeEncoding(&m
, SQLITE_UTF8
);
445 if( db
->mallocFailed
){
446 sqlite3VdbeMemRelease(&m
);
449 assert( (m
.flags
& MEM_Term
)!=0 || db
->mallocFailed
);
450 assert( (m
.flags
& MEM_Str
)!=0 || db
->mallocFailed
);
451 assert( m
.z
|| db
->mallocFailed
);
456 ** zIn is a UTF-16 encoded unicode string at least nChar characters long.
457 ** Return the number of bytes in the first nChar unicode characters
458 ** in pZ. nChar must be non-negative.
460 int sqlite3Utf16ByteLen(const void *zIn
, int nChar
){
462 unsigned char const *z
= zIn
;
465 if( SQLITE_UTF16NATIVE
==SQLITE_UTF16BE
){
467 READ_UTF16BE(z
, 1, c
);
472 READ_UTF16LE(z
, 1, c
);
476 return (int)(z
-(unsigned char const *)zIn
);
479 #if defined(SQLITE_TEST)
481 ** This routine is called from the TCL test function "translate_selftest".
482 ** It checks that the primitives for serializing and deserializing
483 ** characters in each encoding are inverses of each other.
485 void sqlite3UtfSelfTest(void){
487 unsigned char zBuf
[20];
492 for(i
=0; i
<0x00110000; i
++){
496 assert( n
>0 && n
<=4 );
499 c
= sqlite3Utf8Read((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;
511 assert( n
>0 && n
<=4 );
514 READ_UTF16LE(z
, 1, c
);
516 assert( (z
-zBuf
)==n
);
518 for(i
=0; i
<0x00110000; i
++){
519 if( i
>=0xD800 && i
<0xE000 ) continue;
523 assert( n
>0 && n
<=4 );
526 READ_UTF16BE(z
, 1, c
);
528 assert( (z
-zBuf
)==n
);
531 #endif /* SQLITE_TEST */
532 #endif /* SQLITE_OMIT_UTF16 */