94 lines
2.2 KiB
C++
94 lines
2.2 KiB
C++
#include "global.h"
|
|
#include "RageUtil_CharConversions.h"
|
|
|
|
#include "RageUtil.h"
|
|
#include "RageLog.h"
|
|
|
|
#if defined(_WINDOWS)
|
|
|
|
/* Convert from the given codepage to UTF-8. Return true if successful. */
|
|
static bool CodePageConvert(CString &txt, int cp)
|
|
{
|
|
if( txt.size() == 0 )
|
|
return true;
|
|
|
|
int size = MultiByteToWideChar(cp, MB_ERR_INVALID_CHARS, txt.data(), txt.size(), NULL, 0);
|
|
if( size == 0 )
|
|
{
|
|
LOG->Trace("%s\n", werr_ssprintf(GetLastError(), "err: ").c_str());
|
|
return false; /* error */
|
|
}
|
|
|
|
wstring out;
|
|
out.append(size, ' ');
|
|
/* Nonportable: */
|
|
size = MultiByteToWideChar(cp, MB_ERR_INVALID_CHARS, txt.data(), txt.size(), (wchar_t *) out.data(), size);
|
|
ASSERT( size != 0 );
|
|
|
|
txt = WStringToCString(out);
|
|
return true;
|
|
}
|
|
|
|
static bool AttemptEnglishConversion( CString &txt ) { return CodePageConvert( txt, 1252 ); }
|
|
static bool AttemptKoreanConversion( CString &txt ) { return CodePageConvert( txt, 949 ); }
|
|
static bool AttemptJapaneseConversion( CString &txt ) { return CodePageConvert( txt, 932 ); }
|
|
|
|
#elif defined(HAVE_ICONV)
|
|
#include <iconv.h>
|
|
|
|
TODO
|
|
|
|
#else
|
|
|
|
/* No converters are available, so all fail--we only accept UTF-8. */
|
|
static bool AttemptEnglishConversion( CString &txt ) { return false; }
|
|
static bool AttemptKoreanConversion( CString &txt ) { return false; }
|
|
static bool AttemptJapaneseConversion( CString &txt ) { return false; }
|
|
|
|
#endif
|
|
|
|
bool ConvertString(CString &str, const CString &encodings)
|
|
{
|
|
CStringArray lst;
|
|
split(encodings, ",", lst);
|
|
|
|
for(unsigned i = 0; i < lst.size(); ++i)
|
|
{
|
|
if( lst[i] == "utf-8" )
|
|
{
|
|
/* Is the string already valid utf-8? */
|
|
if( utf8_is_valid(str) )
|
|
return true;
|
|
continue;
|
|
}
|
|
if( lst[i] == "english" )
|
|
{
|
|
if(AttemptEnglishConversion(str))
|
|
return true;
|
|
continue;
|
|
}
|
|
|
|
if( lst[i] == "japanese" )
|
|
{
|
|
if(AttemptJapaneseConversion(str))
|
|
return true;
|
|
continue;
|
|
}
|
|
|
|
if( lst[i] == "korean" )
|
|
{
|
|
if(AttemptKoreanConversion(str))
|
|
return true;
|
|
continue;
|
|
}
|
|
|
|
RageException::Throw( "Unexpected conversion string \"%s\" (string \"%s\")",
|
|
lst[i].c_str(), str.c_str() );
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/* Written by Glenn Maynard. In the public domain; there are so many
|
|
* simple conversion interfaces that restricting them is silly. */
|