1999-08-16 21:50:52 +00:00
|
|
|
/*
|
1999-12-04 02:31:40 +00:00
|
|
|
********************************************************************
|
|
|
|
* COPYRIGHT:
|
|
|
|
* Copyright (c) 1996-1999, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*
|
|
|
|
* uconv_bld.c:
|
|
|
|
*
|
|
|
|
* Defines functions that are used in the creation/initialization/deletion
|
|
|
|
* of converters and related structures.
|
|
|
|
* uses uconv_io.h routines to access disk information
|
|
|
|
* is used by ucnv.h to implement public API create/delete/flushCache routines
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "ucnv_io.h"
|
|
|
|
#include "uhash.h"
|
|
|
|
#include "ucmp16.h"
|
|
|
|
#include "ucmp8.h"
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/ucnv_bld.h"
|
|
|
|
#include "unicode/ucnv_err.h"
|
2000-02-05 00:19:15 +00:00
|
|
|
#include "ucnv_cnv.h"
|
1999-10-18 22:48:32 +00:00
|
|
|
#include "ucnv_imp.h"
|
1999-12-28 23:39:02 +00:00
|
|
|
#include "unicode/udata.h"
|
|
|
|
#include "unicode/ucnv.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "umutex.h"
|
|
|
|
#include "cstring.h"
|
|
|
|
#include "cmemory.h"
|
|
|
|
#include "filestrm.h"
|
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
static const UConverterSharedData *
|
|
|
|
converterData[UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES]={
|
|
|
|
&_SBCSData, &_DBCSData, &_MBCSData, &_Latin1Data,
|
|
|
|
&_UTF8Data, &_UTF16BEData, &_UTF16LEData, &_EBCDICStatefulData,
|
2000-03-31 16:53:09 +00:00
|
|
|
&_ISO2022Data,
|
|
|
|
&_LMBCSData1,&_LMBCSData2, &_LMBCSData3, &_LMBCSData4, &_LMBCSData5, &_LMBCSData6,
|
|
|
|
&_LMBCSData8,&_LMBCSData11,&_LMBCSData16,&_LMBCSData17,&_LMBCSData18,&_LMBCSData19
|
2000-02-05 00:19:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
const char *name;
|
|
|
|
UConverterType type;
|
|
|
|
} cnvNameType[] = {
|
|
|
|
{ "LATIN_1", UCNV_LATIN_1 },
|
|
|
|
{ "UTF8", UCNV_UTF8 },
|
|
|
|
{ "UTF16_BigEndian", UCNV_UTF16_BigEndian },
|
|
|
|
{ "UTF16_LittleEndian", UCNV_UTF16_LittleEndian },
|
|
|
|
#if U_IS_BIG_ENDIAN
|
|
|
|
{ "UTF16_PlatformEndian", UCNV_UTF16_BigEndian },
|
|
|
|
{ "UTF16_OppositeEndian", UCNV_UTF16_LittleEndian },
|
|
|
|
#else
|
|
|
|
{ "UTF16_PlatformEndian", UCNV_UTF16_LittleEndian },
|
|
|
|
{ "UTF16_OppositeEndian", UCNV_UTF16_BigEndian},
|
|
|
|
#endif
|
2000-03-31 16:53:09 +00:00
|
|
|
{ "ISO_2022", UCNV_ISO_2022 },
|
|
|
|
{ "LMBCS-1", UCNV_LMBCS_1 },
|
|
|
|
{ "LMBCS-2", UCNV_LMBCS_2 },
|
|
|
|
{ "LMBCS-3", UCNV_LMBCS_3 },
|
|
|
|
{ "LMBCS-4", UCNV_LMBCS_4 },
|
|
|
|
{ "LMBCS-5", UCNV_LMBCS_5 },
|
|
|
|
{ "LMBCS-6", UCNV_LMBCS_6 },
|
|
|
|
{ "LMBCS-8", UCNV_LMBCS_8 },
|
|
|
|
{ "LMBCS-11",UCNV_LMBCS_11 },
|
|
|
|
{ "LMBCS-16",UCNV_LMBCS_16 },
|
|
|
|
{ "LMBCS-17",UCNV_LMBCS_17 },
|
|
|
|
{ "LMBCS-18",UCNV_LMBCS_18 },
|
|
|
|
{ "LMBCS-19",UCNV_LMBCS_19 }
|
1999-10-18 22:48:32 +00:00
|
|
|
};
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-03-31 16:53:09 +00:00
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
/*Takes an alias name gets an actual converter file name
|
1999-08-16 21:50:52 +00:00
|
|
|
*goes to disk and opens it.
|
|
|
|
*allocates the memory and returns a new UConverter object
|
|
|
|
*/
|
2000-02-09 19:15:17 +00:00
|
|
|
static UConverterSharedData *createConverterFromFile (const char *converterName, UErrorCode * err);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
static const UConverterSharedData *getAlgorithmicTypeFromName (const char *realName);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
/*Defines the struct of a UConverterSharedData the immutable, shared part of
|
|
|
|
*UConverter -
|
|
|
|
* This is the definition from ICU 1.4, necessary to read converter data
|
|
|
|
* version 1 because the structure is directly embedded in the data.
|
|
|
|
* See udata.html for why this is bad (pointers, enums, padding...).
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t structSize; /* Size of this structure */
|
|
|
|
void *dataMemory;
|
|
|
|
uint32_t referenceCounter; /*used to count number of clients */
|
|
|
|
char name[UCNV_MAX_CONVERTER_NAME_LENGTH]; /*internal name of the converter */
|
|
|
|
UConverterPlatform platform; /*platform of the converter (only IBM now) */
|
|
|
|
int32_t codepage; /*codepage # (now IBM-$codepage) */
|
|
|
|
UConverterType conversionType; /*conversion type */
|
|
|
|
int8_t minBytesPerChar; /*Minimum # bytes per char in this codepage */
|
|
|
|
int8_t maxBytesPerChar; /*Maximum # bytes per char in this codepage */
|
|
|
|
struct
|
|
|
|
{ /*initial values of some members of the mutable part of object */
|
|
|
|
uint32_t toUnicodeStatus;
|
|
|
|
int8_t subCharLen;
|
|
|
|
unsigned char subChar[UCNV_MAX_SUBCHAR_LEN];
|
|
|
|
}
|
|
|
|
defaultConverterValues;
|
|
|
|
UConverterTable *table; /*Pointer to conversion data */
|
|
|
|
}
|
|
|
|
UConverterSharedData_1_4;
|
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
/**
|
|
|
|
* Un flatten shared data from a UDATA..
|
|
|
|
*/
|
2000-02-08 23:41:16 +00:00
|
|
|
U_CAPI UConverterSharedData* U_EXPORT2 ucnv_data_unFlattenClone(UDataMemory *pData, UErrorCode *status);
|
1999-12-04 02:31:40 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/*initializes some global variables */
|
|
|
|
UHashtable *SHARED_DATA_HASHTABLE = NULL;
|
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
static bool_t
|
|
|
|
isCnvAcceptable(void *context,
|
|
|
|
const char *type, const char *name,
|
|
|
|
UDataInfo *pInfo) {
|
|
|
|
return
|
|
|
|
pInfo->size>=20 &&
|
|
|
|
pInfo->isBigEndian==U_IS_BIG_ENDIAN &&
|
|
|
|
pInfo->charsetFamily==U_CHARSET_FAMILY &&
|
|
|
|
pInfo->sizeofUChar==U_SIZEOF_UCHAR &&
|
|
|
|
pInfo->dataFormat[0]==0x63 && /* dataFormat="cnvt" */
|
|
|
|
pInfo->dataFormat[1]==0x6e &&
|
|
|
|
pInfo->dataFormat[2]==0x76 &&
|
|
|
|
pInfo->dataFormat[3]==0x74 &&
|
1999-12-15 05:14:03 +00:00
|
|
|
pInfo->formatVersion[0]==2;
|
1999-12-04 02:31:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define DATA_TYPE "cnv"
|
|
|
|
|
2000-02-09 19:15:17 +00:00
|
|
|
UConverterSharedData *createConverterFromFile (const char *fileName, UErrorCode * err)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
1999-12-04 02:31:40 +00:00
|
|
|
UDataMemory *data;
|
2000-02-09 19:15:17 +00:00
|
|
|
UConverterSharedData *sharedData;
|
1999-11-23 23:02:55 +00:00
|
|
|
|
|
|
|
if (err == NULL || U_FAILURE (*err)) {
|
1999-08-16 21:50:52 +00:00
|
|
|
return NULL;
|
1999-11-23 23:02:55 +00:00
|
|
|
}
|
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
data = udata_openChoice(NULL, DATA_TYPE, fileName, isCnvAcceptable, NULL, err);
|
|
|
|
if(U_FAILURE(*err))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-02-09 19:15:17 +00:00
|
|
|
sharedData = ucnv_data_unFlattenClone(data, err);
|
1999-12-04 02:31:40 +00:00
|
|
|
if(U_FAILURE(*err))
|
|
|
|
{
|
|
|
|
udata_close(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-02-09 19:15:17 +00:00
|
|
|
return sharedData;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-10-18 22:48:32 +00:00
|
|
|
copyPlatformString (char *platformString, UConverterPlatform pltfrm)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
switch (pltfrm)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
case UCNV_IBM:
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
1999-12-28 23:39:02 +00:00
|
|
|
uprv_strcpy (platformString, "ibm");
|
1999-12-04 00:55:54 +00:00
|
|
|
break;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
1999-12-28 23:39:02 +00:00
|
|
|
uprv_strcpy (platformString, "");
|
1999-12-04 00:55:54 +00:00
|
|
|
break;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*returns a converter type from a string
|
|
|
|
*/
|
2000-02-05 00:19:15 +00:00
|
|
|
const UConverterSharedData *
|
1999-08-16 21:50:52 +00:00
|
|
|
getAlgorithmicTypeFromName (const char *realName)
|
|
|
|
{
|
2000-02-05 00:19:15 +00:00
|
|
|
int i;
|
|
|
|
for(i=0; i<sizeof(cnvNameType)/sizeof(cnvNameType[0]); ++i) {
|
|
|
|
if(uprv_strcmp(realName, cnvNameType[i].name)==0) {
|
|
|
|
return converterData[cnvNameType[i].type];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Puts the shared data in the static hashtable SHARED_DATA_HASHTABLE */
|
|
|
|
void shareConverterData (UConverterSharedData * data)
|
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
UErrorCode err = U_ZERO_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
/*Lazy evaluates the Hashtable itself */
|
|
|
|
|
|
|
|
if (SHARED_DATA_HASHTABLE == NULL)
|
|
|
|
{
|
2000-03-28 22:04:39 +00:00
|
|
|
UHashtable* myHT = uhash_openSize (uhash_hashIChars, uhash_compareIChars,
|
1999-12-04 00:55:54 +00:00
|
|
|
ucnv_io_countAvailableAliases(&err),
|
|
|
|
&err);
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE (err)) return;
|
1999-08-16 21:50:52 +00:00
|
|
|
umtx_lock (NULL);
|
1999-09-30 23:47:52 +00:00
|
|
|
if (SHARED_DATA_HASHTABLE == NULL) SHARED_DATA_HASHTABLE = myHT;
|
|
|
|
else uhash_close(myHT);
|
1999-08-16 21:50:52 +00:00
|
|
|
umtx_unlock (NULL);
|
1999-09-30 23:47:52 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
umtx_lock (NULL);
|
2000-02-05 00:19:15 +00:00
|
|
|
/* ### check to see if the element is not already there! */
|
1999-08-16 21:50:52 +00:00
|
|
|
uhash_put(SHARED_DATA_HASHTABLE,
|
2000-03-28 22:04:39 +00:00
|
|
|
(void*) data->name, /* Okay to cast away const as long as
|
|
|
|
keyDeleter == NULL */
|
1999-12-04 00:55:54 +00:00
|
|
|
data,
|
|
|
|
&err);
|
1999-08-16 21:50:52 +00:00
|
|
|
umtx_unlock (NULL);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
UConverterSharedData *getSharedConverterData (const char *name)
|
|
|
|
{
|
|
|
|
/*special case when no Table has yet been created we return NULL */
|
|
|
|
if (SHARED_DATA_HASHTABLE == NULL) return NULL;
|
|
|
|
else
|
|
|
|
{
|
2000-03-28 22:04:39 +00:00
|
|
|
return (UConverterSharedData*)uhash_get (SHARED_DATA_HASHTABLE, name);
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*frees the string of memory blocks associates with a sharedConverter
|
|
|
|
*if and only if the referenceCounter == 0
|
|
|
|
*/
|
|
|
|
bool_t deleteSharedConverterData (UConverterSharedData * deadSharedData)
|
|
|
|
{
|
1999-12-04 02:31:40 +00:00
|
|
|
if (deadSharedData->referenceCounter > 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Note: if we have a dataMemory, then that means that all ucmp's came
|
|
|
|
from udata, and their tables will go away at the end
|
|
|
|
of this function. So, we need to simply dealloc the UCMP8's themselves.
|
|
|
|
We're guaranteed that they do not allocate any further memory.
|
|
|
|
|
|
|
|
When we have an API to simply 'init' a ucmp8, then no action at all will
|
|
|
|
need to happen. --srl
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
This means that the compact arrays would have to be static fields in
|
|
|
|
UConverterSharedData, not pointers to allocated structures.
|
|
|
|
Markus
|
|
|
|
*/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
if (deadSharedData->impl->unload != NULL) {
|
|
|
|
deadSharedData->impl->unload(deadSharedData);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
if(deadSharedData->dataMemory != NULL)
|
|
|
|
{
|
|
|
|
UDataMemory *data = (UDataMemory*)deadSharedData->dataMemory;
|
|
|
|
udata_close(data);
|
|
|
|
}
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
uprv_free (deadSharedData);
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
return TRUE;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*Logic determines if the converter is Algorithmic AND/OR cached
|
|
|
|
*depending on that:
|
|
|
|
* -we either go to get data from disk and cache it (Data=TRUE, Cached=False)
|
|
|
|
* -Get it from a Hashtable (Data=X, Cached=TRUE)
|
|
|
|
* -Call dataConverter initializer (Data=TRUE, Cached=TRUE)
|
|
|
|
* -Call AlgorithmicConverter initializer (Data=FALSE, Cached=TRUE)
|
|
|
|
*/
|
|
|
|
UConverter *
|
|
|
|
createConverter (const char *converterName, UErrorCode * err)
|
|
|
|
{
|
1999-11-23 23:02:55 +00:00
|
|
|
const char *realName;
|
1999-08-16 21:50:52 +00:00
|
|
|
UConverter *myUConverter = NULL;
|
|
|
|
UConverterSharedData *mySharedConverterData = NULL;
|
1999-11-30 23:17:48 +00:00
|
|
|
UErrorCode internalErrorCode = U_ZERO_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE (*err))
|
1999-08-16 21:50:52 +00:00
|
|
|
return NULL;
|
|
|
|
|
1999-12-04 00:55:54 +00:00
|
|
|
/* In case "name" is NULL we want to open the default converter. */
|
|
|
|
if (converterName == NULL) {
|
2000-02-14 20:07:44 +00:00
|
|
|
realName = ucnv_io_getDefaultConverterName();
|
|
|
|
if (realName == NULL) {
|
1999-12-04 00:55:54 +00:00
|
|
|
*err = U_MISSING_RESOURCE_ERROR;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* the default converter name is already canonical */
|
|
|
|
} else {
|
|
|
|
/* get the canonical converter name */
|
|
|
|
realName = ucnv_io_getConverterName(converterName, &internalErrorCode);
|
|
|
|
if (U_FAILURE(internalErrorCode) || realName == NULL) {
|
|
|
|
/*
|
|
|
|
* set the input name in case the converter was added
|
|
|
|
* without updating the alias table, or when there is no alias table
|
|
|
|
*/
|
|
|
|
realName = converterName;
|
|
|
|
}
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-02-09 19:15:17 +00:00
|
|
|
/* get the shared data for an algorithmic converter, if it is one */
|
2000-02-05 00:19:15 +00:00
|
|
|
mySharedConverterData = (UConverterSharedData *)getAlgorithmicTypeFromName (realName);
|
|
|
|
if (mySharedConverterData == NULL)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2000-02-09 19:15:17 +00:00
|
|
|
/* it is a data-based converter, get its shared data */
|
1999-08-16 21:50:52 +00:00
|
|
|
mySharedConverterData = getSharedConverterData (realName);
|
|
|
|
if (mySharedConverterData == NULL)
|
1999-12-04 00:55:54 +00:00
|
|
|
{
|
|
|
|
/*Not cached, we need to stream it in from file */
|
2000-02-09 19:15:17 +00:00
|
|
|
mySharedConverterData = createConverterFromFile (realName, err);
|
|
|
|
if (U_FAILURE (*err) || (mySharedConverterData == NULL))
|
1999-12-04 00:55:54 +00:00
|
|
|
{
|
2000-02-09 19:15:17 +00:00
|
|
|
return NULL;
|
1999-12-04 00:55:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-02-09 19:15:17 +00:00
|
|
|
/* share it with other library clients */
|
|
|
|
shareConverterData (mySharedConverterData);
|
1999-12-04 00:55:54 +00:00
|
|
|
}
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
else
|
1999-12-04 00:55:54 +00:00
|
|
|
{
|
2000-02-05 00:19:15 +00:00
|
|
|
/* ### this is unsafe: the shared data could have been deleted since sharing or getting it - these operations should increase the counter! */
|
2000-02-09 19:15:17 +00:00
|
|
|
/* update the reference counter: one more client */
|
1999-12-04 00:55:54 +00:00
|
|
|
umtx_lock (NULL);
|
|
|
|
mySharedConverterData->referenceCounter++;
|
|
|
|
umtx_unlock (NULL);
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2000-02-09 19:15:17 +00:00
|
|
|
/* allocate the converter */
|
|
|
|
myUConverter = (UConverter *) uprv_malloc (sizeof (UConverter));
|
|
|
|
if (myUConverter == NULL)
|
|
|
|
{
|
|
|
|
if (mySharedConverterData->referenceCounter != ~0) {
|
|
|
|
umtx_lock (NULL);
|
|
|
|
--mySharedConverterData->referenceCounter;
|
|
|
|
umtx_unlock (NULL);
|
|
|
|
}
|
|
|
|
*err = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2000-02-09 19:15:17 +00:00
|
|
|
/* initialize the converter */
|
|
|
|
uprv_memset(myUConverter, 0, sizeof(UConverter));
|
|
|
|
myUConverter->sharedData = mySharedConverterData;
|
1999-08-16 21:50:52 +00:00
|
|
|
myUConverter->mode = UCNV_SI;
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverter->fromCharErrorBehaviour = (UConverterToUCallback) UCNV_TO_U_CALLBACK_SUBSTITUTE;
|
|
|
|
myUConverter->fromUCharErrorBehaviour = (UConverterFromUCallback) UCNV_FROM_U_CALLBACK_SUBSTITUTE;
|
2000-02-09 19:15:17 +00:00
|
|
|
myUConverter->toUnicodeStatus = myUConverter->sharedData->defaultConverterValues.toUnicodeStatus;
|
|
|
|
myUConverter->subCharLen = myUConverter->sharedData->defaultConverterValues.subCharLen;
|
|
|
|
uprv_memcpy (myUConverter->subChar, myUConverter->sharedData->defaultConverterValues.subChar, myUConverter->subCharLen);
|
2000-02-08 23:41:16 +00:00
|
|
|
|
2000-02-09 19:15:17 +00:00
|
|
|
if(myUConverter != NULL && myUConverter->sharedData->impl->open != NULL) {
|
|
|
|
myUConverter->sharedData->impl->open(myUConverter, realName, NULL, err);
|
|
|
|
if(U_FAILURE(*err)) {
|
|
|
|
ucnv_close(myUConverter);
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-02-08 23:41:16 +00:00
|
|
|
}
|
2000-02-09 19:15:17 +00:00
|
|
|
|
|
|
|
return myUConverter;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
UConverterSharedData* ucnv_data_unFlattenClone(UDataMemory *pData, UErrorCode *status)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2000-02-08 23:41:16 +00:00
|
|
|
const uint8_t *raw = (const uint8_t *)udata_getMemory(pData);
|
2000-02-09 19:15:17 +00:00
|
|
|
/* version 1.0 of .cnv files directly contains a UConverterSharedData_1_4 structure */
|
2000-02-08 23:41:16 +00:00
|
|
|
const UConverterSharedData_1_4 *source = (const UConverterSharedData_1_4 *) raw;
|
|
|
|
UConverterSharedData *data;
|
2000-02-05 00:19:15 +00:00
|
|
|
UConverterType type = source->conversionType;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
if(U_FAILURE(*status))
|
|
|
|
return NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
if( (uint16_t)type >= UCNV_NUMBER_OF_SUPPORTED_CONVERTER_TYPES ||
|
|
|
|
converterData[type]->referenceCounter != 1 ||
|
|
|
|
source->structSize != sizeof(UConverterSharedData_1_4))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
2000-02-05 00:19:15 +00:00
|
|
|
*status = U_INVALID_TABLE_FORMAT;
|
|
|
|
return NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
data = (UConverterSharedData *)uprv_malloc(sizeof(UConverterSharedData));
|
|
|
|
if(data == NULL) {
|
|
|
|
*status = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
1999-12-04 02:31:40 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
/* copy initial values from the static structure for this type */
|
|
|
|
uprv_memcpy(data, converterData[type], sizeof(UConverterSharedData));
|
1999-12-04 02:31:40 +00:00
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
/* ### it would be much more efficient if the table were a direct member, not a pointer */
|
|
|
|
data->table = (UConverterTable *)uprv_malloc(sizeof(UConverterTable));
|
|
|
|
if(data->table == NULL) {
|
|
|
|
uprv_free(data);
|
|
|
|
*status = U_MEMORY_ALLOCATION_ERROR;
|
1999-12-04 02:31:40 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-02-05 00:19:15 +00:00
|
|
|
/* fill in fields from the loaded data */
|
2000-02-08 23:41:16 +00:00
|
|
|
data->dataMemory = (void*)pData; /* for future use */
|
2000-02-05 00:19:15 +00:00
|
|
|
data->name = source->name; /* ### this could/should come from the caller - should be the same as the canonical name?!! */
|
|
|
|
data->codepage = source->codepage;
|
|
|
|
data->platform = source->platform;
|
|
|
|
data->minBytesPerChar = source->minBytesPerChar;
|
|
|
|
data->maxBytesPerChar = source->maxBytesPerChar;
|
2000-02-09 19:15:17 +00:00
|
|
|
|
|
|
|
/* version 1.0 of .cnv files does not store valid toUnicodeStatus - do not copy the whole defaultConverterValues */
|
|
|
|
data->defaultConverterValues.subCharLen = source->defaultConverterValues.subCharLen;
|
|
|
|
uprv_memcpy(&data->defaultConverterValues.subChar,
|
|
|
|
&source->defaultConverterValues.subChar,
|
|
|
|
data->defaultConverterValues.subCharLen);
|
1999-12-04 02:31:40 +00:00
|
|
|
|
2000-02-08 23:41:16 +00:00
|
|
|
if(data->impl->load != NULL) {
|
|
|
|
data->impl->load(data, raw + source->structSize, status);
|
|
|
|
if(U_FAILURE(*status)) {
|
|
|
|
uprv_free(data);
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-12-04 02:31:40 +00:00
|
|
|
}
|
2000-02-08 23:41:16 +00:00
|
|
|
return data;
|
1999-12-04 02:31:40 +00:00
|
|
|
}
|