-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCommon.cpp
69 lines (64 loc) · 1.98 KB
/
Common.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include "stdafx.h"
#include "Common.h"
#include <windows.h>
#include <stdio.h>
#include <wtypes.h>
namespace Common
{
std::wstring ansi2unicode(const std::string& ansi)
{
if (ansi.empty()) {
return std::wstring(L"");
}
int len = MultiByteToWideChar(CP_ACP, 0, ansi.c_str(), -1, NULL, 0);
std::wstring unicode(len + 2, L'\0');
len = MultiByteToWideChar(CP_ACP, 0, ansi.c_str(), ansi.size(), &unicode[0], len);
return unicode;
}
std::string unicode2ansi(const std::wstring& unicode)
{
if (unicode.empty()) {
return std::string("");
}
int len = WideCharToMultiByte(CP_ACP, 0, unicode.c_str(), -1, NULL, 0, NULL, NULL);
std::string ansi(len + 1, '\0');
WideCharToMultiByte(CP_ACP, 0, unicode.c_str(), unicode.size(), &ansi[0], len, NULL, NULL);
return ansi;
}
std::wstring utf8ToUnicode(const std::string& str)
{
int len = str.size();
int unicodeLen = ::MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, NULL, 0);
wchar_t* pUnicode;
pUnicode = new wchar_t[unicodeLen + 1];
memset((void*)pUnicode, 0, (unicodeLen + 1) * sizeof(wchar_t));
::MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, (LPWSTR)pUnicode, unicodeLen);
std::wstring wstrReturn(pUnicode);
delete [] pUnicode;
return wstrReturn;
}
std::string toString(const char *fmt, ...)
{
char buffer[1024] = {0};
va_list vaList;
va_start(vaList, fmt);
vsnprintf_s(buffer, _countof(buffer), _TRUNCATE, fmt, vaList);
va_end(vaList);
return buffer;
}
std::string getErrString()
{
DWORD errCode = GetLastError();
TCHAR buffer[1024];
std::string errString;
if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, errCode, MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US),
(LPTSTR)&buffer[0],
sizeof(buffer), NULL) == 0) {
errString = Common::toString("Cannot get text error describing (%u)", errCode);
} else {
errString = Common::toString("%s (%u)", Common::unicode2ansi(buffer).c_str(), errCode);
}
return errString;
}
}