2000-07-13 00:17:05 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
2004-05-17 06:33:22 +00:00
|
|
|
* Copyright (C) 2000-2004, International Business Machines
|
2000-07-13 00:17:05 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
|
|
|
*******************************************************************************
|
|
|
|
* file name: genmbcs.c
|
|
|
|
* encoding: US-ASCII
|
|
|
|
* tab size: 8 (not used)
|
|
|
|
* indentation:4
|
|
|
|
*
|
|
|
|
* created on: 2000jul06
|
|
|
|
* created by: Markus W. Scherer
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "cstring.h"
|
|
|
|
#include "cmemory.h"
|
|
|
|
#include "unewdata.h"
|
2001-01-16 22:18:53 +00:00
|
|
|
#include "ucnv_cnv.h"
|
2000-07-13 00:17:05 +00:00
|
|
|
#include "ucnvmbcs.h"
|
2003-10-25 00:29:13 +00:00
|
|
|
#include "ucm.h"
|
2000-11-15 00:56:35 +00:00
|
|
|
#include "makeconv.h"
|
2000-07-13 00:17:05 +00:00
|
|
|
#include "genmbcs.h"
|
|
|
|
|
2000-11-15 00:56:35 +00:00
|
|
|
typedef struct MBCSData {
|
|
|
|
NewConverter newConverter;
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
UCMFile *ucm;
|
|
|
|
|
|
|
|
/* toUnicode (state table in ucm->states) */
|
2000-07-13 00:17:05 +00:00
|
|
|
_MBCSToUFallback toUFallbacks[MBCS_MAX_FALLBACK_COUNT];
|
2003-10-25 00:29:13 +00:00
|
|
|
int32_t countToUFallbacks;
|
2000-07-13 00:17:05 +00:00
|
|
|
uint16_t *unicodeCodeUnits;
|
|
|
|
|
|
|
|
/* fromUnicode */
|
2001-01-16 22:18:53 +00:00
|
|
|
uint16_t stage1[MBCS_STAGE_1_SIZE];
|
|
|
|
uint16_t stage2Single[MBCS_STAGE_2_SIZE]; /* stage 2 for single-byte codepages */
|
|
|
|
uint32_t stage2[MBCS_STAGE_2_SIZE]; /* stage 2 for MBCS */
|
2000-07-13 00:17:05 +00:00
|
|
|
uint8_t *fromUBytes;
|
2003-10-25 00:29:13 +00:00
|
|
|
uint32_t stage2Top, stage3Top;
|
2000-11-15 00:56:35 +00:00
|
|
|
} MBCSData;
|
|
|
|
|
|
|
|
/* prototypes */
|
|
|
|
static void
|
|
|
|
MBCSClose(NewConverter *cnvData);
|
|
|
|
|
|
|
|
static UBool
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSStartMappings(MBCSData *mbcsData);
|
2000-11-15 00:56:35 +00:00
|
|
|
|
|
|
|
static UBool
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSAddToUnicode(MBCSData *mbcsData,
|
2000-11-15 00:56:35 +00:00
|
|
|
const uint8_t *bytes, int32_t length,
|
2003-10-25 00:29:13 +00:00
|
|
|
UChar32 c,
|
|
|
|
int8_t flag);
|
2000-11-15 00:56:35 +00:00
|
|
|
|
2001-01-03 00:29:09 +00:00
|
|
|
static UBool
|
|
|
|
MBCSIsValid(NewConverter *cnvData,
|
2003-10-25 00:29:13 +00:00
|
|
|
const uint8_t *bytes, int32_t length);
|
2001-01-03 00:29:09 +00:00
|
|
|
|
2001-01-16 22:18:53 +00:00
|
|
|
static UBool
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSSingleAddFromUnicode(MBCSData *mbcsData,
|
2001-01-16 22:18:53 +00:00
|
|
|
const uint8_t *bytes, int32_t length,
|
2003-10-25 00:29:13 +00:00
|
|
|
UChar32 c,
|
|
|
|
int8_t flag);
|
2001-01-16 22:18:53 +00:00
|
|
|
|
2000-11-15 00:56:35 +00:00
|
|
|
static UBool
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSAddFromUnicode(MBCSData *mbcsData,
|
2000-11-15 00:56:35 +00:00
|
|
|
const uint8_t *bytes, int32_t length,
|
2003-10-25 00:29:13 +00:00
|
|
|
UChar32 c,
|
|
|
|
int8_t flag);
|
2000-11-15 00:56:35 +00:00
|
|
|
|
|
|
|
static void
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSPostprocess(MBCSData *mbcsData, const UConverterStaticData *staticData);
|
|
|
|
|
|
|
|
static UBool
|
|
|
|
MBCSAddTable(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData);
|
2000-11-15 00:56:35 +00:00
|
|
|
|
|
|
|
static uint32_t
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSWrite(NewConverter *cnvData, const UConverterStaticData *staticData,
|
|
|
|
UNewDataMemory *pData, int32_t tableType);
|
|
|
|
|
|
|
|
/* helper ------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
static U_INLINE char
|
|
|
|
hexDigit(uint8_t digit) {
|
|
|
|
return digit<=9 ? (char)('0'+digit) : (char)('a'-10+digit);
|
|
|
|
}
|
|
|
|
|
|
|
|
static U_INLINE char *
|
|
|
|
printBytes(char *buffer, const uint8_t *bytes, int32_t length) {
|
|
|
|
char *s=buffer;
|
|
|
|
while(length>0) {
|
|
|
|
*s++=hexDigit((uint8_t)(*bytes>>4));
|
|
|
|
*s++=hexDigit((uint8_t)(*bytes&0xf));
|
|
|
|
++bytes;
|
|
|
|
--length;
|
|
|
|
}
|
|
|
|
|
|
|
|
*s=0;
|
|
|
|
return buffer;
|
|
|
|
}
|
2000-11-15 00:56:35 +00:00
|
|
|
|
|
|
|
/* implementation ----------------------------------------------------------- */
|
2000-07-13 00:17:05 +00:00
|
|
|
|
|
|
|
static void
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSInit(MBCSData *mbcsData, UCMFile *ucm) {
|
|
|
|
int32_t i, maxCharLength;
|
2000-12-21 21:31:17 +00:00
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
uprv_memset(mbcsData, 0, sizeof(MBCSData));
|
2000-11-15 00:56:35 +00:00
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
maxCharLength=ucm->states.maxCharLength;
|
|
|
|
|
|
|
|
mbcsData->ucm=ucm; /* aliased, not owned */
|
|
|
|
|
2000-11-15 00:56:35 +00:00
|
|
|
mbcsData->newConverter.close=MBCSClose;
|
2001-01-03 00:29:09 +00:00
|
|
|
mbcsData->newConverter.isValid=MBCSIsValid;
|
2003-10-25 00:29:13 +00:00
|
|
|
mbcsData->newConverter.addTable=MBCSAddTable;
|
2000-11-15 00:56:35 +00:00
|
|
|
mbcsData->newConverter.write=MBCSWrite;
|
|
|
|
|
2000-12-21 21:31:17 +00:00
|
|
|
mbcsData->stage2Top=MBCS_STAGE_2_FIRST_ASSIGNED; /* after stage 1 and one all-unassigned stage 2 block */
|
|
|
|
mbcsData->stage3Top=16*maxCharLength; /* after one all-unassigned stage 3 block */
|
|
|
|
|
|
|
|
/* point all entries in stage 1 to the "all-unassigned" first block in stage 2 */
|
|
|
|
for(i=0; i<MBCS_STAGE_1_SIZE; ++i) {
|
2001-01-16 22:18:53 +00:00
|
|
|
mbcsData->stage1[i]=MBCS_STAGE_2_ALL_UNASSIGNED_INDEX;
|
2000-12-21 21:31:17 +00:00
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
|
2000-11-15 00:56:35 +00:00
|
|
|
NewConverter *
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSOpen(UCMFile *ucm) {
|
2000-07-13 00:17:05 +00:00
|
|
|
MBCSData *mbcsData=(MBCSData *)uprv_malloc(sizeof(MBCSData));
|
|
|
|
if(mbcsData!=NULL) {
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSInit(mbcsData, ucm);
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
2000-11-15 00:56:35 +00:00
|
|
|
return &mbcsData->newConverter;
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
|
2000-11-21 01:54:12 +00:00
|
|
|
static void
|
2000-11-15 00:56:35 +00:00
|
|
|
MBCSClose(NewConverter *cnvData) {
|
|
|
|
MBCSData *mbcsData=(MBCSData *)cnvData;
|
2000-07-13 00:17:05 +00:00
|
|
|
if(mbcsData!=NULL) {
|
2003-10-25 00:29:13 +00:00
|
|
|
uprv_free(mbcsData->unicodeCodeUnits);
|
|
|
|
uprv_free(mbcsData->fromUBytes);
|
2000-07-13 00:17:05 +00:00
|
|
|
uprv_free(mbcsData);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-02 22:58:52 +00:00
|
|
|
static UBool
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSStartMappings(MBCSData *mbcsData) {
|
|
|
|
int32_t i, sum;
|
2001-01-02 22:58:52 +00:00
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
/* allocate the code unit array and prefill it with "unassigned" values */
|
|
|
|
sum=mbcsData->ucm->states.countToUCodeUnits;
|
|
|
|
if(VERBOSE) {
|
2003-12-04 22:46:02 +00:00
|
|
|
printf("the total number of offsets is 0x%lx=%ld\n", (long)sum, (long)sum);
|
2001-01-02 22:58:52 +00:00
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
|
2000-08-15 19:22:33 +00:00
|
|
|
if(sum>0) {
|
|
|
|
mbcsData->unicodeCodeUnits=(uint16_t *)uprv_malloc(sum*sizeof(uint16_t));
|
|
|
|
if(mbcsData->unicodeCodeUnits==NULL) {
|
2001-03-27 19:01:07 +00:00
|
|
|
fprintf(stderr, "error: out of memory allocating %ld 16-bit code units\n",
|
|
|
|
(long)sum);
|
2000-08-15 19:22:33 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
for(i=0; i<sum; ++i) {
|
|
|
|
mbcsData->unicodeCodeUnits[i]=0xfffe;
|
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate the codepage mappings and preset the first 16 characters to 0 */
|
2003-10-25 00:29:13 +00:00
|
|
|
if(mbcsData->ucm->states.maxCharLength==1) {
|
2001-01-16 22:18:53 +00:00
|
|
|
/* allocate 64k 16-bit results for single-byte codepages */
|
|
|
|
sum=0x20000;
|
|
|
|
} else {
|
|
|
|
/* allocate 1M * maxCharLength bytes for at most 1M mappings */
|
2003-10-25 00:29:13 +00:00
|
|
|
sum=0x100000*mbcsData->ucm->states.maxCharLength;
|
2001-01-16 22:18:53 +00:00
|
|
|
}
|
|
|
|
mbcsData->fromUBytes=(uint8_t *)uprv_malloc(sum);
|
2000-07-13 00:17:05 +00:00
|
|
|
if(mbcsData->fromUBytes==NULL) {
|
2003-12-04 22:46:02 +00:00
|
|
|
fprintf(stderr, "error: out of memory allocating %ld B for target mappings\n", (long)sum);
|
2000-07-13 00:17:05 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2000-12-21 21:31:17 +00:00
|
|
|
/* initialize the all-unassigned first stage 3 block */
|
2001-01-16 22:18:53 +00:00
|
|
|
uprv_memset(mbcsData->fromUBytes, 0, 64);
|
2000-07-13 00:17:05 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-01-02 22:58:52 +00:00
|
|
|
/* return TRUE for success */
|
|
|
|
static UBool
|
|
|
|
setFallback(MBCSData *mbcsData, uint32_t offset, UChar32 c) {
|
2003-10-25 00:29:13 +00:00
|
|
|
int32_t i=ucm_findFallback(mbcsData->toUFallbacks, mbcsData->countToUFallbacks, offset);
|
2001-01-02 22:58:52 +00:00
|
|
|
if(i>=0) {
|
|
|
|
/* if there is already a fallback for this offset, then overwrite it */
|
|
|
|
mbcsData->toUFallbacks[i].codePoint=c;
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
/* if there is no fallback for this offset, then add one */
|
2003-10-25 00:29:13 +00:00
|
|
|
i=mbcsData->countToUFallbacks;
|
2001-01-02 22:58:52 +00:00
|
|
|
if(i>=MBCS_MAX_FALLBACK_COUNT) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "error: too many toUnicode fallbacks, currently at: U+%x\n", (int)c);
|
2001-01-02 22:58:52 +00:00
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
mbcsData->toUFallbacks[i].offset=offset;
|
|
|
|
mbcsData->toUFallbacks[i].codePoint=c;
|
2003-10-25 00:29:13 +00:00
|
|
|
mbcsData->countToUFallbacks=i+1;
|
2001-01-02 22:58:52 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-11-15 00:56:35 +00:00
|
|
|
/* remove fallback if there is one with this offset; return the code point if there was such a fallback, otherwise -1 */
|
|
|
|
static int32_t
|
2000-07-13 00:17:05 +00:00
|
|
|
removeFallback(MBCSData *mbcsData, uint32_t offset) {
|
2003-10-25 00:29:13 +00:00
|
|
|
int32_t i=ucm_findFallback(mbcsData->toUFallbacks, mbcsData->countToUFallbacks, offset);
|
2001-01-02 22:58:52 +00:00
|
|
|
if(i>=0) {
|
|
|
|
_MBCSToUFallback *toUFallbacks;
|
|
|
|
int32_t limit, old;
|
|
|
|
|
|
|
|
toUFallbacks=mbcsData->toUFallbacks;
|
2003-10-25 00:29:13 +00:00
|
|
|
limit=mbcsData->countToUFallbacks;
|
2001-01-02 22:58:52 +00:00
|
|
|
old=(int32_t)toUFallbacks[i].codePoint;
|
|
|
|
|
|
|
|
/* copy the last fallback entry here to keep the list contiguous */
|
|
|
|
toUFallbacks[i].offset=toUFallbacks[limit-1].offset;
|
|
|
|
toUFallbacks[i].codePoint=toUFallbacks[limit-1].codePoint;
|
2003-10-25 00:29:13 +00:00
|
|
|
mbcsData->countToUFallbacks=limit-1;
|
2001-01-02 22:58:52 +00:00
|
|
|
return old;
|
|
|
|
} else {
|
|
|
|
return -1;
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* isFallback is almost a boolean:
|
|
|
|
* 1 (TRUE) this is a fallback mapping
|
|
|
|
* 0 (FALSE) this is a precise mapping
|
|
|
|
* -1 the precision of this mapping is not specified
|
|
|
|
*/
|
2000-11-21 01:54:12 +00:00
|
|
|
static UBool
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSAddToUnicode(MBCSData *mbcsData,
|
2000-07-13 00:17:05 +00:00
|
|
|
const uint8_t *bytes, int32_t length,
|
2003-10-25 00:29:13 +00:00
|
|
|
UChar32 c,
|
|
|
|
int8_t flag) {
|
|
|
|
char buffer[10];
|
2000-11-15 00:56:35 +00:00
|
|
|
uint32_t offset=0;
|
|
|
|
int32_t i=0, entry, old;
|
2000-07-13 00:17:05 +00:00
|
|
|
uint8_t state=0;
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
if(mbcsData->ucm->states.countStates==0) {
|
2000-07-13 00:17:05 +00:00
|
|
|
fprintf(stderr, "error: there is no state information!\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-01-02 22:58:52 +00:00
|
|
|
/* for SI/SO (like EBCDIC-stateful), double-byte sequences start in state 1 */
|
2003-10-25 00:29:13 +00:00
|
|
|
if(length==2 && mbcsData->ucm->states.outputType==MBCS_OUTPUT_2_SISO) {
|
2001-01-02 22:58:52 +00:00
|
|
|
state=1;
|
|
|
|
}
|
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
/*
|
|
|
|
* Walk down the state table like in conversion,
|
|
|
|
* much like getNextUChar().
|
|
|
|
* We assume that c<=0x10ffff.
|
|
|
|
*/
|
|
|
|
for(i=0;;) {
|
2003-10-25 00:29:13 +00:00
|
|
|
entry=mbcsData->ucm->states.stateTable[state][bytes[i++]];
|
2001-01-16 22:18:53 +00:00
|
|
|
if(MBCS_ENTRY_IS_TRANSITION(entry)) {
|
2000-07-13 00:17:05 +00:00
|
|
|
if(i==length) {
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "error: byte sequence too short, ends in non-final state %hu: 0x%s (U+%x)\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(short)state, printBytes(buffer, bytes, length), (int)c);
|
2000-07-13 00:17:05 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2001-01-16 22:18:53 +00:00
|
|
|
state=(uint8_t)MBCS_ENTRY_TRANSITION_STATE(entry);
|
|
|
|
offset+=MBCS_ENTRY_TRANSITION_OFFSET(entry);
|
2000-07-13 00:17:05 +00:00
|
|
|
} else {
|
|
|
|
if(i<length) {
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "error: byte sequence too long by %d bytes, final state %hu: 0x%s (U+%x)\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)(length-i), state, printBytes(buffer, bytes, length), (int)c);
|
2000-07-13 00:17:05 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2001-01-16 22:18:53 +00:00
|
|
|
switch(MBCS_ENTRY_FINAL_ACTION(entry)) {
|
|
|
|
case MBCS_STATE_ILLEGAL:
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "error: byte sequence ends in illegal state at U+%04x<->0x%s\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, printBytes(buffer, bytes, length));
|
2000-07-13 00:17:05 +00:00
|
|
|
return FALSE;
|
2001-01-16 22:18:53 +00:00
|
|
|
case MBCS_STATE_CHANGE_ONLY:
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "error: byte sequence ends in state-change-only at U+%04x<->0x%s\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, printBytes(buffer, bytes, length));
|
2000-07-13 00:17:05 +00:00
|
|
|
return FALSE;
|
2001-01-16 22:18:53 +00:00
|
|
|
case MBCS_STATE_UNASSIGNED:
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "error: byte sequence ends in unassigned state at U+%04x<->0x%s\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, printBytes(buffer, bytes, length));
|
2000-07-13 00:17:05 +00:00
|
|
|
return FALSE;
|
2001-01-16 22:18:53 +00:00
|
|
|
case MBCS_STATE_FALLBACK_DIRECT_16:
|
|
|
|
case MBCS_STATE_VALID_DIRECT_16:
|
|
|
|
case MBCS_STATE_FALLBACK_DIRECT_20:
|
|
|
|
case MBCS_STATE_VALID_DIRECT_20:
|
|
|
|
if(MBCS_ENTRY_SET_STATE(entry, 0)!=MBCS_ENTRY_FINAL(0, MBCS_STATE_VALID_DIRECT_16, 0xfffe)) {
|
2000-12-20 18:40:08 +00:00
|
|
|
/* the "direct" action's value is not "valid-direct-16-unassigned" any more */
|
2001-01-16 22:18:53 +00:00
|
|
|
if(MBCS_ENTRY_FINAL_ACTION(entry)==MBCS_STATE_VALID_DIRECT_16 || MBCS_ENTRY_FINAL_ACTION(entry)==MBCS_STATE_FALLBACK_DIRECT_16) {
|
|
|
|
old=MBCS_ENTRY_FINAL_VALUE(entry);
|
2000-11-15 00:56:35 +00:00
|
|
|
} else {
|
2001-01-16 22:18:53 +00:00
|
|
|
old=0x10000+MBCS_ENTRY_FINAL_VALUE(entry);
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag>=0) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "error: duplicate codepage byte sequence at U+%04x<->0x%s see U+%04x\n",
|
|
|
|
(int)c, printBytes(buffer, bytes, length), (int)old);
|
2000-11-15 00:56:35 +00:00
|
|
|
return FALSE;
|
|
|
|
} else if(VERBOSE) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "duplicate codepage byte sequence at U+%04x<->0x%s see U+%04x\n",
|
|
|
|
(int)c, printBytes(buffer, bytes, length), (int)old);
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Continue after the above warning
|
2000-11-15 00:56:35 +00:00
|
|
|
* if the precision of the mapping is unspecified.
|
2000-07-13 00:17:05 +00:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
/* reassign the correct action code */
|
2003-10-25 00:29:13 +00:00
|
|
|
entry=MBCS_ENTRY_FINAL_SET_ACTION(entry, (MBCS_STATE_VALID_DIRECT_16+(flag==3 ? 2 : 0)+(c>=0x10000 ? 1 : 0)));
|
2001-01-16 22:18:53 +00:00
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
/* put the code point into bits 22..7 for BMP, c-0x10000 into 26..7 for others */
|
|
|
|
if(c<=0xffff) {
|
2001-01-16 22:18:53 +00:00
|
|
|
entry=MBCS_ENTRY_FINAL_SET_VALUE(entry, c);
|
2000-07-13 00:17:05 +00:00
|
|
|
} else {
|
2001-01-16 22:18:53 +00:00
|
|
|
entry=MBCS_ENTRY_FINAL_SET_VALUE(entry, c-0x10000);
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
2003-10-25 00:29:13 +00:00
|
|
|
mbcsData->ucm->states.stateTable[state][bytes[i-1]]=entry;
|
2000-07-13 00:17:05 +00:00
|
|
|
break;
|
2001-01-16 22:18:53 +00:00
|
|
|
case MBCS_STATE_VALID_16:
|
2000-07-13 00:17:05 +00:00
|
|
|
/* bits 26..16 are not used, 0 */
|
|
|
|
/* bits 15..7 contain the final offset delta to one 16-bit code unit */
|
2001-01-16 22:18:53 +00:00
|
|
|
offset+=MBCS_ENTRY_FINAL_VALUE_16(entry);
|
2000-11-15 00:56:35 +00:00
|
|
|
/* check that this byte sequence is still unassigned */
|
|
|
|
if((old=mbcsData->unicodeCodeUnits[offset])!=0xfffe || (old=removeFallback(mbcsData, offset))!=-1) {
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag>=0) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "error: duplicate codepage byte sequence at U+%04x<->0x%s see U+%04x\n",
|
|
|
|
(int)c, printBytes(buffer, bytes, length), (int)old);
|
2000-11-15 00:56:35 +00:00
|
|
|
return FALSE;
|
|
|
|
} else if(VERBOSE) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "duplicate codepage byte sequence at U+%04x<->0x%s see U+%04x\n",
|
|
|
|
(int)c, printBytes(buffer, bytes, length), (int)old);
|
2000-11-15 00:56:35 +00:00
|
|
|
}
|
|
|
|
}
|
2001-01-16 22:18:53 +00:00
|
|
|
if(c>=0x10000) {
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "error: code point does not fit into valid-16-bit state at U+%04x<->0x%s\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, printBytes(buffer, bytes, length));
|
2001-01-16 22:18:53 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag>0) {
|
2000-07-13 00:17:05 +00:00
|
|
|
/* assign only if there is no precise mapping */
|
|
|
|
if(mbcsData->unicodeCodeUnits[offset]==0xfffe) {
|
|
|
|
return setFallback(mbcsData, offset, c);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mbcsData->unicodeCodeUnits[offset]=(uint16_t)c;
|
|
|
|
}
|
|
|
|
break;
|
2001-01-16 22:18:53 +00:00
|
|
|
case MBCS_STATE_VALID_16_PAIR:
|
2000-07-13 00:17:05 +00:00
|
|
|
/* bits 26..16 are not used, 0 */
|
|
|
|
/* bits 15..7 contain the final offset delta to two 16-bit code units */
|
2001-01-16 22:18:53 +00:00
|
|
|
offset+=MBCS_ENTRY_FINAL_VALUE_16(entry);
|
2000-11-15 00:56:35 +00:00
|
|
|
/* check that this byte sequence is still unassigned */
|
2001-01-16 22:18:53 +00:00
|
|
|
old=mbcsData->unicodeCodeUnits[offset];
|
|
|
|
if(old<0xfffe) {
|
|
|
|
int32_t real;
|
|
|
|
if(old<0xd800) {
|
|
|
|
real=old;
|
|
|
|
} else if(old<=0xdfff) {
|
|
|
|
real=0x10000+((old&0x3ff)<<10)+((mbcsData->unicodeCodeUnits[offset+1])&0x3ff);
|
|
|
|
} else /* old<=0xe001 */ {
|
|
|
|
real=mbcsData->unicodeCodeUnits[offset+1];
|
|
|
|
}
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag>=0) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "error: duplicate codepage byte sequence at U+%04x<->0x%s see U+%04x\n",
|
|
|
|
(int)c, printBytes(buffer, bytes, length), (int)real);
|
2000-11-15 00:56:35 +00:00
|
|
|
return FALSE;
|
|
|
|
} else if(VERBOSE) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "duplicate codepage byte sequence at U+%04x<->0x%s see U+%04x\n",
|
|
|
|
(int)c, printBytes(buffer, bytes, length), (int)real);
|
2000-11-15 00:56:35 +00:00
|
|
|
}
|
|
|
|
}
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag>0) {
|
2000-07-13 00:17:05 +00:00
|
|
|
/* assign only if there is no precise mapping */
|
2001-01-16 22:18:53 +00:00
|
|
|
if(old<=0xdbff || old==0xe000) {
|
|
|
|
/* do nothing */
|
|
|
|
} else if(c<=0xffff) {
|
|
|
|
/* set a BMP fallback code point as a pair with 0xe001 */
|
|
|
|
mbcsData->unicodeCodeUnits[offset++]=0xe001;
|
|
|
|
mbcsData->unicodeCodeUnits[offset]=(uint16_t)c;
|
|
|
|
} else {
|
|
|
|
/* set a fallback surrogate pair with two second surrogates */
|
|
|
|
mbcsData->unicodeCodeUnits[offset++]=(uint16_t)(0xdbc0+(c>>10));
|
|
|
|
mbcsData->unicodeCodeUnits[offset]=(uint16_t)(0xdc00+(c&0x3ff));
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
} else {
|
2001-01-16 22:18:53 +00:00
|
|
|
if(c<0xd800) {
|
|
|
|
/* set a BMP code point */
|
|
|
|
mbcsData->unicodeCodeUnits[offset]=(uint16_t)c;
|
|
|
|
} else if(c<=0xffff) {
|
|
|
|
/* set a BMP code point above 0xd800 as a pair with 0xe000 */
|
|
|
|
mbcsData->unicodeCodeUnits[offset++]=0xe000;
|
2000-07-13 00:17:05 +00:00
|
|
|
mbcsData->unicodeCodeUnits[offset]=(uint16_t)c;
|
|
|
|
} else {
|
|
|
|
/* set a surrogate pair */
|
|
|
|
mbcsData->unicodeCodeUnits[offset++]=(uint16_t)(0xd7c0+(c>>10));
|
|
|
|
mbcsData->unicodeCodeUnits[offset]=(uint16_t)(0xdc00+(c&0x3ff));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* reserved, must never occur */
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "internal error: byte sequence reached reserved action code, entry 0x%02x: 0x%s (U+%x)\n",
|
|
|
|
(int)entry, printBytes(buffer, bytes, length), (int)c);
|
2000-07-13 00:17:05 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-03 00:29:09 +00:00
|
|
|
/* is this byte sequence valid? (this is almost the same as MBCSAddToUnicode()) */
|
|
|
|
static UBool
|
|
|
|
MBCSIsValid(NewConverter *cnvData,
|
2003-10-25 00:29:13 +00:00
|
|
|
const uint8_t *bytes, int32_t length) {
|
2001-01-03 00:29:09 +00:00
|
|
|
MBCSData *mbcsData=(MBCSData *)cnvData;
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
return (UBool)(1==ucm_countChars(&mbcsData->ucm->states, bytes, length));
|
2001-01-03 00:29:09 +00:00
|
|
|
}
|
|
|
|
|
2001-01-16 22:18:53 +00:00
|
|
|
static UBool
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSSingleAddFromUnicode(MBCSData *mbcsData,
|
2001-01-16 22:18:53 +00:00
|
|
|
const uint8_t *bytes, int32_t length,
|
2003-10-25 00:29:13 +00:00
|
|
|
UChar32 c,
|
|
|
|
int8_t flag) {
|
2001-01-16 22:18:53 +00:00
|
|
|
uint16_t *p;
|
|
|
|
uint32_t index;
|
|
|
|
uint16_t old;
|
2003-10-25 00:29:13 +00:00
|
|
|
uint8_t b;
|
|
|
|
|
|
|
|
/* ignore |2 SUB mappings */
|
|
|
|
if(flag==2) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
2001-01-16 22:18:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Walk down the triple-stage compact array ("trie") and
|
|
|
|
* allocate parts as necessary.
|
|
|
|
* Note that the first stage 2 and 3 blocks are reserved for all-unassigned mappings.
|
|
|
|
* We assume that length<=maxCharLength and that c<=0x10ffff.
|
|
|
|
*/
|
2003-10-25 00:29:13 +00:00
|
|
|
b=*bytes;
|
2001-01-16 22:18:53 +00:00
|
|
|
|
|
|
|
/* inspect stage 1 */
|
|
|
|
index=c>>10;
|
|
|
|
if(mbcsData->stage1[index]==MBCS_STAGE_2_ALL_UNASSIGNED_INDEX) {
|
|
|
|
/* allocate another block in stage 2 */
|
|
|
|
if(mbcsData->stage2Top>=MBCS_MAX_STAGE_2_TOP) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "error: too many stage 2 entries at U+%04x<->0x%02x\n", (int)c, b);
|
2001-01-16 22:18:53 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* each stage 2 block contains 64 16-bit words:
|
|
|
|
* 6 code point bits 9..4 with 1 stage 3 index
|
|
|
|
*/
|
|
|
|
mbcsData->stage1[index]=(uint16_t)mbcsData->stage2Top;
|
|
|
|
mbcsData->stage2Top+=MBCS_STAGE_2_BLOCK_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* inspect stage 2 */
|
|
|
|
index=(uint32_t)mbcsData->stage1[index]+((c>>4)&0x3f);
|
|
|
|
if(mbcsData->stage2Single[index]==0) {
|
|
|
|
/* allocate another block in stage 3 */
|
|
|
|
if(mbcsData->stage3Top>=0x10000) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "error: too many code points at U+%04x<->0x%02x\n", (int)c, b);
|
2001-01-16 22:18:53 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/* each block has 16 uint16_t entries */
|
|
|
|
mbcsData->stage2Single[index]=(uint16_t)mbcsData->stage3Top;
|
|
|
|
uprv_memset(mbcsData->fromUBytes+2*mbcsData->stage3Top, 0, 32);
|
|
|
|
mbcsData->stage3Top+=16;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* write the codepage entry into stage 3 and get the previous entry */
|
|
|
|
p=(uint16_t *)mbcsData->fromUBytes+mbcsData->stage2Single[index]+(c&0xf);
|
|
|
|
old=*p;
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag<=0) {
|
2001-01-16 22:18:53 +00:00
|
|
|
*p=(uint16_t)(0xf00|b);
|
|
|
|
} else if(IS_PRIVATE_USE(c)) {
|
|
|
|
*p=(uint16_t)(0xc00|b);
|
|
|
|
} else {
|
|
|
|
*p=(uint16_t)(0x800|b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check that this Unicode code point was still unassigned */
|
2003-04-11 21:05:50 +00:00
|
|
|
if(old>=0x100) {
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag>=0) {
|
|
|
|
fprintf(stderr, "error: duplicate Unicode code point at U+%04x<->0x%02x see 0x%02x\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, b, old&0xff);
|
2001-01-16 22:18:53 +00:00
|
|
|
return FALSE;
|
|
|
|
} else if(VERBOSE) {
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "duplicate Unicode code point at U+%04x<->0x%02x see 0x%02x\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, b, old&0xff);
|
2001-01-16 22:18:53 +00:00
|
|
|
}
|
|
|
|
/* continue after the above warning if the precision of the mapping is unspecified */
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2000-11-21 01:54:12 +00:00
|
|
|
static UBool
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSAddFromUnicode(MBCSData *mbcsData,
|
2000-07-13 00:17:05 +00:00
|
|
|
const uint8_t *bytes, int32_t length,
|
2003-10-25 00:29:13 +00:00
|
|
|
UChar32 c,
|
|
|
|
int8_t flag) {
|
|
|
|
char buffer[10];
|
|
|
|
const uint8_t *pb;
|
2000-07-13 00:17:05 +00:00
|
|
|
uint8_t *p;
|
2003-10-25 00:29:13 +00:00
|
|
|
uint32_t index, b, old;
|
|
|
|
int32_t maxCharLength;
|
|
|
|
|
|
|
|
/* ignore |2 SUB mappings */
|
|
|
|
if(flag==2) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
maxCharLength=mbcsData->ucm->states.maxCharLength;
|
|
|
|
|
|
|
|
if(maxCharLength==1) {
|
|
|
|
return MBCSSingleAddFromUnicode(mbcsData, bytes, length, c, flag);
|
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
if( mbcsData->ucm->states.outputType==MBCS_OUTPUT_2_SISO &&
|
2001-01-02 22:58:52 +00:00
|
|
|
(*bytes==0xe || *bytes==0xf)
|
|
|
|
) {
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "error: illegal mapping to SI or SO for SI/SO codepage: U+%04x<->0x%s\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, printBytes(buffer, bytes, length));
|
2001-01-02 22:58:52 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2003-10-25 00:29:13 +00:00
|
|
|
|
2003-11-12 15:59:08 +00:00
|
|
|
if(flag==1 && length==1 && *bytes==0) {
|
2003-12-04 00:48:12 +00:00
|
|
|
fprintf(stderr, "error: unable to encode a |1 fallback from U+%04x to 0x%02x\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, *bytes);
|
2003-10-25 00:29:13 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
/*
|
2000-12-21 21:31:17 +00:00
|
|
|
* Walk down the triple-stage compact array ("trie") and
|
2000-07-13 00:17:05 +00:00
|
|
|
* allocate parts as necessary.
|
2001-03-27 19:01:07 +00:00
|
|
|
* Note that the first stage 2 and 3 blocks are reserved for
|
|
|
|
* all-unassigned mappings.
|
2000-07-13 00:17:05 +00:00
|
|
|
* We assume that length<=maxCharLength and that c<=0x10ffff.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* inspect stage 1 */
|
|
|
|
index=c>>10;
|
2001-01-16 22:18:53 +00:00
|
|
|
if(mbcsData->stage1[index]==MBCS_STAGE_2_ALL_UNASSIGNED_INDEX) {
|
2000-07-13 00:17:05 +00:00
|
|
|
/* allocate another block in stage 2 */
|
2001-01-16 22:18:53 +00:00
|
|
|
if(mbcsData->stage2Top>=MBCS_MAX_STAGE_2_TOP) {
|
2003-10-25 00:29:13 +00:00
|
|
|
fprintf(stderr, "error: too many stage 2 entries at U+%04x<->0x%s\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, printBytes(buffer, bytes, length));
|
2001-01-16 22:18:53 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-01-02 22:58:52 +00:00
|
|
|
/*
|
2001-01-16 22:18:53 +00:00
|
|
|
* each stage 2 block contains 64 32-bit words:
|
|
|
|
* 6 code point bits 9..4 with value with bits 31..16 "assigned" flags and bits 15..0 stage 3 index
|
2000-07-13 00:17:05 +00:00
|
|
|
*/
|
2001-01-16 22:18:53 +00:00
|
|
|
mbcsData->stage1[index]=(uint16_t)mbcsData->stage2Top;
|
2000-12-21 21:31:17 +00:00
|
|
|
mbcsData->stage2Top+=MBCS_STAGE_2_BLOCK_SIZE;
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* inspect stage 2 */
|
2001-01-16 22:18:53 +00:00
|
|
|
index=mbcsData->stage1[index]+((c>>4)&0x3f);
|
|
|
|
if(mbcsData->stage2[index]==0) {
|
2000-07-13 00:17:05 +00:00
|
|
|
/* allocate another block in stage 3 */
|
2003-10-25 00:29:13 +00:00
|
|
|
if(mbcsData->stage3Top>=0x100000*(uint32_t)maxCharLength) {
|
|
|
|
fprintf(stderr, "error: too many code points at U+%04x<->0x%s\n",
|
2004-05-17 06:33:22 +00:00
|
|
|
(int)c, printBytes(buffer, bytes, length));
|
2000-07-13 00:17:05 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/* each block has 16*maxCharLength bytes */
|
2003-10-25 00:29:13 +00:00
|
|
|
mbcsData->stage2[index]=(mbcsData->stage3Top/16)/maxCharLength;
|
|
|
|
uprv_memset(mbcsData->fromUBytes+mbcsData->stage3Top, 0, 16*maxCharLength);
|
|
|
|
mbcsData->stage3Top+=16*maxCharLength;
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
|
2000-11-15 00:56:35 +00:00
|
|
|
/* write the codepage bytes into stage 3 and get the previous bytes */
|
2003-10-25 00:29:13 +00:00
|
|
|
|
|
|
|
/* assemble the bytes into a single integer */
|
|
|
|
pb=bytes;
|
|
|
|
b=0;
|
|
|
|
switch(length) {
|
|
|
|
case 4:
|
|
|
|
b=*pb++;
|
|
|
|
case 3:
|
|
|
|
b=(b<<8)|*pb++;
|
|
|
|
case 2:
|
|
|
|
b=(b<<8)|*pb++;
|
|
|
|
case 1:
|
|
|
|
default:
|
|
|
|
b=(b<<8)|*pb++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-11-15 00:56:35 +00:00
|
|
|
old=0;
|
2003-10-25 00:29:13 +00:00
|
|
|
p=mbcsData->fromUBytes+(16*(uint32_t)(uint16_t)mbcsData->stage2[index]+(c&0xf))*maxCharLength;
|
|
|
|
switch(maxCharLength) {
|
2001-01-16 22:18:53 +00:00
|
|
|
case 2:
|
|
|
|
old=*(uint16_t *)p;
|
|
|
|
*(uint16_t *)p=(uint16_t)b;
|
|
|
|
break;
|
2000-07-13 00:17:05 +00:00
|
|
|
case 3:
|
2001-01-16 22:18:53 +00:00
|
|
|
old=(uint32_t)*p<<16;
|
2000-07-13 00:17:05 +00:00
|
|
|
*p++=(uint8_t)(b>>16);
|
2001-01-16 22:18:53 +00:00
|
|
|
old|=(uint32_t)*p<<8;
|
2000-07-13 00:17:05 +00:00
|
|
|
*p++=(uint8_t)(b>>8);
|
2001-01-16 22:18:53 +00:00
|
|
|
old|=*p;
|
2000-11-15 00:56:35 +00:00
|
|
|
*p=(uint8_t)b;
|
2001-01-16 22:18:53 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
old=*(uint32_t *)p;
|
|
|
|
*(uint32_t *)p=b;
|
|
|
|
break;
|
2000-07-13 00:17:05 +00:00
|
|
|
default:
|
2001-01-16 22:18:53 +00:00
|
|
|
/* will never occur */
|
2000-07-13 00:17:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-11-15 00:56:35 +00:00
|
|
|
/* check that this Unicode code point was still unassigned */
|
2001-01-16 22:18:53 +00:00
|
|
|
if((mbcsData->stage2[index]&(1UL<<(16+(c&0xf))))!=0 || old!=0) {
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag>=0) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "error: duplicate Unicode code point at U+%04x<->0x%s see 0x%02x\n",
|
|
|
|
(int)c, printBytes(buffer, bytes, length), (int)old);
|
2000-11-15 00:56:35 +00:00
|
|
|
return FALSE;
|
|
|
|
} else if(VERBOSE) {
|
2004-05-17 06:33:22 +00:00
|
|
|
fprintf(stderr, "duplicate Unicode code point at U+%04x<->0x%s see 0x%02x\n",
|
|
|
|
(int)c, printBytes(buffer, bytes, length), (int)old);
|
2000-11-15 00:56:35 +00:00
|
|
|
}
|
2001-03-27 19:01:07 +00:00
|
|
|
/* continue after the above warning if the precision of the mapping is
|
|
|
|
unspecified */
|
2000-11-15 00:56:35 +00:00
|
|
|
}
|
2003-10-25 00:29:13 +00:00
|
|
|
if(flag<=0) {
|
|
|
|
/* set the roundtrip flag */
|
2001-01-16 22:18:53 +00:00
|
|
|
mbcsData->stage2[index]|=(1UL<<(16+(c&0xf)));
|
2000-11-15 00:56:35 +00:00
|
|
|
}
|
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
/* we can assume that the table only contains 1:1 mappings with <=4 bytes each */
|
|
|
|
static UBool
|
|
|
|
MBCSAddTable(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData) {
|
|
|
|
MBCSData *mbcsData;
|
|
|
|
UCMapping *m;
|
|
|
|
UChar32 c;
|
|
|
|
int32_t i;
|
|
|
|
UBool isOK;
|
|
|
|
|
|
|
|
staticData->unicodeMask=table->unicodeMask;
|
|
|
|
if(staticData->unicodeMask==3) {
|
|
|
|
fprintf(stderr, "error: contains mappings for both supplementary and surrogate code points\n");
|
|
|
|
return FALSE;
|
2001-01-02 22:58:52 +00:00
|
|
|
}
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
staticData->conversionType=UCNV_MBCS;
|
2001-01-02 22:58:52 +00:00
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
mbcsData=(MBCSData *)cnvData;
|
2001-01-02 22:58:52 +00:00
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
if(!MBCSStartMappings(mbcsData)) {
|
|
|
|
return FALSE;
|
2001-01-02 22:58:52 +00:00
|
|
|
}
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
isOK=TRUE;
|
2001-01-02 22:58:52 +00:00
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
m=table->mappings;
|
|
|
|
for(i=0; i<table->mappingsLength; ++m, ++i) {
|
|
|
|
c=m->u;
|
2001-01-02 22:58:52 +00:00
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
switch(m->f) {
|
|
|
|
case -1:
|
|
|
|
/* there was no precision/fallback indicator */
|
|
|
|
/* fall through to set the mappings */
|
|
|
|
case 0:
|
|
|
|
/* set roundtrip mappings */
|
|
|
|
isOK&=MBCSAddToUnicode(mbcsData, m->b.bytes, m->bLen, c, m->f) &&
|
|
|
|
MBCSAddFromUnicode(mbcsData, m->b.bytes, m->bLen, c, m->f);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
/* set only a fallback mapping from Unicode to codepage */
|
|
|
|
staticData->hasFromUnicodeFallback=TRUE;
|
|
|
|
isOK&=MBCSAddFromUnicode(mbcsData, m->b.bytes, m->bLen, c, m->f);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* ignore |2 SUB mappings */
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
/* set only a fallback mapping from codepage to Unicode */
|
|
|
|
staticData->hasToUnicodeFallback=TRUE;
|
|
|
|
isOK&=MBCSAddToUnicode(mbcsData, m->b.bytes, m->bLen, c, m->f);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* will not occur because the parser checked it already */
|
|
|
|
fprintf(stderr, "error: illegal fallback indicator %d\n", m->f);
|
|
|
|
return FALSE;
|
2001-01-05 02:14:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSPostprocess(mbcsData, staticData);
|
2001-01-05 02:14:08 +00:00
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
return isOK;
|
2001-01-05 02:14:08 +00:00
|
|
|
}
|
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
static UBool
|
2001-01-02 22:58:52 +00:00
|
|
|
transformEUC(MBCSData *mbcsData) {
|
2001-01-23 00:06:18 +00:00
|
|
|
uint8_t *p8;
|
2003-10-25 00:29:13 +00:00
|
|
|
uint32_t i, value, oldLength, old3Top, new3Top;
|
2000-07-13 00:17:05 +00:00
|
|
|
uint8_t b;
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
oldLength=mbcsData->ucm->states.maxCharLength;
|
2000-07-13 00:17:05 +00:00
|
|
|
if(oldLength<3) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
old3Top=mbcsData->stage3Top;
|
|
|
|
|
2001-01-16 22:18:53 +00:00
|
|
|
/* careful: 2-byte and 4-byte codes are stored in platform endianness! */
|
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
/* test if all first bytes are in {0, 0x8e, 0x8f} */
|
2001-01-23 00:06:18 +00:00
|
|
|
p8=mbcsData->fromUBytes;
|
|
|
|
|
|
|
|
#if !U_IS_BIG_ENDIAN
|
|
|
|
if(oldLength==4) {
|
|
|
|
p8+=3;
|
2001-01-16 22:18:53 +00:00
|
|
|
}
|
2001-01-23 00:06:18 +00:00
|
|
|
#endif
|
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
for(i=0; i<old3Top; i+=oldLength) {
|
2001-01-23 00:06:18 +00:00
|
|
|
b=p8[i];
|
2000-07-13 00:17:05 +00:00
|
|
|
if(b!=0 && b!=0x8e && b!=0x8f) {
|
|
|
|
/* some first byte does not fit the EUC pattern, nothing to be done */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2001-01-16 22:18:53 +00:00
|
|
|
/* restore p if it was modified above */
|
2001-01-23 00:06:18 +00:00
|
|
|
p8=mbcsData->fromUBytes;
|
2000-07-13 00:17:05 +00:00
|
|
|
|
|
|
|
/* modify outputType and adjust stage3Top */
|
2003-10-25 00:29:13 +00:00
|
|
|
mbcsData->ucm->states.outputType=(int8_t)(MBCS_OUTPUT_3_EUC+oldLength-3);
|
2000-07-13 00:17:05 +00:00
|
|
|
mbcsData->stage3Top=new3Top=(old3Top*(oldLength-1))/oldLength;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* EUC-encode all byte sequences;
|
|
|
|
* see "CJKV Information Processing" (1st ed. 1999) from Ken Lunde, O'Reilly,
|
|
|
|
* p. 161 in chapter 4 "Encoding Methods"
|
2001-01-16 22:18:53 +00:00
|
|
|
*
|
|
|
|
* This also must reverse the byte order if the platform is little-endian!
|
2000-07-13 00:17:05 +00:00
|
|
|
*/
|
2001-01-16 22:18:53 +00:00
|
|
|
if(oldLength==3) {
|
2001-01-23 00:06:18 +00:00
|
|
|
uint16_t *q=(uint16_t *)p8;
|
2001-01-16 22:18:53 +00:00
|
|
|
for(i=0; i<old3Top; i+=oldLength) {
|
2001-01-23 00:06:18 +00:00
|
|
|
b=*p8;
|
2001-01-16 22:18:53 +00:00
|
|
|
if(b==0) {
|
|
|
|
/* short sequences are stored directly */
|
|
|
|
/* code set 0 or 1 */
|
2001-01-23 00:06:18 +00:00
|
|
|
(*q++)=(uint16_t)((p8[1]<<8)|p8[2]);
|
2001-01-16 22:18:53 +00:00
|
|
|
} else if(b==0x8e) {
|
|
|
|
/* code set 2 */
|
2001-01-23 00:06:18 +00:00
|
|
|
(*q++)=(uint16_t)(((p8[1]&0x7f)<<8)|p8[2]);
|
2001-01-16 22:18:53 +00:00
|
|
|
} else /* b==0x8f */ {
|
|
|
|
/* code set 3 */
|
2001-01-23 00:06:18 +00:00
|
|
|
(*q++)=(uint16_t)((p8[1]<<8)|(p8[2]&0x7f));
|
2001-01-16 22:18:53 +00:00
|
|
|
}
|
2001-01-23 00:06:18 +00:00
|
|
|
p8+=3;
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
2001-01-16 22:18:53 +00:00
|
|
|
} else /* oldLength==4 */ {
|
2001-01-23 00:06:18 +00:00
|
|
|
uint8_t *q=p8;
|
|
|
|
uint32_t *p32=(uint32_t *)p8;
|
2001-01-16 22:18:53 +00:00
|
|
|
for(i=0; i<old3Top; i+=4) {
|
2001-01-23 00:06:18 +00:00
|
|
|
value=(*p32++);
|
2001-01-16 22:18:53 +00:00
|
|
|
if(value<=0xffffff) {
|
|
|
|
/* short sequences are stored directly */
|
|
|
|
/* code set 0 or 1 */
|
2001-01-23 00:06:18 +00:00
|
|
|
(*q++)=(uint8_t)(value>>16);
|
|
|
|
(*q++)=(uint8_t)(value>>8);
|
|
|
|
(*q++)=(uint8_t)value;
|
2001-01-16 22:18:53 +00:00
|
|
|
} else if(value<=0x8effffff) {
|
|
|
|
/* code set 2 */
|
2001-01-23 00:06:18 +00:00
|
|
|
(*q++)=(uint8_t)((value>>16)&0x7f);
|
|
|
|
(*q++)=(uint8_t)(value>>8);
|
|
|
|
(*q++)=(uint8_t)value;
|
2001-01-16 22:18:53 +00:00
|
|
|
} else /* first byte is 0x8f */ {
|
|
|
|
/* code set 3 */
|
2001-01-23 00:06:18 +00:00
|
|
|
(*q++)=(uint8_t)(value>>16);
|
|
|
|
(*q++)=(uint8_t)((value>>8)&0x7f);
|
|
|
|
(*q++)=(uint8_t)value;
|
2001-01-16 22:18:53 +00:00
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-01-16 22:18:53 +00:00
|
|
|
/*
|
|
|
|
* Compact stage 2 for SBCS by overlapping adjacent stage 2 blocks as far
|
|
|
|
* as possible. Overlapping is done on unassigned head and tail
|
|
|
|
* parts of blocks in steps of MBCS_STAGE_2_MULTIPLIER.
|
|
|
|
* Stage 1 indexes need to be adjusted accordingly.
|
|
|
|
* This function is very similar to genprops/store.c/compactStage().
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
singleCompactStage2(MBCSData *mbcsData) {
|
|
|
|
/* this array maps the ordinal number of a stage 2 block to its new stage 1 index */
|
|
|
|
uint16_t map[MBCS_STAGE_2_MAX_BLOCKS];
|
|
|
|
uint16_t i, start, prevEnd, newStart;
|
|
|
|
|
|
|
|
/* enter the all-unassigned first stage 2 block into the map */
|
|
|
|
map[0]=MBCS_STAGE_2_ALL_UNASSIGNED_INDEX;
|
|
|
|
|
|
|
|
/* begin with the first block after the all-unassigned one */
|
|
|
|
start=newStart=MBCS_STAGE_2_FIRST_ASSIGNED;
|
|
|
|
while(start<mbcsData->stage2Top) {
|
|
|
|
prevEnd=(uint16_t)(newStart-1);
|
|
|
|
|
|
|
|
/* find the size of the overlap */
|
|
|
|
for(i=0; i<MBCS_STAGE_2_BLOCK_SIZE && mbcsData->stage2Single[start+i]==0 && mbcsData->stage2Single[prevEnd-i]==0; ++i) {}
|
|
|
|
|
|
|
|
if(i>0) {
|
|
|
|
map[start>>MBCS_STAGE_2_BLOCK_SIZE_SHIFT]=(uint16_t)(newStart-i);
|
|
|
|
|
|
|
|
/* move the non-overlapping indexes to their new positions */
|
|
|
|
start+=i;
|
|
|
|
for(i=(uint16_t)(MBCS_STAGE_2_BLOCK_SIZE-i); i>0; --i) {
|
|
|
|
mbcsData->stage2Single[newStart++]=mbcsData->stage2Single[start++];
|
|
|
|
}
|
|
|
|
} else if(newStart<start) {
|
|
|
|
/* move the indexes to their new positions */
|
|
|
|
map[start>>MBCS_STAGE_2_BLOCK_SIZE_SHIFT]=newStart;
|
|
|
|
for(i=MBCS_STAGE_2_BLOCK_SIZE; i>0; --i) {
|
|
|
|
mbcsData->stage2Single[newStart++]=mbcsData->stage2Single[start++];
|
|
|
|
}
|
|
|
|
} else /* no overlap && newStart==start */ {
|
|
|
|
map[start>>MBCS_STAGE_2_BLOCK_SIZE_SHIFT]=start;
|
|
|
|
start=newStart+=MBCS_STAGE_2_BLOCK_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* adjust stage2Top */
|
|
|
|
if(VERBOSE && newStart<mbcsData->stage2Top) {
|
|
|
|
printf("compacting stage 2 from stage2Top=0x%lx to 0x%lx, saving %ld bytes\n",
|
2001-03-27 19:01:07 +00:00
|
|
|
(unsigned long)mbcsData->stage2Top, (unsigned long)newStart,
|
|
|
|
(long)(mbcsData->stage2Top-newStart)*2);
|
2001-01-16 22:18:53 +00:00
|
|
|
}
|
|
|
|
mbcsData->stage2Top=newStart;
|
|
|
|
|
|
|
|
/* now adjust stage 1 */
|
|
|
|
for(i=0; i<MBCS_STAGE_1_SIZE; ++i) {
|
|
|
|
mbcsData->stage1[i]=map[mbcsData->stage1[i]>>MBCS_STAGE_2_BLOCK_SIZE_SHIFT];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compact stage 3 for SBCS - same algorithm as above. */
|
|
|
|
static void
|
|
|
|
singleCompactStage3(MBCSData *mbcsData) {
|
|
|
|
uint16_t *stage3=(uint16_t *)mbcsData->fromUBytes;
|
|
|
|
|
|
|
|
/* this array maps the ordinal number of a stage 3 block to its new stage 2 index */
|
|
|
|
uint16_t map[0x1000];
|
|
|
|
uint16_t i, start, prevEnd, newStart;
|
|
|
|
|
|
|
|
/* enter the all-unassigned first stage 3 block into the map */
|
|
|
|
map[0]=0;
|
|
|
|
|
|
|
|
/* begin with the first block after the all-unassigned one */
|
|
|
|
start=newStart=16;
|
|
|
|
while(start<mbcsData->stage3Top) {
|
|
|
|
prevEnd=(uint16_t)(newStart-1);
|
|
|
|
|
|
|
|
/* find the size of the overlap */
|
|
|
|
for(i=0; i<16 && stage3[start+i]==0 && stage3[prevEnd-i]==0; ++i) {}
|
|
|
|
|
|
|
|
if(i>0) {
|
|
|
|
map[start>>4]=(uint16_t)(newStart-i);
|
|
|
|
|
|
|
|
/* move the non-overlapping indexes to their new positions */
|
|
|
|
start+=i;
|
|
|
|
for(i=(uint16_t)(16-i); i>0; --i) {
|
|
|
|
stage3[newStart++]=stage3[start++];
|
|
|
|
}
|
|
|
|
} else if(newStart<start) {
|
|
|
|
/* move the indexes to their new positions */
|
|
|
|
map[start>>4]=newStart;
|
|
|
|
for(i=16; i>0; --i) {
|
|
|
|
stage3[newStart++]=stage3[start++];
|
|
|
|
}
|
|
|
|
} else /* no overlap && newStart==start */ {
|
|
|
|
map[start>>4]=start;
|
|
|
|
start=newStart+=16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* adjust stage3Top */
|
|
|
|
if(VERBOSE && newStart<mbcsData->stage3Top) {
|
|
|
|
printf("compacting stage 3 from stage3Top=0x%lx to 0x%lx, saving %ld bytes\n",
|
2001-03-27 19:01:07 +00:00
|
|
|
(unsigned long)mbcsData->stage3Top, (unsigned long)newStart,
|
|
|
|
(long)(mbcsData->stage3Top-newStart)*2);
|
2001-01-16 22:18:53 +00:00
|
|
|
}
|
|
|
|
mbcsData->stage3Top=newStart;
|
|
|
|
|
|
|
|
/* now adjust stage 2 */
|
|
|
|
for(i=0; i<mbcsData->stage2Top; ++i) {
|
|
|
|
mbcsData->stage2Single[i]=map[mbcsData->stage2Single[i]>>4];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-21 21:31:17 +00:00
|
|
|
/*
|
|
|
|
* Compact stage 2 by overlapping adjacent stage 2 blocks as far
|
|
|
|
* as possible. Overlapping is done on unassigned head and tail
|
|
|
|
* parts of blocks in steps of MBCS_STAGE_2_MULTIPLIER.
|
|
|
|
* Stage 1 indexes need to be adjusted accordingly.
|
|
|
|
* This function is very similar to genprops/store.c/compactStage().
|
|
|
|
*/
|
|
|
|
static void
|
2001-01-02 22:58:52 +00:00
|
|
|
compactStage2(MBCSData *mbcsData) {
|
2000-12-21 21:31:17 +00:00
|
|
|
/* this array maps the ordinal number of a stage 2 block to its new stage 1 index */
|
2001-01-02 22:58:52 +00:00
|
|
|
uint16_t map[MBCS_STAGE_2_MAX_BLOCKS];
|
2000-12-21 21:31:17 +00:00
|
|
|
uint16_t i, start, prevEnd, newStart;
|
|
|
|
|
|
|
|
/* enter the all-unassigned first stage 2 block into the map */
|
|
|
|
map[0]=MBCS_STAGE_2_ALL_UNASSIGNED_INDEX;
|
|
|
|
|
|
|
|
/* begin with the first block after the all-unassigned one */
|
|
|
|
start=newStart=MBCS_STAGE_2_FIRST_ASSIGNED;
|
|
|
|
while(start<mbcsData->stage2Top) {
|
|
|
|
prevEnd=(uint16_t)(newStart-1);
|
|
|
|
|
|
|
|
/* find the size of the overlap */
|
2001-01-16 22:18:53 +00:00
|
|
|
for(i=0; i<MBCS_STAGE_2_BLOCK_SIZE && mbcsData->stage2[start+i]==0 && mbcsData->stage2[prevEnd-i]==0; ++i) {}
|
2000-12-21 21:31:17 +00:00
|
|
|
|
|
|
|
if(i>0) {
|
2001-01-16 22:18:53 +00:00
|
|
|
map[start>>MBCS_STAGE_2_BLOCK_SIZE_SHIFT]=(uint16_t)(newStart-i);
|
2000-12-21 21:31:17 +00:00
|
|
|
|
|
|
|
/* move the non-overlapping indexes to their new positions */
|
|
|
|
start+=i;
|
|
|
|
for(i=(uint16_t)(MBCS_STAGE_2_BLOCK_SIZE-i); i>0; --i) {
|
2001-01-16 22:18:53 +00:00
|
|
|
mbcsData->stage2[newStart++]=mbcsData->stage2[start++];
|
2000-12-21 21:31:17 +00:00
|
|
|
}
|
|
|
|
} else if(newStart<start) {
|
|
|
|
/* move the indexes to their new positions */
|
2001-01-16 22:18:53 +00:00
|
|
|
map[start>>MBCS_STAGE_2_BLOCK_SIZE_SHIFT]=newStart;
|
2000-12-21 21:31:17 +00:00
|
|
|
for(i=MBCS_STAGE_2_BLOCK_SIZE; i>0; --i) {
|
2001-01-16 22:18:53 +00:00
|
|
|
mbcsData->stage2[newStart++]=mbcsData->stage2[start++];
|
2000-12-21 21:31:17 +00:00
|
|
|
}
|
|
|
|
} else /* no overlap && newStart==start */ {
|
2001-01-16 22:18:53 +00:00
|
|
|
map[start>>MBCS_STAGE_2_BLOCK_SIZE_SHIFT]=start;
|
2000-12-21 21:31:17 +00:00
|
|
|
start=newStart+=MBCS_STAGE_2_BLOCK_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* adjust stage2Top */
|
|
|
|
if(VERBOSE && newStart<mbcsData->stage2Top) {
|
|
|
|
printf("compacting stage 2 from stage2Top=0x%lx to 0x%lx, saving %ld bytes\n",
|
2001-03-27 19:01:07 +00:00
|
|
|
(unsigned long)mbcsData->stage2Top, (unsigned long)newStart,
|
|
|
|
(long)(mbcsData->stage2Top-newStart)*4);
|
2000-12-21 21:31:17 +00:00
|
|
|
}
|
|
|
|
mbcsData->stage2Top=newStart;
|
|
|
|
|
|
|
|
/* now adjust stage 1 */
|
|
|
|
for(i=0; i<MBCS_STAGE_1_SIZE; ++i) {
|
2001-01-16 22:18:53 +00:00
|
|
|
mbcsData->stage1[i]=map[mbcsData->stage1[i]>>MBCS_STAGE_2_BLOCK_SIZE_SHIFT];
|
2000-12-21 21:31:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-11-21 01:54:12 +00:00
|
|
|
static void
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSPostprocess(MBCSData *mbcsData, const UConverterStaticData *staticData) {
|
|
|
|
UCMStates *states;
|
|
|
|
int32_t maxCharLength;
|
|
|
|
|
|
|
|
states=&mbcsData->ucm->states;
|
|
|
|
maxCharLength=states->maxCharLength;
|
2000-07-13 00:17:05 +00:00
|
|
|
|
|
|
|
/* this needs to be printed before the EUC transformation because later maxCharLength might not be correct */
|
|
|
|
if(VERBOSE) {
|
|
|
|
printf("number of codepage characters in 16-blocks: 0x%lx=%lu\n",
|
2003-10-25 00:29:13 +00:00
|
|
|
(unsigned long)mbcsData->stage3Top/maxCharLength,
|
|
|
|
(unsigned long)mbcsData->stage3Top/maxCharLength);
|
2001-01-02 22:58:52 +00:00
|
|
|
}
|
|
|
|
|
2003-10-25 00:29:13 +00:00
|
|
|
ucm_optimizeStates(states,
|
|
|
|
&mbcsData->unicodeCodeUnits,
|
|
|
|
mbcsData->toUFallbacks, mbcsData->countToUFallbacks,
|
|
|
|
VERBOSE);
|
2000-07-13 00:17:05 +00:00
|
|
|
|
2001-01-02 22:58:52 +00:00
|
|
|
/* try to compact the fromUnicode tables */
|
|
|
|
transformEUC(mbcsData);
|
2003-10-25 00:29:13 +00:00
|
|
|
if(maxCharLength==1) {
|
2001-01-16 22:18:53 +00:00
|
|
|
singleCompactStage3(mbcsData);
|
|
|
|
singleCompactStage2(mbcsData);
|
|
|
|
} else {
|
|
|
|
compactStage2(mbcsData);
|
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|
|
|
|
|
2000-11-21 01:54:12 +00:00
|
|
|
static uint32_t
|
2003-10-25 00:29:13 +00:00
|
|
|
MBCSWrite(NewConverter *cnvData, const UConverterStaticData *staticData,
|
|
|
|
UNewDataMemory *pData, int32_t tableType) {
|
2000-11-15 00:56:35 +00:00
|
|
|
MBCSData *mbcsData=(MBCSData *)cnvData;
|
2003-10-25 00:29:13 +00:00
|
|
|
uint32_t top;
|
2001-01-16 22:18:53 +00:00
|
|
|
int32_t i, stage1Top;
|
2000-12-21 21:31:17 +00:00
|
|
|
|
2003-12-04 00:48:12 +00:00
|
|
|
_MBCSHeader header={ { 0, 0, 0, 0 }, 0, 0, 0, 0, 0, 0, 0 };
|
2003-10-25 00:29:13 +00:00
|
|
|
|
2001-01-16 22:18:53 +00:00
|
|
|
/* adjust stage 1 entries to include the size of stage 1 in the offsets to stage 2 */
|
2003-10-25 00:29:13 +00:00
|
|
|
if(mbcsData->ucm->states.maxCharLength==1) {
|
2001-01-16 22:18:53 +00:00
|
|
|
if(staticData->unicodeMask&UCNV_HAS_SUPPLEMENTARY) {
|
|
|
|
stage1Top=MBCS_STAGE_1_SIZE; /* 0x440==1088 */
|
|
|
|
} else {
|
|
|
|
stage1Top=0x40; /* 0x40==64 */
|
|
|
|
}
|
|
|
|
for(i=0; i<stage1Top; ++i) {
|
|
|
|
mbcsData->stage1[i]+=(uint16_t)stage1Top;
|
|
|
|
}
|
2000-12-21 21:31:17 +00:00
|
|
|
|
2001-01-16 22:18:53 +00:00
|
|
|
/* stage2Top has counted 16-bit results, now we need to count bytes */
|
|
|
|
mbcsData->stage2Top*=2;
|
2000-12-21 21:31:17 +00:00
|
|
|
|
2001-01-16 22:18:53 +00:00
|
|
|
/* stage3Top has counted 16-bit results, now we need to count bytes */
|
|
|
|
mbcsData->stage3Top*=2;
|
|
|
|
} else {
|
|
|
|
if(staticData->unicodeMask&UCNV_HAS_SUPPLEMENTARY) {
|
|
|
|
stage1Top=MBCS_STAGE_1_SIZE; /* 0x440==1088 */
|
|
|
|
} else {
|
|
|
|
stage1Top=0x40; /* 0x40==64 */
|
2000-12-21 21:31:17 +00:00
|
|
|
}
|
2001-01-16 22:18:53 +00:00
|
|
|
for(i=0; i<stage1Top; ++i) {
|
|
|
|
mbcsData->stage1[i]+=(uint16_t)stage1Top/2; /* stage 2 contains 32-bit entries, stage 1 16-bit entries */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stage2Top has counted 32-bit results, now we need to count bytes */
|
|
|
|
mbcsData->stage2Top*=4;
|
|
|
|
|
|
|
|
/* stage3Top has already counted bytes */
|
2000-12-21 21:31:17 +00:00
|
|
|
}
|
|
|
|
|
2001-01-16 22:18:53 +00:00
|
|
|
/* round up stage2Top and stage3Top so that the sizes of all data blocks are multiples of 4 */
|
|
|
|
mbcsData->stage2Top=(mbcsData->stage2Top+3)&~3;
|
|
|
|
mbcsData->stage3Top=(mbcsData->stage3Top+3)&~3;
|
|
|
|
|
2000-07-13 00:17:05 +00:00
|
|
|
/* fill the header */
|
2003-10-25 00:29:13 +00:00
|
|
|
header.version[0]=4;
|
|
|
|
header.version[1]=2;
|
|
|
|
header.countStates=mbcsData->ucm->states.countStates;
|
|
|
|
header.countToUFallbacks=mbcsData->countToUFallbacks;
|
|
|
|
|
|
|
|
header.offsetToUCodeUnits=
|
2000-07-13 00:17:05 +00:00
|
|
|
sizeof(_MBCSHeader)+
|
2003-10-25 00:29:13 +00:00
|
|
|
mbcsData->ucm->states.countStates*1024+
|
|
|
|
mbcsData->countToUFallbacks*sizeof(_MBCSToUFallback);
|
|
|
|
header.offsetFromUTable=
|
|
|
|
header.offsetToUCodeUnits+
|
|
|
|
mbcsData->ucm->states.countToUCodeUnits*2;
|
|
|
|
header.offsetFromUBytes=
|
|
|
|
header.offsetFromUTable+
|
2001-01-16 22:18:53 +00:00
|
|
|
stage1Top*2+
|
|
|
|
mbcsData->stage2Top;
|
2003-10-25 00:29:13 +00:00
|
|
|
header.fromUBytesLength=mbcsData->stage3Top;
|
|
|
|
|
|
|
|
top=header.offsetFromUBytes+header.fromUBytesLength;
|
|
|
|
|
|
|
|
header.flags=(uint8_t)(mbcsData->ucm->states.outputType);
|
|
|
|
|
|
|
|
if(tableType&TABLE_EXT) {
|
|
|
|
if(top>0xffffff) {
|
2003-12-04 22:46:02 +00:00
|
|
|
fprintf(stderr, "error: offset 0x%lx to extension table exceeds 0xffffff\n", (long)top);
|
2003-10-25 00:29:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
header.flags|=top<<8;
|
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
|
|
|
|
/* write the MBCS data */
|
2003-10-25 00:29:13 +00:00
|
|
|
udata_writeBlock(pData, &header, sizeof(_MBCSHeader));
|
|
|
|
udata_writeBlock(pData, mbcsData->ucm->states.stateTable, header.countStates*1024);
|
|
|
|
udata_writeBlock(pData, mbcsData->toUFallbacks, mbcsData->countToUFallbacks*sizeof(_MBCSToUFallback));
|
|
|
|
udata_writeBlock(pData, mbcsData->unicodeCodeUnits, mbcsData->ucm->states.countToUCodeUnits*2);
|
2001-01-16 22:18:53 +00:00
|
|
|
udata_writeBlock(pData, mbcsData->stage1, stage1Top*2);
|
2003-10-25 00:29:13 +00:00
|
|
|
if(mbcsData->ucm->states.maxCharLength==1) {
|
2001-01-16 22:18:53 +00:00
|
|
|
udata_writeBlock(pData, mbcsData->stage2Single, mbcsData->stage2Top);
|
|
|
|
} else {
|
|
|
|
udata_writeBlock(pData, mbcsData->stage2, mbcsData->stage2Top);
|
|
|
|
}
|
2000-07-13 00:17:05 +00:00
|
|
|
udata_writeBlock(pData, mbcsData->fromUBytes, mbcsData->stage3Top);
|
|
|
|
|
|
|
|
/* return the number of bytes that should have been written */
|
2003-10-25 00:29:13 +00:00
|
|
|
return header.offsetFromUBytes+header.fromUBytesLength;
|
2000-07-13 00:17:05 +00:00
|
|
|
}
|