spiegel-keyman/linux/scim_kmfl_imengine/scim_kmfl_imengine_setup/utfconv.c
2006-03-04 12:50:06 +00:00

98 lines
3.1 KiB
C

/* utfconv.c
* Copyright (C) 2006 SIL International
*
* This file is part of the KMFL library.
*
* The KMFL library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* The KMFL library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with the KMFL library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#include <iconv.h>
#include "utfconv.h"
#define UTF8MODE "UTF8"
#define UTF16MODE "UTF16LE"
#define UTF32MODE "UTF32LE"
size_t UTFConvert (
char * sourceCode, char * targetCode,
const void ** sourceStart, const void * sourceEnd,
void ** targetStart, void * targetEnd)
{
size_t result = 0;
char * source = *(char**)sourceStart;
char * target = *(char**)targetStart;
size_t inbytesleft = sourceEnd - *sourceStart;
size_t outbytesleft = targetEnd - *targetStart;
iconv_t ic;
ic=iconv_open(targetCode, sourceCode);
while (inbytesleft > 0 && result != (size_t) -1) {
result=iconv(ic, &source, &inbytesleft, &target, &outbytesleft);
}
*sourceStart = source;
*targetStart = target;
iconv_close(ic);
return result;
}
size_t IConvertUTF8toUTF16 (
const UTF8** sourceStart, const UTF8* sourceEnd,
UTF16** targetStart, UTF16* targetEnd)
{
return UTFConvert(UTF8MODE, UTF16MODE, (const void**)sourceStart, (const void *)sourceEnd, (void**)targetStart, (void *)targetEnd);
}
size_t IConvertUTF16toUTF8 (
const UTF16** sourceStart, const UTF16* sourceEnd,
UTF8** targetStart, UTF8* targetEnd)
{
return UTFConvert(UTF16MODE, UTF8MODE, (const void**)sourceStart, (const void *)sourceEnd, (void**)targetStart, (void *)targetEnd);
}
size_t IConvertUTF8toUTF32 (
const UTF8** sourceStart, const UTF8* sourceEnd,
UTF32** targetStart, UTF32* targetEnd)
{
return UTFConvert(UTF8MODE, UTF32MODE, (const void**)sourceStart, (const void *)sourceEnd, (void**)targetStart, (void *)targetEnd);
}
size_t IConvertUTF32toUTF8 (
const UTF32** sourceStart, const UTF32* sourceEnd,
UTF8** targetStart, UTF8* targetEnd)
{
return UTFConvert(UTF32MODE, UTF8MODE, (const void**)sourceStart, (const void *)sourceEnd, (void**)targetStart, (void *)targetEnd);
}
size_t IConvertUTF16toUTF32 (
const UTF16** sourceStart, const UTF16* sourceEnd,
UTF32** targetStart, UTF32* targetEnd)
{
return UTFConvert(UTF16MODE, UTF32MODE, (const void**)sourceStart, (const void *)sourceEnd, (void**)targetStart, (void *)targetEnd);
}
size_t IConvertUTF32toUTF16 (
const UTF32** sourceStart, const UTF32* sourceEnd,
UTF16** targetStart, UTF16* targetEnd)
{
return UTFConvert(UTF32MODE, UTF16MODE, (const void**)sourceStart, (const void *)sourceEnd, (void**)targetStart, (void *)targetEnd);
}