2 **********************************************************************
3 * Copyright (C) 2000-2009, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
8 * tab size: 8 (not used)
11 * created on: 2000oct16
12 * created by: Ram Viswanadha
13 * 10/31/2000 Ram Implemented offsets logic function
17 #include "unicode/utypes.h"
19 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION
22 #include "unicode/ucnv.h"
23 #include "unicode/ucnv_cb.h"
24 #include "unicode/uset.h"
29 #define UCNV_TILDE 0x7E /* ~ */
30 #define UCNV_OPEN_BRACE 0x7B /* { */
31 #define UCNV_CLOSE_BRACE 0x7D /* } */
32 #define SB_ESCAPE "\x7E\x7D"
33 #define DB_ESCAPE "\x7E\x7B"
34 #define TILDE_ESCAPE "\x7E\x7E"
38 #define CONCAT_ESCAPE_MACRO( args, targetIndex,targetLength,strToAppend, err, len,sourceIndex){ \
40 if(targetIndex < targetLength){ \
41 args->target[targetIndex] = (unsigned char) *strToAppend; \
42 if(args->offsets!=NULL){ \
43 *(offsets++) = sourceIndex-1; \
48 args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \
49 *err =U_BUFFER_OVERFLOW_ERROR; \
57 UConverter
* gbConverter
;
60 UBool isEscapeAppended
;
62 UBool isTargetUCharDBCS
;
69 _HZOpen(UConverter
*cnv
, UConverterLoadArgs
*pArgs
, UErrorCode
*errorCode
){
70 UConverter
*gbConverter
;
71 if(pArgs
->onlyTestIsLoadable
) {
72 ucnv_canCreateConverter("GBK", errorCode
); /* errorCode carries result */
75 gbConverter
= ucnv_open("GBK", errorCode
);
76 if(U_FAILURE(*errorCode
)) {
79 cnv
->toUnicodeStatus
= 0;
80 cnv
->fromUnicodeStatus
= 0;
82 cnv
->fromUChar32
=0x0000;
83 cnv
->extraInfo
= uprv_malloc(sizeof(UConverterDataHZ
));
84 if(cnv
->extraInfo
!= NULL
){
85 uprv_memset(cnv
->extraInfo
, 0, sizeof(UConverterDataHZ
));
86 ((UConverterDataHZ
*)cnv
->extraInfo
)->gbConverter
= gbConverter
;
89 ucnv_close(gbConverter
);
90 *errorCode
= U_MEMORY_ALLOCATION_ERROR
;
96 _HZClose(UConverter
*cnv
){
97 if(cnv
->extraInfo
!= NULL
) {
98 ucnv_close (((UConverterDataHZ
*) (cnv
->extraInfo
))->gbConverter
);
99 if(!cnv
->isExtraLocal
) {
100 uprv_free(cnv
->extraInfo
);
102 cnv
->extraInfo
= NULL
;
107 _HZReset(UConverter
*cnv
, UConverterResetChoice choice
){
108 if(choice
<=UCNV_RESET_TO_UNICODE
) {
109 cnv
->toUnicodeStatus
= 0;
111 if(cnv
->extraInfo
!= NULL
){
112 ((UConverterDataHZ
*)cnv
->extraInfo
)->isStateDBCS
= FALSE
;
113 ((UConverterDataHZ
*)cnv
->extraInfo
)->isEmptySegment
= FALSE
;
116 if(choice
!=UCNV_RESET_TO_UNICODE
) {
117 cnv
->fromUnicodeStatus
= 0;
118 cnv
->fromUChar32
=0x0000;
119 if(cnv
->extraInfo
!= NULL
){
120 ((UConverterDataHZ
*)cnv
->extraInfo
)->isEscapeAppended
= FALSE
;
121 ((UConverterDataHZ
*)cnv
->extraInfo
)->targetIndex
= 0;
122 ((UConverterDataHZ
*)cnv
->extraInfo
)->sourceIndex
= 0;
123 ((UConverterDataHZ
*)cnv
->extraInfo
)->isTargetUCharDBCS
= FALSE
;
128 /**************************************HZ Encoding*************************************************
129 * Rules for HZ encoding
131 * In ASCII mode, a byte is interpreted as an ASCII character, unless a
132 * '~' is encountered. The character '~' is an escape character. By
133 * convention, it must be immediately followed ONLY by '~', '{' or '\n'
134 * (<LF>), with the following special meaning.
136 * 1. The escape sequence '~~' is interpreted as a '~'.
137 * 2. The escape-to-GB sequence '~{' switches the mode from ASCII to GB.
138 * 3. The escape sequence '~\n' is a line-continuation marker to be
139 * consumed with no output produced.
140 * In GB mode, characters are interpreted two bytes at a time as (pure)
141 * GB codes until the escape-from-GB code '~}' is read. This code
142 * switches the mode from GB back to ASCII. (Note that the escape-
143 * from-GB code '~}' ($7E7D) is outside the defined GB range.)
147 * Note that the formal syntax in RFC 1842 is invalid. I assume that the
148 * intended definition of single-byte-segment is as follows (pedberg):
149 * single-byte-segment = single-byte-seq 1*single-byte-char
154 UConverter_toUnicode_HZ_OFFSETS_LOGIC(UConverterToUnicodeArgs
*args
,
157 const char *mySource
= ( char *) args
->source
;
158 UChar
*myTarget
= args
->target
;
159 const char *mySourceLimit
= args
->sourceLimit
;
160 UChar32 targetUniChar
= 0x0000;
161 int32_t mySourceChar
= 0x0000;
162 UConverterDataHZ
* myData
=(UConverterDataHZ
*)(args
->converter
->extraInfo
);
166 /* Calling code already handles this situation. */
167 /*if ((args->converter == NULL) || (args->targetLimit < args->target) || (mySourceLimit < args->source)){
168 *err = U_ILLEGAL_ARGUMENT_ERROR;
172 while(mySource
< mySourceLimit
){
174 if(myTarget
< args
->targetLimit
){
176 mySourceChar
= (unsigned char) *mySource
++;
178 if(args
->converter
->mode
== UCNV_TILDE
) {
179 /* second byte after ~ */
180 args
->converter
->mode
=0;
181 switch(mySourceChar
) {
183 /* no output for ~\n (line-continuation marker) */
187 args
->offsets
[myTarget
- args
->target
]=(int32_t)(mySource
- args
->source
- 2);
189 *(myTarget
++)=(UChar
)mySourceChar
;
190 myData
->isEmptySegment
= FALSE
;
192 case UCNV_OPEN_BRACE
:
193 case UCNV_CLOSE_BRACE
:
194 myData
->isStateDBCS
= (mySourceChar
== UCNV_OPEN_BRACE
);
195 if (myData
->isEmptySegment
) {
196 myData
->isEmptySegment
= FALSE
; /* we are handling it, reset to avoid future spurious errors */
197 *err
= U_ILLEGAL_ESCAPE_SEQUENCE
;
198 args
->converter
->toUCallbackReason
= UCNV_IRREGULAR
;
199 args
->converter
->toUBytes
[0] = UCNV_TILDE
;
200 args
->converter
->toUBytes
[1] = mySourceChar
;
201 args
->converter
->toULength
= 2;
202 args
->target
= myTarget
;
203 args
->source
= mySource
;
206 myData
->isEmptySegment
= TRUE
;
209 /* if the first byte is equal to TILDE and the trail byte
210 * is not a valid byte then it is an error condition
213 * Ticket 5691: consistent illegal sequences:
214 * - We include at least the first byte in the illegal sequence.
215 * - If any of the non-initial bytes could be the start of a character,
216 * we stop the illegal sequence before the first one of those.
218 myData
->isEmptySegment
= FALSE
; /* different error here, reset this to avoid spurious future error */
219 *err
= U_ILLEGAL_ESCAPE_SEQUENCE
;
220 args
->converter
->toUBytes
[0] = UCNV_TILDE
;
221 if( myData
->isStateDBCS
?
222 (0x21 <= mySourceChar
&& mySourceChar
<= 0x7e) :
225 /* The current byte could be the start of a character: Back it out. */
226 args
->converter
->toULength
= 1;
229 /* Include the current byte in the illegal sequence. */
230 args
->converter
->toUBytes
[1] = mySourceChar
;
231 args
->converter
->toULength
= 2;
233 args
->target
= myTarget
;
234 args
->source
= mySource
;
237 } else if(myData
->isStateDBCS
) {
238 if(args
->converter
->toUnicodeStatus
== 0x00){
240 if(mySourceChar
== UCNV_TILDE
) {
241 args
->converter
->mode
= UCNV_TILDE
;
243 /* add another bit to distinguish a 0 byte from not having seen a lead byte */
244 args
->converter
->toUnicodeStatus
= (uint32_t) (mySourceChar
| 0x100);
245 myData
->isEmptySegment
= FALSE
; /* the segment has something, either valid or will produce a different error, so reset this */
251 int leadIsOk
, trailIsOk
;
252 uint32_t leadByte
= args
->converter
->toUnicodeStatus
& 0xff;
253 targetUniChar
= 0xffff;
255 * Ticket 5691: consistent illegal sequences:
256 * - We include at least the first byte in the illegal sequence.
257 * - If any of the non-initial bytes could be the start of a character,
258 * we stop the illegal sequence before the first one of those.
260 * In HZ DBCS, if the second byte is in the 21..7e range,
261 * we report only the first byte as the illegal sequence.
262 * Otherwise we convert or report the pair of bytes.
264 leadIsOk
= (uint8_t)(leadByte
- 0x21) <= (0x7d - 0x21);
265 trailIsOk
= (uint8_t)(mySourceChar
- 0x21) <= (0x7e - 0x21);
266 if (leadIsOk
&& trailIsOk
) {
267 tempBuf
[0] = (char) (leadByte
+0x80) ;
268 tempBuf
[1] = (char) (mySourceChar
+0x80);
269 targetUniChar
= ucnv_MBCSSimpleGetNextUChar(myData
->gbConverter
->sharedData
,
270 tempBuf
, 2, args
->converter
->useFallback
);
271 mySourceChar
= (leadByte
<< 8) | mySourceChar
;
272 } else if (trailIsOk
) {
273 /* report a single illegal byte and continue with the following DBCS starter byte */
275 mySourceChar
= (int32_t)leadByte
;
277 /* report a pair of illegal bytes if the second byte is not a DBCS starter */
278 /* add another bit so that the code below writes 2 bytes in case of error */
279 mySourceChar
= 0x10000 | (leadByte
<< 8) | mySourceChar
;
281 args
->converter
->toUnicodeStatus
=0x00;
285 if(mySourceChar
== UCNV_TILDE
) {
286 args
->converter
->mode
= UCNV_TILDE
;
288 } else if(mySourceChar
<= 0x7f) {
289 targetUniChar
= (UChar
)mySourceChar
; /* ASCII */
290 myData
->isEmptySegment
= FALSE
; /* the segment has something valid */
292 targetUniChar
= 0xffff;
293 myData
->isEmptySegment
= FALSE
; /* different error here, reset this to avoid spurious future error */
296 if(targetUniChar
< 0xfffe){
298 args
->offsets
[myTarget
- args
->target
]=(int32_t)(mySource
- args
->source
- 1-(myData
->isStateDBCS
));
301 *(myTarget
++)=(UChar
)targetUniChar
;
303 else /* targetUniChar>=0xfffe */ {
304 if(targetUniChar
== 0xfffe){
305 *err
= U_INVALID_CHAR_FOUND
;
308 *err
= U_ILLEGAL_CHAR_FOUND
;
310 if(mySourceChar
> 0xff){
311 args
->converter
->toUBytes
[0] = (uint8_t)(mySourceChar
>> 8);
312 args
->converter
->toUBytes
[1] = (uint8_t)mySourceChar
;
313 args
->converter
->toULength
=2;
316 args
->converter
->toUBytes
[0] = (uint8_t)mySourceChar
;
317 args
->converter
->toULength
=1;
323 *err
=U_BUFFER_OVERFLOW_ERROR
;
328 args
->target
= myTarget
;
329 args
->source
= mySource
;
334 UConverter_fromUnicode_HZ_OFFSETS_LOGIC (UConverterFromUnicodeArgs
* args
,
336 const UChar
*mySource
= args
->source
;
337 char *myTarget
= args
->target
;
338 int32_t* offsets
= args
->offsets
;
339 int32_t mySourceIndex
= 0;
340 int32_t myTargetIndex
= 0;
341 int32_t targetLength
= (int32_t)(args
->targetLimit
- myTarget
);
342 int32_t mySourceLength
= (int32_t)(args
->sourceLimit
- args
->source
);
344 uint32_t targetUniChar
= 0x0000;
345 UChar32 mySourceChar
= 0x0000;
346 UConverterDataHZ
*myConverterData
=(UConverterDataHZ
*)args
->converter
->extraInfo
;
347 UBool isTargetUCharDBCS
= (UBool
) myConverterData
->isTargetUCharDBCS
;
348 UBool oldIsTargetUCharDBCS
= isTargetUCharDBCS
;
350 const char* escSeq
=NULL
;
352 /* Calling code already handles this situation. */
353 /*if ((args->converter == NULL) || (args->targetLimit < myTarget) || (args->sourceLimit < args->source)){
354 *err = U_ILLEGAL_ARGUMENT_ERROR;
357 if(args
->converter
->fromUChar32
!=0 && myTargetIndex
< targetLength
) {
360 /*writing the char to the output stream */
361 while (mySourceIndex
< mySourceLength
){
362 targetUniChar
= missingCharMarker
;
363 if (myTargetIndex
< targetLength
){
365 mySourceChar
= (UChar
) mySource
[mySourceIndex
++];
368 oldIsTargetUCharDBCS
= isTargetUCharDBCS
;
369 if(mySourceChar
==UCNV_TILDE
){
370 /*concatEscape(args, &myTargetIndex, &targetLength,"\x7E\x7E",err,2,&mySourceIndex);*/
372 escSeq
= TILDE_ESCAPE
;
373 CONCAT_ESCAPE_MACRO(args
, myTargetIndex
, targetLength
, escSeq
,err
,len
,mySourceIndex
);
375 } else if(mySourceChar
<= 0x7f) {
377 targetUniChar
= mySourceChar
;
379 length
= ucnv_MBCSFromUChar32(myConverterData
->gbConverter
->sharedData
,
380 mySourceChar
,&targetUniChar
,args
->converter
->useFallback
);
381 /* we can only use lead bytes 21..7D and trail bytes 21..7E */
383 (uint16_t)(targetUniChar
- 0xa1a1) <= (0xfdfe - 0xa1a1) &&
384 (uint8_t)(targetUniChar
- 0xa1) <= (0xfe - 0xa1)
386 targetUniChar
-= 0x8080;
388 targetUniChar
= missingCharMarker
;
391 if (targetUniChar
!= missingCharMarker
){
392 myConverterData
->isTargetUCharDBCS
= isTargetUCharDBCS
= (UBool
)(targetUniChar
>0x00FF);
393 if(oldIsTargetUCharDBCS
!= isTargetUCharDBCS
|| !myConverterData
->isEscapeAppended
){
394 /*Shifting from a double byte to single byte mode*/
395 if(!isTargetUCharDBCS
){
398 CONCAT_ESCAPE_MACRO(args
, myTargetIndex
, targetLength
, escSeq
,err
,len
,mySourceIndex
);
399 myConverterData
->isEscapeAppended
= TRUE
;
401 else{ /* Shifting from a single byte to double byte mode*/
404 CONCAT_ESCAPE_MACRO(args
, myTargetIndex
, targetLength
, escSeq
,err
,len
,mySourceIndex
);
405 myConverterData
->isEscapeAppended
= TRUE
;
410 if(isTargetUCharDBCS
){
411 if( myTargetIndex
<targetLength
){
412 myTarget
[myTargetIndex
++] =(char) (targetUniChar
>> 8);
414 *(offsets
++) = mySourceIndex
-1;
416 if(myTargetIndex
< targetLength
){
417 myTarget
[myTargetIndex
++] =(char) targetUniChar
;
419 *(offsets
++) = mySourceIndex
-1;
422 args
->converter
->charErrorBuffer
[args
->converter
->charErrorBufferLength
++] = (char) targetUniChar
;
423 *err
= U_BUFFER_OVERFLOW_ERROR
;
426 args
->converter
->charErrorBuffer
[args
->converter
->charErrorBufferLength
++] =(char) (targetUniChar
>> 8);
427 args
->converter
->charErrorBuffer
[args
->converter
->charErrorBufferLength
++] = (char) targetUniChar
;
428 *err
= U_BUFFER_OVERFLOW_ERROR
;
432 if( myTargetIndex
<targetLength
){
433 myTarget
[myTargetIndex
++] = (char) (targetUniChar
);
435 *(offsets
++) = mySourceIndex
-1;
439 args
->converter
->charErrorBuffer
[args
->converter
->charErrorBufferLength
++] = (char) targetUniChar
;
440 *err
= U_BUFFER_OVERFLOW_ERROR
;
446 /* oops.. the code point is unassigned */
447 /*Handle surrogates */
448 /*check if the char is a First surrogate*/
449 if(UTF_IS_SURROGATE(mySourceChar
)) {
450 if(UTF_IS_SURROGATE_FIRST(mySourceChar
)) {
451 args
->converter
->fromUChar32
=mySourceChar
;
453 /*look ahead to find the trail surrogate*/
454 if(mySourceIndex
< mySourceLength
) {
455 /* test the following code unit */
456 UChar trail
=(UChar
) args
->source
[mySourceIndex
];
457 if(UTF_IS_SECOND_SURROGATE(trail
)) {
459 mySourceChar
=UTF16_GET_PAIR_VALUE(args
->converter
->fromUChar32
, trail
);
460 args
->converter
->fromUChar32
=0x00;
461 /* there are no surrogates in GB2312*/
462 *err
= U_INVALID_CHAR_FOUND
;
463 /* exit this condition tree */
465 /* this is an unmatched lead code unit (1st surrogate) */
466 /* callback(illegal) */
467 *err
=U_ILLEGAL_CHAR_FOUND
;
474 /* this is an unmatched trail code unit (2nd surrogate) */
475 /* callback(illegal) */
476 *err
=U_ILLEGAL_CHAR_FOUND
;
479 /* callback(unassigned) for a BMP code point */
480 *err
= U_INVALID_CHAR_FOUND
;
483 args
->converter
->fromUChar32
=mySourceChar
;
488 *err
= U_BUFFER_OVERFLOW_ERROR
;
491 targetUniChar
=missingCharMarker
;
494 args
->target
+= myTargetIndex
;
495 args
->source
+= mySourceIndex
;
496 myConverterData
->isTargetUCharDBCS
= isTargetUCharDBCS
;
500 _HZ_WriteSub(UConverterFromUnicodeArgs
*args
, int32_t offsetIndex
, UErrorCode
*err
) {
501 UConverter
*cnv
= args
->converter
;
502 UConverterDataHZ
*convData
=(UConverterDataHZ
*) cnv
->extraInfo
;
507 if( convData
->isTargetUCharDBCS
){
509 *p
++= UCNV_CLOSE_BRACE
;
510 convData
->isTargetUCharDBCS
=FALSE
;
512 *p
++= (char)cnv
->subChars
[0];
514 ucnv_cbFromUWriteBytes(args
,
515 buffer
, (int32_t)(p
- buffer
),
520 * Structure for cloning an HZ converter into a single memory block.
521 * ucnv_safeClone() of the HZ converter will align the entire cloneHZStruct,
522 * and then ucnv_safeClone() of the sub-converter may additionally align
523 * subCnv inside the cloneHZStruct, for which we need the deadSpace after
524 * subCnv. This is because UAlignedMemory may be larger than the actually
525 * necessary alignment size for the platform.
526 * The other cloneHZStruct fields will not be moved around,
527 * and are aligned properly with cloneHZStruct's alignment.
533 UAlignedMemory deadSpace
;
534 UConverterDataHZ mydata
;
539 _HZ_SafeClone(const UConverter
*cnv
,
541 int32_t *pBufferSize
,
544 struct cloneHZStruct
* localClone
;
545 int32_t size
, bufferSizeNeeded
= sizeof(struct cloneHZStruct
);
547 if (U_FAILURE(*status
)){
551 if (*pBufferSize
== 0){ /* 'preflighting' request - set needed size into *pBufferSize */
552 *pBufferSize
= bufferSizeNeeded
;
556 localClone
= (struct cloneHZStruct
*)stackBuffer
;
557 /* ucnv.c/ucnv_safeClone() copied the main UConverter already */
559 uprv_memcpy(&localClone
->mydata
, cnv
->extraInfo
, sizeof(UConverterDataHZ
));
560 localClone
->cnv
.extraInfo
= &localClone
->mydata
;
561 localClone
->cnv
.isExtraLocal
= TRUE
;
563 /* deep-clone the sub-converter */
564 size
= (int32_t)(sizeof(UConverter
) + sizeof(UAlignedMemory
)); /* include size of padding */
565 ((UConverterDataHZ
*)localClone
->cnv
.extraInfo
)->gbConverter
=
566 ucnv_safeClone(((UConverterDataHZ
*)cnv
->extraInfo
)->gbConverter
, &localClone
->subCnv
, &size
, status
);
568 return &localClone
->cnv
;
572 _HZ_GetUnicodeSet(const UConverter
*cnv
,
574 UConverterUnicodeSet which
,
575 UErrorCode
*pErrorCode
) {
576 /* HZ converts all of ASCII */
577 sa
->addRange(sa
->set
, 0, 0x7f);
579 /* add all of the code points that the sub-converter handles */
580 ucnv_MBCSGetFilteredUnicodeSetForUnicode(
581 ((UConverterDataHZ
*)cnv
->extraInfo
)->gbConverter
->sharedData
,
582 sa
, which
, UCNV_SET_FILTER_HZ
,
586 static const UConverterImpl _HZImpl
={
597 UConverter_toUnicode_HZ_OFFSETS_LOGIC
,
598 UConverter_toUnicode_HZ_OFFSETS_LOGIC
,
599 UConverter_fromUnicode_HZ_OFFSETS_LOGIC
,
600 UConverter_fromUnicode_HZ_OFFSETS_LOGIC
,
610 static const UConverterStaticData _HZStaticData
={
611 sizeof(UConverterStaticData
),
624 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }, /* reserved */
629 const UConverterSharedData _HZData
={
630 sizeof(UConverterSharedData
),
640 #endif /* #if !UCONFIG_NO_LEGACY_CONVERSION */