Commit 19de8857 authored by captainwong's avatar captainwong

update

parent 468f8cf6
...@@ -36,7 +36,8 @@ ...@@ -36,7 +36,8 @@
CLock CLog::m_lockForSingleton;\ CLock CLog::m_lockForSingleton;\
char CLog::m_ansiBuf[MAX_OUTPUT_LEN];\ char CLog::m_ansiBuf[MAX_OUTPUT_LEN];\
wchar_t CLog::m_utf16Buf[MAX_OUTPUT_LEN];\ wchar_t CLog::m_utf16Buf[MAX_OUTPUT_LEN];\
CLog* CLog::m_pInstance = NULL; CLog* CLog::m_pInstance = NULL;\
TCHAR CLog::g_szFileName[1024] = { 0 };
/* /*
#define TRACEFUNCNAME \ #define TRACEFUNCNAME \
...@@ -46,9 +47,9 @@ ...@@ -46,9 +47,9 @@
OutputDebugString(str);\ OutputDebugString(str);\
UNINIT_SYM();\ UNINIT_SYM();\
*/ */
#define MAX_OUTPUT_LEN 4096 #define MAX_OUTPUT_LEN (1024 * 64)
#define MAX_FILE_LEN 1024 * 1024 * 10 #define MAX_FILE_LEN (1024 * 1024 * 10)
static TCHAR g_szFileName[1024] = {0}; //static TCHAR g_szFileName[1024] = {0};
class CLog class CLog
{ {
...@@ -65,6 +66,7 @@ private: ...@@ -65,6 +66,7 @@ private:
BOOL m_bRunning; BOOL m_bRunning;
FILE *m_pLogFile; FILE *m_pLogFile;
PROCESS_INFORMATION pi; PROCESS_INFORMATION pi;
static TCHAR g_szFileName[1024];
static CRITICAL_SECTION m_cs; static CRITICAL_SECTION m_cs;
static CLock m_lockForSingleton; static CLock m_lockForSingleton;
static char m_ansiBuf[MAX_OUTPUT_LEN]; static char m_ansiBuf[MAX_OUTPUT_LEN];
...@@ -323,7 +325,8 @@ protected: ...@@ -323,7 +325,8 @@ protected:
} }
} }
WORD FormatBuf(const TCHAR *oldBuf, TCHAR *newBuf, WORD max_new_buff_len = MAX_OUTPUT_LEN){ DWORD FormatBuf(const TCHAR *oldBuf, TCHAR *newBuf, DWORD max_new_buff_len = MAX_OUTPUT_LEN)
{
static SYSTEMTIME st; static SYSTEMTIME st;
static TCHAR sztime[128]; static TCHAR sztime[128];
memset(sztime, 0, sizeof sztime); memset(sztime, 0, sizeof sztime);
...@@ -332,10 +335,10 @@ protected: ...@@ -332,10 +335,10 @@ protected:
st.wYear, st.wMonth, st.wDay, (st.wDayOfWeek != 0) ? st.wDayOfWeek : 7, st.wYear, st.wMonth, st.wDay, (st.wDayOfWeek != 0) ? st.wDayOfWeek : 7,
st.wHour, st.wMinute, st.wSecond, st.wMilliseconds); st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
lstrcpy(newBuf, sztime); lstrcpy(newBuf, sztime);
if(lstrlen(sztime) + lstrlen(oldBuf) < max_new_buff_len){ if(static_cast<DWORD>(lstrlen(sztime) + lstrlen(oldBuf)) < max_new_buff_len){
lstrcat(newBuf, oldBuf); lstrcat(newBuf, oldBuf);
} }
return static_cast<unsigned short>(lstrlen(newBuf)); return static_cast<DWORD>(lstrlen(newBuf));
} }
void OutputFile(const TCHAR *buf){ void OutputFile(const TCHAR *buf){
......
...@@ -35,7 +35,7 @@ __inline void PrintError(LPCTSTR linedesc, LPCTSTR filename, int lineno, DWORD e ...@@ -35,7 +35,7 @@ __inline void PrintError(LPCTSTR linedesc, LPCTSTR filename, int lineno, DWORD e
NULL NULL
); );
_stprintf(errbuf, _T("\nThe following call failed at line %d in %s:\n\n %s\n\nReason: %s\n"), _stprintf(errbuf, _T("\nThe following call failed at line %d in %s:\n\n %s\n\nReason: %s\n"),
lineno, filename, linedesc, lpBuffer); lineno, filename, linedesc, lpBuffer);
#ifndef _WINDOWS_ #ifndef _WINDOWS_
WriteFile(GetStdHandle(STD_ERROR_HANDLE), errbuf, lstrlen(errbuf), &numread, FALSE ); WriteFile(GetStdHandle(STD_ERROR_HANDLE), errbuf, lstrlen(errbuf), &numread, FALSE );
...@@ -55,14 +55,12 @@ __inline void PrintError(LPCTSTR linedesc, LPCTSTR filename, int lineno, DWORD e ...@@ -55,14 +55,12 @@ __inline void PrintError(LPCTSTR linedesc, LPCTSTR filename, int lineno, DWORD e
__inline void WaitTillThreadActive(HANDLE &handle) __inline void WaitTillThreadActive(HANDLE &handle)
{ {
if(handle != INVALID_HANDLE_VALUE) if (handle != INVALID_HANDLE_VALUE) {
{
BOOL rc = FALSE; BOOL rc = FALSE;
DWORD ec = 0; DWORD ec = 0;
for(;;) for (;;) {
{
rc = GetExitCodeThread(handle, &ec); rc = GetExitCodeThread(handle, &ec);
if(rc && (ec == STILL_ACTIVE)) if (rc && (ec == STILL_ACTIVE))
break; break;
Sleep(500); Sleep(500);
} }
...@@ -72,42 +70,41 @@ __inline void WaitTillThreadActive(HANDLE &handle) ...@@ -72,42 +70,41 @@ __inline void WaitTillThreadActive(HANDLE &handle)
/* /*
__inline void WaitTillThreadExited(HANDLE &handle, DWORD dwMilliseconds = 3000) __inline void WaitTillThreadExited(HANDLE &handle, DWORD dwMilliseconds = 3000)
{ {
if(handle != INVALID_HANDLE_VALUE) if(handle != INVALID_HANDLE_VALUE)
{ {
BOOL rc = FALSE; BOOL rc = FALSE;
DWORD ec = 0; DWORD ec = 0;
DWORD dwStart = GetTickCount(); DWORD dwStart = GetTickCount();
for(;;) for(;;)
{ {
if(GetTickCount() - dwStart >= dwMilliseconds) if(GetTickCount() - dwStart >= dwMilliseconds)
{ {
::TerminateThread(handle, 0xffffffff); ::TerminateThread(handle, 0xffffffff);
CloseHandle(handle); CloseHandle(handle);
handle = INVALID_HANDLE_VALUE; handle = INVALID_HANDLE_VALUE;
break; break;
} }
if(handle == INVALID_HANDLE_VALUE) if(handle == INVALID_HANDLE_VALUE)
break; break;
rc = GetExitCodeThread(handle, &ec); rc = GetExitCodeThread(handle, &ec);
if(rc && (ec != STILL_ACTIVE)) if(rc && (ec != STILL_ACTIVE))
{ {
CloseHandle(handle); CloseHandle(handle);
handle = INVALID_HANDLE_VALUE; handle = INVALID_HANDLE_VALUE;
break; break;
} }
Sleep(500); Sleep(500);
} }
} }
} }
*/ */
__forceinline void WaitTillThreadExited(HANDLE &handle, DWORD dwMilliseconds = 5000) __forceinline void WaitTillThreadExited(HANDLE &handle, DWORD dwMilliseconds = 5000)
{ {
if(handle == INVALID_HANDLE_VALUE) if (handle == INVALID_HANDLE_VALUE)
return; return;
DWORD ret = ::WaitForSingleObject(handle, dwMilliseconds); DWORD ret = ::WaitForSingleObject(handle, dwMilliseconds);
if(ret != WAIT_OBJECT_0) if (ret != WAIT_OBJECT_0) { //::TerminateThread(handle, 0xffffffff);
{ //::TerminateThread(handle, 0xffffffff);
} }
CloseHandle(handle); CloseHandle(handle);
handle = INVALID_HANDLE_VALUE; handle = INVALID_HANDLE_VALUE;
...@@ -115,17 +112,15 @@ __forceinline void WaitTillThreadExited(HANDLE &handle, DWORD dwMilliseconds = 5 ...@@ -115,17 +112,15 @@ __forceinline void WaitTillThreadExited(HANDLE &handle, DWORD dwMilliseconds = 5
__inline LPTSTR GetModuleFilePath() __inline LPTSTR GetModuleFilePath()
{ {
static TCHAR szPath[MAX_PATH] = {'\0'}; static TCHAR szPath[MAX_PATH] = { '\0' };
if(lstrlen(szPath) != 0) if (lstrlen(szPath) != 0)
return szPath; return szPath;
TCHAR szExe[MAX_PATH]; TCHAR szExe[MAX_PATH];
GetModuleFileName(GetModuleHandle(NULL), szExe, MAX_PATH); GetModuleFileName(GetModuleHandle(NULL), szExe, MAX_PATH);
int len = lstrlen(szExe); int len = lstrlen(szExe);
for(int i = len; i > 0; i--) for (int i = len; i > 0; i--) {
{ if (szExe[i] == '\\') {
if(szExe[i] == '\\')
{
szExe[i] = '\0'; szExe[i] = '\0';
lstrcpy(szPath, szExe); lstrcpy(szPath, szExe);
break; break;
...@@ -143,26 +138,26 @@ __inline LPTSTR GetModuleFilePath() ...@@ -143,26 +138,26 @@ __inline LPTSTR GetModuleFilePath()
//安全删除对话框类堆内存 //安全删除对话框类堆内存
#define SAFEDELETEDLG(pDlg) {\ #define SAFEDELETEDLG(pDlg) {\
if ((pDlg)) {\ if ((pDlg)) {\
if (::IsWindow(pDlg->m_hWnd)) {\ if (::IsWindow(pDlg->m_hWnd)) { \
(pDlg)->DestroyWindow();\ (pDlg)->DestroyWindow(); \
}\ }\
delete (pDlg);\ delete (pDlg); \
(pDlg)=NULL;\ (pDlg) = NULL; \
}\ }\
} }
//关闭核心对象句柄 //关闭核心对象句柄
#define CLOSEHANDLE(h){\ #define CLOSEHANDLE(h){\
if (h != INVALID_HANDLE_VALUE && h != NULL) {\ if (h != INVALID_HANDLE_VALUE && h != NULL) {\
::CloseHandle(h);\ ::CloseHandle(h); \
h = INVALID_HANDLE_VALUE;\ h = INVALID_HANDLE_VALUE; \
}\ }\
} }
#define CLOSESOCKET(s){\ #define CLOSESOCKET(s){\
if(s != INVALID_SOCKET){\ if (s != INVALID_SOCKET) { \
::closesocket(s); \ ::closesocket(s); \
s = INVALID_SOCKET;\ s = INVALID_SOCKET; \
}\ }\
} }
...@@ -179,21 +174,21 @@ __forceinline LPSTR Utf16ToAnsi(const wchar_t * const wSrc) ...@@ -179,21 +174,21 @@ __forceinline LPSTR Utf16ToAnsi(const wchar_t * const wSrc)
{ {
char* pElementText; char* pElementText;
int iTextLen; int iTextLen;
iTextLen = WideCharToMultiByte( CP_ACP, 0, wSrc, -1, NULL,0, NULL, NULL ); iTextLen = WideCharToMultiByte(CP_ACP, 0, wSrc, -1, NULL, 0, NULL, NULL);
pElementText = new char[iTextLen + 1]; pElementText = new char[iTextLen + 1];
memset( ( void* )pElementText, 0, sizeof( char ) * ( iTextLen + 1 ) ); memset((void*)pElementText, 0, sizeof(char)* (iTextLen + 1));
::WideCharToMultiByte( CP_ACP,0,wSrc,-1,pElementText,iTextLen,NULL,NULL); ::WideCharToMultiByte(CP_ACP, 0, wSrc, -1, pElementText, iTextLen, NULL, NULL);
return pElementText; return pElementText;
} }
__forceinline BOOL Utf16ToAnsiUseCharArray(const wchar_t * const wSrc, __forceinline BOOL Utf16ToAnsiUseCharArray(const wchar_t * const wSrc,
char *ansiArr, WORD ansiArrLen) char *ansiArr, DWORD ansiArrLen)
{ {
int iTextLen = WideCharToMultiByte( CP_ACP, 0, wSrc, -1, NULL,0, NULL, NULL ); int iTextLen = WideCharToMultiByte(CP_ACP, 0, wSrc, -1, NULL, 0, NULL, NULL);
if(iTextLen < ansiArrLen){ if (static_cast<DWORD>(iTextLen) < ansiArrLen) {
memset( ( void* )ansiArr, 0, sizeof( char ) * ( iTextLen + 1 ) ); memset((void*)ansiArr, 0, sizeof(char)* (iTextLen + 1));
::WideCharToMultiByte(CP_ACP,0,wSrc,-1,ansiArr,iTextLen,NULL,NULL); ::WideCharToMultiByte(CP_ACP, 0, wSrc, -1, ansiArr, iTextLen, NULL, NULL);
return TRUE; return TRUE;
} }
return FALSE; return FALSE;
...@@ -202,21 +197,21 @@ __forceinline BOOL Utf16ToAnsiUseCharArray(const wchar_t * const wSrc, ...@@ -202,21 +197,21 @@ __forceinline BOOL Utf16ToAnsiUseCharArray(const wchar_t * const wSrc,
__forceinline wchar_t* AnsiToUtf16(PCSTR ansiSrc) __forceinline wchar_t* AnsiToUtf16(PCSTR ansiSrc)
{ {
wchar_t *pWide; wchar_t *pWide;
int iUnicodeLen = ::MultiByteToWideChar( CP_ACP, int iUnicodeLen = ::MultiByteToWideChar(CP_ACP,
0, ansiSrc, -1, NULL, 0); 0, ansiSrc, -1, NULL, 0);
pWide = new wchar_t[iUnicodeLen + 1]; pWide = new wchar_t[iUnicodeLen + 1];
memset(pWide, 0, (iUnicodeLen+1) * sizeof(wchar_t) ); memset(pWide, 0, (iUnicodeLen + 1) * sizeof(wchar_t));
::MultiByteToWideChar( CP_ACP, 0, ansiSrc, -1, (LPWSTR)pWide, iUnicodeLen ); ::MultiByteToWideChar(CP_ACP, 0, ansiSrc, -1, (LPWSTR)pWide, iUnicodeLen);
return pWide; return pWide;
} }
__forceinline BOOL AnsiToUtf16Array(PCSTR ansiSrc, wchar_t* warr, int warr_len) __forceinline BOOL AnsiToUtf16Array(PCSTR ansiSrc, wchar_t* warr, int warr_len)
{ {
int iUnicodeLen = ::MultiByteToWideChar( CP_ACP, int iUnicodeLen = ::MultiByteToWideChar(CP_ACP,
0, ansiSrc, -1, NULL, 0); 0, ansiSrc, -1, NULL, 0);
if(warr_len >= iUnicodeLen){ if (warr_len >= iUnicodeLen) {
memset(warr, 0, (iUnicodeLen+1) * sizeof(wchar_t) ); memset(warr, 0, (iUnicodeLen + 1) * sizeof(wchar_t));
::MultiByteToWideChar( CP_ACP, 0, ansiSrc, -1, (LPWSTR)warr, iUnicodeLen ); ::MultiByteToWideChar(CP_ACP, 0, ansiSrc, -1, (LPWSTR)warr, iUnicodeLen);
return TRUE; return TRUE;
} }
return FALSE; return FALSE;
...@@ -225,11 +220,11 @@ __forceinline BOOL AnsiToUtf16Array(PCSTR ansiSrc, wchar_t* warr, int warr_len) ...@@ -225,11 +220,11 @@ __forceinline BOOL AnsiToUtf16Array(PCSTR ansiSrc, wchar_t* warr, int warr_len)
__forceinline wchar_t* Utf8ToUtf16(PCSTR ansiSrc) __forceinline wchar_t* Utf8ToUtf16(PCSTR ansiSrc)
{ {
wchar_t *pWide; wchar_t *pWide;
int iUnicodeLen = ::MultiByteToWideChar( CP_UTF8, int iUnicodeLen = ::MultiByteToWideChar(CP_UTF8,
0, ansiSrc, -1, NULL, 0); 0, ansiSrc, -1, NULL, 0);
pWide = new wchar_t[iUnicodeLen + 1]; pWide = new wchar_t[iUnicodeLen + 1];
memset(pWide, 0, (iUnicodeLen+1) * sizeof(wchar_t) ); memset(pWide, 0, (iUnicodeLen + 1) * sizeof(wchar_t));
::MultiByteToWideChar( CP_UTF8, 0, ansiSrc, -1, (LPWSTR)pWide, iUnicodeLen ); ::MultiByteToWideChar(CP_UTF8, 0, ansiSrc, -1, (LPWSTR)pWide, iUnicodeLen);
return pWide; return pWide;
} }
...@@ -243,37 +238,37 @@ __inline const char* Utf16ToUtf8(const wchar_t* utf16, int& out_len) ...@@ -243,37 +238,37 @@ __inline const char* Utf16ToUtf8(const wchar_t* utf16, int& out_len)
} }
__inline const char* Utf16ToGbk(const wchar_t* utf16) //__inline const char* Utf16ToGbk(const wchar_t* utf16)
{ //{
//WideCharToMultiByte(CP_GBK) // //WideCharToMultiByte(CP_GBK)
} //}
/* /*
__forceinline CString GetFileVersion() __forceinline CString GetFileVersion()
{ {
int iVerInfoSize; int iVerInfoSize;
char *pBuf; char *pBuf;
CString asVer= _T(""); CString asVer= _T("");
VS_FIXEDFILEINFO *pVsInfo; VS_FIXEDFILEINFO *pVsInfo;
unsigned int iFileInfoSize = sizeof(VS_FIXEDFILEINFO); unsigned int iFileInfoSize = sizeof(VS_FIXEDFILEINFO);
TCHAR fileName[MAX_PATH]; TCHAR fileName[MAX_PATH];
GetModuleFileName(NULL, fileName, MAX_PATH); GetModuleFileName(NULL, fileName, MAX_PATH);
iVerInfoSize = GetFileVersionInfoSize(fileName, NULL); iVerInfoSize = GetFileVersionInfoSize(fileName, NULL);
if(iVerInfoSize != 0){ if(iVerInfoSize != 0){
pBuf = new char[iVerInfoSize]; pBuf = new char[iVerInfoSize];
if(GetFileVersionInfo(fileName, 0, iVerInfoSize, pBuf)){ if(GetFileVersionInfo(fileName, 0, iVerInfoSize, pBuf)){
if(VerQueryValue(pBuf, _T("//"), (void**)&pVsInfo, &iFileInfoSize)){ if(VerQueryValue(pBuf, _T("//"), (void**)&pVsInfo, &iFileInfoSize)){
asVer.Format(_T("%d.%d.%d.%d"), asVer.Format(_T("%d.%d.%d.%d"),
HIWORD(pVsInfo->dwFileVersionMS), HIWORD(pVsInfo->dwFileVersionMS),
LOWORD(pVsInfo->dwFileVersionMS), LOWORD(pVsInfo->dwFileVersionMS),
HIWORD(pVsInfo->dwFileVersionLS), HIWORD(pVsInfo->dwFileVersionLS),
LOWORD(pVsInfo->dwFileVersionLS)); LOWORD(pVsInfo->dwFileVersionLS));
} }
} }
delete pBuf; delete pBuf;
} }
return asVer; return asVer;
} }
*/ */
\ No newline at end of file
//////////////////////////////////////////////////////////
// initsock.hļ
#include <winsock2.h>
#pragma comment(lib, "WS2_32") // ӵWS2_32.lib
class CInitSock
{
public:
CInitSock(BYTE minorVer = 2, BYTE majorVer = 2)
{
// ʼWS2_32.dll
WSADATA wsaData;
WORD sockVersion = MAKEWORD(minorVer, majorVer);
if(::WSAStartup(sockVersion, &wsaData) != 0)
{
ExitProcess(0);
}
}
~CInitSock()
{
::WSACleanup();
}
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment