diff --git a/Utilities/UTF8Util.cpp b/Utilities/UTF8Util.cpp index 81900321..0a99feaa 100644 --- a/Utilities/UTF8Util.cpp +++ b/Utilities/UTF8Util.cpp @@ -1,50 +1,31 @@ #include "stdafx.h" #include "UTF8Util.h" - -#ifdef _MSC_VER -#define WIN32_LEAN_AND_MEAN -#define _WINSOCKAPI_ -#include - -namespace utf8 { - std::wstring utf8::decode(const std::string &str) - { - if(str.empty()) return std::wstring(); - int size_needed = MultiByteToWideChar(CP_UTF8, 0, &str[0], (int)str.size(), NULL, 0); - std::wstring wstrTo(size_needed, 0); - MultiByteToWideChar(CP_UTF8, 0, &str[0], (int)str.size(), &wstrTo[0], size_needed); - return wstrTo; - } - - std::string utf8::encode(const std::wstring &wstr) - { - if(wstr.empty()) return std::string(); - int size_needed = WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)wstr.size(), NULL, 0, NULL, NULL); - std::string strTo(size_needed, 0); - WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)wstr.size(), &strTo[0], size_needed, NULL, NULL); - return strTo; - } -} -#else #include #include -namespace utf8 { + +namespace utf8 +{ std::wstring utf8::decode(const std::string &str) { - std::wstring_convert> myconv; - return myconv.from_bytes(str); + std::wstring_convert> conv; + return conv.from_bytes(str); } std::string utf8::encode(const std::wstring &wstr) { - std::wstring_convert> myconv; - return myconv.to_bytes(wstr); + std::wstring_convert> conv; + return conv.to_bytes(wstr); } std::string utf8::encode(const std::u16string &wstr) { - std::wstring_convert, char16_t> myconv; - return myconv.to_bytes(wstr); + #ifdef _MSC_VER + std::wstring_convert, int16_t> conv; + auto p = reinterpret_cast(wstr.data()); + return conv.to_bytes(p, p + wstr.size()); + #else + std::wstring_convert, char16_t> conv; + return conv.to_bytes(wstr); + #endif } -} -#endif \ No newline at end of file +} \ No newline at end of file