1999-08-16 21:50:52 +00:00
|
|
|
/*
|
|
|
|
********************************************************************************
|
1999-12-13 22:28:37 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 1998-1999, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
1999-08-16 21:50:52 +00:00
|
|
|
********************************************************************************
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* makeconv.c:
|
|
|
|
* tool creating a binary (compressed) representation of the conversion mapping
|
|
|
|
* table (IBM NLTC ucmap format).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "ucmp16.h"
|
|
|
|
#include "ucmp8.h"
|
|
|
|
#include "ucnv_io.h"
|
|
|
|
#include "ucnv_bld.h"
|
|
|
|
#include "ucnv_err.h"
|
1999-10-18 22:48:32 +00:00
|
|
|
#include "ucnv_imp.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "cstring.h"
|
|
|
|
#include "cmemory.h"
|
|
|
|
#include "filestrm.h"
|
1999-12-14 01:30:27 +00:00
|
|
|
#include "toolutil.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
#include "udata.h"
|
|
|
|
#include "unewdata.h"
|
|
|
|
#include "ucmpwrit.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/*Reads the header of the table file and fills in basic knowledge about the converter
|
|
|
|
*in "converter"
|
|
|
|
*/
|
|
|
|
static void readHeaderFromFile(UConverter* myConverter, FileStream* convFile, UErrorCode* err);
|
|
|
|
|
|
|
|
/*Reads the rest of the file, and fills up the shared objects if necessary*/
|
|
|
|
static void loadMBCSTableFromFile(FileStream* convFile, UConverter* converter, UErrorCode* err);
|
|
|
|
|
|
|
|
/*Reads the rest of the file, and fills up the shared objects if necessary*/
|
|
|
|
static void loadEBCDIC_STATEFULTableFromFile(FileStream* convFile, UConverter* converter, UErrorCode* err);
|
|
|
|
|
|
|
|
/*Reads the rest of the file, and fills up the shared objects if necessary*/
|
|
|
|
static void loadSBCSTableFromFile(FileStream* convFile, UConverter* converter, UErrorCode* err);
|
|
|
|
|
|
|
|
/*Reads the rest of the file, and fills up the shared objects if necessary*/
|
|
|
|
static void loadDBCSTableFromFile(FileStream* convFile, UConverter* converter, UErrorCode* err);
|
|
|
|
|
|
|
|
/* creates a UConverterSharedData from a mapping file, fills in necessary links to it the
|
|
|
|
* appropriate function pointers
|
|
|
|
* if the data tables are already in memory
|
|
|
|
*/
|
|
|
|
static UConverterSharedData* createConverterFromTableFile(const char* realName, UErrorCode* err);
|
|
|
|
|
|
|
|
|
|
|
|
/*writes a CompactShortArray to a file*/
|
|
|
|
static void writeCompactShortArrayToFile(FileStream* outfile, const CompactShortArray* myArray);
|
|
|
|
|
|
|
|
/*writes a CompactByteArray to a file*/
|
|
|
|
static void writeCompactByteArrayToFile(FileStream* outfile, const CompactByteArray* myArray);
|
|
|
|
|
|
|
|
/*writes a binary to a file*/
|
|
|
|
static void writeUConverterSharedDataToFile(const char* filename,
|
|
|
|
UConverterSharedData* mySharedData,
|
|
|
|
UErrorCode* err);
|
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
static void WriteConverterSharedData(UNewDataMemory *pData, const UConverterSharedData* data);
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
static UConverterPlatform getPlatformFromName(char* name);
|
1999-08-16 21:50:52 +00:00
|
|
|
static int32_t getCodepageNumberFromName(char* name);
|
|
|
|
|
|
|
|
|
|
|
|
static const char NLTC_SEPARATORS[9] = { '\r', '\n', '\t', ' ', '<', '>' ,'"' , 'U', '\0' };
|
|
|
|
static const char PLAIN_SEPARATORS[9] = { '\r', '\n', '\t', ' ', '<', '>' ,'"' , '\0' };
|
|
|
|
static const char CODEPOINT_SEPARATORS[8] = { '\r', '>', '\\', 'x', '\n', ' ', '\t', '\0' };
|
|
|
|
static const char UNICODE_CODEPOINT_SEPARATORS[6] = { '<', '>', 'U', ' ', '\t', '\0' };
|
|
|
|
|
1999-11-23 23:04:40 +00:00
|
|
|
/* Remove all characters followed by '#'
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
removeComments (char *line)
|
|
|
|
{
|
|
|
|
char *pound = icu_strchr (line, '#');
|
|
|
|
|
|
|
|
if (pound != NULL)
|
|
|
|
*pound = '\0';
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Returns uppercased string */
|
|
|
|
char *
|
|
|
|
strtoupper (char *name)
|
|
|
|
{
|
|
|
|
int32_t i = 0;
|
|
|
|
|
|
|
|
while (name[i] = icu_toupper (name[i]))
|
|
|
|
i++;
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns true in c is a in set 'setOfChars', false otherwise
|
|
|
|
*/
|
|
|
|
bool_t
|
|
|
|
isInSet (char c, const char *setOfChars)
|
|
|
|
{
|
|
|
|
uint8_t i = 0;
|
|
|
|
|
|
|
|
while (setOfChars[i] != '\0')
|
|
|
|
{
|
|
|
|
if (c == setOfChars[i++])
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns pointer to the next non-whitespace (or non-separator)
|
|
|
|
*/
|
|
|
|
int32_t
|
|
|
|
nextTokenOffset (const char *line, const char *separators)
|
|
|
|
{
|
|
|
|
int32_t i = 0;
|
|
|
|
|
|
|
|
while (line[i] && isInSet (line[i], separators))
|
|
|
|
i++;
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns pointer to the next token based on the set of separators
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
getToken (char *token, char *line, const char *separators)
|
|
|
|
{
|
|
|
|
int32_t i = nextTokenOffset (line, separators);
|
|
|
|
int8_t j = 0;
|
|
|
|
|
|
|
|
while (line[i] && (!isInSet (line[i], separators)))
|
|
|
|
token[j++] = line[i++];
|
|
|
|
token[j] = '\0';
|
|
|
|
|
|
|
|
return line + i;
|
|
|
|
}
|
1999-08-16 21:50:52 +00:00
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
static const UDataInfo dataInfo={
|
|
|
|
sizeof(UDataInfo),
|
|
|
|
0,
|
|
|
|
|
|
|
|
U_IS_BIG_ENDIAN,
|
|
|
|
U_CHARSET_FAMILY,
|
|
|
|
sizeof(UChar),
|
|
|
|
0,
|
|
|
|
|
|
|
|
0x63, 0x6e, 0x76, 0x74, /* dataFormat="cnvt" */
|
|
|
|
1, 0, 0, 0, /* formatVersion */
|
|
|
|
1, 3, 1, 0 /* dataVersion */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void writeConverterData(UConverterSharedData *mySharedData, const char *cName, UErrorCode *status)
|
|
|
|
{
|
|
|
|
UNewDataMemory *mem;
|
1999-12-06 06:27:59 +00:00
|
|
|
const char *cnvName, *cnvName2;
|
1999-12-04 02:31:40 +00:00
|
|
|
|
1999-12-05 15:43:04 +00:00
|
|
|
uint32_t sz2;
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
cnvName = icu_strrchr(cName, '/');
|
1999-12-06 06:27:59 +00:00
|
|
|
cnvName2 = icu_strrchr(cName, '\\'); /* aliu - this is for Windows - what we
|
|
|
|
really need is a platform-independent
|
|
|
|
call to get the path separator */
|
|
|
|
if (cnvName2 > cnvName) {
|
|
|
|
cnvName = cnvName2; /* assume unix names don't contain '\\'! */
|
|
|
|
}
|
1999-12-04 02:31:40 +00:00
|
|
|
if(cnvName)
|
|
|
|
{
|
|
|
|
cnvName++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cnvName = cName;
|
|
|
|
|
|
|
|
|
1999-12-07 23:30:58 +00:00
|
|
|
mem = udata_create("cnv", cnvName, &dataInfo, U_COPYRIGHT_STRING, status);
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
WriteConverterSharedData(mem, mySharedData);
|
|
|
|
|
|
|
|
sz2 = udata_finish(mem, status);
|
|
|
|
|
|
|
|
/* printf("Done. Wrote %d bytes.\n", sz2); */
|
|
|
|
}
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
UConverterSharedData* mySharedData = NULL;
|
1999-10-07 00:07:53 +00:00
|
|
|
UErrorCode err = U_ZERO_ERROR;
|
1999-10-18 22:48:32 +00:00
|
|
|
char outFileName[UCNV_MAX_FULL_FILE_NAME_LENGTH];
|
1999-12-14 01:30:27 +00:00
|
|
|
char* dot = NULL, *arg;
|
1999-12-04 02:31:40 +00:00
|
|
|
char cnvName[UCNV_MAX_FULL_FILE_NAME_LENGTH];
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
if (argc == 1)
|
|
|
|
{
|
|
|
|
/*prints out a usage message*/
|
|
|
|
printf("usage: %s file1 file2 file3 ...\n", argv[0]);
|
|
|
|
}
|
|
|
|
while (--argc)
|
|
|
|
{
|
1999-12-14 01:30:27 +00:00
|
|
|
arg = getLongPathname(argv[argc]);
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/*removes the extension if any is found*/
|
1999-12-14 01:30:27 +00:00
|
|
|
icu_strcpy(outFileName, arg);
|
1999-08-16 21:50:52 +00:00
|
|
|
if (dot = icu_strchr(outFileName + icu_strlen(outFileName) - 4, '.'))
|
|
|
|
{
|
|
|
|
*dot = '\0';
|
|
|
|
}
|
|
|
|
/*Adds the target extension*/
|
1999-12-04 02:31:40 +00:00
|
|
|
icu_strcpy(cnvName, outFileName);
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
icu_strcat(outFileName, CONVERTER_FILE_EXTENSION);
|
|
|
|
|
1999-12-14 01:30:27 +00:00
|
|
|
mySharedData = createConverterFromTableFile(arg, &err);
|
1999-12-04 02:31:40 +00:00
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(err) || (mySharedData == NULL))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
/* in an error is found, print out a error msg and keep going*/
|
1999-12-14 01:30:27 +00:00
|
|
|
printf("Error creating \"%s\" file for \"%s\" (error code %d)\n", outFileName, arg, err);
|
1999-10-07 00:07:53 +00:00
|
|
|
err = U_ZERO_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-12-04 02:31:40 +00:00
|
|
|
/* writeUConverterSharedDataToFile(outFileName, mySharedData, &err); */
|
|
|
|
writeConverterData(mySharedData, cnvName, &err);
|
1999-08-16 21:50:52 +00:00
|
|
|
deleteSharedConverterData(mySharedData);
|
|
|
|
puts(outFileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*Streams out to a file a compact short array*/
|
|
|
|
void writeCompactShortArrayToFile(FileStream* outfile, const CompactShortArray* myArray)
|
|
|
|
{
|
|
|
|
int32_t i = 0;
|
|
|
|
const int16_t* myShortArray = NULL;
|
|
|
|
const uint16_t* myIndexArray = NULL;
|
|
|
|
int32_t myValuesCount = 0;
|
|
|
|
int32_t myIndexCount = ucmp16_getkUnicodeCount() / ucmp16_getkBlockCount();
|
|
|
|
int32_t myBlockShift = myArray->kBlockShift;
|
|
|
|
|
|
|
|
/*streams out the length of the arrays to come*/
|
|
|
|
myValuesCount = myArray->fCount;
|
|
|
|
T_FileStream_write(outfile, &myValuesCount, sizeof(int32_t));
|
|
|
|
T_FileStream_write(outfile, &myIndexCount, sizeof(int32_t));
|
|
|
|
T_FileStream_write(outfile, &myBlockShift, sizeof(int32_t));
|
|
|
|
|
|
|
|
/*Gets pointers to the internal arrays*/
|
|
|
|
myShortArray = myArray->fArray;
|
|
|
|
myIndexArray = myArray->fIndex;
|
|
|
|
|
|
|
|
/*streams out the 2 arrays*/
|
|
|
|
T_FileStream_write(outfile, myShortArray, myValuesCount*sizeof(int16_t));
|
|
|
|
T_FileStream_write(outfile, myIndexArray, myIndexCount*sizeof(uint16_t));
|
|
|
|
|
|
|
|
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeCompactByteArrayToFile(FileStream* outfile, const CompactByteArray* myArray)
|
|
|
|
{
|
|
|
|
int32_t i = 0;
|
|
|
|
const int8_t* myByteArray = NULL;
|
|
|
|
const uint16_t* myIndexArray = NULL;
|
|
|
|
int32_t myValuesCount = 0;
|
|
|
|
int32_t myIndexCount = ucmp8_getkUnicodeCount() / ucmp8_getkBlockCount();
|
|
|
|
|
|
|
|
/*streams out the length of the arrays to come*/
|
|
|
|
myValuesCount = ucmp8_getCount(myArray);
|
|
|
|
T_FileStream_write(outfile, &myValuesCount, sizeof(int32_t));
|
|
|
|
T_FileStream_write(outfile, &myIndexCount, sizeof(int32_t));
|
|
|
|
|
|
|
|
/*Gets pointers to the internal arrays*/
|
|
|
|
myByteArray = myArray->fArray;
|
|
|
|
myIndexArray = myArray->fIndex;
|
|
|
|
|
|
|
|
/*streams out the 2 arrays*/
|
|
|
|
T_FileStream_write(outfile, myByteArray, myValuesCount*sizeof(int8_t));
|
|
|
|
T_FileStream_write(outfile, myIndexArray, myIndexCount*sizeof(uint16_t));
|
|
|
|
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeUConverterSharedDataToFile(const char* filename,
|
|
|
|
UConverterSharedData* mySharedData,
|
|
|
|
UErrorCode* err)
|
|
|
|
{
|
|
|
|
int32_t i = 0;
|
|
|
|
const int8_t* myByteArray = NULL;
|
|
|
|
const uint16_t* myIndexArray = NULL;
|
|
|
|
int32_t myValuesCount = 0;
|
|
|
|
int32_t myIndexCount = 0;
|
1999-10-18 22:48:32 +00:00
|
|
|
int32_t myCheck = UCNV_FILE_CHECK_MARKER;
|
1999-08-16 21:50:52 +00:00
|
|
|
FileStream* outfile = NULL;
|
1999-10-18 22:48:32 +00:00
|
|
|
UConverterTable* myTableAlias = NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(*err)) return;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
outfile = T_FileStream_open(filename, "wb");
|
|
|
|
if (outfile == NULL)
|
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_FILE_ACCESS_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Writes a Sentinel value*/
|
|
|
|
T_FileStream_write(outfile, &myCheck, sizeof(int32_t));
|
1999-12-07 23:30:58 +00:00
|
|
|
T_FileStream_write(outfile, U_COPYRIGHT_STRING, U_COPYRIGHT_STRING_LENGTH);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/*Writes NULL in places where there is a pointer in order
|
|
|
|
*to enable bitwise equivalence of binary files
|
|
|
|
*/
|
|
|
|
myTableAlias = mySharedData->table;
|
|
|
|
mySharedData->table = NULL;
|
|
|
|
T_FileStream_write(outfile, mySharedData, sizeof(UConverterSharedData));
|
|
|
|
mySharedData->table = myTableAlias;
|
|
|
|
|
|
|
|
switch (mySharedData->conversionType)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
case UCNV_SBCS :
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
T_FileStream_write(outfile, mySharedData->table->sbcs.toUnicode, 256*sizeof(UChar));
|
|
|
|
writeCompactByteArrayToFile(outfile, mySharedData->table->sbcs.fromUnicode);
|
|
|
|
}break;
|
1999-10-18 22:48:32 +00:00
|
|
|
case UCNV_DBCS : case UCNV_EBCDIC_STATEFUL:
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
writeCompactShortArrayToFile(outfile, mySharedData->table->dbcs.toUnicode);
|
|
|
|
writeCompactShortArrayToFile(outfile, mySharedData->table->dbcs.fromUnicode);
|
|
|
|
}break;
|
1999-10-18 22:48:32 +00:00
|
|
|
case UCNV_MBCS :
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
T_FileStream_write(outfile, mySharedData->table->mbcs.starters, 256*sizeof(bool_t));
|
|
|
|
writeCompactShortArrayToFile(outfile, mySharedData->table->mbcs.toUnicode);
|
|
|
|
writeCompactShortArrayToFile(outfile, mySharedData->table->mbcs.fromUnicode);
|
|
|
|
}break;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
if (T_FileStream_error(outfile))
|
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_FILE_ACCESS_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
T_FileStream_close(outfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
void 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: {icu_strcpy(platformString, "ibm");break;}
|
1999-08-16 21:50:52 +00:00
|
|
|
default: {icu_strcpy(platformString, "");break;}
|
|
|
|
};
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
UConverterPlatform getPlatformFromName(char* name)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
char myPlatform[10];
|
|
|
|
char mySeparators[2] = { '-', '\0' };
|
|
|
|
|
|
|
|
getToken(myPlatform, name, mySeparators);
|
|
|
|
strtoupper(myPlatform);
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (icu_strcmp(myPlatform, "IBM") == 0) return UCNV_IBM;
|
|
|
|
else return UCNV_UNKNOWN;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t getCodepageNumberFromName(char* name)
|
|
|
|
{
|
|
|
|
char myNumber[10];
|
|
|
|
char mySeparators[2] = { '-', '\0' };
|
|
|
|
char* line = NULL;
|
|
|
|
|
|
|
|
line = getToken(myNumber, name, mySeparators);
|
|
|
|
getToken(myNumber, line, mySeparators);
|
|
|
|
|
|
|
|
return T_CString_stringToInteger(myNumber, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Reads the header of the table file and fills in basic knowledge about the converter in "converter"*/
|
|
|
|
void readHeaderFromFile(UConverter* myConverter,
|
|
|
|
FileStream* convFile,
|
|
|
|
UErrorCode* err)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
char storeLine[UCNV_MAX_LINE_TEXT];
|
1999-08-16 21:50:52 +00:00
|
|
|
char key[15];
|
|
|
|
char value[30];
|
|
|
|
char* line = storeLine;
|
|
|
|
bool_t endOfHeader = FALSE;
|
|
|
|
bool_t hasConvClass = FALSE;
|
|
|
|
bool_t hasSubChar = FALSE;
|
|
|
|
char codepointByte[3];
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(*err)) return;
|
|
|
|
while (!endOfHeader && T_FileStream_readLine(convFile, line, UCNV_MAX_LINE_TEXT))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
removeComments(line);
|
|
|
|
|
|
|
|
/*skip blank lines*/
|
|
|
|
if (*(line + nextTokenOffset(line, NLTC_SEPARATORS)) != '\0')
|
|
|
|
{
|
|
|
|
/*gets the key that will qualify adjacent information*/
|
|
|
|
/*gets the adjacent value*/
|
|
|
|
line = getToken(key, line, NLTC_SEPARATORS);
|
|
|
|
if (icu_strcmp(key, "uconv_class"))
|
|
|
|
line = getToken(value, line, NLTC_SEPARATORS);
|
|
|
|
else
|
|
|
|
line = getToken(value, line, PLAIN_SEPARATORS);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Figure out what key was found and fills in myConverter with the appropriate values
|
|
|
|
a switch statement for strings...
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*Checks for end of header marker*/
|
|
|
|
if (icu_strcmp(key, "CHARMAP") == 0) endOfHeader = TRUE;
|
|
|
|
|
|
|
|
/*get name tag*/
|
|
|
|
else if (icu_strcmp(key, "code_set_name") == 0)
|
|
|
|
{
|
|
|
|
icu_strcpy(myConverter->sharedData->name, value);
|
|
|
|
myConverter->sharedData->platform = getPlatformFromName(value);
|
|
|
|
myConverter->sharedData->codepage = getCodepageNumberFromName(value);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*get conversion type*/
|
|
|
|
else if (icu_strcmp(key, "uconv_class") == 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
hasConvClass = TRUE;
|
|
|
|
if (icu_strcmp(value, "DBCS") == 0)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
myConverter->sharedData->conversionType = UCNV_DBCS;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
else if (icu_strcmp(value, "SBCS") == 0)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
myConverter->sharedData->conversionType = UCNV_SBCS;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
else if (icu_strcmp(value, "MBCS") == 0)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
myConverter->sharedData->conversionType = UCNV_MBCS;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
else if (icu_strcmp(value, "EBCDIC_STATEFUL") == 0)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
myConverter->sharedData->conversionType = UCNV_EBCDIC_STATEFUL;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_INVALID_TABLE_FORMAT;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*get mb_cur_max amount*/
|
|
|
|
else if (icu_strcmp(key, "mb_cur_max") == 0)
|
|
|
|
myConverter->sharedData->maxBytesPerChar = (int8_t)T_CString_stringToInteger(value, 10);
|
|
|
|
|
|
|
|
/*get mb_cur_max amount*/
|
|
|
|
else if (icu_strcmp(key, "mb_cur_min") == 0)
|
|
|
|
myConverter->sharedData->minBytesPerChar = (int8_t)T_CString_stringToInteger(value, 10);
|
|
|
|
|
|
|
|
|
|
|
|
else if (icu_strcmp(key, "subchar") == 0)
|
|
|
|
{
|
|
|
|
hasSubChar = TRUE;
|
|
|
|
myConverter->sharedData->defaultConverterValues.subCharLen = 0;
|
|
|
|
|
|
|
|
/*readies value for tokenizing, we want to break each byte of the codepoint into single tokens*/
|
|
|
|
line = value;
|
|
|
|
while (*line)
|
|
|
|
{
|
|
|
|
line = getToken(codepointByte, line, CODEPOINT_SEPARATORS);
|
|
|
|
myConverter->sharedData->defaultConverterValues.subChar[(myConverter->sharedData->defaultConverterValues.subCharLen++)] =
|
|
|
|
(unsigned char)T_CString_stringToInteger(codepointByte, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Initializes data from the mutable area to that found in the immutable area*/
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*make line point to the beginning of the storage buffer again*/
|
|
|
|
line = storeLine;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!hasSubChar) {myConverter->subCharLen = myConverter->sharedData->defaultConverterValues.subCharLen = 0;}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
myConverter->subCharLen = myConverter->sharedData->defaultConverterValues.subCharLen;
|
|
|
|
icu_memcpy(myConverter->subChar,
|
|
|
|
myConverter->sharedData->defaultConverterValues.subChar,
|
|
|
|
myConverter->subCharLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-07 00:07:53 +00:00
|
|
|
if (!endOfHeader || !hasConvClass) *err = U_INVALID_TABLE_FORMAT;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void loadSBCSTableFromFile(FileStream* convFile, UConverter* myConverter, UErrorCode* err)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
char storageLine[UCNV_MAX_LINE_TEXT];
|
1999-08-16 21:50:52 +00:00
|
|
|
char* line = NULL;
|
1999-10-18 22:48:32 +00:00
|
|
|
UConverterTable* myUConverterTable = NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
UChar unicodeValue = 0xFFFF;
|
|
|
|
int32_t sbcsCodepageValue = 0;
|
|
|
|
char codepointBytes[5];
|
|
|
|
unsigned char replacementChar = '\0';
|
|
|
|
int32_t i = 0;
|
|
|
|
CompactByteArray* myFromUnicode = NULL;
|
|
|
|
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(*err)) return;
|
1999-08-16 21:50:52 +00:00
|
|
|
replacementChar = myConverter->subChar[0];
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable = (UConverterTable*)icu_malloc(sizeof(UConverterSBCSTable));
|
|
|
|
if (myUConverterTable == NULL)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_MEMORY_ALLOCATION_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*create a compact array with replacement chars as default chars*/
|
1999-09-30 23:47:52 +00:00
|
|
|
myFromUnicode = ucmp8_open(0);
|
1999-08-16 21:50:52 +00:00
|
|
|
if (myFromUnicode == NULL)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
icu_free(myUConverterTable);
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_MEMORY_ALLOCATION_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
myUConverterTable->sbcs.toUnicode = malloc(sizeof(UChar)*256);
|
1999-08-16 21:50:52 +00:00
|
|
|
/*fills in the toUnicode array with the Unicode Replacement Char*/
|
1999-10-18 22:48:32 +00:00
|
|
|
for (i=0;i<255;i++) myUConverterTable->sbcs.toUnicode[i] = unicodeValue;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
while (T_FileStream_readLine(convFile, storageLine, UCNV_MAX_LINE_TEXT))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
/*removes comments*/
|
|
|
|
removeComments(storageLine);
|
|
|
|
|
|
|
|
/*set alias pointer back to the beginning of the buffer*/
|
|
|
|
line = storageLine;
|
|
|
|
|
|
|
|
/*skips empty lines*/
|
|
|
|
if (line[nextTokenOffset(line, NLTC_SEPARATORS)] != '\0')
|
|
|
|
{
|
|
|
|
line = getToken(codepointBytes, line, UNICODE_CODEPOINT_SEPARATORS);
|
|
|
|
if (!icu_strcmp(codepointBytes, "END")) break;
|
|
|
|
unicodeValue = (UChar)T_CString_stringToInteger(codepointBytes, 16);
|
|
|
|
line = getToken(codepointBytes, line, CODEPOINT_SEPARATORS);
|
|
|
|
sbcsCodepageValue = T_CString_stringToInteger(codepointBytes, 16);
|
|
|
|
/*Store in the toUnicode array*/
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable->sbcs.toUnicode[sbcsCodepageValue] = unicodeValue;
|
1999-08-16 21:50:52 +00:00
|
|
|
/*Store in the fromUnicode compact array*/
|
|
|
|
ucmp8_set(myFromUnicode, unicodeValue, (int8_t)sbcsCodepageValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ucmp8_compact(myFromUnicode, 1);
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable->sbcs.fromUnicode = myFromUnicode;
|
1999-08-16 21:50:52 +00:00
|
|
|
/*Initially sets the referenceCounter to 1*/
|
|
|
|
myConverter->sharedData->referenceCounter = 1;
|
1999-10-18 22:48:32 +00:00
|
|
|
myConverter->sharedData->table = myUConverterTable;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void loadMBCSTableFromFile(FileStream* convFile, UConverter* myConverter, UErrorCode* err)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
char storageLine[UCNV_MAX_LINE_TEXT];
|
1999-08-16 21:50:52 +00:00
|
|
|
char* line = NULL;
|
1999-10-18 22:48:32 +00:00
|
|
|
UConverterTable* myUConverterTable = NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
UChar unicodeValue = 0xFFFF;
|
|
|
|
int32_t mbcsCodepageValue = '\0';
|
|
|
|
char codepointBytes[6];
|
|
|
|
int32_t replacementChar = 0x0000;
|
|
|
|
uint16_t i = 0;
|
|
|
|
CompactShortArray* myFromUnicode = NULL;
|
|
|
|
CompactShortArray* myToUnicode = NULL;
|
|
|
|
|
|
|
|
/*Evaluates the replacement codepoint*/
|
|
|
|
replacementChar = 0xFFFF;
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable = (UConverterTable*)icu_malloc(sizeof(UConverterMBCSTable));
|
|
|
|
if (myUConverterTable == NULL)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_MEMORY_ALLOCATION_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
myUConverterTable->mbcs.starters = icu_malloc(sizeof(bool_t)*256);
|
|
|
|
if (myUConverterTable->mbcs.starters == NULL)
|
|
|
|
{
|
|
|
|
*err = U_MEMORY_ALLOCATION_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/*Initializes the mbcs.starters to FALSE*/
|
|
|
|
|
|
|
|
for (i=0; i<=255; i++)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable->mbcs.starters[i] = FALSE;
|
1999-08-16 21:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
myFromUnicode = ucmp16_open((uint16_t)replacementChar);
|
|
|
|
myToUnicode = ucmp16_open((int16_t)0xFFFD);
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
while (T_FileStream_readLine(convFile, storageLine, UCNV_MAX_LINE_TEXT))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
removeComments(storageLine);
|
|
|
|
line = storageLine;
|
|
|
|
if (line[nextTokenOffset(line, NLTC_SEPARATORS)] != '\0')
|
|
|
|
{
|
|
|
|
line = getToken(codepointBytes, line, UNICODE_CODEPOINT_SEPARATORS);
|
|
|
|
if (!icu_strcmp(codepointBytes, "END")) break;
|
|
|
|
unicodeValue = (UChar)T_CString_stringToInteger(codepointBytes, 16);
|
|
|
|
line = getToken(codepointBytes, line, CODEPOINT_SEPARATORS);
|
|
|
|
if (line[nextTokenOffset(line, CODEPOINT_SEPARATORS)] != '\0')
|
|
|
|
{
|
|
|
|
/*When there is a second byte*/
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable->mbcs.starters[T_CString_stringToInteger(codepointBytes, 16)] = TRUE;
|
1999-08-16 21:50:52 +00:00
|
|
|
line = getToken(codepointBytes+2, line, CODEPOINT_SEPARATORS);
|
|
|
|
}
|
|
|
|
|
|
|
|
mbcsCodepageValue = T_CString_stringToInteger(codepointBytes, 16);
|
|
|
|
|
|
|
|
ucmp16_set(myToUnicode, (int16_t)mbcsCodepageValue, unicodeValue);
|
|
|
|
ucmp16_set(myFromUnicode, unicodeValue, (int16_t)mbcsCodepageValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ucmp16_compact(myFromUnicode);
|
|
|
|
ucmp16_compact(myToUnicode);
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable->mbcs.fromUnicode = myFromUnicode;
|
|
|
|
myUConverterTable->mbcs.toUnicode = myToUnicode;
|
1999-08-16 21:50:52 +00:00
|
|
|
myConverter->sharedData->referenceCounter = 1;
|
1999-10-18 22:48:32 +00:00
|
|
|
myConverter->sharedData->table = myUConverterTable;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/* if the default subCharLen is > 1 we need to insert it in the data structure
|
|
|
|
so that we know how to transition */
|
|
|
|
if (myConverter->subCharLen > 1)
|
|
|
|
{
|
|
|
|
myConverter->sharedData->table->mbcs.starters[myConverter->subChar[0]] = TRUE;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void loadEBCDIC_STATEFULTableFromFile(FileStream* convFile, UConverter* myConverter, UErrorCode* err)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
char storageLine[UCNV_MAX_LINE_TEXT];
|
1999-08-16 21:50:52 +00:00
|
|
|
char* line = NULL;
|
1999-10-18 22:48:32 +00:00
|
|
|
UConverterTable* myUConverterTable = NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
UChar unicodeValue = 0xFFFF;
|
|
|
|
int32_t mbcsCodepageValue = '\0';
|
|
|
|
char codepointBytes[6];
|
|
|
|
int32_t replacementChar = 0x0000;
|
|
|
|
uint8_t i = 0;
|
|
|
|
CompactShortArray* myFromUnicode = NULL;
|
|
|
|
CompactShortArray* myToUnicode = NULL;
|
|
|
|
|
|
|
|
/*Evaluates the replacement codepoint*/
|
|
|
|
replacementChar = 0xFFFF;
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable = (UConverterTable*)icu_malloc(sizeof(UConverterMBCSTable));
|
|
|
|
if (myUConverterTable == NULL)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_MEMORY_ALLOCATION_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
myFromUnicode = ucmp16_open((uint16_t)replacementChar);
|
|
|
|
myToUnicode = ucmp16_open((int16_t)0xFFFD);
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
while (T_FileStream_readLine(convFile, storageLine, UCNV_MAX_LINE_TEXT))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
removeComments(storageLine);
|
|
|
|
line = storageLine;
|
|
|
|
if (line[nextTokenOffset(line, NLTC_SEPARATORS)] != '\0')
|
|
|
|
{
|
|
|
|
line = getToken(codepointBytes, line, UNICODE_CODEPOINT_SEPARATORS);
|
|
|
|
if (!icu_strcmp(codepointBytes, "END")) break;
|
|
|
|
unicodeValue = (UChar)T_CString_stringToInteger(codepointBytes, 16);
|
|
|
|
line = getToken(codepointBytes, line, CODEPOINT_SEPARATORS);
|
|
|
|
if (line[nextTokenOffset(line, CODEPOINT_SEPARATORS)] != '\0')
|
|
|
|
{
|
|
|
|
/*two-byter!*/
|
|
|
|
line = getToken(codepointBytes+2, line, CODEPOINT_SEPARATORS);
|
|
|
|
}
|
|
|
|
|
|
|
|
mbcsCodepageValue = T_CString_stringToInteger(codepointBytes, 16);
|
|
|
|
|
|
|
|
ucmp16_set(myToUnicode, (int16_t)mbcsCodepageValue, unicodeValue);
|
|
|
|
ucmp16_set(myFromUnicode, unicodeValue, (int16_t)mbcsCodepageValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ucmp16_compact(myFromUnicode);
|
|
|
|
ucmp16_compact(myToUnicode);
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable->dbcs.fromUnicode = myFromUnicode;
|
|
|
|
myUConverterTable->dbcs.toUnicode = myToUnicode;
|
1999-08-16 21:50:52 +00:00
|
|
|
myConverter->sharedData->referenceCounter = 1;
|
1999-10-18 22:48:32 +00:00
|
|
|
myConverter->sharedData->table = myUConverterTable;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/* if the default subCharLen is > 1 we need to insert it in the data structure
|
|
|
|
so that we know how to transition */
|
|
|
|
if (myConverter->subCharLen > 1)
|
|
|
|
{
|
|
|
|
myConverter->sharedData->table->mbcs.starters[myConverter->subChar[0]] = TRUE;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void loadDBCSTableFromFile(FileStream* convFile, UConverter* myConverter, UErrorCode* err)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
char storageLine[UCNV_MAX_LINE_TEXT];
|
1999-08-16 21:50:52 +00:00
|
|
|
char* line = NULL;
|
1999-10-18 22:48:32 +00:00
|
|
|
UConverterTable* myUConverterTable = NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
UChar unicodeValue = 0xFFFD;
|
|
|
|
int32_t dbcsCodepageValue = '\0';
|
|
|
|
char codepointBytes[6];
|
|
|
|
int32_t replacementChar = 0x0000;
|
|
|
|
uint8_t i = 0;
|
|
|
|
CompactShortArray* myFromUnicode = NULL;
|
|
|
|
CompactShortArray* myToUnicode = NULL;
|
|
|
|
|
|
|
|
/*Evaluates the replacement codepoint*/
|
|
|
|
replacementChar = 0xFFFF;
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable = (UConverterTable*)icu_malloc(sizeof(UConverterDBCSTable));
|
|
|
|
if (myUConverterTable == NULL)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_MEMORY_ALLOCATION_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
myFromUnicode = ucmp16_open((int16_t)replacementChar);
|
|
|
|
myToUnicode = ucmp16_open((int16_t)0xFFFD);
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
while (T_FileStream_readLine(convFile, storageLine, UCNV_MAX_LINE_TEXT))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
removeComments(storageLine);
|
|
|
|
line = storageLine;
|
|
|
|
if (line[nextTokenOffset(line, NLTC_SEPARATORS)] != '\0')
|
|
|
|
{
|
|
|
|
line = getToken(codepointBytes, line, UNICODE_CODEPOINT_SEPARATORS);
|
|
|
|
if (!icu_strcmp(codepointBytes, "END")) break;
|
|
|
|
unicodeValue = (UChar)T_CString_stringToInteger(codepointBytes, 16);
|
|
|
|
|
|
|
|
/*first byte*/
|
|
|
|
line = getToken(codepointBytes, line, CODEPOINT_SEPARATORS);
|
|
|
|
|
|
|
|
/*second byte*/
|
|
|
|
line = getToken(codepointBytes+2, line, CODEPOINT_SEPARATORS);
|
|
|
|
}
|
|
|
|
|
|
|
|
dbcsCodepageValue = T_CString_stringToInteger(codepointBytes, 16);
|
|
|
|
ucmp16_set(myToUnicode, (int16_t)dbcsCodepageValue, unicodeValue);
|
|
|
|
ucmp16_set(myFromUnicode, unicodeValue, (int16_t)dbcsCodepageValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
ucmp16_compact(myFromUnicode);
|
|
|
|
ucmp16_compact(myToUnicode);
|
1999-10-18 22:48:32 +00:00
|
|
|
myUConverterTable->dbcs.fromUnicode = myFromUnicode;
|
|
|
|
myUConverterTable->dbcs.toUnicode = myToUnicode;
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
myConverter->sharedData->referenceCounter = 1;
|
1999-10-18 22:48:32 +00:00
|
|
|
myConverter->sharedData->table = myUConverterTable;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*deletes the "shared" type object*/
|
|
|
|
bool_t deleteSharedConverterData(UConverterSharedData* deadSharedData)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
if (deadSharedData->conversionType == UCNV_SBCS)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
ucmp8_close(deadSharedData->table->sbcs.fromUnicode);
|
|
|
|
icu_free(deadSharedData->table);
|
|
|
|
icu_free(deadSharedData);
|
|
|
|
}
|
1999-10-18 22:48:32 +00:00
|
|
|
else if (deadSharedData->conversionType == UCNV_MBCS)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
ucmp16_close(deadSharedData->table->mbcs.fromUnicode);
|
|
|
|
ucmp16_close(deadSharedData->table->mbcs.toUnicode);
|
|
|
|
icu_free(deadSharedData->table);
|
|
|
|
icu_free(deadSharedData);
|
|
|
|
}
|
1999-10-18 22:48:32 +00:00
|
|
|
else if ((deadSharedData->conversionType == UCNV_DBCS) || (deadSharedData->conversionType == UCNV_EBCDIC_STATEFUL))
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
ucmp16_close(deadSharedData->table->dbcs.fromUnicode);
|
|
|
|
ucmp16_close(deadSharedData->table->dbcs.toUnicode);
|
|
|
|
icu_free(deadSharedData->table);
|
|
|
|
icu_free(deadSharedData);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
icu_free(deadSharedData);
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*creates a UConverter, fills in necessary links to it the appropriate function pointers*/
|
|
|
|
UConverterSharedData* createConverterFromTableFile(const char* converterName, UErrorCode* err)
|
|
|
|
{
|
|
|
|
FileStream* convFile = NULL;
|
|
|
|
int32_t i = 0;
|
|
|
|
UConverterSharedData* mySharedData = NULL;
|
|
|
|
UConverter myConverter;
|
|
|
|
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(*err)) return NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
convFile = T_FileStream_open(converterName, "r");
|
|
|
|
if (convFile == NULL)
|
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_FILE_ACCESS_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
mySharedData = (UConverterSharedData*) icu_malloc(sizeof(UConverterSharedData));
|
|
|
|
if (mySharedData == NULL)
|
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
*err = U_MEMORY_ALLOCATION_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
T_FileStream_close(convFile);
|
|
|
|
}
|
|
|
|
|
1999-12-04 02:31:40 +00:00
|
|
|
mySharedData->structSize = sizeof(UConverterSharedData);
|
|
|
|
mySharedData->dataMemory = NULL; /* for init */
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
myConverter.sharedData = mySharedData;
|
|
|
|
readHeaderFromFile(&myConverter, convFile, err);
|
|
|
|
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(*err)) return NULL;
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
switch (mySharedData->conversionType)
|
|
|
|
{
|
1999-10-18 22:48:32 +00:00
|
|
|
case UCNV_SBCS:
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
loadSBCSTableFromFile(convFile, &myConverter, err);
|
|
|
|
break;
|
|
|
|
}
|
1999-10-18 22:48:32 +00:00
|
|
|
case UCNV_MBCS:
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
loadMBCSTableFromFile(convFile, &myConverter, err);
|
|
|
|
break;
|
|
|
|
}
|
1999-10-18 22:48:32 +00:00
|
|
|
case UCNV_EBCDIC_STATEFUL:
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
loadEBCDIC_STATEFULTableFromFile(convFile, &myConverter, err);
|
|
|
|
break;
|
|
|
|
}
|
1999-10-18 22:48:32 +00:00
|
|
|
case UCNV_DBCS:
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
loadDBCSTableFromFile(convFile, &myConverter, err);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default : break;
|
|
|
|
};
|
|
|
|
|
|
|
|
T_FileStream_close(convFile);
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
return mySharedData;
|
|
|
|
}
|
1999-12-04 02:31:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void WriteConverterSharedData(UNewDataMemory *pData, const UConverterSharedData* data)
|
|
|
|
{
|
|
|
|
udata_writeBlock(pData, data, sizeof(UConverterSharedData));
|
|
|
|
|
|
|
|
switch (data->conversionType)
|
|
|
|
{
|
|
|
|
case UCNV_SBCS:
|
|
|
|
{
|
|
|
|
udata_writeBlock(pData, (void*)data->table->sbcs.toUnicode, sizeof(UChar)*256);
|
|
|
|
udata_write_ucmp8(pData, data->table->sbcs.fromUnicode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UCNV_DBCS:
|
|
|
|
case UCNV_EBCDIC_STATEFUL:
|
|
|
|
{
|
|
|
|
udata_write_ucmp16(pData,data->table->dbcs.toUnicode);
|
|
|
|
udata_write_ucmp16(pData,data->table->dbcs.fromUnicode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UCNV_MBCS:
|
|
|
|
{
|
|
|
|
udata_writeBlock(pData, data->table->mbcs.starters, 256*sizeof(bool_t));
|
|
|
|
udata_write_ucmp16(pData,data->table->mbcs.toUnicode);
|
|
|
|
udata_write_ucmp16(pData,data->table->mbcs.fromUnicode);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
/*If it isn't any of the above, the file is invalid */
|
|
|
|
fprintf(stderr, "Error: bad converter type, can't write!!\n");
|
|
|
|
exit(1);
|
|
|
|
return; /* 0; */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|