metaforce/hecl/lib/WideStringConvert.cpp

46 lines
1.1 KiB
C++
Raw Normal View History

2015-08-31 21:23:45 +00:00
#include <utf8proc.h>
#include "HECL/HECL.hpp"
2015-06-09 22:19:59 +00:00
namespace HECL
{
std::string WideToUTF8(const std::wstring& src)
{
2015-08-25 07:02:10 +00:00
std::string retval;
retval.reserve(src.length());
for (wchar_t ch : src)
{
2015-08-31 21:23:45 +00:00
utf8proc_uint8_t mb[4];
utf8proc_ssize_t c = utf8proc_encode_char(utf8proc_int32_t(ch), mb);
if (c < 0)
{
LogModule.report(LogVisor::Warning, "invalid UTF-8 character while encoding");
return retval;
}
retval.append(reinterpret_cast<char*>(mb), c);
2015-08-25 07:02:10 +00:00
}
return retval;
2015-06-09 22:19:59 +00:00
}
std::wstring UTF8ToWide(const std::string& src)
{
2015-08-25 07:02:10 +00:00
std::wstring retval;
retval.reserve(src.length());
2015-08-31 21:23:45 +00:00
const utf8proc_uint8_t* buf = reinterpret_cast<const utf8proc_uint8_t*>(src.c_str());
2015-08-25 07:02:10 +00:00
while (*buf)
{
2015-08-31 21:23:45 +00:00
utf8proc_int32_t wc;
utf8proc_ssize_t len = utf8proc_iterate(buf, -1, &wc);
if (len < 0)
{
LogModule.report(LogVisor::Warning, "invalid UTF-8 character while decoding");
return retval;
}
buf += len;
retval += wchar_t(wc);
2015-08-25 07:02:10 +00:00
}
return retval;
2015-06-09 22:19:59 +00:00
}
}