2000-02-05 00:19:15 +00:00
|
|
|
/*
|
|
|
|
**********************************************************************
|
|
|
|
* Copyright (C) 2000, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
2000-08-29 21:47:40 +00:00
|
|
|
* file name: ucnv2022.c
|
2000-02-05 00:19:15 +00:00
|
|
|
* encoding: US-ASCII
|
|
|
|
* tab size: 8 (not used)
|
|
|
|
* indentation:4
|
|
|
|
*
|
|
|
|
* created on: 2000feb03
|
|
|
|
* created by: Markus W. Scherer
|
2000-06-27 20:47:56 +00:00
|
|
|
*
|
|
|
|
* Change history:
|
|
|
|
*
|
2000-11-20 18:08:49 +00:00
|
|
|
* 06/29/2000 helena Major rewrite of the callback APIs.
|
|
|
|
* 08/08/2000 Ram Included support for ISO-2022-JP-2
|
2000-11-29 01:04:03 +00:00
|
|
|
* Changed implementation of toUnicode
|
|
|
|
* function
|
2000-11-20 18:08:49 +00:00
|
|
|
* 08/21/2000 Ram Added support for ISO-2022-KR
|
|
|
|
* 08/29/2000 Ram Seperated implementation of EBCDIC to
|
2000-11-29 01:04:03 +00:00
|
|
|
* ucnvebdc.c
|
2000-11-20 18:08:49 +00:00
|
|
|
* 09/20/2000 Ram Added support for ISO-2022-CN
|
2000-11-29 01:04:03 +00:00
|
|
|
* Added implementations for getNextUChar()
|
|
|
|
* for specific 2022 country variants.
|
2000-11-02 04:09:34 +00:00
|
|
|
* 10/31/2000 Ram Implemented offsets logic functions
|
2000-02-05 00:19:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "cmemory.h"
|
2000-06-27 20:47:56 +00:00
|
|
|
#include "unicode/ucnv_err.h"
|
|
|
|
#include "ucnv_bld.h"
|
2000-02-05 00:19:15 +00:00
|
|
|
#include "unicode/ucnv.h"
|
|
|
|
#include "ucnv_cnv.h"
|
2000-08-14 23:56:19 +00:00
|
|
|
#include "unicode/ustring.h"
|
2001-02-02 03:51:57 +00:00
|
|
|
#include "unicode/ucnv_cb.h"
|
2000-08-14 23:56:19 +00:00
|
|
|
#include "cstring.h"
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
#define CONCAT_ESCAPE_EX(args, target, targetLimit,offsets,strToAppend,len, err){\
|
|
|
|
while(len-->0){\
|
|
|
|
if(target < targetLimit){\
|
|
|
|
*(target++) = (unsigned char) *(strToAppend++);\
|
|
|
|
if(offsets){\
|
|
|
|
*(offsets++) = source - args->source -1;\
|
|
|
|
}\
|
|
|
|
}\
|
|
|
|
else{\
|
|
|
|
args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *(strToAppend++);\
|
|
|
|
*err =U_BUFFER_OVERFLOW_ERROR;\
|
|
|
|
}\
|
|
|
|
}\
|
2000-08-23 01:21:23 +00:00
|
|
|
}
|
2000-08-16 19:57:24 +00:00
|
|
|
|
2000-09-19 01:41:17 +00:00
|
|
|
#define UCNV_SS2 "\x1B\x4E"
|
|
|
|
#define UCNV_SS3 "\x1B\x4F"
|
2001-02-02 03:51:57 +00:00
|
|
|
#define UCNV_SS2_LEN (sizeof(UCNV_SS2) - 1)
|
|
|
|
#define UCNV_SS3_LEN (sizeof(UCNV_SS3) - 1)
|
2000-09-19 01:41:17 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
#define CR 0x0D
|
|
|
|
#define LF 0x0A
|
|
|
|
#define H_TAB 0x09
|
|
|
|
#define V_TAB 0x0B
|
|
|
|
#define SPACE 0x20
|
2000-09-19 01:41:17 +00:00
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
/* for ISO-2022JP implementation*/
|
2000-08-14 23:56:19 +00:00
|
|
|
typedef enum {
|
2000-10-28 01:09:46 +00:00
|
|
|
ASCII = 0,
|
|
|
|
ISO8859_1 = 1 ,
|
|
|
|
ISO8859_7 = 2 ,
|
|
|
|
JISX201 = 3,
|
|
|
|
JISX208 = 4,
|
|
|
|
JISX212 = 5,
|
|
|
|
GB2312 =6,
|
|
|
|
KSC5601 =7,
|
|
|
|
INVALID_STATE
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-08-14 23:56:19 +00:00
|
|
|
} StateEnum;
|
|
|
|
|
|
|
|
|
2000-10-28 01:09:46 +00:00
|
|
|
|
2000-08-14 23:56:19 +00:00
|
|
|
typedef enum {
|
2000-11-02 04:09:34 +00:00
|
|
|
ASCII1=0,
|
|
|
|
LATIN1,
|
|
|
|
SBCS,
|
2000-10-05 02:25:53 +00:00
|
|
|
DBCS,
|
2000-11-02 18:47:42 +00:00
|
|
|
MBCS
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2000-08-16 19:57:24 +00:00
|
|
|
}Cnv2022Type;
|
2000-08-14 23:56:19 +00:00
|
|
|
|
2000-11-22 02:05:29 +00:00
|
|
|
#define UCNV_OPTIONS_VERSION_MASK 0xf
|
2000-08-14 23:56:19 +00:00
|
|
|
|
2000-09-19 01:41:17 +00:00
|
|
|
typedef struct{
|
2000-08-14 23:56:19 +00:00
|
|
|
UConverter *currentConverter;
|
2000-08-29 21:47:40 +00:00
|
|
|
UConverter *fromUnicodeConverter;
|
|
|
|
UBool isFirstBuffer;
|
2000-11-02 04:09:34 +00:00
|
|
|
StateEnum toUnicodeCurrentState;
|
|
|
|
StateEnum fromUnicodeCurrentState;
|
2001-02-02 03:51:57 +00:00
|
|
|
StateEnum initIterState;
|
2000-11-20 23:40:14 +00:00
|
|
|
Cnv2022Type currentType;
|
2000-09-19 01:41:17 +00:00
|
|
|
int plane;
|
2000-08-14 23:56:19 +00:00
|
|
|
uint8_t escSeq2022[10];
|
2000-10-05 02:25:53 +00:00
|
|
|
UConverter* myConverterArray[9];
|
2001-02-16 20:16:09 +00:00
|
|
|
UBool isEscapeAppended;
|
2000-09-19 01:41:17 +00:00
|
|
|
UBool isShiftAppended;
|
2000-10-05 02:25:53 +00:00
|
|
|
UBool isLocaleSpecified;
|
2000-10-20 02:45:38 +00:00
|
|
|
uint32_t key;
|
2000-10-28 01:09:46 +00:00
|
|
|
uint32_t version;
|
2000-11-22 02:05:29 +00:00
|
|
|
char locale[3];
|
|
|
|
char name[30];
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2000-09-19 01:41:17 +00:00
|
|
|
}UConverterDataISO2022;
|
2000-02-05 00:19:15 +00:00
|
|
|
|
|
|
|
/* ISO-2022 ----------------------------------------------------------------- */
|
|
|
|
|
2000-08-25 23:14:10 +00:00
|
|
|
/*Forward declaration */
|
2000-07-19 00:21:29 +00:00
|
|
|
U_CFUNC void T_UConverter_fromUnicode_UTF8 (UConverterFromUnicodeArgs * args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode * err);
|
2000-02-05 00:19:15 +00:00
|
|
|
|
2000-08-25 23:14:10 +00:00
|
|
|
U_CFUNC void T_UConverter_fromUnicode_UTF8_OFFSETS_LOGIC (UConverterFromUnicodeArgs * args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode * err);
|
2000-08-25 23:14:10 +00:00
|
|
|
|
|
|
|
/* Protos */
|
2000-09-21 00:34:21 +00:00
|
|
|
/***************** ISO-2022 ********************************/
|
2000-08-29 21:47:40 +00:00
|
|
|
U_CFUNC void T_UConverter_toUnicode_ISO_2022(UConverterToUnicodeArgs * args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode * err);
|
2000-08-25 23:14:10 +00:00
|
|
|
|
2000-08-29 21:47:40 +00:00
|
|
|
U_CFUNC void T_UConverter_toUnicode_ISO_2022_OFFSETS_LOGIC (UConverterToUnicodeArgs * args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode * err);
|
2000-08-25 23:14:10 +00:00
|
|
|
|
|
|
|
U_CFUNC UChar32 T_UConverter_getNextUChar_ISO_2022 (UConverterToUnicodeArgs * args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode * err);
|
2000-02-05 00:19:15 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/***************** ISO-2022-JP ********************************/
|
2000-08-25 23:14:10 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
U_CFUNC void UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC(UConverterFromUnicodeArgs* args,
|
|
|
|
UErrorCode* err);
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
U_CFUNC void UConverter_toUnicode_ISO_2022_JP_OFFSETS_LOGIC(UConverterToUnicodeArgs* args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode* err);
|
2000-09-21 00:34:21 +00:00
|
|
|
|
|
|
|
/***************** ISO-2022-KR ********************************/
|
2000-08-25 23:14:10 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
U_CFUNC void UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC(UConverterFromUnicodeArgs* args,
|
|
|
|
UErrorCode* err);
|
|
|
|
|
|
|
|
U_CFUNC void UConverter_toUnicode_ISO_2022_KR_OFFSETS_LOGIC(UConverterToUnicodeArgs* args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode* err);
|
2000-08-25 23:14:10 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/***************** ISO-2022-CN ********************************/
|
2000-09-01 00:27:09 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
U_CFUNC void UConverter_fromUnicode_ISO_2022_CN_OFFSETS_LOGIC(UConverterFromUnicodeArgs* args,
|
|
|
|
UErrorCode* err);
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
U_CFUNC void UConverter_toUnicode_ISO_2022_CN_OFFSETS_LOGIC(UConverterToUnicodeArgs* args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode* err);
|
2000-09-21 00:34:21 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
#define ESC_2022 0x1B /*ESC*/
|
2000-08-16 19:57:24 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2000-11-28 23:55:10 +00:00
|
|
|
INVALID_2022 = -1, /*Doesn't correspond to a valid iso 2022 escape sequence*/
|
2000-10-05 02:25:53 +00:00
|
|
|
VALID_NON_TERMINAL_2022 = 0, /*so far corresponds to a valid iso 2022 escape sequence*/
|
|
|
|
VALID_TERMINAL_2022 = 1, /*corresponds to a valid iso 2022 escape sequence*/
|
|
|
|
VALID_MAYBE_TERMINAL_2022 = 2, /*so far matches one iso 2022 escape sequence, but by adding more characters might match another escape sequence*/
|
|
|
|
VALID_SS2_SEQUENCE=3,
|
|
|
|
VALID_SS3_SEQUENCE=4
|
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
} UCNV_TableStates_2022;
|
|
|
|
|
2000-08-14 23:56:19 +00:00
|
|
|
/*
|
2000-10-05 02:25:53 +00:00
|
|
|
* The way these state transition arrays work is:
|
|
|
|
* ex : ESC$B is the sequence for JISX208
|
|
|
|
* a) First Iteration: char is ESC
|
|
|
|
* i) Get the value of ESC from normalize_esq_chars_2022[] with int value of ESC as index
|
2000-11-20 18:08:49 +00:00
|
|
|
* int x = normalize_esq_chars_2022[27] which is equal to 1
|
2000-10-05 02:25:53 +00:00
|
|
|
* ii) Search for this value in escSeqStateTable_Key_2022[]
|
2000-11-20 18:08:49 +00:00
|
|
|
* value of x is stored at escSeqStateTable_Key_2022[0]
|
2000-10-05 02:25:53 +00:00
|
|
|
* iii) Save this index as offset
|
|
|
|
* iv) Get state of this sequence from escSeqStateTable_Value_2022[]
|
2000-11-20 18:08:49 +00:00
|
|
|
* escSeqStateTable_Value_2022[offset], which is VALID_NON_TERMINAL_2022
|
2000-10-05 02:25:53 +00:00
|
|
|
* b) Switch on this state and continue to next char
|
|
|
|
* i) Get the value of $ from normalize_esq_chars_2022[] with int value of $ as index
|
2000-11-20 18:08:49 +00:00
|
|
|
* which is normalize_esq_chars_2022[36] == 4
|
2000-10-05 02:25:53 +00:00
|
|
|
* ii) x is currently 1(from above)
|
2000-11-20 18:08:49 +00:00
|
|
|
* x<<=5 -- x is now 32
|
|
|
|
* x+=normalize_esq_chars_2022[36]
|
|
|
|
* now x is 36
|
2000-10-05 02:25:53 +00:00
|
|
|
* iii) Search for this value in escSeqStateTable_Key_2022[]
|
2000-11-20 18:08:49 +00:00
|
|
|
* value of x is stored at escSeqStateTable_Key_2022[2], so offset is 2
|
2000-10-05 02:25:53 +00:00
|
|
|
* iv) Get state of this sequence from escSeqStateTable_Value_2022[]
|
2000-11-20 18:08:49 +00:00
|
|
|
* escSeqStateTable_Value_2022[offset], which is VALID_NON_TERMINAL_2022
|
2000-10-05 02:25:53 +00:00
|
|
|
* c) Switch on this state and continue to next char
|
2000-11-08 23:16:20 +00:00
|
|
|
* i) Get the value of B from normalize_esq_chars_2022[] with int value of B as index
|
|
|
|
* ii) x is currently 36 (from above)
|
2000-11-20 18:08:49 +00:00
|
|
|
* x<<=5 -- x is now 1152
|
|
|
|
* x+=normalize_esq_chars_2022[66]
|
|
|
|
* now x is 1161
|
2000-11-08 23:16:20 +00:00
|
|
|
* iii) Search for this value in escSeqStateTable_Key_2022[]
|
2000-11-20 18:08:49 +00:00
|
|
|
* value of x is stored at escSeqStateTable_Key_2022[21], so offset is 21
|
2000-11-08 23:16:20 +00:00
|
|
|
* iv) Get state of this sequence from escSeqStateTable_Value_2022[21]
|
2000-11-20 18:08:49 +00:00
|
|
|
* escSeqStateTable_Value_2022[offset], which is VALID_TERMINAL_2022
|
2000-11-08 23:16:20 +00:00
|
|
|
* v) Get the converter name form escSeqStateTable_Result_2022[21] which is JISX208
|
2000-10-05 02:25:53 +00:00
|
|
|
*/
|
2000-08-14 23:56:19 +00:00
|
|
|
|
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
/*Below are the 3 arrays depicting a state transition table*/
|
|
|
|
int8_t normalize_esq_chars_2022[256] = {
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
|
|
|
|
|
|
|
0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,1 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,4 ,7 ,0 ,0
|
|
|
|
,2 ,24 ,26 ,27 ,0 ,3 ,23 ,6 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,5 ,8 ,9 ,10 ,11 ,12
|
|
|
|
,13 ,14 ,15 ,16 ,17 ,18 ,19 ,20 ,25 ,28
|
|
|
|
,0 ,0 ,21 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,22 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0
|
|
|
|
,0 ,0 ,0 ,0 ,0 ,0
|
2000-10-05 02:25:53 +00:00
|
|
|
};
|
2000-08-14 23:56:19 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
#define MAX_STATES_2022 74
|
2000-02-05 00:19:15 +00:00
|
|
|
int32_t escSeqStateTable_Key_2022[MAX_STATES_2022] = {
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-20 18:08:49 +00:00
|
|
|
1 ,34 ,36 ,39 ,55 ,57 ,60 ,1093 ,1096 ,1097
|
2000-09-21 00:34:21 +00:00
|
|
|
,1098 ,1099 ,1100 ,1101 ,1102 ,1103 ,1104 ,1105 ,1106 ,1109
|
|
|
|
,1154 ,1157 ,1160 ,1161 ,1176 ,1178 ,1179 ,1254 ,1257 ,1768
|
|
|
|
,1773 ,35105 ,36933 ,36936 ,36937 ,36938 ,36939 ,36940 ,36942 ,36943
|
|
|
|
,36944 ,36945 ,36946 ,36947 ,36948 ,37640 ,37642 ,37644 ,37646 ,37711
|
|
|
|
,37744 ,37745 ,37746 ,37747 ,37748 ,40133 ,40136 ,40138 ,40139 ,40140
|
|
|
|
,40141 ,1123363 ,35947624 ,35947625 ,35947626 ,35947627 ,35947629 ,35947630 ,35947631 ,35947635
|
2000-10-05 02:25:53 +00:00
|
|
|
,35947636 ,35947638
|
|
|
|
};
|
2000-11-20 18:08:49 +00:00
|
|
|
|
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
const char* escSeqStateTable_Result_2022[MAX_STATES_2022] = {
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-20 18:08:49 +00:00
|
|
|
NULL ,NULL ,NULL ,NULL ,NULL ,NULL ,NULL ,"latin1" ,"latin1" ,"latin1"
|
|
|
|
,"ibm-865" ,"ibm-865" ,"ibm-865" ,"ibm-865" ,"ibm-865" ,"ibm-865" ,"JISX-201" ,"JISX-201" ,"latin1" ,"latin1"
|
|
|
|
,NULL ,"JISX-208" ,"gb_2312_80-1" ,"JISX-208" ,NULL ,NULL ,NULL ,NULL ,"UTF8" ,"ISO-8859-1"
|
|
|
|
,"ISO-8859-7" ,NULL ,"ibm-955" ,"ibm-367" ,"ibm-952" ,"ibm-949" ,"JISX-212" ,"ibm-1383" ,"ibm-952" ,"ibm-964"
|
|
|
|
,"ibm-964" ,"ibm-964" ,"ibm-964" ,"ibm-964" ,"ibm-964" ,"gb_2312_80-1" ,"ibm-949" ,"ISO-IR-165" ,"CNS-11643-1992,1" ,"CNS-11643-1992,2"
|
|
|
|
,"CNS-11643-1992,3" ,"CNS-11643-1992,4" ,"CNS-11643-1992,5" ,"CNS-11643-1992,6" ,"CNS-11643-1992,7" ,"UTF16_PlatformEndian" ,"UTF16_PlatformEndian" ,"UTF16_PlatformEndian" ,"UTF16_PlatformEndian" ,"UTF16_PlatformEndian"
|
|
|
|
,"UTF16_PlatformEndian" ,NULL ,"latin1" ,"ibm-912" ,"ibm-913" ,"ibm-914" ,"ibm-813" ,"ibm-1089" ,"ibm-920" ,"ibm-915"
|
|
|
|
,"ibm-915" ,"latin1"
|
2000-10-05 02:25:53 +00:00
|
|
|
};
|
2000-11-20 18:08:49 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
UCNV_TableStates_2022 escSeqStateTable_Value_2022[MAX_STATES_2022] = {
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2000-11-28 23:55:10 +00:00
|
|
|
VALID_NON_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_SS2_SEQUENCE ,VALID_SS3_SEQUENCE ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_MAYBE_TERMINAL_2022
|
2000-11-20 18:08:49 +00:00
|
|
|
,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022
|
|
|
|
,VALID_NON_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022
|
|
|
|
,VALID_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022
|
|
|
|
,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022
|
|
|
|
,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022
|
|
|
|
,VALID_TERMINAL_2022 ,VALID_NON_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022
|
2000-10-05 02:25:53 +00:00
|
|
|
,VALID_TERMINAL_2022 ,VALID_TERMINAL_2022
|
|
|
|
};
|
2000-11-20 18:08:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
/*for 2022 looks ahead in the stream
|
2001-02-02 03:51:57 +00:00
|
|
|
*to determine the longest possible convertible
|
|
|
|
*data stream
|
|
|
|
*/
|
2000-09-19 01:41:17 +00:00
|
|
|
static const char* getEndOfBuffer_2022(const char** source,
|
2000-02-05 00:19:15 +00:00
|
|
|
const char* sourceLimit,
|
2000-05-18 22:08:39 +00:00
|
|
|
UBool flush);
|
2000-11-17 03:01:23 +00:00
|
|
|
/* Type def for refactoring changeState_2022 code*/
|
2000-11-28 23:55:10 +00:00
|
|
|
typedef enum{
|
2000-11-17 03:01:23 +00:00
|
|
|
ISO_2022=0,
|
|
|
|
ISO_2022_JP=1,
|
2000-12-14 03:34:08 +00:00
|
|
|
ISO_2022_KR=2,
|
|
|
|
ISO_2022_CN=3
|
2000-11-17 03:01:23 +00:00
|
|
|
} Variant2022;
|
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
/*runs through a state machine to determine the escape sequence - codepage correspondance
|
2001-02-02 03:51:57 +00:00
|
|
|
*changes the pointer pointed to be _this->extraInfo
|
|
|
|
*/
|
2000-11-17 03:01:23 +00:00
|
|
|
static void changeState_2022(UConverter* _this,
|
2000-10-05 02:25:53 +00:00
|
|
|
const char** source,
|
|
|
|
const char* sourceLimit,
|
2000-11-17 03:01:23 +00:00
|
|
|
UBool flush,Variant2022 var,int* plane,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode* err);
|
2000-02-05 00:19:15 +00:00
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
UCNV_TableStates_2022 getKey_2022(char source,
|
2000-10-05 02:25:53 +00:00
|
|
|
int32_t* key,
|
|
|
|
int32_t* offset);
|
|
|
|
|
|
|
|
/*********** ISO 2022 Converter Protos ***********/
|
2000-11-29 01:04:03 +00:00
|
|
|
static void _ISO2022Open(UConverter *cnv, const char *name, const char *locale,uint32_t options, UErrorCode *errorCode);
|
2000-10-05 02:25:53 +00:00
|
|
|
static void _ISO2022Close(UConverter *converter);
|
2000-12-20 21:18:46 +00:00
|
|
|
static void _ISO2022Reset(UConverter *converter, UConverterResetChoice choice);
|
2000-11-27 17:40:41 +00:00
|
|
|
static const char* _ISO2022getName(const UConverter* cnv);
|
2001-02-02 03:51:57 +00:00
|
|
|
U_CFUNC void _ISO_2022_WriteSub(UConverterFromUnicodeArgs *args, int32_t offsetIndex, UErrorCode *err) ;
|
2000-11-17 03:01:23 +00:00
|
|
|
/************ protos of functions for setting the initial state *********************/
|
|
|
|
static void setInitialStateToUnicodeJPCN(UConverter* converter,UConverterDataISO2022 *myConverterData);
|
2001-02-02 03:51:57 +00:00
|
|
|
static void setInitialStateFromUnicodeJPCN(UConverter* converter,UConverterDataISO2022 *myConverterData);
|
2000-11-17 03:01:23 +00:00
|
|
|
static void setInitialStateToUnicodeKR(UConverter* converter,UConverterDataISO2022 *myConverterData);
|
|
|
|
static void setInitialStateFromUnicodeKR(UConverter* converter,UConverterDataISO2022 *myConverterData);
|
|
|
|
|
|
|
|
/*************** Converter implemenations ******************/
|
2000-11-22 02:05:29 +00:00
|
|
|
static const UConverterImpl _ISO2022Impl={
|
2000-10-05 02:25:53 +00:00
|
|
|
UCNV_ISO_2022,
|
|
|
|
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
|
|
|
|
_ISO2022Open,
|
|
|
|
_ISO2022Close,
|
|
|
|
_ISO2022Reset,
|
|
|
|
|
|
|
|
T_UConverter_toUnicode_ISO_2022,
|
|
|
|
T_UConverter_toUnicode_ISO_2022_OFFSETS_LOGIC,
|
2001-02-02 03:51:57 +00:00
|
|
|
T_UConverter_fromUnicode_UTF8,
|
|
|
|
T_UConverter_fromUnicode_UTF8_OFFSETS_LOGIC,
|
2000-10-05 02:25:53 +00:00
|
|
|
T_UConverter_getNextUChar_ISO_2022,
|
|
|
|
|
2000-11-22 02:05:29 +00:00
|
|
|
NULL,
|
|
|
|
_ISO2022getName
|
2000-10-05 02:25:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const UConverterStaticData _ISO2022StaticData={
|
|
|
|
sizeof(UConverterStaticData),
|
2000-11-22 02:05:29 +00:00
|
|
|
"ISO_2022",
|
|
|
|
2022,
|
|
|
|
UCNV_IBM,
|
|
|
|
UCNV_ISO_2022,
|
|
|
|
1,
|
|
|
|
4,
|
|
|
|
{ 0x1a, 0, 0, 0 },
|
|
|
|
1,
|
|
|
|
FALSE,
|
|
|
|
FALSE,
|
2000-12-19 23:07:50 +00:00
|
|
|
0,
|
|
|
|
{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */
|
2000-10-05 02:25:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const UConverterSharedData _ISO2022Data={
|
2000-11-22 02:05:29 +00:00
|
|
|
sizeof(UConverterSharedData),
|
|
|
|
~((uint32_t) 0),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&_ISO2022StaticData,
|
|
|
|
FALSE,
|
|
|
|
&_ISO2022Impl,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
/*************JP****************/
|
|
|
|
static const UConverterImpl _ISO2022JPImpl={
|
|
|
|
|
|
|
|
UCNV_ISO_2022,
|
|
|
|
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
|
|
|
|
_ISO2022Open,
|
|
|
|
_ISO2022Close,
|
|
|
|
_ISO2022Reset,
|
|
|
|
|
|
|
|
UConverter_toUnicode_ISO_2022_JP_OFFSETS_LOGIC,
|
2001-02-02 03:51:57 +00:00
|
|
|
UConverter_toUnicode_ISO_2022_JP_OFFSETS_LOGIC,
|
|
|
|
UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC,
|
2000-11-22 02:05:29 +00:00
|
|
|
UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC,
|
2000-12-19 00:29:27 +00:00
|
|
|
NULL,
|
2000-11-22 02:05:29 +00:00
|
|
|
|
|
|
|
NULL,
|
2001-02-02 03:51:57 +00:00
|
|
|
_ISO2022getName,
|
|
|
|
_ISO_2022_WriteSub
|
|
|
|
};
|
|
|
|
const UConverterStaticData _ISO2022JPStaticData={
|
|
|
|
sizeof(UConverterStaticData),
|
|
|
|
"ISO_2022_JP",
|
|
|
|
0,
|
|
|
|
UCNV_IBM,
|
|
|
|
UCNV_ISO_2022,
|
|
|
|
1,
|
|
|
|
6,
|
|
|
|
{ 0x1a, 0, 0, 0 },
|
|
|
|
1,
|
|
|
|
FALSE,
|
|
|
|
FALSE,
|
|
|
|
0,
|
|
|
|
{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */
|
2000-11-22 02:05:29 +00:00
|
|
|
};
|
|
|
|
const UConverterSharedData _ISO2022JPData={
|
|
|
|
sizeof(UConverterSharedData),
|
|
|
|
~((uint32_t) 0),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2001-02-02 03:51:57 +00:00
|
|
|
&_ISO2022JPStaticData,
|
2000-11-22 02:05:29 +00:00
|
|
|
FALSE,
|
|
|
|
&_ISO2022JPImpl,
|
|
|
|
0
|
2000-10-05 02:25:53 +00:00
|
|
|
};
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-11-22 02:05:29 +00:00
|
|
|
/************* KR ***************/
|
|
|
|
static const UConverterImpl _ISO2022KRImpl={
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-22 02:05:29 +00:00
|
|
|
UCNV_ISO_2022,
|
|
|
|
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
|
|
|
|
_ISO2022Open,
|
|
|
|
_ISO2022Close,
|
|
|
|
_ISO2022Reset,
|
|
|
|
|
|
|
|
UConverter_toUnicode_ISO_2022_KR_OFFSETS_LOGIC,
|
2001-02-02 03:51:57 +00:00
|
|
|
UConverter_toUnicode_ISO_2022_KR_OFFSETS_LOGIC,
|
|
|
|
UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC,
|
2000-11-22 02:05:29 +00:00
|
|
|
UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC,
|
2000-12-19 00:29:27 +00:00
|
|
|
NULL,
|
2000-11-22 02:05:29 +00:00
|
|
|
|
|
|
|
NULL,
|
2001-02-02 03:51:57 +00:00
|
|
|
_ISO2022getName,
|
|
|
|
_ISO_2022_WriteSub
|
|
|
|
};
|
|
|
|
const UConverterStaticData _ISO2022KRStaticData={
|
|
|
|
sizeof(UConverterStaticData),
|
|
|
|
"ISO_2022_KR",
|
|
|
|
0,
|
|
|
|
UCNV_IBM,
|
|
|
|
UCNV_ISO_2022,
|
|
|
|
1,
|
|
|
|
3,
|
|
|
|
{ 0x1a, 0, 0, 0 },
|
|
|
|
1,
|
|
|
|
FALSE,
|
|
|
|
FALSE,
|
|
|
|
0,
|
|
|
|
{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */
|
2000-11-22 02:05:29 +00:00
|
|
|
};
|
|
|
|
const UConverterSharedData _ISO2022KRData={
|
|
|
|
sizeof(UConverterSharedData),
|
|
|
|
~((uint32_t) 0),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2001-02-02 03:51:57 +00:00
|
|
|
&_ISO2022KRStaticData,
|
2000-11-22 02:05:29 +00:00
|
|
|
FALSE,
|
|
|
|
&_ISO2022KRImpl,
|
|
|
|
0
|
|
|
|
};
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-11-22 02:05:29 +00:00
|
|
|
/*************** CN ***************/
|
|
|
|
static const UConverterImpl _ISO2022CNImpl={
|
|
|
|
|
|
|
|
UCNV_ISO_2022,
|
|
|
|
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
|
|
|
|
_ISO2022Open,
|
|
|
|
_ISO2022Close,
|
|
|
|
_ISO2022Reset,
|
|
|
|
|
|
|
|
UConverter_toUnicode_ISO_2022_CN_OFFSETS_LOGIC,
|
2001-02-02 03:51:57 +00:00
|
|
|
UConverter_toUnicode_ISO_2022_CN_OFFSETS_LOGIC,
|
|
|
|
UConverter_fromUnicode_ISO_2022_CN_OFFSETS_LOGIC,
|
2000-11-22 02:05:29 +00:00
|
|
|
UConverter_fromUnicode_ISO_2022_CN_OFFSETS_LOGIC,
|
2000-12-19 00:29:27 +00:00
|
|
|
NULL,
|
2000-11-22 02:05:29 +00:00
|
|
|
|
|
|
|
NULL,
|
2001-02-02 03:51:57 +00:00
|
|
|
_ISO2022getName,
|
|
|
|
_ISO_2022_WriteSub
|
|
|
|
|
|
|
|
};
|
|
|
|
const UConverterStaticData _ISO2022CNStaticData={
|
|
|
|
sizeof(UConverterStaticData),
|
|
|
|
"ISO_2022_CN",
|
|
|
|
0,
|
|
|
|
UCNV_IBM,
|
|
|
|
UCNV_ISO_2022,
|
|
|
|
2,
|
|
|
|
8,
|
|
|
|
{ 0x1a, 0, 0, 0 },
|
|
|
|
1,
|
|
|
|
FALSE,
|
|
|
|
FALSE,
|
|
|
|
0,
|
|
|
|
{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */
|
2000-11-22 02:05:29 +00:00
|
|
|
};
|
|
|
|
const UConverterSharedData _ISO2022CNData={
|
|
|
|
sizeof(UConverterSharedData),
|
|
|
|
~((uint32_t) 0),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2001-02-02 03:51:57 +00:00
|
|
|
&_ISO2022CNStaticData,
|
2000-11-22 02:05:29 +00:00
|
|
|
FALSE,
|
|
|
|
&_ISO2022CNImpl,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-11-22 02:05:29 +00:00
|
|
|
/**********/
|
|
|
|
|
2000-11-29 01:04:03 +00:00
|
|
|
static void _ISO2022Open(UConverter *cnv, const char *name, const char *locale,uint32_t options, UErrorCode *errorCode){
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
char myLocale[6]={' ',' ',' ',' ',' ',' '};
|
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
cnv->extraInfo = uprv_malloc (sizeof (UConverterDataISO2022));
|
|
|
|
if(cnv->extraInfo != NULL) {
|
2000-08-29 21:47:40 +00:00
|
|
|
UConverterDataISO2022 *myConverterData=(UConverterDataISO2022 *) cnv->extraInfo;
|
2000-10-05 02:25:53 +00:00
|
|
|
myConverterData->currentConverter = NULL;
|
|
|
|
myConverterData->fromUnicodeConverter = NULL;
|
2001-02-02 03:51:57 +00:00
|
|
|
myConverterData->currentType= ASCII1;
|
2000-10-05 02:25:53 +00:00
|
|
|
myConverterData->plane = -1;
|
2000-10-20 02:45:38 +00:00
|
|
|
myConverterData->key =0;
|
2000-08-29 21:47:40 +00:00
|
|
|
cnv->fromUnicodeStatus =FALSE;
|
2000-10-05 02:25:53 +00:00
|
|
|
if(locale){
|
|
|
|
uprv_strcpy(myLocale,locale);
|
|
|
|
myConverterData->isLocaleSpecified = TRUE;
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2000-10-28 01:09:46 +00:00
|
|
|
myConverterData->version= 0;
|
2000-08-14 23:56:19 +00:00
|
|
|
myConverterData->myConverterArray[0] =NULL;
|
2000-10-05 02:25:53 +00:00
|
|
|
if(myLocale[0]=='j' && (myLocale[1]=='a'|| myLocale[1]=='p') &&
|
|
|
|
(myLocale[2]=='_' || myLocale[2]=='\0')){
|
|
|
|
|
|
|
|
/* open the required converters and cache them */
|
2000-08-29 21:47:40 +00:00
|
|
|
myConverterData->myConverterArray[0]= ucnv_open("ASCII", errorCode );
|
|
|
|
myConverterData->myConverterArray[1]= ucnv_open("ISO8859_1", errorCode);
|
|
|
|
myConverterData->myConverterArray[2]= ucnv_open("ISO8859_7", errorCode);
|
|
|
|
myConverterData->myConverterArray[3]= ucnv_open("jisx-201", errorCode);
|
|
|
|
myConverterData->myConverterArray[4]= ucnv_open("jisx-208", errorCode);
|
|
|
|
myConverterData->myConverterArray[5]= ucnv_open("jisx-212", errorCode);
|
2000-10-05 02:25:53 +00:00
|
|
|
myConverterData->myConverterArray[6]= ucnv_open("gb_2312_80-1", errorCode);
|
2000-10-10 22:38:43 +00:00
|
|
|
myConverterData->myConverterArray[7]= ucnv_open("ksc_5601_1", errorCode);
|
2000-08-29 21:47:40 +00:00
|
|
|
myConverterData->myConverterArray[8]= NULL;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
/* initialize the state variables */
|
2000-11-17 03:01:23 +00:00
|
|
|
setInitialStateToUnicodeJPCN(cnv, myConverterData);
|
2001-02-02 03:51:57 +00:00
|
|
|
setInitialStateFromUnicodeJPCN(cnv,myConverterData);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
/* set the function pointers to appropriate funtions */
|
2000-11-22 02:05:29 +00:00
|
|
|
cnv->sharedData=(UConverterSharedData*)(&_ISO2022JPData);
|
|
|
|
uprv_strcpy(myConverterData->locale,"ja");
|
|
|
|
uprv_strcpy(myConverterData->name,"ISO_2022,locale=ja");
|
|
|
|
if(options){
|
2000-11-29 01:04:03 +00:00
|
|
|
switch (options & UCNV_OPTIONS_VERSION_MASK){
|
2000-11-22 02:05:29 +00:00
|
|
|
case 1:
|
2000-10-28 01:09:46 +00:00
|
|
|
myConverterData->version = 1;
|
2000-11-22 02:05:29 +00:00
|
|
|
uprv_strcpy(myConverterData->name,"ISO_2022,locale=ja,version=1");
|
2000-10-28 01:09:46 +00:00
|
|
|
break;
|
2000-11-22 02:05:29 +00:00
|
|
|
case 2:
|
2000-10-28 01:09:46 +00:00
|
|
|
myConverterData->version = 2;
|
2000-11-22 02:05:29 +00:00
|
|
|
uprv_strcpy(myConverterData->name,"ISO_2022,locale=ja,version=2");
|
2000-10-28 01:51:00 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
myConverterData->version = 0;
|
2000-10-28 01:09:46 +00:00
|
|
|
}
|
|
|
|
}
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
else if(myLocale[0]=='k' && (myLocale[1]=='o'|| myLocale[1]=='r') &&
|
|
|
|
(myLocale[2]=='_' || myLocale[2]=='\0')){
|
|
|
|
|
|
|
|
/* initialize the state variables */
|
2000-11-17 03:01:23 +00:00
|
|
|
setInitialStateToUnicodeKR(cnv, myConverterData);
|
|
|
|
setInitialStateFromUnicodeKR(cnv,myConverterData);
|
|
|
|
|
2000-12-14 20:19:19 +00:00
|
|
|
myConverterData->currentConverter=myConverterData->fromUnicodeConverter = ucnv_open("ibm-949",errorCode);
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
/* set the function pointers to appropriate funtions */
|
2000-11-22 02:05:29 +00:00
|
|
|
cnv->sharedData=(UConverterSharedData*)&_ISO2022KRData;
|
2001-02-02 03:51:57 +00:00
|
|
|
cnv->mode=UCNV_SI;
|
2000-11-22 02:05:29 +00:00
|
|
|
uprv_strcpy(myConverterData->locale,"kr");
|
|
|
|
uprv_strcpy(myConverterData->name,"ISO_2022,locale=kr");
|
|
|
|
myConverterData->version=0;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-08-22 00:02:54 +00:00
|
|
|
}
|
2001-02-02 20:49:38 +00:00
|
|
|
else if(((myLocale[0]=='z' && myLocale[1]=='h') || (myLocale[0]=='c'&& myLocale[1]=='n'))&&
|
2000-10-05 02:25:53 +00:00
|
|
|
(myLocale[2]=='_' || myLocale[2]=='\0')){
|
|
|
|
|
|
|
|
/* open the required converters and cache them */
|
2000-09-19 01:41:17 +00:00
|
|
|
myConverterData->myConverterArray[0] = ucnv_open("ASCII",errorCode);
|
2000-10-17 08:06:45 +00:00
|
|
|
myConverterData->myConverterArray[1] = ucnv_open("gb_2312_80-1",errorCode);
|
2000-09-19 01:41:17 +00:00
|
|
|
myConverterData->myConverterArray[2] = ucnv_open("ISO-IR-165",errorCode);
|
|
|
|
myConverterData->myConverterArray[3] = ucnv_open("CNS-11643-1992",errorCode);
|
|
|
|
myConverterData->myConverterArray[4] = NULL;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
/*initialize the state variables*/
|
2000-11-17 03:01:23 +00:00
|
|
|
setInitialStateToUnicodeJPCN(cnv, myConverterData);
|
2001-02-02 03:51:57 +00:00
|
|
|
setInitialStateFromUnicodeJPCN(cnv,myConverterData);
|
2000-11-22 02:05:29 +00:00
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
/* set the function pointers to appropriate funtions */
|
2000-11-22 02:05:29 +00:00
|
|
|
cnv->sharedData=(UConverterSharedData*)&_ISO2022CNData;
|
|
|
|
uprv_strcpy(myConverterData->locale,"cn");
|
|
|
|
uprv_strcpy(myConverterData->name,"ISO_2022,locale=cn");
|
|
|
|
|
|
|
|
if(options){
|
2000-11-29 01:04:03 +00:00
|
|
|
switch (options & UCNV_OPTIONS_VERSION_MASK){
|
2000-11-22 02:05:29 +00:00
|
|
|
case 1:
|
2000-10-28 01:09:46 +00:00
|
|
|
myConverterData->version = 1;
|
2000-11-22 02:05:29 +00:00
|
|
|
uprv_strcpy(myConverterData->name,"ISO_2022,locale=cn,version=1");
|
2000-10-28 01:09:46 +00:00
|
|
|
break;
|
|
|
|
default:
|
2000-10-28 01:51:00 +00:00
|
|
|
myConverterData->version = 0;
|
2000-10-28 01:09:46 +00:00
|
|
|
}
|
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-22 02:05:29 +00:00
|
|
|
|
2000-09-19 01:41:17 +00:00
|
|
|
}
|
2000-08-14 23:56:19 +00:00
|
|
|
else{
|
2000-10-05 02:25:53 +00:00
|
|
|
/* append the UTF-8 escape sequence */
|
2000-08-14 23:56:19 +00:00
|
|
|
cnv->charErrorBufferLength = 3;
|
|
|
|
cnv->charErrorBuffer[0] = 0x1b;
|
|
|
|
cnv->charErrorBuffer[1] = 0x25;
|
|
|
|
cnv->charErrorBuffer[2] = 0x42;
|
2000-11-22 02:05:29 +00:00
|
|
|
|
|
|
|
cnv->sharedData=(UConverterSharedData*)&_ISO2022Data;
|
2000-10-05 02:25:53 +00:00
|
|
|
/* initialize the state variables */
|
|
|
|
myConverterData->isLocaleSpecified=FALSE;
|
2000-11-22 02:05:29 +00:00
|
|
|
uprv_strcpy(myConverterData->name,"ISO_2022");
|
2000-08-14 23:56:19 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
} else {
|
|
|
|
*errorCode = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
}
|
|
|
|
|
2000-08-14 23:56:19 +00:00
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
static void
|
|
|
|
_ISO2022Close(UConverter *converter) {
|
2000-12-14 20:19:19 +00:00
|
|
|
UConverterDataISO2022* myData =(UConverterDataISO2022 *) (converter->extraInfo);
|
|
|
|
UConverter **array = myData->myConverterArray;
|
2000-09-19 01:41:17 +00:00
|
|
|
|
2000-02-09 19:15:17 +00:00
|
|
|
if (converter->extraInfo != NULL) {
|
2001-01-23 01:29:06 +00:00
|
|
|
|
2000-08-29 21:47:40 +00:00
|
|
|
/*close the array of converter pointers and free the memory*/
|
|
|
|
while(*array!=NULL){
|
2000-12-14 20:19:19 +00:00
|
|
|
if(*array==myData->currentConverter){
|
|
|
|
myData->currentConverter=NULL;
|
2000-10-28 01:09:46 +00:00
|
|
|
}
|
2000-08-29 21:47:40 +00:00
|
|
|
ucnv_close(*array++);
|
2000-10-28 01:09:46 +00:00
|
|
|
|
|
|
|
}
|
2000-12-14 20:19:19 +00:00
|
|
|
if(myData->currentConverter){
|
|
|
|
ucnv_close(myData->currentConverter);
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2000-02-08 23:41:16 +00:00
|
|
|
uprv_free (converter->extraInfo);
|
|
|
|
}
|
|
|
|
}
|
2000-08-25 23:14:10 +00:00
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
static void
|
2000-12-20 21:18:46 +00:00
|
|
|
_ISO2022Reset(UConverter *converter, UConverterResetChoice choice) {
|
2000-10-05 02:25:53 +00:00
|
|
|
UConverterDataISO2022 *myConverterData=(UConverterDataISO2022 *) (converter->extraInfo);
|
|
|
|
if(! myConverterData->isLocaleSpecified){
|
2000-12-20 21:18:46 +00:00
|
|
|
if(choice<=UCNV_RESET_TO_UNICODE) {
|
|
|
|
if (converter->mode == UCNV_SO){
|
|
|
|
ucnv_close (myConverterData->currentConverter);
|
|
|
|
myConverterData->currentConverter=NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(choice!=UCNV_RESET_TO_UNICODE) {
|
|
|
|
/* re-append UTF-8 escape sequence */
|
|
|
|
converter->charErrorBufferLength = 3;
|
|
|
|
converter->charErrorBuffer[0] = 0x1b;
|
|
|
|
converter->charErrorBuffer[1] = 0x28;
|
|
|
|
converter->charErrorBuffer[2] = 0x42;
|
2000-12-19 02:28:33 +00:00
|
|
|
}
|
2000-08-14 23:56:19 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
else {
|
|
|
|
/* reset the state variables */
|
2000-12-19 02:28:33 +00:00
|
|
|
if(myConverterData->locale[0] == 'j' || myConverterData->locale[0] == 'c'){
|
2000-12-20 21:18:46 +00:00
|
|
|
if(choice<=UCNV_RESET_TO_UNICODE) {
|
|
|
|
setInitialStateToUnicodeJPCN(converter, myConverterData);
|
|
|
|
}
|
|
|
|
if(choice!=UCNV_RESET_TO_UNICODE) {
|
2001-02-02 03:51:57 +00:00
|
|
|
setInitialStateFromUnicodeJPCN(converter,myConverterData);
|
2000-12-20 21:18:46 +00:00
|
|
|
}
|
2000-12-19 02:28:33 +00:00
|
|
|
}
|
2001-01-23 01:29:06 +00:00
|
|
|
else if(myConverterData->locale[0] == 'k'){
|
2000-12-20 21:18:46 +00:00
|
|
|
if(choice<=UCNV_RESET_TO_UNICODE) {
|
|
|
|
setInitialStateToUnicodeKR(converter, myConverterData);
|
|
|
|
}
|
|
|
|
if(choice!=UCNV_RESET_TO_UNICODE) {
|
|
|
|
setInitialStateFromUnicodeKR(converter, myConverterData);
|
|
|
|
}
|
2000-12-19 02:28:33 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
}
|
2000-12-20 21:18:46 +00:00
|
|
|
|
2000-11-27 17:40:41 +00:00
|
|
|
static const char* _ISO2022getName(const UConverter* cnv){
|
2000-11-22 02:05:29 +00:00
|
|
|
if(cnv->extraInfo){
|
|
|
|
UConverterDataISO2022* myData= (UConverterDataISO2022*)cnv->extraInfo;
|
|
|
|
return myData->name;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
|
|
|
|
static void setInitialStateToUnicodeJPCN(UConverter* converter,UConverterDataISO2022 *myConverterData ){
|
|
|
|
myConverterData->toUnicodeCurrentState =ASCII;
|
|
|
|
myConverterData->currentConverter = NULL;
|
|
|
|
myConverterData->isFirstBuffer = TRUE;
|
|
|
|
converter->mode = UCNV_SI;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
static void setInitialStateFromUnicodeJPCN(UConverter* converter,UConverterDataISO2022 *myConverterData){
|
2000-11-17 03:01:23 +00:00
|
|
|
myConverterData->fromUnicodeCurrentState= ASCII;
|
|
|
|
myConverterData->isEscapeAppended=FALSE;
|
|
|
|
myConverterData->isShiftAppended=FALSE;
|
|
|
|
myConverterData->isLocaleSpecified=TRUE;
|
2001-02-08 19:45:07 +00:00
|
|
|
myConverterData->currentType = ASCII1;
|
2001-02-02 03:51:57 +00:00
|
|
|
converter->fromUnicodeStatus = FALSE;
|
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void setInitialStateToUnicodeKR(UConverter* converter, UConverterDataISO2022 *myConverterData){
|
|
|
|
|
|
|
|
myConverterData->isLocaleSpecified=TRUE;
|
|
|
|
converter->mode = UCNV_SI;
|
|
|
|
myConverterData->currentConverter = myConverterData->fromUnicodeConverter;
|
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
}
|
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
static void setInitialStateFromUnicodeKR(UConverter* converter,UConverterDataISO2022 *myConverterData){
|
|
|
|
/* in ISO-2022-KR the desginator sequence appears only once
|
|
|
|
* in a file so we append it only once
|
|
|
|
*/
|
|
|
|
if( converter->charErrorBufferLength==0){
|
2000-08-29 21:47:40 +00:00
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
converter->charErrorBufferLength = 4;
|
|
|
|
converter->charErrorBuffer[0] = 0x1b;
|
|
|
|
converter->charErrorBuffer[1] = 0x24;
|
|
|
|
converter->charErrorBuffer[2] = 0x29;
|
|
|
|
converter->charErrorBuffer[3] = 0x43;
|
|
|
|
}
|
|
|
|
myConverterData->isLocaleSpecified=TRUE;
|
|
|
|
myConverterData->isShiftAppended=FALSE;
|
|
|
|
|
|
|
|
}
|
2000-08-29 21:47:40 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/**********************************************************************************
|
2000-10-05 02:25:53 +00:00
|
|
|
* ISO-2022 Converter
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2000-08-29 21:47:40 +00:00
|
|
|
|
|
|
|
U_CFUNC UChar32 T_UConverter_getNextUChar_ISO_2022(UConverterToUnicodeArgs* args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode* err){
|
2000-08-29 21:47:40 +00:00
|
|
|
const char* mySourceLimit;
|
2000-11-17 03:01:23 +00:00
|
|
|
int plane=0; /*dummy variable*/
|
2001-02-02 03:51:57 +00:00
|
|
|
UConverterDataISO2022* myData =((UConverterDataISO2022*)(args->converter->extraInfo));
|
2000-08-29 21:47:40 +00:00
|
|
|
/*Arguments Check*/
|
|
|
|
if (args->sourceLimit < args->source){
|
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return 0xffff;
|
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-08-29 21:47:40 +00:00
|
|
|
do{
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-20 18:08:49 +00:00
|
|
|
mySourceLimit = getEndOfBuffer_2022(&(args->source), args->sourceLimit, TRUE);
|
2000-08-29 21:47:40 +00:00
|
|
|
/*Find the end of the buffer e.g : Next Escape Seq | end of Buffer*/
|
|
|
|
if (args->converter->mode == UCNV_SO) /*Already doing some conversion*/{
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
return ucnv_getNextUChar(myData->currentConverter,
|
2000-10-05 02:25:53 +00:00
|
|
|
&(args->source),
|
|
|
|
mySourceLimit,
|
|
|
|
err);
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
|
|
|
/*-Done with buffer with entire buffer
|
2000-10-05 02:25:53 +00:00
|
|
|
*-Error while converting
|
|
|
|
*/
|
2000-08-29 21:47:40 +00:00
|
|
|
changeState_2022(args->converter,
|
2000-11-20 18:08:49 +00:00
|
|
|
&(args->source),
|
2000-10-05 02:25:53 +00:00
|
|
|
args->sourceLimit,
|
|
|
|
TRUE,
|
2000-11-17 03:01:23 +00:00
|
|
|
ISO_2022,
|
|
|
|
&plane,
|
2000-10-05 02:25:53 +00:00
|
|
|
err);
|
2000-08-29 21:47:40 +00:00
|
|
|
}while(args->source < args->sourceLimit);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-08-29 21:47:40 +00:00
|
|
|
return 0xffff;
|
|
|
|
}
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
U_CFUNC void T_UConverter_toUnicode_ISO_2022(UConverterToUnicodeArgs *args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode* err){
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
const char *mySourceLimit;
|
|
|
|
char const* sourceStart;
|
|
|
|
UConverter *saveThis;
|
2000-11-17 03:01:23 +00:00
|
|
|
int plane =0 ;/*dummy variable*/
|
2001-02-02 03:51:57 +00:00
|
|
|
UConverterDataISO2022* myData= ((UConverterDataISO2022*)(args->converter->extraInfo));
|
2000-09-21 00:34:21 +00:00
|
|
|
/*Arguments Check*/
|
|
|
|
if (U_FAILURE(*err))
|
|
|
|
return;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if ((args->converter == NULL) || (args->targetLimit < args->target) || (args->sourceLimit < args->source)){
|
2000-10-05 02:25:53 +00:00
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
do{
|
2000-09-21 00:34:21 +00:00
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
/*Find the end of the buffer e.g : Next Escape Seq | end of Buffer*/
|
2000-11-20 18:08:49 +00:00
|
|
|
mySourceLimit = getEndOfBuffer_2022(&(args->source), args->sourceLimit, args->flush);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
if (args->converter->mode == UCNV_SO) /*Already doing some conversion*/{
|
|
|
|
|
|
|
|
saveThis = args->converter;
|
|
|
|
args->offsets = NULL;
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter = myData->currentConverter;
|
2000-10-05 02:25:53 +00:00
|
|
|
ucnv_toUnicode(args->converter,
|
|
|
|
&args->target,
|
|
|
|
args->targetLimit,
|
|
|
|
&args->source,
|
|
|
|
mySourceLimit,
|
|
|
|
args->offsets,
|
|
|
|
args->flush,
|
|
|
|
err);
|
|
|
|
args->converter = saveThis;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
if((myData->isFirstBuffer) && (args->source[0]!=(char)ESC_2022)
|
|
|
|
&& (myData->currentConverter==NULL)){
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
saveThis = args->converter;
|
|
|
|
args->offsets = NULL;
|
2001-02-02 03:51:57 +00:00
|
|
|
myData->currentConverter = ucnv_open("ASCII",err);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
if(U_FAILURE(*err)){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter = myData->currentConverter;
|
2000-10-05 02:25:53 +00:00
|
|
|
ucnv_toUnicode(args->converter,
|
|
|
|
&args->target,
|
|
|
|
args->targetLimit,
|
|
|
|
&args->source,
|
|
|
|
mySourceLimit,
|
|
|
|
args->offsets,
|
|
|
|
args->flush,
|
|
|
|
err);
|
|
|
|
args->converter = saveThis;
|
|
|
|
args->converter->mode = UCNV_SO;
|
2001-02-02 03:51:57 +00:00
|
|
|
myData->isFirstBuffer=FALSE;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
/*-Done with buffer with entire buffer
|
|
|
|
-Error while converting
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (U_FAILURE(*err) || (args->source == args->sourceLimit))
|
2000-09-21 00:34:21 +00:00
|
|
|
return;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
sourceStart = args->source;
|
|
|
|
changeState_2022(args->converter,
|
2000-11-20 18:08:49 +00:00
|
|
|
&(args->source),
|
2000-11-17 03:01:23 +00:00
|
|
|
args->sourceLimit,
|
|
|
|
TRUE,
|
|
|
|
ISO_2022,
|
|
|
|
&plane,
|
|
|
|
err);
|
2000-10-05 02:25:53 +00:00
|
|
|
/* args->source = sourceStart; */
|
|
|
|
|
|
|
|
|
|
|
|
}while(args->source < args->sourceLimit);
|
2000-09-21 00:34:21 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
myData->isFirstBuffer=FALSE;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
return;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-08-14 23:56:19 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
U_CFUNC void T_UConverter_toUnicode_ISO_2022_OFFSETS_LOGIC(UConverterToUnicodeArgs* args,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode* err){
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
int32_t myOffset=0;
|
|
|
|
int32_t base = 0;
|
|
|
|
const char* mySourceLimit;
|
|
|
|
char const* sourceStart;
|
2001-01-23 01:29:06 +00:00
|
|
|
UConverter* saveThis;
|
2000-11-17 03:01:23 +00:00
|
|
|
int plane =0;/*dummy variable*/
|
2001-02-02 03:51:57 +00:00
|
|
|
UConverterDataISO2022* myData=((UConverterDataISO2022*)(args->converter->extraInfo));
|
2000-09-21 00:34:21 +00:00
|
|
|
/*Arguments Check*/
|
|
|
|
if (U_FAILURE(*err))
|
|
|
|
return;
|
|
|
|
if ((args->converter == NULL) || (args->targetLimit < args->target) || (args->sourceLimit < args->source)){
|
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
do{
|
2000-11-20 18:08:49 +00:00
|
|
|
mySourceLimit = getEndOfBuffer_2022(&(args->source), args->sourceLimit, args->flush);
|
2000-10-05 02:25:53 +00:00
|
|
|
/*Find the end of the buffer e.g : Next Escape Seq | end of Buffer*/
|
|
|
|
|
|
|
|
if (args->converter->mode == UCNV_SO) /*Already doing some conversion*/{
|
|
|
|
const UChar* myTargetStart = args->target;
|
|
|
|
|
|
|
|
saveThis = args->converter;
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter = myData->currentConverter;
|
2000-10-05 02:25:53 +00:00
|
|
|
ucnv_toUnicode(args->converter,
|
|
|
|
&(args->target),
|
|
|
|
args->targetLimit,
|
|
|
|
&(args->source),
|
|
|
|
mySourceLimit,
|
|
|
|
args->offsets,
|
|
|
|
args->flush,
|
|
|
|
err);
|
|
|
|
|
|
|
|
args->converter = saveThis;
|
|
|
|
{
|
2000-11-20 18:08:49 +00:00
|
|
|
int32_t lim = args->target - myTargetStart;
|
|
|
|
int32_t i = 0;
|
2000-10-05 02:25:53 +00:00
|
|
|
for (i=base; i < lim;i++){
|
|
|
|
args->offsets[i] += myOffset;
|
|
|
|
}
|
2000-11-20 18:08:49 +00:00
|
|
|
base += lim;
|
2000-10-05 02:25:53 +00:00
|
|
|
}
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
if(myData->isFirstBuffer && args->source[0]!=ESC_2022
|
|
|
|
&& (myData->currentConverter==NULL)){
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
const UChar* myTargetStart = args->target;
|
2001-01-23 01:29:06 +00:00
|
|
|
saveThis = args->converter;
|
2000-10-05 02:25:53 +00:00
|
|
|
args->offsets = NULL;
|
2001-02-02 03:51:57 +00:00
|
|
|
myData->currentConverter = ucnv_open("ASCII",err);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
if(U_FAILURE(*err)){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter = myData->currentConverter;
|
2000-10-05 02:25:53 +00:00
|
|
|
ucnv_toUnicode(args->converter,
|
|
|
|
&args->target,
|
|
|
|
args->targetLimit,
|
|
|
|
&args->source,
|
|
|
|
mySourceLimit,
|
|
|
|
args->offsets,
|
|
|
|
args->flush,
|
|
|
|
err);
|
|
|
|
args->converter = saveThis;
|
|
|
|
args->converter->mode = UCNV_SO;
|
2001-02-02 03:51:57 +00:00
|
|
|
myData->isFirstBuffer=FALSE;
|
2001-01-23 01:29:06 +00:00
|
|
|
/* args->converter = saveThis;*/
|
2000-10-05 02:25:53 +00:00
|
|
|
{
|
2000-11-20 18:08:49 +00:00
|
|
|
int32_t lim = args->target - myTargetStart;
|
|
|
|
int32_t i = 0;
|
2000-10-05 02:25:53 +00:00
|
|
|
for (i=base; i < lim;i++){
|
|
|
|
args->offsets[i] += myOffset;
|
|
|
|
}
|
2000-11-20 18:08:49 +00:00
|
|
|
base += lim;
|
2000-10-05 02:25:53 +00:00
|
|
|
}
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
/*-Done with buffer with entire buffer
|
|
|
|
-Error while converting
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (U_FAILURE(*err) || (args->source == args->sourceLimit))
|
2000-09-21 00:34:21 +00:00
|
|
|
return;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
sourceStart = args->source;
|
|
|
|
changeState_2022(args->converter,
|
2000-11-20 18:08:49 +00:00
|
|
|
&(args->source),
|
2000-11-17 03:01:23 +00:00
|
|
|
args->sourceLimit,
|
|
|
|
TRUE,
|
|
|
|
ISO_2022,
|
|
|
|
&plane,
|
|
|
|
err);
|
2000-10-05 02:25:53 +00:00
|
|
|
myOffset += args->source - sourceStart;
|
|
|
|
|
|
|
|
}while(mySourceLimit != args->sourceLimit);
|
|
|
|
|
|
|
|
return;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
UCNV_TableStates_2022 getKey_2022(char c,
|
|
|
|
int32_t* key,
|
|
|
|
int32_t* offset){
|
|
|
|
int32_t togo = *key;
|
|
|
|
int32_t low = 0;
|
|
|
|
int32_t hi = MAX_STATES_2022;
|
|
|
|
int32_t oldmid=0;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if (*key == 0){
|
|
|
|
togo = (int8_t)normalize_esq_chars_2022[(int)c];
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
togo <<= 5;
|
|
|
|
togo += (int8_t)normalize_esq_chars_2022[(int)c];
|
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
while (hi != low) /*binary search*/{
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
register int32_t mid = (hi+low) >> 1; /*Finds median*/
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if (mid == oldmid)
|
2000-10-05 02:25:53 +00:00
|
|
|
break;
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if (escSeqStateTable_Key_2022[mid] > togo){
|
2000-10-05 02:25:53 +00:00
|
|
|
hi = mid;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
else if (escSeqStateTable_Key_2022[mid] < togo){
|
2000-10-05 02:25:53 +00:00
|
|
|
low = mid;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
else /*we found it*/{
|
2000-10-05 02:25:53 +00:00
|
|
|
*key = togo;
|
|
|
|
*offset = mid;
|
|
|
|
return escSeqStateTable_Value_2022[mid];
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
oldmid = mid;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
*key = 0;
|
|
|
|
*offset = 0;
|
|
|
|
return INVALID_2022;
|
|
|
|
}
|
2000-08-29 21:47:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/*Checks the characters of the buffer against valid 2022 escape sequences
|
2000-10-05 02:25:53 +00:00
|
|
|
*if the match we return a pointer to the initial start of the sequence otherwise
|
|
|
|
*we return sourceLimit
|
|
|
|
*/
|
2000-09-21 00:34:21 +00:00
|
|
|
static const char* getEndOfBuffer_2022(const char** source,
|
2000-10-05 02:25:53 +00:00
|
|
|
const char* sourceLimit,
|
|
|
|
UBool flush){
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
const char* mySource = *source;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if (*source >= sourceLimit)
|
|
|
|
return sourceLimit;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
do{
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if (*mySource == ESC_2022){
|
|
|
|
int8_t i;
|
|
|
|
int32_t key = 0;
|
|
|
|
int32_t offset;
|
|
|
|
UCNV_TableStates_2022 value = VALID_NON_TERMINAL_2022;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/* Kludge: I could not
|
2000-10-05 02:25:53 +00:00
|
|
|
* figure out the reason for validating an escape sequence
|
|
|
|
* twice - once here and once in changeState_2022().
|
2000-11-20 18:08:49 +00:00
|
|
|
* is it possible to have an ESC character in a ISO2022
|
|
|
|
* byte stream which is valid in a code page? Is it legal?
|
2000-10-05 02:25:53 +00:00
|
|
|
*/
|
2000-09-21 00:34:21 +00:00
|
|
|
for (i=0;
|
2000-10-05 02:25:53 +00:00
|
|
|
(mySource+i < sourceLimit)&&(value == VALID_NON_TERMINAL_2022);
|
|
|
|
i++) {
|
|
|
|
value = getKey_2022(*(mySource+i), &key, &offset);
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2000-10-20 02:45:38 +00:00
|
|
|
if (value > 0 || *mySource==ESC_2022)
|
2000-10-05 02:25:53 +00:00
|
|
|
return mySource;
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if ((value == VALID_NON_TERMINAL_2022)&&(!flush) )
|
|
|
|
return sourceLimit;
|
|
|
|
}
|
|
|
|
else if(*mySource == (char)UCNV_SI || *mySource==(char)UCNV_SO){
|
|
|
|
return mySource;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}while (mySource++ < sourceLimit);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
return sourceLimit;
|
|
|
|
}
|
2000-08-29 21:47:40 +00:00
|
|
|
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/**************************************ISO-2022-JP*************************************************/
|
2000-08-29 21:47:40 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/************************************** IMPORTANT **************************************************
|
2001-01-02 23:12:52 +00:00
|
|
|
* The UConverter_fromUnicode_ISO2022_JP converter does not use ucnv_fromUnicode() functions for SBCS,DBCS and
|
|
|
|
* MBCS; instead, the values are obtained directly by calling _MBCSFromUChar32().
|
|
|
|
* The converter iterates over each Unicode codepoint
|
2000-10-05 02:25:53 +00:00
|
|
|
* to obtain the equivalent codepoints from the codepages supported. Since the source buffer is
|
|
|
|
* processed one char at a time it would make sense to reduce the extra processing a canned converter
|
|
|
|
* would do as far as possible.
|
|
|
|
*
|
|
|
|
* If the implementation of these macros or structure of sharedData struct change in the future, make
|
|
|
|
* sure that ISO-2022 is also changed.
|
|
|
|
***************************************************************************************************
|
|
|
|
*/
|
2000-08-29 21:47:40 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/***************************************************************************************************
|
2000-10-05 02:25:53 +00:00
|
|
|
* Rules for ISO-2022-jp encoding
|
|
|
|
* (i) Escape sequences must be fully contained within a line they should not
|
|
|
|
* span new lines or CRs
|
|
|
|
* (ii) If the last character on a line is represented by two bytes then an ASCII or
|
|
|
|
* JIS-Roman character escape sequence should follow before the line terminates
|
|
|
|
* (iii) If the first character on the line is represented by two bytes then a two
|
|
|
|
* byte character escape sequence should precede it
|
|
|
|
* (iv) If no escape sequence is encountered then the characters are ASCII
|
|
|
|
* (v) Latin(ISO-8859-1) and Greek(ISO-8859-7) characters must be designated to G2,
|
|
|
|
* and invoked with SS2 (ESC N).
|
|
|
|
* (vi) If there is any G0 designation in text, there must be a switch to
|
|
|
|
* ASCII or to JIS X 0201-Roman before a space character (but not
|
|
|
|
* necessarily before "ESC 4/14 2/0" or "ESC N ' '") or control
|
|
|
|
* characters such as tab or CRLF.
|
|
|
|
* (vi) Supported encodings:
|
|
|
|
* ASCII, JISX201, JISX208, JISX212, GB2312, KSC5601, ISO-8859-1,ISO-8859-7
|
|
|
|
*
|
|
|
|
* source : RFC-1554
|
|
|
|
*
|
|
|
|
* JISX201, JISX208,JISX212 : new .cnv data files created
|
|
|
|
* KSC5601 : alias to ibm-949 mapping table
|
|
|
|
* GB2312 : alias to ibm-1386 mapping table
|
|
|
|
* ISO-8859-1 : Algorithmic implemented as LATIN1 case
|
|
|
|
* ISO-8859-7 : alisas to ibm-9409 mapping table
|
|
|
|
*/
|
2001-02-02 03:51:57 +00:00
|
|
|
#define MAX_VALID_CP_JP 8
|
|
|
|
static Cnv2022Type myConverterType[MAX_VALID_CP_JP]={
|
2000-10-28 01:09:46 +00:00
|
|
|
ASCII1,
|
2000-09-21 00:34:21 +00:00
|
|
|
LATIN1,
|
|
|
|
SBCS,
|
|
|
|
SBCS,
|
|
|
|
DBCS,
|
|
|
|
DBCS,
|
|
|
|
DBCS,
|
2000-10-10 22:38:43 +00:00
|
|
|
DBCS,
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
};
|
2000-08-14 23:56:19 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
static StateEnum nextStateArray[3][MAX_VALID_CP_JP]= {
|
|
|
|
{JISX201 ,INVALID_STATE,INVALID_STATE,JISX208,ASCII,INVALID_STATE,INVALID_STATE,INVALID_STATE},
|
2000-10-28 01:09:46 +00:00
|
|
|
{JISX201,INVALID_STATE,INVALID_STATE,JISX208,JISX212,ASCII,INVALID_STATE,INVALID_STATE},
|
|
|
|
{ISO8859_1,ISO8859_7,JISX201,JISX208,JISX212,GB2312,KSC5601,ASCII}
|
|
|
|
};
|
2001-02-02 03:51:57 +00:00
|
|
|
static const char* escSeqChars[MAX_VALID_CP_JP] ={
|
2000-10-05 02:25:53 +00:00
|
|
|
"\x1B\x28\x42", /* <ESC>(B ASCII */
|
|
|
|
"\x1B\x2E\x41", /* <ESC>.A ISO-8859-1 */
|
|
|
|
"\x1B\x2E\x46", /* <ESC>.F ISO-8859-7 */
|
|
|
|
"\x1B\x28\x4A", /* <ESC>(J JISX-201 */
|
|
|
|
"\x1B\x24\x42", /* <ESC>$B JISX-208 */
|
|
|
|
"\x1B\x24\x28\x44", /* <ESC>$(D JISX-212 */
|
|
|
|
"\x1B\x24\x41", /* <ESC>$A GB2312 */
|
|
|
|
"\x1B\x24\x28\x43", /* <ESC>$(C KSC5601 */
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
};
|
2001-02-02 03:51:57 +00:00
|
|
|
static const int32_t escSeqCharsLen[MAX_VALID_CP_JP] ={
|
|
|
|
sizeof(escSeqChars[0]) - 1,
|
|
|
|
sizeof(escSeqChars[1]) - 1,
|
|
|
|
sizeof(escSeqChars[2]) - 1,
|
|
|
|
sizeof(escSeqChars[3]) - 1,
|
|
|
|
sizeof(escSeqChars[4]) - 1,
|
|
|
|
sizeof(escSeqChars[5]),
|
|
|
|
sizeof(escSeqChars[6]) - 1,
|
|
|
|
sizeof(escSeqChars[7]),
|
|
|
|
};
|
2000-08-29 21:47:40 +00:00
|
|
|
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/*
|
2000-10-05 02:25:53 +00:00
|
|
|
* The iteration over various code pages works this way:
|
|
|
|
* i) Get the currentState from myConverterData->currentState
|
|
|
|
* ii) Check if the character is mapped to a valid character in the currentState
|
|
|
|
* Yes -> a) set the initIterState to currentState
|
2000-11-20 18:08:49 +00:00
|
|
|
* b) remain in this state until an invalid character is found
|
2000-10-05 02:25:53 +00:00
|
|
|
* No -> a) go to the next code page and find the character
|
|
|
|
* iii) Before changing the state increment the current state check if the current state
|
|
|
|
* is equal to the intitIteration state
|
|
|
|
* Yes -> A character that cannot be represented in any of the supported encodings
|
2000-11-20 18:08:49 +00:00
|
|
|
* break and return a U_INVALID_CHARACTER error
|
2000-10-05 02:25:53 +00:00
|
|
|
* No -> Continue and find the character in next code page
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* TODO: Implement a priority technique where the users are allowed to set the priority of code pages
|
|
|
|
*/
|
2001-02-02 03:51:57 +00:00
|
|
|
U_CFUNC void UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC(UConverterFromUnicodeArgs* args, UErrorCode* err){
|
|
|
|
|
|
|
|
UConverterDataISO2022 *converterData = (UConverterDataISO2022*)args->converter->extraInfo;
|
|
|
|
unsigned char* target = (unsigned char*) args->target;
|
|
|
|
const unsigned char* targetLimit = (const unsigned char*) args->targetLimit;
|
|
|
|
UChar* source =(UChar*)args->source;
|
|
|
|
const UChar* sourceLimit = args->sourceLimit;
|
|
|
|
int32_t* offsets = args->offsets;
|
|
|
|
uint32_t targetUniChar = missingCharMarker;
|
|
|
|
UChar32 sourceChar =0x0000;
|
|
|
|
const char* escSeq = NULL;
|
|
|
|
int len =0; /*length of escSeq chars*/
|
2000-09-21 00:34:21 +00:00
|
|
|
UConverterCallbackReason reason;
|
2001-02-02 20:49:38 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
/* state variables*/
|
|
|
|
StateEnum* currentState = &converterData->fromUnicodeCurrentState;
|
|
|
|
StateEnum* initIterState = &converterData->initIterState;
|
|
|
|
UConverter** currentConverter = &converterData->fromUnicodeConverter;
|
|
|
|
Cnv2022Type* currentType = &converterData->currentType;
|
|
|
|
UConverter** convArray = converterData->myConverterArray;
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/* arguments check*/
|
2001-02-02 03:51:57 +00:00
|
|
|
if ((args->converter == NULL) || (targetLimit < target) || (sourceLimit < source)){
|
2000-10-05 02:25:53 +00:00
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
if(U_FAILURE(*err)){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
*initIterState = *currentState;
|
|
|
|
|
|
|
|
/* check if the last codepoint of previous buffer was a lead surrogate*/
|
|
|
|
if(args->converter->fromUSurrogateLead!=0 && target< targetLimit) {
|
2000-11-08 23:16:20 +00:00
|
|
|
goto getTrail;
|
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
while( source < sourceLimit){
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
*currentConverter = convArray[(*currentConverter==NULL) ? 0 : (int)*currentState];
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
targetUniChar = missingCharMarker;
|
|
|
|
|
|
|
|
if(target < targetLimit){
|
|
|
|
|
|
|
|
sourceChar = *(source++);
|
|
|
|
if(sourceChar > SPACE) {
|
|
|
|
|
2000-10-28 01:09:46 +00:00
|
|
|
do{
|
2001-02-02 03:51:57 +00:00
|
|
|
switch (*currentType){
|
|
|
|
/* most common case*/
|
2000-10-28 01:09:46 +00:00
|
|
|
case DBCS:
|
2001-01-02 23:12:52 +00:00
|
|
|
{
|
|
|
|
uint32_t value;
|
2001-02-02 03:51:57 +00:00
|
|
|
if(2 == _MBCSFromUChar32((*currentConverter)->sharedData,
|
|
|
|
sourceChar, &value, FALSE)) {
|
2001-01-02 23:12:52 +00:00
|
|
|
targetUniChar = (uint16_t)value;
|
|
|
|
}
|
2000-10-28 01:09:46 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-02 03:51:57 +00:00
|
|
|
case ASCII1:
|
|
|
|
if(sourceChar < 0x7f){
|
|
|
|
targetUniChar = sourceChar;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SBCS:
|
|
|
|
targetUniChar = (uint16_t)_MBCSSingleFromUChar32((*currentConverter)->sharedData,
|
|
|
|
sourceChar, FALSE);
|
|
|
|
/*
|
|
|
|
* If mySourceChar is unassigned, then _MBCSSingleFromUChar32() returns -1
|
|
|
|
* which becomes the same as missingCharMarker with the cast to uint16_t.
|
|
|
|
*/
|
|
|
|
break;
|
2000-11-17 03:01:23 +00:00
|
|
|
|
2000-10-28 01:09:46 +00:00
|
|
|
case LATIN1:
|
2001-02-02 03:51:57 +00:00
|
|
|
if(sourceChar <= 0x00FF){
|
|
|
|
targetUniChar = sourceChar;
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
|
|
|
|
2000-10-28 01:09:46 +00:00
|
|
|
break;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-28 01:09:46 +00:00
|
|
|
default:
|
|
|
|
/*not expected */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(targetUniChar==missingCharMarker){
|
2001-02-02 03:51:57 +00:00
|
|
|
*currentState = nextStateArray[converterData->version][*currentState];
|
|
|
|
*currentConverter = convArray[(*currentConverter==NULL) ? 0 : (int)*currentState];
|
|
|
|
*currentType = (Cnv2022Type) myConverterType[*currentState];
|
|
|
|
}
|
2000-10-28 01:09:46 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
}while(targetUniChar == missingCharMarker && *initIterState != *currentState);
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
|
|
|
|
targetUniChar = sourceChar;
|
2001-02-08 19:45:07 +00:00
|
|
|
*currentState = ASCII;
|
2001-02-02 03:51:57 +00:00
|
|
|
*currentType = (Cnv2022Type) myConverterType[*currentState];
|
2000-10-28 01:09:46 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
if(targetUniChar != missingCharMarker){
|
2000-09-21 00:34:21 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
if( *currentState != *initIterState){
|
|
|
|
|
|
|
|
escSeq = escSeqChars[(int)*currentState];
|
|
|
|
len = escSeqCharsLen[(int)*currentState];
|
2000-10-28 01:09:46 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
CONCAT_ESCAPE_EX(args, target, targetLimit, offsets, escSeq,len,err);
|
|
|
|
|
|
|
|
/* Append SSN for shifting to G2 */
|
|
|
|
if(*currentState==ISO8859_1 || *currentState==ISO8859_7){
|
|
|
|
escSeq = UCNV_SS2;
|
|
|
|
len = UCNV_SS2_LEN;
|
|
|
|
CONCAT_ESCAPE_EX(args, target, targetLimit,offsets, escSeq,len,err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*initIterState = *currentState;
|
|
|
|
/* write the targetUniChar to target */
|
|
|
|
if(targetUniChar <= 0x00FF){
|
|
|
|
if( target <targetLimit){
|
|
|
|
*(target++) = (unsigned char) targetUniChar;
|
|
|
|
|
|
|
|
}else{
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) targetUniChar;
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
if(target < targetLimit){
|
|
|
|
*(target++) =(unsigned char) (targetUniChar>>8);
|
|
|
|
if(target < targetLimit){
|
|
|
|
*(target++) =(unsigned char) (targetUniChar);
|
|
|
|
}else{
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetUniChar);
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetUniChar>>8);
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetUniChar);
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* write the offsets */
|
|
|
|
if(offsets){
|
|
|
|
int i = source - args->source-1;
|
|
|
|
len = 2 - (targetUniChar < 0x00FF);
|
|
|
|
while(len-->0){
|
|
|
|
*(offsets++) = i;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-08-23 01:21:23 +00:00
|
|
|
}
|
2000-10-28 01:09:46 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
}
|
2000-09-21 00:34:21 +00:00
|
|
|
else{
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-11-20 18:08:49 +00:00
|
|
|
/* if we cannot find the character after checking all codepages
|
|
|
|
* then this is an error
|
2000-10-28 01:09:46 +00:00
|
|
|
*/
|
2001-02-02 03:51:57 +00:00
|
|
|
reason = UCNV_UNASSIGNED;
|
|
|
|
*err = U_INVALID_CHAR_FOUND;
|
|
|
|
|
|
|
|
/*check if the char is a First surrogate*/
|
|
|
|
if(UTF_IS_SURROGATE(sourceChar)) {
|
|
|
|
if(UTF_IS_SURROGATE_FIRST(sourceChar)) {
|
|
|
|
args->converter->fromUSurrogateLead=(UChar)sourceChar;
|
|
|
|
getTrail:
|
|
|
|
/*look ahead to find the trail surrogate*/
|
|
|
|
if(source < sourceLimit) {
|
|
|
|
/* test the following code unit */
|
|
|
|
UChar trail=(UChar) *source;
|
|
|
|
if(UTF_IS_SECOND_SURROGATE(trail)) {
|
|
|
|
source++;
|
2001-02-16 20:16:09 +00:00
|
|
|
sourceChar=UTF16_GET_PAIR_VALUE(args->converter->fromUSurrogateLead, trail);
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter->fromUSurrogateLead=0x00;
|
|
|
|
reason =UCNV_UNASSIGNED;
|
|
|
|
/* convert this surrogate code point */
|
|
|
|
/* exit this condition tree */
|
|
|
|
} else {
|
|
|
|
/* this is an unmatched lead code unit (1st surrogate) */
|
|
|
|
/* callback(illegal) */
|
|
|
|
reason=UCNV_ILLEGAL;
|
|
|
|
*err=U_ILLEGAL_CHAR_FOUND;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* no more input */
|
|
|
|
*err = U_ZERO_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* this is an unmatched trail code unit (2nd surrogate) */
|
|
|
|
/* callback(illegal) */
|
|
|
|
reason=UCNV_ILLEGAL;
|
|
|
|
*err=U_ILLEGAL_CHAR_FOUND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
/*variables for callback */
|
|
|
|
const UChar* saveSource =NULL;
|
|
|
|
char* saveTarget =NULL;
|
|
|
|
int32_t* saveOffsets =NULL;
|
|
|
|
int currentOffset =0;
|
|
|
|
int saveIndex =0;
|
2001-02-16 20:16:09 +00:00
|
|
|
if(sourceChar>0xffff){
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(uint16_t)(((sourceChar)>>10)+0xd7c0);
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(uint16_t)(((sourceChar)&0x3ff)|0xdc00);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(UChar)sourceChar;
|
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
if(offsets)
|
|
|
|
currentOffset = *(offsets-1)+1;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
saveSource = args->source;
|
|
|
|
saveTarget = args->target;
|
2001-02-02 03:51:57 +00:00
|
|
|
saveOffsets = args->offsets;
|
|
|
|
args->target = (char*)target;
|
|
|
|
args->source = source;
|
|
|
|
args->offsets = offsets;
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
/*copies current values for the ErrorFunctor to update */
|
|
|
|
/*Calls the ErrorFunctor */
|
|
|
|
args->converter->fromUCharErrorBehaviour ( args->converter->fromUContext,
|
|
|
|
args,
|
|
|
|
args->converter->invalidUCharBuffer,
|
|
|
|
args->converter->invalidUCharLength,
|
2001-02-16 20:16:09 +00:00
|
|
|
(UChar32) (sourceChar),
|
2001-02-02 03:51:57 +00:00
|
|
|
reason,
|
|
|
|
err);
|
|
|
|
|
|
|
|
saveIndex = args->target - (char*)target;
|
|
|
|
if(args->offsets){
|
|
|
|
args->offsets = saveOffsets;
|
|
|
|
while(saveIndex-->0){
|
|
|
|
*offsets = currentOffset;
|
|
|
|
offsets++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
target = (unsigned char*)args->target;
|
2000-11-02 04:09:34 +00:00
|
|
|
args->source=saveSource;
|
|
|
|
args->target=saveTarget;
|
2001-02-02 03:51:57 +00:00
|
|
|
args->offsets=saveOffsets;
|
|
|
|
*initIterState = *currentState;
|
2000-11-02 04:09:34 +00:00
|
|
|
args->converter->invalidUCharLength = 0;
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter->fromUSurrogateLead=0x00;
|
2000-09-21 00:34:21 +00:00
|
|
|
if (U_FAILURE (*err)){
|
2000-10-05 02:25:53 +00:00
|
|
|
break;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
} /* end if(myTargetIndex<myTargetLength) */
|
2000-08-29 21:47:40 +00:00
|
|
|
else{
|
2000-09-21 00:34:21 +00:00
|
|
|
*err =U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}/* end while(mySourceIndex<mySourceLength) */
|
2000-11-08 23:16:20 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
/*If at the end of conversion we are still carrying state information
|
|
|
|
*flush is TRUE, we can deduce that the input stream is truncated
|
|
|
|
*/
|
|
|
|
if (args->converter->fromUSurrogateLead !=0 && (source == sourceLimit) && args->flush){
|
|
|
|
*err = U_TRUNCATED_CHAR_FOUND;
|
2000-11-08 23:16:20 +00:00
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
/* Reset the state of converter if we consumed
|
|
|
|
* the source and flush is true
|
|
|
|
*/
|
2001-02-02 03:51:57 +00:00
|
|
|
if( (source == sourceLimit) && args->flush){
|
|
|
|
setInitialStateFromUnicodeJPCN(args->converter,converterData);
|
2000-11-17 03:01:23 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/*save the state and return */
|
2001-02-02 03:51:57 +00:00
|
|
|
args->source = source;
|
|
|
|
args->target = (char*)target;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
|
|
|
|
/*************** to unicode *******************/
|
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* Recognized escape sequences are
|
|
|
|
* <ESC>(B ASCII
|
|
|
|
* <ESC>.A ISO-8859-1
|
|
|
|
* <ESC>.F ISO-8859-7
|
|
|
|
* <ESC>(J JISX-201
|
|
|
|
* <ESC>(I JISX-201
|
|
|
|
* <ESC>$B JISX-208
|
|
|
|
* <ESC>$@ JISX-208
|
|
|
|
* <ESC>$(D JISX-212
|
|
|
|
* <ESC>$A GB2312
|
|
|
|
* <ESC>$(C KSC5601
|
|
|
|
*/
|
|
|
|
static StateEnum nextStateToUnicodeJP[3][MAX_STATES_2022]= {
|
|
|
|
|
|
|
|
{
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
|
|
|
|
|
|
|
INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,ASCII1
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,JISX201 ,JISX201 ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,JISX208 ,INVALID_STATE ,JISX208 ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
2000-11-17 03:01:23 +00:00
|
|
|
,INVALID_STATE ,INVALID_STATE
|
|
|
|
},
|
2000-11-20 18:08:49 +00:00
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
{
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
|
|
|
|
|
|
|
INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,ASCII1
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,JISX201 ,JISX201 ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,JISX208 ,INVALID_STATE ,JISX208 ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,JISX212 ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
2000-11-17 03:01:23 +00:00
|
|
|
,INVALID_STATE ,INVALID_STATE
|
|
|
|
},
|
2000-11-20 18:08:49 +00:00
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
{
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
|
|
|
|
|
|
|
INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,ASCII1
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,JISX201 ,JISX201 ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,JISX208 ,GB2312 ,JISX208 ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,ISO8859_1
|
|
|
|
,ISO8859_7 ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,KSC5601 ,JISX212 ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
2000-11-17 03:01:23 +00:00
|
|
|
,INVALID_STATE ,INVALID_STATE
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
};
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
U_CFUNC void UConverter_toUnicode_ISO_2022_JP_OFFSETS_LOGIC(UConverterToUnicodeArgs *args,
|
|
|
|
UErrorCode* err){
|
|
|
|
char tempBuf[2];
|
2000-11-02 04:09:34 +00:00
|
|
|
const char *mySource = ( char *) args->source;
|
2001-02-02 03:51:57 +00:00
|
|
|
UChar *myTarget = args->target;
|
2000-11-02 04:09:34 +00:00
|
|
|
const char *mySourceLimit = args->sourceLimit;
|
2001-02-16 20:16:09 +00:00
|
|
|
uint32_t targetUniChar = 0x0000;
|
|
|
|
uint32_t mySourceChar = 0x0000;
|
2000-11-02 04:09:34 +00:00
|
|
|
UConverterDataISO2022* myData=(UConverterDataISO2022*)(args->converter->extraInfo);
|
2001-02-03 03:15:29 +00:00
|
|
|
StateEnum* currentState = &myData->toUnicodeCurrentState;
|
2001-02-16 20:16:09 +00:00
|
|
|
uint32_t* toUnicodeStatus = &args->converter->toUnicodeStatus;
|
2001-02-02 03:51:57 +00:00
|
|
|
int plane = 0; /*dummy variable*/
|
2001-02-03 03:15:29 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
/*Arguments Check*/
|
|
|
|
if (U_FAILURE(*err))
|
|
|
|
return;
|
2000-09-21 00:34:21 +00:00
|
|
|
|
2001-02-03 03:15:29 +00:00
|
|
|
if ((args->converter == NULL) || (myTarget < args->target) || (mySource < args->source)){
|
2000-11-02 04:09:34 +00:00
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(mySource< args->sourceLimit){
|
2001-02-16 20:16:09 +00:00
|
|
|
|
|
|
|
targetUniChar = missingCharMarker;
|
2000-08-29 21:47:40 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
if(myTarget < args->targetLimit){
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
mySourceChar= (unsigned char) *mySource++;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
/*consume the escape sequence*/
|
|
|
|
if(myData->key!=0 || mySourceChar== ESC_2022){
|
2001-02-16 20:16:09 +00:00
|
|
|
if(*toUnicodeStatus== 0x00){
|
2000-11-02 04:09:34 +00:00
|
|
|
mySource--;
|
2000-11-17 03:01:23 +00:00
|
|
|
changeState_2022(args->converter,&(mySource),
|
|
|
|
args->sourceLimit, args->flush,ISO_2022_JP,&plane, err);
|
2001-02-02 03:51:57 +00:00
|
|
|
/*Invalid or illegal escape sequence */
|
2001-02-16 20:16:09 +00:00
|
|
|
if(U_SUCCESS(*err)){
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
args->target = myTarget;
|
|
|
|
args->source = mySource;
|
|
|
|
return;
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
else
|
|
|
|
goto SAVE_STATE;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
else if(mySourceChar<=SPACE){
|
2001-02-16 20:16:09 +00:00
|
|
|
if(*toUnicodeStatus== 0x00){
|
2001-02-03 03:15:29 +00:00
|
|
|
*currentState = ASCII;
|
2000-11-02 04:09:34 +00:00
|
|
|
|
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
else
|
|
|
|
goto SAVE_STATE;
|
|
|
|
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-03 03:15:29 +00:00
|
|
|
switch(myConverterType[*currentState]){
|
2000-11-02 04:09:34 +00:00
|
|
|
|
|
|
|
case ASCII1:
|
2001-02-16 20:16:09 +00:00
|
|
|
if(*toUnicodeStatus== 0x00 && mySourceChar < 0x7F){
|
2000-11-20 18:08:49 +00:00
|
|
|
targetUniChar = (UChar) mySourceChar;
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
break;
|
2001-02-03 03:15:29 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
case SBCS:
|
2001-02-16 20:16:09 +00:00
|
|
|
if(*toUnicodeStatus== 0x00){
|
2000-12-20 20:34:23 +00:00
|
|
|
targetUniChar = _MBCS_SINGLE_SIMPLE_GET_NEXT_BMP(myData->currentConverter->sharedData, mySourceChar);
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
break;
|
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
case DBCS:
|
2001-02-16 20:16:09 +00:00
|
|
|
if(*toUnicodeStatus== 0x00){
|
|
|
|
*toUnicodeStatus= (UChar) mySourceChar;
|
2000-11-02 04:09:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else{
|
2001-01-02 23:12:52 +00:00
|
|
|
const char *pBuf;
|
|
|
|
|
|
|
|
tempBuf[0] = (char) args->converter->toUnicodeStatus;
|
2000-11-20 18:08:49 +00:00
|
|
|
tempBuf[1] = (char) mySourceChar;
|
2001-02-16 20:16:09 +00:00
|
|
|
mySourceChar+= (args->converter->toUnicodeStatus)<<8;
|
|
|
|
*toUnicodeStatus= 0;
|
2001-01-02 23:12:52 +00:00
|
|
|
pBuf = tempBuf;
|
|
|
|
targetUniChar = _MBCSSimpleGetNextUChar(myData->currentConverter->sharedData, &pBuf, tempBuf+2, FALSE);
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
case LATIN1:
|
|
|
|
if(args->converter->fromUnicodeStatus == 0x00 && mySourceChar < 0x100){
|
2000-11-20 18:08:49 +00:00
|
|
|
targetUniChar = (UChar) mySourceChar;
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
break;
|
2001-02-03 03:15:29 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
case INVALID_STATE:
|
|
|
|
*err = U_ILLEGAL_ESCAPE_SEQUENCE;
|
2001-02-16 20:16:09 +00:00
|
|
|
args->target = myTarget;
|
|
|
|
args->source = mySource;
|
|
|
|
return;
|
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
default:
|
|
|
|
/* For non-valid state MBCS and others */
|
|
|
|
break;
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
|
|
|
if(targetUniChar < 0xfffe){
|
2001-02-02 03:51:57 +00:00
|
|
|
if(args->offsets){
|
|
|
|
args->offsets[myTarget - args->target]= mySource - args->source - 2
|
2001-02-03 03:15:29 +00:00
|
|
|
+(myConverterType[*currentState] < SBCS);
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
|
|
|
*(myTarget++)=(UChar)targetUniChar;
|
|
|
|
targetUniChar=missingCharMarker;
|
|
|
|
}
|
2001-01-02 23:12:52 +00:00
|
|
|
else{
|
2000-11-02 04:09:34 +00:00
|
|
|
SAVE_STATE:
|
|
|
|
{
|
|
|
|
const char *saveSource = args->source;
|
|
|
|
UChar *saveTarget = args->target;
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
int32_t *saveOffsets = NULL;
|
2000-11-02 04:09:34 +00:00
|
|
|
|
|
|
|
UConverterCallbackReason reason;
|
|
|
|
int32_t currentOffset ;
|
2001-02-02 03:51:57 +00:00
|
|
|
int32_t saveIndex = myTarget - args->target;
|
2001-02-03 03:15:29 +00:00
|
|
|
if(myConverterType[*currentState] > SBCS){
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2000-11-20 18:08:49 +00:00
|
|
|
currentOffset= mySource - args->source - 2;
|
2000-11-02 04:09:34 +00:00
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] = tempBuf[0];
|
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] = tempBuf[1];
|
2000-11-17 03:01:23 +00:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
|
2000-11-20 18:08:49 +00:00
|
|
|
currentOffset= mySource - args->source -1;
|
2000-11-17 03:01:23 +00:00
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] =(char) mySourceChar;
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(targetUniChar == 0xfffe){
|
|
|
|
reason = UCNV_UNASSIGNED;
|
|
|
|
*err = U_INVALID_CHAR_FOUND;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
reason = UCNV_ILLEGAL;
|
|
|
|
*err = U_ILLEGAL_CHAR_FOUND;
|
|
|
|
}
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
if(args->offsets){
|
|
|
|
saveOffsets=args->offsets;
|
|
|
|
args->offsets = args->offsets+(myTarget - args->target);
|
|
|
|
}
|
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
args->target =myTarget;
|
|
|
|
myTarget =saveTarget;
|
|
|
|
args->source = mySource;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
args->converter->fromCharErrorBehaviour (
|
|
|
|
args->converter->toUContext,
|
|
|
|
args,
|
|
|
|
args->converter->invalidCharBuffer,
|
|
|
|
args->converter->invalidCharLength,
|
|
|
|
reason,
|
|
|
|
err);
|
|
|
|
|
|
|
|
if(args->offsets){
|
|
|
|
args->offsets = saveOffsets;
|
|
|
|
|
|
|
|
for (;saveIndex < (args->target - myTarget);saveIndex++) {
|
|
|
|
args->offsets[saveIndex] += currentOffset;
|
|
|
|
}
|
|
|
|
}
|
2000-11-02 04:09:34 +00:00
|
|
|
args->converter->invalidCharLength=0;
|
|
|
|
myTarget=args->target;
|
|
|
|
args->source = saveSource;
|
|
|
|
args->target = saveTarget;
|
|
|
|
/*args->offsets = saveOffsets;*/
|
|
|
|
if(U_FAILURE(*err))
|
|
|
|
break;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
*err =U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if((args->flush==TRUE)
|
|
|
|
&& (mySource == mySourceLimit)
|
2001-02-16 20:16:09 +00:00
|
|
|
&& ( *toUnicodeStatus!=0x00)){
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
*err = U_TRUNCATED_CHAR_FOUND;
|
2001-02-16 20:16:09 +00:00
|
|
|
*toUnicodeStatus= 0x00;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
/* Reset the state of converter if we consumed
|
|
|
|
* the source and flush is true
|
|
|
|
*/
|
|
|
|
if( (mySource == mySourceLimit) && args->flush){
|
|
|
|
setInitialStateToUnicodeJPCN(args->converter,myData);
|
|
|
|
}
|
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
args->target = myTarget;
|
|
|
|
args->source = mySource;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************
|
|
|
|
* Rules for ISO-2022-KR encoding
|
|
|
|
* i) The KSC5601 designator sequence should appear only once in a file,
|
|
|
|
* at the begining of a line before any KSC5601 characters. This usually
|
|
|
|
* means that it appears by itself on the first line of the file
|
|
|
|
* ii) There are only 2 shifting sequences SO to shift into double byte mode
|
|
|
|
* and SI to shift into single byte mode
|
|
|
|
*/
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
U_CFUNC void UConverter_fromUnicode_ISO_2022_KR_OFFSETS_LOGIC(UConverterFromUnicodeArgs* args, UErrorCode* err){
|
2000-11-02 04:09:34 +00:00
|
|
|
|
|
|
|
const UChar *mySource = args->source;
|
|
|
|
unsigned char *myTarget = (unsigned char *) args->target;
|
|
|
|
int32_t mySourceIndex = 0;
|
|
|
|
int32_t myTargetIndex = 0;
|
|
|
|
int32_t targetLength = args->targetLimit - args->target;
|
2001-02-02 03:51:57 +00:00
|
|
|
int32_t mySourceLength = args->sourceLimit - args->source;
|
|
|
|
int32_t* offsets = args->offsets;
|
2000-11-28 23:55:10 +00:00
|
|
|
uint32_t targetUniChar = 0x0000;
|
2000-11-08 23:16:20 +00:00
|
|
|
UChar32 mySourceChar = 0x0000;
|
2000-08-22 00:02:54 +00:00
|
|
|
UBool isTargetUCharDBCS = (UBool)args->converter->fromUnicodeStatus;
|
|
|
|
UBool oldIsTargetUCharDBCS = isTargetUCharDBCS;
|
|
|
|
UConverterDataISO2022 *myConverterData=(UConverterDataISO2022*)args->converter->extraInfo;
|
|
|
|
UConverterCallbackReason reason;
|
2001-02-02 03:51:57 +00:00
|
|
|
int32_t length =0;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
/*Arguments Check*/
|
|
|
|
if (U_FAILURE(*err))
|
|
|
|
return;
|
2000-08-22 00:02:54 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
if ((args->converter == NULL) || (args->targetLimit < args->target) || (args->sourceLimit < args->source)){
|
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
isTargetUCharDBCS = (UBool) args->converter->fromUnicodeStatus;
|
|
|
|
if(args->converter->fromUSurrogateLead!=0 && myTargetIndex <targetLength) {
|
2000-11-08 23:16:20 +00:00
|
|
|
goto getTrail;
|
|
|
|
}
|
2000-08-22 00:02:54 +00:00
|
|
|
/*writing the char to the output stream */
|
2001-02-02 03:51:57 +00:00
|
|
|
while (mySourceIndex < mySourceLength){
|
|
|
|
|
|
|
|
targetUniChar=missingCharMarker;
|
2000-08-22 00:02:54 +00:00
|
|
|
|
|
|
|
if (myTargetIndex < targetLength){
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-08 23:16:20 +00:00
|
|
|
mySourceChar = (UChar) args->source[mySourceIndex++];
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-19 04:31:36 +00:00
|
|
|
length= _MBCSFromUChar32(myConverterData->fromUnicodeConverter->sharedData,
|
2000-11-08 23:16:20 +00:00
|
|
|
mySourceChar,&targetUniChar,args->converter->useFallback);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-08-25 23:14:10 +00:00
|
|
|
/* only DBCS or SBCS characters are expected*/
|
2000-11-02 04:09:34 +00:00
|
|
|
/* DB haracters with high bit set to 1 are expected */
|
2001-02-02 03:51:57 +00:00
|
|
|
if(length > 2 || length==0 ||(((targetUniChar & 0x8080) != 0x8080)&& length==2)){
|
2001-02-16 20:16:09 +00:00
|
|
|
reason =UCNV_UNASSIGNED;
|
2000-11-02 04:09:34 +00:00
|
|
|
*err =U_INVALID_CHAR_FOUND;
|
|
|
|
}
|
2000-08-22 00:02:54 +00:00
|
|
|
if (targetUniChar != missingCharMarker){
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
oldIsTargetUCharDBCS = isTargetUCharDBCS;
|
|
|
|
|
|
|
|
isTargetUCharDBCS = (UBool)(targetUniChar>0x00FF);
|
|
|
|
|
|
|
|
/* append the shift sequence */
|
|
|
|
if (oldIsTargetUCharDBCS != isTargetUCharDBCS ){
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
if (isTargetUCharDBCS)
|
|
|
|
args->target[myTargetIndex++] = UCNV_SO;
|
|
|
|
else
|
|
|
|
args->target[myTargetIndex++] = UCNV_SI;
|
2001-02-02 03:51:57 +00:00
|
|
|
if(args->offsets)
|
|
|
|
*(offsets++)= mySourceIndex -1;
|
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
/* write the targetUniChar to target buffer*/
|
|
|
|
if(isTargetUCharDBCS){
|
|
|
|
if( myTargetIndex <targetLength){
|
|
|
|
args->target[myTargetIndex++] =(char) ((targetUniChar >> 8) -0x80);
|
|
|
|
if(myTargetIndex < targetLength){
|
|
|
|
args->target[myTargetIndex++] =(char) ((targetUniChar & 0x00FF) -0x80);
|
|
|
|
}else{
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) ((targetUniChar & 0x00FF) -0x80);
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] =(char) ((targetUniChar >> 8) -0x80);
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) ((targetUniChar & 0x00FF) -0x80);
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
}else{
|
|
|
|
if( myTargetIndex <targetLength){
|
|
|
|
args->target[myTargetIndex++] = (char) (targetUniChar );
|
|
|
|
|
|
|
|
}else{
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) targetUniChar;
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
}
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
/* write the offsets */
|
|
|
|
if(offsets){
|
|
|
|
int i = mySourceIndex-1;
|
|
|
|
int len = 2 - (targetUniChar < 0x00FF);
|
|
|
|
while(len-->0){
|
|
|
|
*(offsets++) = i;
|
|
|
|
}
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
}
|
|
|
|
else{
|
2001-02-02 03:51:57 +00:00
|
|
|
/*check if the char is a First surrogate*/
|
|
|
|
if(UTF_IS_SURROGATE(mySourceChar)) {
|
|
|
|
if(UTF_IS_SURROGATE_FIRST(mySourceChar)) {
|
|
|
|
args->converter->fromUSurrogateLead=(UChar)mySourceChar;
|
|
|
|
getTrail:
|
|
|
|
/*look ahead to find the trail surrogate*/
|
|
|
|
if(mySourceIndex < mySourceLength) {
|
|
|
|
/* test the following code unit */
|
|
|
|
UChar trail=(UChar) args->source[mySourceIndex];
|
|
|
|
if(UTF_IS_SECOND_SURROGATE(trail)) {
|
|
|
|
++mySourceIndex;
|
2001-02-16 20:16:09 +00:00
|
|
|
mySourceChar=UTF16_GET_PAIR_VALUE(args->converter->fromUSurrogateLead, trail);
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter->fromUSurrogateLead=0x00;
|
|
|
|
/* convert this surrogate code point */
|
|
|
|
/* exit this condition tree */
|
|
|
|
} else {
|
|
|
|
/* this is an unmatched lead code unit (1st surrogate) */
|
|
|
|
/* callback(illegal) */
|
|
|
|
reason=UCNV_ILLEGAL;
|
|
|
|
*err=U_ILLEGAL_CHAR_FOUND;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* no more input */
|
|
|
|
*err = U_ZERO_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* this is an unmatched trail code unit (2nd surrogate) */
|
|
|
|
/* callback(illegal) */
|
|
|
|
reason=UCNV_ILLEGAL;
|
|
|
|
*err=U_ILLEGAL_CHAR_FOUND;
|
|
|
|
}
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2001-02-02 03:51:57 +00:00
|
|
|
int32_t saveIndex=0;
|
|
|
|
int32_t currentOffset = (args->offsets) ? *(offsets-1)+1:0;
|
|
|
|
char * saveTarget = args->target;
|
|
|
|
const UChar* saveSource = args->source;
|
2000-10-20 02:45:38 +00:00
|
|
|
int32_t *saveOffsets = args->offsets;
|
2001-02-16 20:16:09 +00:00
|
|
|
|
|
|
|
if(mySourceChar>0xffff){
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(uint16_t)(((mySourceChar)>>10)+0xd7c0);
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(uint16_t)(((mySourceChar)&0x3ff)|0xdc00);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(UChar)mySourceChar;
|
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter->fromUnicodeStatus = (int32_t)isTargetUCharDBCS;
|
|
|
|
args->target += myTargetIndex;
|
|
|
|
args->source += mySourceIndex;
|
|
|
|
args->offsets = args->offsets?offsets:0;
|
|
|
|
|
|
|
|
|
|
|
|
saveIndex = myTargetIndex;
|
|
|
|
/*copies current values for the ErrorFunctor to update */
|
|
|
|
/*Calls the ErrorFunctor */
|
2001-02-16 20:16:09 +00:00
|
|
|
args->converter->fromUCharErrorBehaviour ( args->converter->fromUContext,
|
|
|
|
args,
|
|
|
|
args->converter->invalidUCharBuffer,
|
|
|
|
args->converter->invalidUCharLength,
|
|
|
|
(UChar32) (mySourceChar),
|
|
|
|
reason,
|
|
|
|
err);
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
/*Update the local Indexes so that the conversion
|
|
|
|
*can restart at the right points
|
|
|
|
*/
|
|
|
|
myTargetIndex = args->target - (char*)myTarget;
|
|
|
|
mySourceIndex = args->source - mySource;
|
|
|
|
args->offsets = saveOffsets;
|
|
|
|
saveIndex = myTargetIndex - saveIndex;
|
|
|
|
if(args->offsets){
|
|
|
|
args->offsets = saveOffsets;
|
|
|
|
while(saveIndex-->0){
|
|
|
|
*offsets = currentOffset;
|
|
|
|
offsets++;
|
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
isTargetUCharDBCS=(UBool)args->converter->fromUnicodeStatus;
|
|
|
|
args->source = saveSource;
|
|
|
|
args->target = saveTarget;
|
2000-11-20 18:08:49 +00:00
|
|
|
args->offsets = saveOffsets;
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter->invalidUCharLength = 0;
|
|
|
|
args->converter->fromUSurrogateLead=0x00;
|
|
|
|
if (U_FAILURE (*err))
|
2000-10-20 02:45:38 +00:00
|
|
|
break;
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
|
|
|
else{
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
2000-10-05 02:25:53 +00:00
|
|
|
break;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
/*If at the end of conversion we are still carrying state information
|
|
|
|
*flush is TRUE, we can deduce that the input stream is truncated
|
|
|
|
*/
|
|
|
|
if (args->converter->fromUSurrogateLead !=0 && (mySourceIndex == mySourceLength) && args->flush){
|
|
|
|
|
|
|
|
*err = U_TRUNCATED_CHAR_FOUND;
|
2001-02-16 20:16:09 +00:00
|
|
|
args->converter->fromUSurrogateLead = 0x00;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
/* Reset the state of converter if we consumed
|
|
|
|
* the source and flush is true
|
|
|
|
*/
|
2001-02-02 03:51:57 +00:00
|
|
|
if( (mySourceIndex == mySourceLength) && args->flush){
|
|
|
|
setInitialStateFromUnicodeKR(args->converter,myConverterData);
|
2000-11-17 03:01:23 +00:00
|
|
|
}
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
args->target += myTargetIndex;
|
|
|
|
args->source += mySourceIndex;
|
|
|
|
args->converter->fromUnicodeStatus = (int32_t)isTargetUCharDBCS;
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
/************************ To Unicode ***************************************/
|
|
|
|
|
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
U_CFUNC void UConverter_toUnicode_ISO_2022_KR_OFFSETS_LOGIC(UConverterToUnicodeArgs *args,
|
|
|
|
UErrorCode* err){
|
2000-11-02 04:09:34 +00:00
|
|
|
char tempBuf[3];
|
2000-10-20 02:45:38 +00:00
|
|
|
const char* pBuf;
|
|
|
|
const char *mySource = ( char *) args->source;
|
|
|
|
UChar *myTarget = args->target;
|
|
|
|
char *tempLimit = &tempBuf[2]+1;
|
|
|
|
const char *mySourceLimit = args->sourceLimit;
|
|
|
|
UChar32 targetUniChar = 0x0000;
|
|
|
|
UChar mySourceChar = 0x0000;
|
|
|
|
UConverterDataISO2022* myData=(UConverterDataISO2022*)(args->converter->extraInfo);
|
2000-11-17 03:01:23 +00:00
|
|
|
int plane =0; /*dummy variable */
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/*Arguments Check*/
|
|
|
|
if (U_FAILURE(*err))
|
|
|
|
return;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if ((args->converter == NULL) || (args->targetLimit < args->target) || (args->sourceLimit < args->source)){
|
2000-10-05 02:25:53 +00:00
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
while(mySource< args->sourceLimit){
|
2000-09-21 00:34:21 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
targetUniChar = missingCharMarker;
|
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
if(myTarget < args->targetLimit){
|
|
|
|
|
|
|
|
mySourceChar= (unsigned char) *mySource++;
|
|
|
|
|
|
|
|
switch(mySourceChar){
|
|
|
|
|
|
|
|
case UCNV_SI:
|
2000-11-20 23:40:14 +00:00
|
|
|
myData->currentType = SBCS;
|
2001-02-02 03:51:57 +00:00
|
|
|
/*consume the source */
|
2000-10-20 02:45:38 +00:00
|
|
|
continue;
|
|
|
|
case UCNV_SO:
|
2000-11-20 23:40:14 +00:00
|
|
|
myData->currentType =DBCS;
|
2000-10-20 02:45:38 +00:00
|
|
|
/*consume the source */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* If we are in the process of consuming an escape sequence
|
|
|
|
* we fall through execute the the statements of next switch
|
|
|
|
* tag else we break;
|
|
|
|
*/
|
|
|
|
if(myData->key==0){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ESC_2022:
|
|
|
|
{
|
|
|
|
/* Already doing some conversion and found escape Sequence*/
|
2000-11-20 18:08:49 +00:00
|
|
|
if(args->converter->mode == UCNV_SO){
|
2000-10-20 02:45:38 +00:00
|
|
|
*err = U_ILLEGAL_ESCAPE_SEQUENCE;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
mySource--;
|
2000-11-17 03:01:23 +00:00
|
|
|
changeState_2022(args->converter,&(mySource),
|
2001-02-16 20:16:09 +00:00
|
|
|
args->sourceLimit, args->flush,ISO_2022_KR,&plane, err);
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
|
|
|
if(U_FAILURE(*err)){
|
2001-02-16 20:16:09 +00:00
|
|
|
args->target = myTarget;
|
|
|
|
args->source = mySource;
|
|
|
|
return;
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-11-20 23:40:14 +00:00
|
|
|
if(myData->currentType==DBCS){
|
2000-10-20 02:45:38 +00:00
|
|
|
if(args->converter->toUnicodeStatus == 0x00){
|
|
|
|
args->converter->toUnicodeStatus = (UChar) mySourceChar;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else{
|
2000-11-20 18:08:49 +00:00
|
|
|
tempBuf[0] = (char) (args->converter->toUnicodeStatus+0x80) ;
|
|
|
|
tempBuf[1] = (char) (mySourceChar+0x80);
|
2000-11-02 04:09:34 +00:00
|
|
|
mySourceChar= (UChar)(((args->converter->toUnicodeStatus+0x80) << 8) | ((mySourceChar & 0x00ff)+0x80));
|
2000-10-20 02:45:38 +00:00
|
|
|
args->converter->toUnicodeStatus =0x00;
|
|
|
|
pBuf = &tempBuf[0];
|
|
|
|
tempLimit = &tempBuf[2]+1;
|
|
|
|
targetUniChar = _MBCSSimpleGetNextUChar(myData->fromUnicodeConverter->sharedData,
|
|
|
|
&pBuf,tempLimit,args->converter->useFallback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if(args->converter->fromUnicodeStatus == 0x00){
|
|
|
|
tempBuf[0] = (char) mySourceChar;
|
|
|
|
pBuf = &tempBuf[0];
|
|
|
|
tempLimit = &tempBuf[1];
|
|
|
|
targetUniChar = _MBCSSimpleGetNextUChar(myData->currentConverter->sharedData,
|
|
|
|
&pBuf,tempLimit,args->converter->useFallback);
|
|
|
|
}
|
2000-08-22 00:02:54 +00:00
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
}
|
2000-10-20 02:45:38 +00:00
|
|
|
if(targetUniChar < 0xfffe){
|
2001-02-02 03:51:57 +00:00
|
|
|
if(args->offsets)
|
|
|
|
args->offsets[myTarget - args->target]= mySource - args->source - 1-(myData->currentType==DBCS);
|
2000-10-20 02:45:38 +00:00
|
|
|
*(myTarget++)=(UChar)targetUniChar;
|
|
|
|
}
|
|
|
|
else if(targetUniChar>=0xfffe){
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
const char *saveSource = args->source;
|
|
|
|
UChar *saveTarget = args->target;
|
|
|
|
int32_t *saveOffsets = args->offsets;
|
|
|
|
int32_t saveIndex = myTarget - args->target;
|
|
|
|
UConverterCallbackReason reason;
|
|
|
|
int32_t currentOffset ;
|
|
|
|
|
|
|
|
if(targetUniChar == 0xfffe){
|
|
|
|
reason = UCNV_UNASSIGNED;
|
|
|
|
*err = U_INVALID_CHAR_FOUND;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
reason = UCNV_ILLEGAL;
|
|
|
|
*err = U_ILLEGAL_CHAR_FOUND;
|
|
|
|
}
|
|
|
|
if(myData->currentType== DBCS){
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] = (char)(tempBuf[0]-0x80);
|
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] = (char)(tempBuf[1]-0x80);
|
|
|
|
currentOffset= mySource - args->source -2;
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] = (char)mySourceChar;
|
|
|
|
currentOffset= mySource - args->source -1;
|
|
|
|
}
|
|
|
|
args->offsets = args->offsets?args->offsets+(myTarget - args->target):0;
|
|
|
|
args->target = myTarget;
|
|
|
|
args->source = mySource;
|
|
|
|
myTarget = saveTarget;
|
|
|
|
|
|
|
|
args->converter->fromCharErrorBehaviour (
|
|
|
|
args->converter->toUContext,
|
|
|
|
args,
|
|
|
|
args->converter->invalidCharBuffer,
|
|
|
|
args->converter->invalidCharLength,
|
|
|
|
reason,
|
|
|
|
err);
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
if(args->offsets){
|
|
|
|
args->offsets = saveOffsets;
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
for (;saveIndex < (args->target - myTarget);saveIndex++) {
|
|
|
|
args->offsets[saveIndex] += currentOffset;
|
|
|
|
}
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
args->converter->invalidCharLength=0;
|
|
|
|
args->source = saveSource;
|
|
|
|
myTarget = args->target;
|
|
|
|
args->target = saveTarget;
|
|
|
|
args->offsets = saveOffsets;
|
|
|
|
if(U_FAILURE(*err))
|
|
|
|
break;
|
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
}
|
2000-10-20 02:45:38 +00:00
|
|
|
else{
|
|
|
|
*err =U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if((args->flush==TRUE)
|
|
|
|
&& (mySource == mySourceLimit)
|
|
|
|
&& ( args->converter->toUnicodeStatus !=0x00)){
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
*err = U_TRUNCATED_CHAR_FOUND;
|
|
|
|
args->converter->toUnicodeStatus = 0x00;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
/* Reset the state of converter if we consumed
|
|
|
|
* the source and flush is true
|
|
|
|
*/
|
|
|
|
if( (mySource == mySourceLimit) && args->flush){
|
|
|
|
setInitialStateToUnicodeKR(args->converter,myData);
|
|
|
|
}
|
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
args->target = myTarget;
|
|
|
|
args->source = mySource;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-20 02:45:38 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
/*************************** END ISO2022-KR *********************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************** ISO-2022-CN *********************************
|
|
|
|
*
|
|
|
|
* Rules for ISO-2022-CN Encoding:
|
|
|
|
* i) The desinator sequence must appear once on a line before any instance
|
|
|
|
* of character set it designates.
|
|
|
|
* ii) If two lines contain characters from the same character set, both lines
|
|
|
|
* must include the designator sequence.
|
2001-02-02 03:51:57 +00:00
|
|
|
* iii) Once the designator sequence is know, a shifting sequnce has to be found
|
2000-11-02 04:09:34 +00:00
|
|
|
* to invoke the shifting
|
|
|
|
* iv) All lines start in ASCII and end in ASCII.
|
|
|
|
* v) Four shifting sequences are employed for this purpose:
|
|
|
|
*
|
|
|
|
* Sequcence ASCII Eq Charsets
|
|
|
|
* ---------- ------- ---------
|
2000-11-20 18:08:49 +00:00
|
|
|
* SS2 <ESC>N CNS-11643-1992 Planes 3-7
|
|
|
|
* SS3 <ESC>O CNS-11643-1992 Plane 2
|
|
|
|
* SI <SI>
|
|
|
|
* SO <SO> CNS-11643-1992 Plane 1, GB2312,ISO-IR-165
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* vi)
|
|
|
|
* SOdesignator : ESC "$" ")" finalchar_for_SO
|
|
|
|
* SS2designator : ESC "$" "*" finalchar_for_SS2
|
|
|
|
* SS3designator : ESC "$" "+" finalchar_for_SS3
|
|
|
|
*
|
|
|
|
* ESC $ ) A Indicates the bytes following SO are Chinese
|
2000-11-20 18:08:49 +00:00
|
|
|
* characters as defined in GB 2312-80, until
|
|
|
|
* another SOdesignation appears
|
|
|
|
*
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* ESC $ ) E Indicates the bytes following SO are as defined
|
2000-11-20 18:08:49 +00:00
|
|
|
* in ISO-IR-165 (for details, see section 2.1),
|
|
|
|
* until another SOdesignation appears
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* ESC $ ) G Indicates the bytes following SO are as defined
|
2000-11-20 18:08:49 +00:00
|
|
|
* in CNS 11643-plane-1, until another
|
|
|
|
* SOdesignation appears
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* ESC $ * H Indicates the two bytes immediately following
|
2000-11-20 18:08:49 +00:00
|
|
|
* SS2 is a Chinese character as defined in CNS
|
|
|
|
* 11643-plane-2, until another SS2designation
|
|
|
|
* appears
|
|
|
|
* (Meaning <ESC>N must preceed every 2 byte
|
|
|
|
* sequence.)
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* ESC $ + I Indicates the immediate two bytes following SS3
|
2000-11-20 18:08:49 +00:00
|
|
|
* is a Chinese character as defined in CNS
|
|
|
|
* 11643-plane-3, until another SS3designation
|
|
|
|
* appears
|
|
|
|
* (Meaning <ESC>O must preceed every 2 byte
|
|
|
|
* sequence.)
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* ESC $ + J Indicates the immediate two bytes following SS3
|
2000-11-20 18:08:49 +00:00
|
|
|
* is a Chinese character as defined in CNS
|
|
|
|
* 11643-plane-4, until another SS3designation
|
|
|
|
* appears
|
|
|
|
* (In English: <ESC>N must preceed every 2 byte
|
|
|
|
* sequence.)
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* ESC $ + K Indicates the immediate two bytes following SS3
|
2000-11-20 18:08:49 +00:00
|
|
|
* is a Chinese character as defined in CNS
|
|
|
|
* 11643-plane-5, until another SS3designation
|
|
|
|
* appears
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* ESC $ + L Indicates the immediate two bytes following SS3
|
2000-11-20 18:08:49 +00:00
|
|
|
* is a Chinese character as defined in CNS
|
|
|
|
* 11643-plane-6, until another SS3designation
|
|
|
|
* appears
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* ESC $ + M Indicates the immediate two bytes following SS3
|
2000-11-20 18:08:49 +00:00
|
|
|
* is a Chinese character as defined in CNS
|
|
|
|
* 11643-plane-7, until another SS3designation
|
|
|
|
* appears
|
2000-11-02 04:09:34 +00:00
|
|
|
*
|
|
|
|
* As in ISO-2022-CN, each line starts in ASCII, and ends in ASCII, and
|
2001-02-02 03:51:57 +00:00
|
|
|
* has its own designation information before any Chinese characters
|
|
|
|
* appear
|
|
|
|
*
|
|
|
|
*/
|
2000-11-08 23:16:20 +00:00
|
|
|
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
/********************** ISO2022-CN Data **************************/
|
|
|
|
static const char* escSeqCharsCN[10] ={
|
|
|
|
"\x0F", /* ASCII */
|
|
|
|
"\x1B\x24\x29\x41", /* GB 2312-80 */
|
|
|
|
"\x1B\x24\x29\x45", /* ISO-IR-165 */
|
|
|
|
"\x1B\x24\x29\x47", /* CNS 11643-1992 Plane 1 */
|
|
|
|
"\x1B\x24\x2A\x48", /* CNS 11643-1992 Plane 2 */
|
|
|
|
"\x1B\x24\x2B\x49", /* CNS 11643-1992 Plane 3 */
|
|
|
|
"\x1B\x24\x2B\x4A", /* CNS 11643-1992 Plane 4 */
|
|
|
|
"\x1B\x24\x2B\x4B", /* CNS 11643-1992 Plane 5 */
|
|
|
|
"\x1B\x24\x2B\x4C", /* CNS 11643-1992 Plane 6 */
|
|
|
|
"\x1B\x24\x2B\x4D" /* CNS 11643-1992 Plane 7 */
|
|
|
|
};
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
static const char* shiftSeqCharsCN[10] ={
|
|
|
|
"",
|
|
|
|
(const char*) "\x0E",
|
|
|
|
(const char*) "\x0E",
|
|
|
|
(const char*) "\x0E",
|
|
|
|
UCNV_SS2,
|
|
|
|
UCNV_SS3,
|
|
|
|
UCNV_SS3,
|
|
|
|
UCNV_SS3,
|
|
|
|
UCNV_SS3,
|
|
|
|
UCNV_SS3
|
|
|
|
};
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
typedef enum {
|
|
|
|
ASCII_1=0,
|
|
|
|
GB2312_1=1,
|
|
|
|
ISO_IR_165=2,
|
|
|
|
CNS_11643=3
|
|
|
|
} StateEnumCN;
|
2000-11-08 23:16:20 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
static Cnv2022Type myConverterTypeCN[4]={
|
|
|
|
ASCII1,
|
2001-02-08 19:45:07 +00:00
|
|
|
MBCS,
|
|
|
|
MBCS,
|
2001-02-02 03:51:57 +00:00
|
|
|
MBCS
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: CNS_11643 Mapping table need to be changed for compliance with Unicode 3.1
|
|
|
|
*
|
|
|
|
*/
|
2000-08-22 00:02:54 +00:00
|
|
|
|
2000-11-02 04:09:34 +00:00
|
|
|
U_CFUNC void UConverter_fromUnicode_ISO_2022_CN_OFFSETS_LOGIC(UConverterFromUnicodeArgs* args, UErrorCode* err){
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
UConverterDataISO2022 *converterData = (UConverterDataISO2022*)args->converter->extraInfo;
|
|
|
|
unsigned char* target = (unsigned char*) args->target;
|
|
|
|
const unsigned char* targetLimit = (const unsigned char*) args->targetLimit;
|
|
|
|
UChar* source =(UChar*)args->source;
|
|
|
|
const UChar* sourceLimit = args->sourceLimit;
|
|
|
|
int32_t* offsets = args->offsets;
|
2001-02-16 20:16:09 +00:00
|
|
|
uint32_t targetUniChar = missingCharMarker;
|
|
|
|
uint32_t sourceChar =0x0000;
|
2001-02-02 03:51:57 +00:00
|
|
|
const char* escSeq = NULL;
|
|
|
|
int len =0; /*length of escSeq chars*/
|
|
|
|
uint32_t targetValue=0;
|
2001-02-08 19:45:07 +00:00
|
|
|
uint8_t planeVal=0;
|
2001-02-02 03:51:57 +00:00
|
|
|
UConverterCallbackReason reason;
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
/* state variables*/
|
|
|
|
StateEnumCN* currentState = (StateEnumCN*)&converterData->fromUnicodeCurrentState;
|
|
|
|
StateEnumCN* initIterState = (StateEnumCN*)&converterData->initIterState;
|
|
|
|
UConverter** currentConverter = &converterData->fromUnicodeConverter;
|
|
|
|
UBool* isShiftAppended = &converterData->isShiftAppended;
|
|
|
|
UBool* isEscapeAppended = &converterData->isEscapeAppended;
|
|
|
|
int* plane = &converterData->plane;
|
|
|
|
int lPlane = 0;
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/* arguments check*/
|
2001-02-02 03:51:57 +00:00
|
|
|
if ((args->converter == NULL) || (targetLimit < target) || (sourceLimit < source)){
|
2000-10-05 02:25:53 +00:00
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
if(U_FAILURE(*err)){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
*initIterState = *currentState;
|
|
|
|
|
|
|
|
/* check if the last codepoint of previous buffer was a lead surrogate*/
|
|
|
|
if(args->converter->fromUSurrogateLead!=0 && target< targetLimit) {
|
2000-11-08 23:16:20 +00:00
|
|
|
goto getTrail;
|
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
while( source < sourceLimit){
|
|
|
|
*currentConverter = (*currentConverter==NULL) ?
|
|
|
|
converterData->myConverterArray[0] :
|
|
|
|
converterData->myConverterArray[(int)*currentState];
|
2001-02-08 19:45:07 +00:00
|
|
|
|
|
|
|
targetUniChar =missingCharMarker;
|
|
|
|
lPlane =0;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
if(target < targetLimit){
|
|
|
|
|
|
|
|
sourceChar = *source;
|
|
|
|
source++;
|
|
|
|
|
|
|
|
/*check if the char is a First surrogate*/
|
|
|
|
if(UTF_IS_SURROGATE(sourceChar)) {
|
|
|
|
if(UTF_IS_SURROGATE_FIRST(sourceChar)) {
|
|
|
|
args->converter->fromUSurrogateLead=(UChar)sourceChar;
|
2000-11-08 23:16:20 +00:00
|
|
|
getTrail:
|
|
|
|
/*look ahead to find the trail surrogate*/
|
2001-02-02 03:51:57 +00:00
|
|
|
if(source < sourceLimit) {
|
2000-11-08 23:16:20 +00:00
|
|
|
/* test the following code unit */
|
2001-02-02 03:51:57 +00:00
|
|
|
UChar trail=(UChar) *source;
|
2000-11-08 23:16:20 +00:00
|
|
|
if(UTF_IS_SECOND_SURROGATE(trail)) {
|
2001-02-02 03:51:57 +00:00
|
|
|
source++;
|
2001-02-16 20:16:09 +00:00
|
|
|
sourceChar=UTF16_GET_PAIR_VALUE(args->converter->fromUSurrogateLead, trail);
|
2000-11-08 23:16:20 +00:00
|
|
|
args->converter->fromUSurrogateLead=0x00;
|
|
|
|
/* convert this surrogate code point */
|
|
|
|
/* exit this condition tree */
|
|
|
|
} else {
|
|
|
|
/* this is an unmatched lead code unit (1st surrogate) */
|
|
|
|
/* callback(illegal) */
|
|
|
|
reason=UCNV_ILLEGAL;
|
|
|
|
*err=U_ILLEGAL_CHAR_FOUND;
|
2001-02-02 03:51:57 +00:00
|
|
|
goto callback;
|
2000-11-08 23:16:20 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* no more input */
|
2000-10-05 02:25:53 +00:00
|
|
|
break;
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2000-11-08 23:16:20 +00:00
|
|
|
} else {
|
|
|
|
/* this is an unmatched trail code unit (2nd surrogate) */
|
|
|
|
/* callback(illegal) */
|
2000-10-05 02:25:53 +00:00
|
|
|
reason=UCNV_ILLEGAL;
|
|
|
|
*err=U_ILLEGAL_CHAR_FOUND;
|
2001-02-02 03:51:57 +00:00
|
|
|
goto callback;
|
2000-10-05 02:25:53 +00:00
|
|
|
}
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
/* do the conversion */
|
|
|
|
if(sourceChar == CR || sourceChar == LF){
|
|
|
|
targetUniChar = sourceChar;
|
2001-02-08 19:45:07 +00:00
|
|
|
if(*currentState!= ASCII_1){
|
|
|
|
*currentState = ASCII_1;
|
2001-02-02 03:51:57 +00:00
|
|
|
*isEscapeAppended = FALSE;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-08-22 00:02:54 +00:00
|
|
|
}
|
2000-09-21 00:34:21 +00:00
|
|
|
else{
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-10-28 01:51:00 +00:00
|
|
|
do{
|
2001-02-08 19:45:07 +00:00
|
|
|
if(myConverterTypeCN[*currentState] == MBCS){
|
|
|
|
len= _MBCSFromUChar32((*currentConverter)->sharedData,sourceChar,
|
2001-02-02 03:51:57 +00:00
|
|
|
&targetValue,args->converter->useFallback);
|
2001-02-08 19:45:07 +00:00
|
|
|
switch(len){
|
|
|
|
case 0:
|
2000-10-28 01:51:00 +00:00
|
|
|
targetUniChar = missingCharMarker;
|
2001-02-08 19:45:07 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if(( converterData->version) == 0 && *currentState ==ISO_IR_165){
|
|
|
|
targetUniChar = missingCharMarker;
|
|
|
|
}else{
|
|
|
|
targetUniChar = (UChar32) targetValue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
targetUniChar = (UChar32) targetValue;
|
|
|
|
planeVal = (uint8_t) ((targetValue)>>16);
|
2000-10-28 01:51:00 +00:00
|
|
|
if(planeVal >0x80 && planeVal<0x89){
|
2001-02-02 03:51:57 +00:00
|
|
|
lPlane = (int)(planeVal - 0x80);
|
2000-10-28 01:51:00 +00:00
|
|
|
targetUniChar -= (planeVal<<16);
|
2001-02-16 20:16:09 +00:00
|
|
|
}else {
|
2001-02-02 03:51:57 +00:00
|
|
|
lPlane =-1;
|
2001-02-16 20:16:09 +00:00
|
|
|
}
|
2001-02-08 19:45:07 +00:00
|
|
|
if(converterData->version == 0 && lPlane >2){
|
|
|
|
targetUniChar = missingCharMarker;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2000-10-28 01:51:00 +00:00
|
|
|
reason =UCNV_ILLEGAL;
|
|
|
|
*err =U_INVALID_CHAR_FOUND;
|
2001-02-02 03:51:57 +00:00
|
|
|
break;
|
2001-02-08 19:45:07 +00:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
if(sourceChar < 0x7f){
|
|
|
|
targetUniChar = sourceChar;
|
|
|
|
}
|
2000-10-28 01:51:00 +00:00
|
|
|
}
|
|
|
|
if(targetUniChar==missingCharMarker){
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
*currentState=(StateEnum)((*currentState<3)? *currentState+1:0);
|
|
|
|
|
|
|
|
*currentConverter = (*currentConverter == NULL) ?
|
|
|
|
converterData->myConverterArray[0] :
|
|
|
|
converterData->myConverterArray[(int)*currentState];
|
|
|
|
|
2000-10-28 01:51:00 +00:00
|
|
|
targetUniChar =missingCharMarker;
|
2001-02-02 03:51:57 +00:00
|
|
|
*isEscapeAppended = FALSE;
|
|
|
|
*isShiftAppended = FALSE;
|
|
|
|
|
2000-10-28 01:51:00 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
}while(targetUniChar==missingCharMarker && *initIterState != *currentState);
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
if(targetUniChar != missingCharMarker){
|
|
|
|
|
2001-02-08 19:45:07 +00:00
|
|
|
args->converter->fromUnicodeStatus=(UBool) (*currentState > ASCII_1);
|
2000-09-21 00:34:21 +00:00
|
|
|
/* Append the escpace sequence */
|
2001-02-02 03:51:57 +00:00
|
|
|
if(!*isEscapeAppended ||(*plane != lPlane)){
|
|
|
|
|
|
|
|
escSeq = (*currentState==CNS_11643) ?
|
|
|
|
escSeqCharsCN[(int)*currentState+lPlane-1]:
|
|
|
|
escSeqCharsCN[(int)*currentState];
|
|
|
|
len =strlen(escSeq);
|
|
|
|
|
|
|
|
CONCAT_ESCAPE_EX(args, target, targetLimit, offsets, escSeq,len,err);
|
|
|
|
*plane=lPlane ;
|
|
|
|
*isEscapeAppended=TRUE;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/* Append Shift Sequences */
|
2001-02-02 03:51:57 +00:00
|
|
|
switch(*currentState){
|
|
|
|
case ASCII1:
|
|
|
|
break;
|
|
|
|
case GB2312_1:
|
|
|
|
/*falls through */
|
|
|
|
case ISO_IR_165:
|
|
|
|
if(!*isShiftAppended){
|
|
|
|
len =strlen(shiftSeqCharsCN[*currentState]);
|
|
|
|
escSeq = shiftSeqCharsCN[*currentState];
|
|
|
|
CONCAT_ESCAPE_EX(args, target, targetLimit, offsets, escSeq,len,err);
|
|
|
|
*isShiftAppended=TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
len =strlen(shiftSeqCharsCN[*currentState+*plane]);
|
|
|
|
escSeq = shiftSeqCharsCN[*currentState+*plane];
|
|
|
|
CONCAT_ESCAPE_EX(args, target, targetLimit, offsets, escSeq,len,err);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
*initIterState = *currentState;
|
|
|
|
|
|
|
|
/* write the targetUniChar to target */
|
|
|
|
if(targetUniChar <= 0x00FF){
|
2001-02-02 03:51:57 +00:00
|
|
|
if( target <targetLimit){
|
2001-02-16 20:16:09 +00:00
|
|
|
*(target++) = (unsigned char) targetUniChar;
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
}else{
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) targetUniChar;
|
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
2000-08-22 00:02:54 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
}else{
|
|
|
|
if(target < targetLimit){
|
2001-02-16 20:16:09 +00:00
|
|
|
*(target++) =(unsigned char) (targetUniChar>>8);
|
2001-02-02 03:51:57 +00:00
|
|
|
if(target < targetLimit){
|
2001-02-16 20:16:09 +00:00
|
|
|
*(target++) =(unsigned char) (targetUniChar);
|
2001-02-02 03:51:57 +00:00
|
|
|
}else{
|
2001-02-16 20:16:09 +00:00
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetUniChar);
|
2001-02-02 03:51:57 +00:00
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
}
|
|
|
|
}else{
|
2001-02-16 20:16:09 +00:00
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetUniChar>>8);
|
|
|
|
args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (unsigned char) (targetUniChar);
|
2001-02-02 03:51:57 +00:00
|
|
|
*err = U_BUFFER_OVERFLOW_ERROR;
|
2000-08-22 00:02:54 +00:00
|
|
|
}
|
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
/* write the offsets */
|
2001-02-16 20:16:09 +00:00
|
|
|
if(offsets){
|
|
|
|
int i = source - args->source-1;
|
2001-02-02 03:51:57 +00:00
|
|
|
len = 2 - (targetUniChar < 0x00FF);
|
|
|
|
while(len-->0){
|
2001-02-16 20:16:09 +00:00
|
|
|
*(offsets++) = i;
|
2001-02-02 03:51:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2000-08-22 00:02:54 +00:00
|
|
|
else{
|
2000-10-28 01:51:00 +00:00
|
|
|
|
2000-11-20 18:08:49 +00:00
|
|
|
/* if we cannot find the character after checking all codepages
|
|
|
|
* then this is an error
|
2000-10-28 01:51:00 +00:00
|
|
|
*/
|
2001-02-02 03:51:57 +00:00
|
|
|
reason = UCNV_UNASSIGNED;
|
|
|
|
*err = U_INVALID_CHAR_FOUND;
|
|
|
|
callback:
|
|
|
|
{
|
|
|
|
/*variables for callback */
|
|
|
|
const UChar* saveSource =NULL;
|
|
|
|
char* saveTarget =NULL;
|
|
|
|
int32_t* saveOffsets =NULL;
|
|
|
|
int currentOffset =0;
|
|
|
|
int saveIndex =0;
|
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
if(sourceChar>0xffff){
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(uint16_t)(((sourceChar)>>10)+0xd7c0);
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(uint16_t)(((sourceChar)&0x3ff)|0xdc00);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
args->converter->invalidUCharBuffer[args->converter->invalidUCharLength++] =(UChar)sourceChar;
|
|
|
|
}
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
if(offsets)
|
|
|
|
currentOffset = *(offsets-1)+1;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
saveSource = args->source;
|
|
|
|
saveTarget = args->target;
|
|
|
|
saveOffsets = args->offsets;
|
2001-02-02 03:51:57 +00:00
|
|
|
args->target = (char*)target;
|
|
|
|
args->source = source;
|
|
|
|
args->offsets = offsets;
|
|
|
|
|
2001-02-08 19:45:07 +00:00
|
|
|
*currentState= *initIterState = ASCII_1;
|
2001-02-02 03:51:57 +00:00
|
|
|
/*copies current values for the ErrorFunctor to update */
|
|
|
|
/*Calls the ErrorFunctor */
|
|
|
|
args->converter->fromUCharErrorBehaviour ( args->converter->fromUContext,
|
|
|
|
args,
|
|
|
|
args->converter->invalidUCharBuffer,
|
|
|
|
args->converter->invalidUCharLength,
|
2001-02-16 20:16:09 +00:00
|
|
|
(UChar32) (sourceChar),
|
2001-02-02 03:51:57 +00:00
|
|
|
reason,
|
|
|
|
err);
|
|
|
|
|
|
|
|
saveIndex = args->target - (char*)target;
|
|
|
|
if(args->offsets){
|
|
|
|
args->offsets = saveOffsets;
|
|
|
|
while(saveIndex-->0){
|
|
|
|
*offsets = currentOffset;
|
|
|
|
offsets++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
target = (unsigned char*)args->target;
|
2000-11-02 04:09:34 +00:00
|
|
|
args->source=saveSource;
|
|
|
|
args->target=saveTarget;
|
|
|
|
args->offsets=saveOffsets;
|
2001-02-02 03:51:57 +00:00
|
|
|
args->converter->invalidUCharLength = 0;
|
2000-11-08 23:16:20 +00:00
|
|
|
args->converter->fromUSurrogateLead=0x00;
|
2001-02-02 03:51:57 +00:00
|
|
|
*isEscapeAppended =FALSE;
|
2000-09-21 00:34:21 +00:00
|
|
|
if (U_FAILURE (*err)){
|
2000-10-05 02:25:53 +00:00
|
|
|
break;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-08-22 00:02:54 +00:00
|
|
|
}
|
2000-09-21 00:34:21 +00:00
|
|
|
} /* end if(myTargetIndex<myTargetLength) */
|
2000-08-22 00:02:54 +00:00
|
|
|
else{
|
2000-09-21 00:34:21 +00:00
|
|
|
*err =U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
break;
|
2001-02-02 03:51:57 +00:00
|
|
|
}
|
2001-02-08 19:45:07 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}/* end while(mySourceIndex<mySourceLength) */
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
|
2000-11-08 23:16:20 +00:00
|
|
|
/*If at the end of conversion we are still carrying state information
|
2001-02-02 03:51:57 +00:00
|
|
|
*flush is TRUE, we can deduce that the input stream is truncated
|
|
|
|
*/
|
|
|
|
if (args->converter->fromUSurrogateLead !=0 && (source == sourceLimit) && args->flush){
|
|
|
|
|
|
|
|
*err = U_TRUNCATED_CHAR_FOUND;
|
|
|
|
|
2000-11-08 23:16:20 +00:00
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
/* Reset the state of converter if we consumed
|
|
|
|
* the source and flush is true
|
|
|
|
*/
|
2001-02-02 03:51:57 +00:00
|
|
|
if( (source == sourceLimit) && args->flush){
|
|
|
|
setInitialStateFromUnicodeJPCN(args->converter,converterData);
|
2000-11-17 03:01:23 +00:00
|
|
|
}
|
2000-11-08 23:16:20 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/*save the state and return */
|
2001-02-02 03:51:57 +00:00
|
|
|
args->source = source;
|
|
|
|
args->target = (char*)target;
|
2000-08-22 00:02:54 +00:00
|
|
|
}
|
2000-11-14 03:54:36 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/*************** to unicode *******************/
|
2000-11-14 03:54:36 +00:00
|
|
|
static StateEnum nextStateToUnicodeCN[2][MAX_STATES_2022]= {
|
|
|
|
|
|
|
|
{
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
2000-11-14 03:54:36 +00:00
|
|
|
|
2000-11-20 18:08:49 +00:00
|
|
|
INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,GB2312_1 ,INVALID_STATE ,INVALID_STATE ,CNS_11643 ,CNS_11643
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
2000-11-14 03:54:36 +00:00
|
|
|
,INVALID_STATE ,INVALID_STATE
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2000-11-20 18:08:49 +00:00
|
|
|
/* 0 1 2 3 4 5 6 7 8 9 */
|
|
|
|
INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,GB2312_1 ,INVALID_STATE ,ISO_IR_165 ,CNS_11643 ,CNS_11643
|
|
|
|
,CNS_11643 ,CNS_11643 ,CNS_11643 ,CNS_11643 , CNS_11643 ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
|
|
|
,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE ,INVALID_STATE
|
2000-11-14 03:54:36 +00:00
|
|
|
,INVALID_STATE ,INVALID_STATE
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
2000-08-22 00:02:54 +00:00
|
|
|
|
2000-11-17 03:01:23 +00:00
|
|
|
static void changeState_2022(UConverter* _this,
|
2000-10-05 02:25:53 +00:00
|
|
|
const char** source,
|
|
|
|
const char* sourceLimit,
|
2000-11-17 03:01:23 +00:00
|
|
|
UBool flush,Variant2022 var,
|
|
|
|
int* plane,
|
2000-10-05 02:25:53 +00:00
|
|
|
UErrorCode* err){
|
2000-09-21 00:34:21 +00:00
|
|
|
UConverter* myUConverter;
|
|
|
|
UCNV_TableStates_2022 value;
|
|
|
|
UConverterDataISO2022* myData2022 = ((UConverterDataISO2022*)_this->extraInfo);
|
2000-10-20 02:45:38 +00:00
|
|
|
uint32_t key = myData2022->key;
|
2000-09-21 00:34:21 +00:00
|
|
|
const char* chosenConverterName = NULL;
|
|
|
|
int32_t offset;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
/*In case we were in the process of consuming an escape sequence
|
|
|
|
we need to reprocess it */
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
do{
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
value = getKey_2022(**source,(int32_t *) &key, &offset);
|
|
|
|
switch (value){
|
2000-11-28 23:55:10 +00:00
|
|
|
case VALID_NON_TERMINAL_2022 :
|
|
|
|
break;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-28 23:55:10 +00:00
|
|
|
case VALID_TERMINAL_2022:
|
|
|
|
{
|
|
|
|
(*source)++;
|
|
|
|
chosenConverterName = escSeqStateTable_Result_2022[offset];
|
|
|
|
key = 0;
|
|
|
|
goto DONE;
|
|
|
|
};
|
|
|
|
break;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-28 23:55:10 +00:00
|
|
|
case INVALID_2022:
|
|
|
|
{
|
|
|
|
myData2022->key = 0;
|
|
|
|
*err = U_ILLEGAL_ESCAPE_SEQUENCE;
|
|
|
|
return;
|
2000-08-29 21:47:40 +00:00
|
|
|
}
|
2000-11-28 23:55:10 +00:00
|
|
|
case VALID_SS2_SEQUENCE:
|
2001-02-02 03:51:57 +00:00
|
|
|
/*falls through*/
|
|
|
|
|
2000-11-28 23:55:10 +00:00
|
|
|
case VALID_SS3_SEQUENCE:
|
|
|
|
{
|
|
|
|
(*source)++;
|
|
|
|
key = 0;
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
case VALID_MAYBE_TERMINAL_2022:
|
|
|
|
{
|
|
|
|
const char* mySource = (*source+1);
|
|
|
|
int32_t myKey = key;
|
|
|
|
UCNV_TableStates_2022 myValue = value;
|
|
|
|
int32_t myOffset=0;
|
|
|
|
if(*mySource==ESC_2022){
|
|
|
|
while ((mySource < sourceLimit) &&
|
|
|
|
((myValue == VALID_MAYBE_TERMINAL_2022)||(myValue == VALID_NON_TERMINAL_2022))){
|
|
|
|
myValue = getKey_2022(*(mySource++), &myKey, &myOffset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
(*source)++;
|
|
|
|
myValue=(UCNV_TableStates_2022) 1;
|
|
|
|
myOffset = 7;
|
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-28 23:55:10 +00:00
|
|
|
switch (myValue){
|
|
|
|
case INVALID_2022:
|
|
|
|
{
|
|
|
|
/*Backs off*/
|
|
|
|
chosenConverterName = escSeqStateTable_Result_2022[offset];
|
|
|
|
value = VALID_TERMINAL_2022;
|
|
|
|
goto DONE;
|
|
|
|
};
|
|
|
|
break;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-28 23:55:10 +00:00
|
|
|
case VALID_TERMINAL_2022:
|
|
|
|
{
|
|
|
|
/*uses longer escape sequence*/
|
|
|
|
chosenConverterName = escSeqStateTable_Result_2022[myOffset];
|
|
|
|
key = 0;
|
|
|
|
value = VALID_TERMINAL_2022;
|
|
|
|
goto DONE;
|
|
|
|
};
|
|
|
|
break;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-28 23:55:10 +00:00
|
|
|
/* Not expected. Added to make the gcc happy */
|
|
|
|
case VALID_SS2_SEQUENCE:
|
2001-02-02 03:51:57 +00:00
|
|
|
/*falls through*/
|
2000-11-28 23:55:10 +00:00
|
|
|
/* Not expected. Added to make the gcc happy */
|
|
|
|
case VALID_SS3_SEQUENCE:
|
|
|
|
{
|
|
|
|
(*source)++;
|
|
|
|
key = 0;
|
|
|
|
goto DONE;
|
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-11-28 23:55:10 +00:00
|
|
|
case VALID_NON_TERMINAL_2022:
|
2001-02-02 03:51:57 +00:00
|
|
|
/*falls through*/
|
2000-11-28 23:55:10 +00:00
|
|
|
case VALID_MAYBE_TERMINAL_2022:
|
|
|
|
{
|
|
|
|
if (flush){
|
|
|
|
/*Backs off*/
|
|
|
|
chosenConverterName = escSeqStateTable_Result_2022[offset];
|
|
|
|
value = VALID_TERMINAL_2022;
|
|
|
|
key = 0;
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
key = myKey;
|
|
|
|
value = VALID_NON_TERMINAL_2022;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
break;
|
2000-09-21 00:34:21 +00:00
|
|
|
};
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}while (++(*source) < sourceLimit);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
|
|
|
DONE:
|
2000-10-20 02:45:38 +00:00
|
|
|
myData2022->key = key;
|
2001-02-16 20:16:09 +00:00
|
|
|
if(offset<55 && offset>47){
|
|
|
|
*plane = offset-47;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
if ((value == VALID_NON_TERMINAL_2022) || (value == VALID_MAYBE_TERMINAL_2022)) {
|
2000-10-05 02:25:53 +00:00
|
|
|
return;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
else if (value != INVALID_2022 ) {
|
2000-09-21 00:34:21 +00:00
|
|
|
if(value==3 || value==4 ){
|
|
|
|
_this->mode = UCNV_SI;
|
|
|
|
myUConverter =myData2022->currentConverter;
|
|
|
|
}
|
|
|
|
else{
|
2000-11-17 03:01:23 +00:00
|
|
|
switch(var){
|
|
|
|
case ISO_2022:
|
|
|
|
_this->mode = UCNV_SI;
|
|
|
|
ucnv_close(myData2022->currentConverter);
|
|
|
|
myData2022->currentConverter = myUConverter = ucnv_open(chosenConverterName, err);
|
|
|
|
break;
|
|
|
|
case ISO_2022_JP:
|
|
|
|
{
|
|
|
|
StateEnum tempState=nextStateToUnicodeJP[myData2022->version][offset];
|
|
|
|
_this->mode = UCNV_SI;
|
|
|
|
myData2022->currentConverter = myUConverter =
|
|
|
|
(tempState!=INVALID_STATE)? myData2022->myConverterArray[tempState]:NULL;
|
|
|
|
myData2022->toUnicodeCurrentState = tempState;
|
|
|
|
*err= (tempState==INVALID_STATE)?U_ILLEGAL_ESCAPE_SEQUENCE :U_ZERO_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ISO_2022_CN:
|
|
|
|
{
|
|
|
|
StateEnumCN tempState=nextStateToUnicodeCN[myData2022->version][offset];
|
|
|
|
_this->mode = UCNV_SI;
|
|
|
|
myData2022->currentConverter = myUConverter =
|
|
|
|
(tempState!=INVALID_STATE)? myData2022->myConverterArray[tempState]:NULL;
|
2000-11-29 01:04:03 +00:00
|
|
|
myData2022->toUnicodeCurrentState =(StateEnum) tempState;
|
2000-11-17 03:01:23 +00:00
|
|
|
*err= (tempState==INVALID_STATE)?U_ILLEGAL_ESCAPE_SEQUENCE :U_ZERO_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
2000-12-14 03:34:08 +00:00
|
|
|
case ISO_2022_KR:
|
2001-02-16 20:16:09 +00:00
|
|
|
if(offset==0x2e){
|
|
|
|
_this->mode = UCNV_SI;
|
|
|
|
myUConverter = myData2022->currentConverter=myData2022->fromUnicodeConverter;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-11-20 23:40:14 +00:00
|
|
|
default:
|
|
|
|
myUConverter=NULL;
|
|
|
|
*err = U_ILLEGAL_ESCAPE_SEQUENCE;
|
2000-11-17 03:01:23 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
if (U_SUCCESS(*err)){
|
|
|
|
/*Customize the converter with the attributes set on the 2022 converter*/
|
|
|
|
myUConverter->fromUCharErrorBehaviour = _this->fromUCharErrorBehaviour;
|
|
|
|
myUConverter->fromUContext = _this->fromUContext;
|
|
|
|
myUConverter->fromCharErrorBehaviour = _this->fromCharErrorBehaviour;
|
|
|
|
myUConverter->toUContext = _this->toUContext;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
uprv_memcpy(myUConverter->subChar,
|
2000-10-05 02:25:53 +00:00
|
|
|
_this->subChar,
|
2000-11-20 18:08:49 +00:00
|
|
|
myUConverter->subCharLen = _this->subCharLen);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
_this->mode = UCNV_SO;
|
|
|
|
}
|
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
return;
|
2001-02-02 03:51:57 +00:00
|
|
|
}
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
U_CFUNC void UConverter_toUnicode_ISO_2022_CN_OFFSETS_LOGIC(UConverterToUnicodeArgs *args,
|
|
|
|
UErrorCode* err){
|
2000-10-04 00:11:50 +00:00
|
|
|
char tempBuf[3];
|
2000-09-21 00:34:21 +00:00
|
|
|
int plane=0;
|
2000-11-02 19:51:05 +00:00
|
|
|
const char* pBuf;
|
2000-09-21 00:34:21 +00:00
|
|
|
const char *mySource = ( char *) args->source;
|
|
|
|
UChar *myTarget = args->target;
|
2001-02-02 03:51:57 +00:00
|
|
|
char *tempLimit = &tempBuf[3];
|
2000-09-21 00:34:21 +00:00
|
|
|
const char *mySourceLimit = args->sourceLimit;
|
2001-02-08 19:45:07 +00:00
|
|
|
uint32_t targetUniChar = 0x0000;
|
|
|
|
uint32_t mySourceChar = 0x0000;
|
2000-09-21 00:34:21 +00:00
|
|
|
UConverterDataISO2022* myData=(UConverterDataISO2022*)(args->converter->extraInfo);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
plane=myData->plane;
|
2000-09-21 00:34:21 +00:00
|
|
|
/*Arguments Check*/
|
|
|
|
if (U_FAILURE(*err))
|
|
|
|
return;
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
if ((args->converter == NULL) || (args->targetLimit < myTarget) || (args->sourceLimit < mySource)){
|
2000-10-05 02:25:53 +00:00
|
|
|
*err = U_ILLEGAL_ARGUMENT_ERROR;
|
|
|
|
return;
|
2000-09-19 01:41:17 +00:00
|
|
|
}
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
while(mySource< args->sourceLimit){
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
targetUniChar =missingCharMarker;
|
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
if(myTarget < args->targetLimit){
|
|
|
|
|
|
|
|
mySourceChar= (unsigned char) *mySource++;
|
|
|
|
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
switch(mySourceChar){
|
2001-02-08 19:45:07 +00:00
|
|
|
|
|
|
|
case UCNV_SI:
|
|
|
|
if(args->converter->toUnicodeStatus != 0x00){
|
2001-02-16 20:16:09 +00:00
|
|
|
break;
|
2001-02-08 19:45:07 +00:00
|
|
|
}
|
|
|
|
myData->currentType = ASCII1;
|
|
|
|
myData->plane=plane = 0;
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case UCNV_SO:
|
|
|
|
if(args->converter->toUnicodeStatus != 0x00){
|
2001-02-16 20:16:09 +00:00
|
|
|
break;
|
2001-02-08 19:45:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
myData->currentType = MBCS;
|
|
|
|
continue;
|
2001-02-16 20:16:09 +00:00
|
|
|
|
|
|
|
case CR:
|
|
|
|
/*falls through*/
|
|
|
|
case LF:
|
|
|
|
if(args->converter->toUnicodeStatus != 0x00){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
myData->currentType = ASCII1;
|
|
|
|
myData->plane=plane = 0;
|
|
|
|
/* falls through */
|
2000-10-20 02:45:38 +00:00
|
|
|
default:
|
|
|
|
/* if we are in the middle of consuming an escape sequence
|
2001-02-16 20:16:09 +00:00
|
|
|
* we fall through else we process the input
|
2000-10-20 02:45:38 +00:00
|
|
|
*/
|
|
|
|
if(myData->key==0){
|
2001-02-16 20:16:09 +00:00
|
|
|
if(myData->currentType != ASCII1){
|
|
|
|
if(args->converter->toUnicodeStatus == 0x00){
|
|
|
|
args->converter->toUnicodeStatus = (UChar) mySourceChar;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if(plane >0){
|
|
|
|
tempBuf[0] = (char) (0x80+plane);
|
|
|
|
tempBuf[1] = (char) (args->converter->toUnicodeStatus);
|
|
|
|
tempBuf[2] = (char) (mySourceChar);
|
|
|
|
tempLimit = &tempBuf[2]+1;
|
|
|
|
|
|
|
|
}else{
|
|
|
|
tempBuf[0] = (char) args->converter->toUnicodeStatus;
|
|
|
|
tempBuf[1] = (char) mySourceChar;
|
|
|
|
tempLimit = &tempBuf[2];
|
|
|
|
}
|
|
|
|
mySourceChar+= (uint32_t) args->converter->toUnicodeStatus<<8;
|
|
|
|
args->converter->toUnicodeStatus = 0;
|
|
|
|
pBuf = tempBuf;
|
|
|
|
targetUniChar = _MBCSSimpleGetNextUChar(myData->currentConverter->sharedData, &pBuf, tempLimit, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if(args->converter->toUnicodeStatus == 0x00){
|
|
|
|
targetUniChar = (UChar) mySourceChar;
|
|
|
|
}
|
|
|
|
}
|
2000-10-20 02:45:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ESC_2022:
|
|
|
|
if(args->converter->toUnicodeStatus != 0x00){
|
2001-02-16 20:16:09 +00:00
|
|
|
break;
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
|
|
|
mySource--;
|
2000-11-17 03:01:23 +00:00
|
|
|
changeState_2022(args->converter,&(mySource),
|
|
|
|
args->sourceLimit, args->flush,ISO_2022_CN,&plane,err);
|
2000-10-05 02:25:53 +00:00
|
|
|
|
2000-10-20 02:45:38 +00:00
|
|
|
myData->plane=plane;
|
|
|
|
if(plane>0){
|
2000-11-20 23:40:14 +00:00
|
|
|
myData->currentType = MBCS;
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
|
|
|
else if(myData->currentConverter &&
|
|
|
|
uprv_stricmp("latin_1",
|
|
|
|
myData->currentConverter->sharedData->staticData->name)==0){
|
2000-09-21 00:34:21 +00:00
|
|
|
|
2000-11-20 23:40:14 +00:00
|
|
|
myData->currentType=ASCII1;
|
2000-10-20 02:45:38 +00:00
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
/* invalid or illegal escape sequence */
|
2001-02-16 20:16:09 +00:00
|
|
|
if(U_FAILURE(*err)){
|
|
|
|
args->target = myTarget;
|
|
|
|
args->source = mySource;
|
|
|
|
return;
|
2001-02-02 03:51:57 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
if(targetUniChar < 0xfffe){
|
2001-02-02 03:51:57 +00:00
|
|
|
if(args->offsets){
|
2000-09-19 01:41:17 +00:00
|
|
|
|
2001-02-02 03:51:57 +00:00
|
|
|
args->offsets[myTarget - args->target]= mySource - args->source - 2
|
|
|
|
+(myData->currentType==ASCII);
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
*(myTarget++)=(UChar)targetUniChar;
|
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
else{
|
|
|
|
|
|
|
|
const char *saveSource = args->source;
|
|
|
|
UChar *saveTarget = args->target;
|
|
|
|
int32_t *saveOffsets = args->offsets;
|
|
|
|
UConverterCallbackReason reason;
|
|
|
|
int32_t currentOffset ;
|
|
|
|
int32_t saveIndex = myTarget - args->target;
|
|
|
|
|
|
|
|
if(myData->currentType==ASCII1){
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
currentOffset= mySource - args->source -1;
|
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] = (char)mySourceChar;
|
|
|
|
}else{
|
|
|
|
currentOffset= mySource - args->source -2;
|
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] = (char)(mySourceChar>>8);
|
|
|
|
args->converter->invalidCharBuffer[args->converter->invalidCharLength++] = (char)mySourceChar ;
|
|
|
|
}
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-08 19:45:07 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
if(targetUniChar == 0xfffe){
|
|
|
|
reason = UCNV_UNASSIGNED;
|
|
|
|
*err = U_INVALID_CHAR_FOUND;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
reason = UCNV_ILLEGAL;
|
|
|
|
*err = U_ILLEGAL_CHAR_FOUND;
|
|
|
|
}
|
2000-11-02 04:09:34 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
|
|
|
|
if(args->offsets){
|
|
|
|
saveOffsets=args->offsets;
|
|
|
|
args->offsets = args->offsets+(myTarget - args->target);
|
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
args->target =myTarget;
|
|
|
|
myTarget =saveTarget;
|
|
|
|
args->source = mySource;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
args->converter->fromCharErrorBehaviour (
|
|
|
|
args->converter->toUContext,
|
|
|
|
args,
|
|
|
|
args->converter->invalidCharBuffer,
|
|
|
|
args->converter->invalidCharLength,
|
|
|
|
reason,
|
|
|
|
err);
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
if(args->offsets){
|
|
|
|
args->offsets = saveOffsets;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
for (;saveIndex < (args->target - myTarget);saveIndex++) {
|
|
|
|
args->offsets[saveIndex] += currentOffset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
args->converter->invalidCharLength=0;
|
|
|
|
myTarget=args->target;
|
|
|
|
args->source = saveSource;
|
|
|
|
args->target = saveTarget;
|
|
|
|
args->offsets = saveOffsets;
|
2000-11-08 23:16:20 +00:00
|
|
|
|
2001-02-16 20:16:09 +00:00
|
|
|
if(U_FAILURE(*err))
|
|
|
|
break;
|
2000-11-08 23:16:20 +00:00
|
|
|
|
2000-09-19 01:41:17 +00:00
|
|
|
}
|
2001-02-16 20:16:09 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-09-19 01:41:17 +00:00
|
|
|
else{
|
|
|
|
*err =U_BUFFER_OVERFLOW_ERROR;
|
|
|
|
break;
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if((args->flush==TRUE)
|
|
|
|
&& (mySource == mySourceLimit)
|
|
|
|
&& ( args->converter->toUnicodeStatus !=0x00)){
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
*err = U_TRUNCATED_CHAR_FOUND;
|
|
|
|
args->converter->toUnicodeStatus = 0x00;
|
2001-02-02 03:51:57 +00:00
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
}
|
2000-11-17 03:01:23 +00:00
|
|
|
/* Reset the state of converter if we consumed
|
|
|
|
* the source and flush is true
|
|
|
|
*/
|
|
|
|
if( (mySource == mySourceLimit) && args->flush){
|
|
|
|
setInitialStateToUnicodeJPCN(args->converter,myData);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-21 00:34:21 +00:00
|
|
|
args->target = myTarget;
|
|
|
|
args->source = mySource;
|
|
|
|
}
|
2001-02-02 03:51:57 +00:00
|
|
|
|
|
|
|
U_CFUNC void
|
|
|
|
_ISO_2022_WriteSub(UConverterFromUnicodeArgs *args, int32_t offsetIndex, UErrorCode *err) {
|
|
|
|
UConverter *cnv = args->converter;
|
|
|
|
UConverterDataISO2022 *myConverterData=(UConverterDataISO2022 *) cnv->extraInfo;
|
|
|
|
char *p;
|
|
|
|
char buffer[4];
|
|
|
|
|
|
|
|
p = buffer;
|
|
|
|
switch(myConverterData->locale[0]){
|
|
|
|
case 'j':
|
2001-02-08 19:45:07 +00:00
|
|
|
if(myConverterData->fromUnicodeCurrentState!= ASCII){
|
|
|
|
myConverterData->fromUnicodeCurrentState= ASCII;
|
2001-02-02 03:51:57 +00:00
|
|
|
myConverterData->currentType = (Cnv2022Type) myConverterType[myConverterData->fromUnicodeCurrentState];
|
|
|
|
*p++ = '\x1b';
|
|
|
|
*p++ = '\x28';
|
|
|
|
*p++ = '\x42';
|
|
|
|
|
|
|
|
}
|
|
|
|
*p++ = cnv->subChar[0];
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
if(args->converter->fromUnicodeStatus) {
|
|
|
|
/* DBCS mode and SBCS sub char: change to SBCS */
|
2001-02-08 19:45:07 +00:00
|
|
|
myConverterData->fromUnicodeCurrentState=ASCII;
|
2001-02-02 03:51:57 +00:00
|
|
|
*p++ = UCNV_SI;
|
|
|
|
}
|
|
|
|
*p++ = cnv->subChar[0];
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
if(args->converter->fromUnicodeStatus){
|
|
|
|
args->converter->fromUnicodeStatus=0x00;
|
|
|
|
*p++= UCNV_SI;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p++ = cnv->subChar[0];
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* not expected */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ucnv_cbFromUWriteBytes(args,
|
|
|
|
buffer, (int32_t)(p - buffer),
|
|
|
|
offsetIndex, err);
|
|
|
|
}
|