Commit 318529d8 authored by captainwong's avatar captainwong

update

parent b4c5f6ca
...@@ -31,6 +31,9 @@ ...@@ -31,6 +31,9 @@
//#define TRACE CLog::WriteLog //#define TRACE CLog::WriteLog
//#endif //#endif
namespace jlib
{
#define IMPLEMENT_CLASS_LOG_STATIC_MEMBER \ #define IMPLEMENT_CLASS_LOG_STATIC_MEMBER \
CRITICAL_SECTION CLog::m_cs;\ CRITICAL_SECTION CLog::m_cs;\
CLock CLog::m_lockForSingleton;\ CLock CLog::m_lockForSingleton;\
...@@ -39,477 +42,492 @@ ...@@ -39,477 +42,492 @@
CLog* CLog::m_pInstance = NULL;\ CLog* CLog::m_pInstance = NULL;\
TCHAR CLog::g_szFileName[1024] = { 0 }; TCHAR CLog::g_szFileName[1024] = { 0 };
/* /*
#define TRACEFUNCNAME \ #define TRACEFUNCNAME \
CString str = _T("");\ CString str = _T("");\
INIT_SYM(TRUE);\ INIT_SYM(TRUE);\
str.Format("File %s, line %d, funcname %s\n", __FILE__, __LINE__, __FUNCNAME__);\ str.Format("File %s, line %d, funcname %s\n", __FILE__, __LINE__, __FUNCNAME__);\
OutputDebugString(str);\ OutputDebugString(str);\
UNINIT_SYM();\ UNINIT_SYM();\
*/ */
#define MAX_OUTPUT_LEN (1024 * 64) #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
{ {
private: private:
double exe_time; double exe_time;
LARGE_INTEGER freq; LARGE_INTEGER freq;
LARGE_INTEGER start_t, stop_t; LARGE_INTEGER start_t, stop_t;
BOOL m_bOutputLogFile; BOOL m_bOutputLogFile;
BOOL m_bOutputDbgView; BOOL m_bOutputDbgView;
BOOL m_bOutputConsole; BOOL m_bOutputConsole;
BOOL m_bConsoleOpened; BOOL m_bConsoleOpened;
BOOL m_bDbgviewOpened; BOOL m_bDbgviewOpened;
BOOL m_bLogFileOpened; BOOL m_bLogFileOpened;
BOOL m_bRunning; BOOL m_bRunning;
FILE *m_pLogFile; FILE *m_pLogFile;
PROCESS_INFORMATION pi; PROCESS_INFORMATION pi;
static TCHAR g_szFileName[1024]; 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];
static wchar_t m_utf16Buf[MAX_OUTPUT_LEN]; static wchar_t m_utf16Buf[MAX_OUTPUT_LEN];
static CLog* m_pInstance; static CLog* m_pInstance;
public: public:
static const wchar_t* GetPrivateLogPath(){ static const wchar_t* GetPrivateLogPath()
static wchar_t strPrivateMapFolder[1024] = { 0 }; {
static BOOL b = TRUE; static wchar_t strPrivateMapFolder[1024] = { 0 };
if(b){ static BOOL b = TRUE;
wsprintf(strPrivateMapFolder, _T("%s\\Log"), GetModuleFilePath()); if (b) {
b = FALSE; wsprintf(strPrivateMapFolder, _T("%s\\Log"), GetModuleFilePath());
b = FALSE;
}
return strPrivateMapFolder;
} }
return strPrivateMapFolder;
} static CLog* GetInstance()
{
static CLog* GetInstance(){ m_lockForSingleton.Lock();
m_lockForSingleton.Lock(); if (CLog::m_pInstance == NULL) {
if (CLog::m_pInstance == NULL) { static CLog log;
static CLog log; CLog::m_pInstance = &log;
CLog::m_pInstance = &log; }
m_lockForSingleton.UnLock();
return CLog::m_pInstance;
} }
m_lockForSingleton.UnLock();
return CLog::m_pInstance; ~CLog()
} {
m_bRunning = FALSE;
~CLog(){ //WaitTillThreadExited(m_handle);
m_bRunning = FALSE; if (m_bConsoleOpened)
//WaitTillThreadExited(m_handle); OpenConsole(FALSE);
if(m_bConsoleOpened) if (m_bDbgviewOpened)
OpenConsole(FALSE); OpenDbgview(FALSE);
if(m_bDbgviewOpened) if (m_bLogFileOpened)
OpenDbgview(FALSE); CloseLogFile();
if(m_bLogFileOpened) DeleteCriticalSection(&m_cs);
CloseLogFile();
DeleteCriticalSection(&m_cs);
#ifdef _DEBUG #ifdef _DEBUG
TCHAR buf[1024], out[1024]; TCHAR buf[1024], out[1024];
wsprintf(buf, _T("%s\n"), _T("CLog::~CLog() destruction")); wsprintf(buf, _T("%s\n"), _T("CLog::~CLog() destruction"));
FormatBuf(buf, out, 1024); FormatBuf(buf, out, 1024);
OutputDebugString(out); OutputDebugString(out);
#endif #endif
} }
static void SetOutputLogFileName(LPCTSTR szLastName){ static void SetOutputLogFileName(LPCTSTR szLastName)
lstrcpy(g_szFileName, szLastName); {
} lstrcpy(g_szFileName, szLastName);
}
static void SetOutputConsole(BOOL bFlag){
CLog* plog = CLog::GetInstance(); static void SetOutputConsole(BOOL bFlag)
plog->m_bOutputConsole = bFlag; {
plog->OpenConsole(bFlag);
}
static void SetOutputDbgView(BOOL bFlag){
CLog* plog = CLog::GetInstance();
plog->m_bOutputDbgView = bFlag;
//plog->OpenDbgview(bFlag);
}
static void SetOutputLogFile(BOOL bFlag){
CLog* plog = CLog::GetInstance();
plog->m_bOutputLogFile = bFlag;
if(plog->m_bOutputLogFile && lstrlen(g_szFileName) == 0)
plog->CreateFileName();
}
static void Dump(const char* buff, size_t buff_len)
{
try {
CLog* plog = CLog::GetInstance(); CLog* plog = CLog::GetInstance();
if (plog == NULL) plog->m_bOutputConsole = bFlag;
return; plog->OpenConsole(bFlag);
CLocalLock lock(&m_cs); }
if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
size_t output_len = buff_len * 6 + 64; static void SetOutputDbgView(BOOL bFlag)
wchar_t* output = new wchar_t[output_len]; {
output[0] = 0; CLog* plog = CLog::GetInstance();
wchar_t c[64] = { 0 }; plog->m_bOutputDbgView = bFlag;
swprintf_s(c, L"len %d\n", buff_len); //plog->OpenDbgview(bFlag);
wcscat_s(output, output_len, c); }
for (size_t i = 0; i < buff_len; i++) {
swprintf_s(c, L"%02X ", static_cast<unsigned char>(buff[i])); static void SetOutputLogFile(BOOL bFlag)
{
CLog* plog = CLog::GetInstance();
plog->m_bOutputLogFile = bFlag;
if (plog->m_bOutputLogFile && lstrlen(g_szFileName) == 0)
plog->CreateFileName();
}
static void Dump(const char* buff, size_t buff_len)
{
try {
CLog* plog = CLog::GetInstance();
if (plog == NULL)
return;
CLocalLock lock(&m_cs);
if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
size_t output_len = buff_len * 6 + 64;
wchar_t* output = new wchar_t[output_len];
output[0] = 0;
wchar_t c[64] = { 0 };
swprintf_s(c, L"len %d\n", buff_len);
wcscat_s(output, output_len, c); wcscat_s(output, output_len, c);
if (i > 0 && (i + 1) % 16 == 0) { for (size_t i = 0; i < buff_len; i++) {
wcscat_s(output, output_len, L"\n"); swprintf_s(c, L"%02X ", static_cast<unsigned char>(buff[i]));
wcscat_s(output, output_len, c);
if (i > 0 && (i + 1) % 16 == 0) {
wcscat_s(output, output_len, L"\n");
}
} }
wcscat_s(output, output_len, L"\n");
plog->Output(output);
delete[] output;
} }
wcscat_s(output, output_len, L"\n"); } catch (...) {
plog->Output(output); assert(0);
delete[] output;
} }
} catch (...) {
assert(0);
} }
}
static void DumpAsc(const char* buff, size_t buff_len) static void DumpAsc(const char* buff, size_t buff_len)
{ {
try { try {
CLog* plog = CLog::GetInstance(); CLog* plog = CLog::GetInstance();
if (plog == NULL) if (plog == NULL)
return; return;
CLocalLock lock(&m_cs); CLocalLock lock(&m_cs);
if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) { if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
size_t output_len = buff_len * 6 + 64; size_t output_len = buff_len * 6 + 64;
wchar_t* output = new wchar_t[output_len]; wchar_t* output = new wchar_t[output_len];
output[0] = 0; output[0] = 0;
wchar_t c[64] = { 0 }; wchar_t c[64] = { 0 };
swprintf_s(c, L"len %d\n", buff_len); swprintf_s(c, L"len %d\n", buff_len);
wcscat_s(output, output_len, c);
for (size_t i = 0; i < buff_len; i++) {
swprintf_s(c, L"%C ", static_cast<unsigned char>(buff[i]));
wcscat_s(output, output_len, c); wcscat_s(output, output_len, c);
if (i > 0 && (i + 1) % 16 == 0) { for (size_t i = 0; i < buff_len; i++) {
wcscat_s(output, output_len, L"\n"); swprintf_s(c, L"%C ", static_cast<unsigned char>(buff[i]));
wcscat_s(output, output_len, c);
if (i > 0 && (i + 1) % 16 == 0) {
wcscat_s(output, output_len, L"\n");
}
} }
wcscat_s(output, output_len, L"\n");
plog->Output(output);
delete[] output;
} }
wcscat_s(output, output_len, L"\n"); } catch (...) {
plog->Output(output); assert(0);
delete[] output;
} }
} catch (...) {
assert(0);
} }
}
static void WriteLog(const TCHAR* format, ...) { static void WriteLog(const TCHAR* format, ...)
try{ {
CLog* plog = CLog::GetInstance(); try {
if(plog == NULL) CLog* plog = CLog::GetInstance();
return; if (plog == NULL)
CLocalLock lock(&m_cs); return;
if(plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) { CLocalLock lock(&m_cs);
static TCHAR buf[MAX_OUTPUT_LEN], output[MAX_OUTPUT_LEN], *p; if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
p = buf; static TCHAR buf[MAX_OUTPUT_LEN], output[MAX_OUTPUT_LEN], *p;
va_list args; p = buf;
va_start(args, format); va_list args;
p += _vsntprintf_s(p, sizeof (buf) - 1, sizeof (buf) - 1, format, args); va_start(args, format);
va_end(args); p += _vsntprintf_s(p, sizeof(buf) - 1, sizeof(buf) - 1, format, args);
while ( (p > buf) && _istspace(*(p-1)) ) va_end(args);
*--p = _T('\0'); while ((p > buf) && _istspace(*(p - 1)))
*p++ = _T('\r'); *--p = _T('\0');
*p++ = _T('\n'); *p++ = _T('\r');
*p = _T('\0'); *p++ = _T('\n');
plog->FormatBuf(buf, output); *p = _T('\0');
plog->Output(output); plog->FormatBuf(buf, output);
plog->Output(output);
}
} catch (...) {
assert(0);
} }
} }
catch(...){
assert(0);
}
}
static void WriteLogW(const wchar_t* format, ...) { static void WriteLogW(const wchar_t* format, ...)
try{ {
CLog* plog = CLog::GetInstance(); try {
if(plog == NULL) CLog* plog = CLog::GetInstance();
return; if (plog == NULL)
CLocalLock lock(&m_cs); return;
if(plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) { CLocalLock lock(&m_cs);
static wchar_t buf[MAX_OUTPUT_LEN], *p; if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
p = buf; static wchar_t buf[MAX_OUTPUT_LEN], *p;
va_list args; p = buf;
va_start(args, format); va_list args;
p += _vsnwprintf_s(p, sizeof (buf) - 1, sizeof (buf) - 1, format, args); va_start(args, format);
va_end(args); p += _vsnwprintf_s(p, sizeof(buf) - 1, sizeof(buf) - 1, format, args);
while ( (p > buf) && iswspace(*(p-1)) ) va_end(args);
*--p = '\0'; while ((p > buf) && iswspace(*(p - 1)))
*p++ = '\r'; *--p = '\0';
*p++ = '\n'; *p++ = '\r';
*p = '\0'; *p++ = '\n';
*p = '\0';
#if defined(_UNICODE) || defined(UNICODE) #if defined(_UNICODE) || defined(UNICODE)
wchar_t output[MAX_OUTPUT_LEN]; wchar_t output[MAX_OUTPUT_LEN];
plog->FormatBuf(buf, output); plog->FormatBuf(buf, output);
plog->Output(output);
#else
char output[MAX_OUTPUT_LEN];
if(Utf16ToAnsiUseCharArray(buf, m_ansiBuf, MAX_OUTPUT_LEN)){
plog->FormatBuf(m_ansiBuf, output);
plog->Output(output); plog->Output(output);
}else{ #else
char *ansiOut = Utf16ToAnsi(buf); char output[MAX_OUTPUT_LEN];
plog->FormatBuf(ansiOut, output); if(Utf16ToAnsiUseCharArray(buf, m_ansiBuf, MAX_OUTPUT_LEN)){
plog->Output(output); plog->FormatBuf(m_ansiBuf, output);
SAFEDELETEARR(ansiOut); plog->Output(output);
} }else{
char *ansiOut = Utf16ToAnsi(buf);
plog->FormatBuf(ansiOut, output);
plog->Output(output);
SAFEDELETEARR(ansiOut);
}
#endif #endif
}
} catch (...) {
assert(0);
} }
} }
catch(...){
assert(0);
}
}
static void WriteLogA(const char* format, ...) { static void WriteLogA(const char* format, ...)
try{ {
CLog* plog = CLog::GetInstance(); try {
if(plog == NULL) CLog* plog = CLog::GetInstance();
return; if (plog == NULL)
CLocalLock lock(&m_cs); return;
if(plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) { CLocalLock lock(&m_cs);
static char buf[MAX_OUTPUT_LEN], *p; if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
p = buf; static char buf[MAX_OUTPUT_LEN], *p;
va_list args; p = buf;
va_start(args, format); va_list args;
p += _vsnprintf_s(p, sizeof (buf) - 1, sizeof (buf) - 1, format, args); va_start(args, format);
va_end(args); p += _vsnprintf_s(p, sizeof(buf) - 1, sizeof(buf) - 1, format, args);
while ( (p > buf) && isspace(*(p-1)) ) va_end(args);
*--p = '\0'; while ((p > buf) && _istspace(*(p - 1)))
*p++ = '\r'; *--p = '\0';
*p++ = '\n'; *p++ = '\r';
*p = '\0'; *p++ = '\n';
*p = '\0';
#if defined(_UNICODE) || defined(UNICODE) #if defined(_UNICODE) || defined(UNICODE)
wchar_t output[MAX_OUTPUT_LEN]; wchar_t output[MAX_OUTPUT_LEN];
if(AnsiToUtf16Array(buf, m_utf16Buf, MAX_OUTPUT_LEN)) if (AnsiToUtf16Array(buf, m_utf16Buf, MAX_OUTPUT_LEN)) {
{ plog->FormatBuf(m_utf16Buf, output);
plog->FormatBuf(m_utf16Buf, output); plog->Output(output);
plog->Output(output); } else {
} wchar_t *wBuf = AnsiToUtf16(buf);
else plog->FormatBuf(wBuf, output);
{ plog->Output(output);
wchar_t *wBuf = AnsiToUtf16(buf); SAFEDELETEARR(wBuf);
plog->FormatBuf(wBuf, output); }
plog->Output(output);
SAFEDELETEARR(wBuf);
}
#else #else
char output[MAX_OUTPUT_LEN]; char output[MAX_OUTPUT_LEN];
plog->FormatBuf(buf, output); plog->FormatBuf(buf, output);
plog->Output(output); plog->Output(output);
#endif #endif
}
} catch (...) {
assert(0);
} }
} }
catch(...){
assert(0); protected:
CLog() : m_pLogFile(NULL), m_bOutputLogFile(FALSE), m_bOutputDbgView(FALSE),
m_bOutputConsole(FALSE), m_bConsoleOpened(FALSE), m_bDbgviewOpened(FALSE),
m_bLogFileOpened(FALSE), m_bRunning(TRUE)
{
QueryPerformanceFrequency(&freq);
//OutputDebugString(_T("The frequency of your pc is 0x%X.\n"), freq.QuadPart);
QueryPerformanceCounter(&start_t);
memset(g_szFileName, 0, sizeof(g_szFileName));
TCHAR out[128] = { 0 };
wsprintf(out, _T("CLog construction addr: %p\n"), this);
OutputDebugString(out);
memset(&pi, 0, sizeof(pi));
InitializeCriticalSection(&m_cs);
} }
}
LPCTSTR GetAppRunTime()
protected: {
CLog(): m_pLogFile(NULL), m_bOutputLogFile(FALSE), m_bOutputDbgView(FALSE), static TCHAR szTime[128];
m_bOutputConsole(FALSE), m_bConsoleOpened(FALSE), m_bDbgviewOpened(FALSE), memset(szTime, 0, sizeof szTime);
m_bLogFileOpened(FALSE), m_bRunning(TRUE){
QueryPerformanceFrequency(&freq); QueryPerformanceCounter(&stop_t);
//OutputDebugString(_T("The frequency of your pc is 0x%X.\n"), freq.QuadPart); exe_time = 1e3*(stop_t.QuadPart - start_t.QuadPart) / freq.QuadPart;
QueryPerformanceCounter(&start_t); WORD day, hour, min, sec;
memset(g_szFileName, 0, sizeof(g_szFileName));
TCHAR out[128] = {0}; sec = static_cast<unsigned short>(static_cast<unsigned long>(exe_time / 1000) % 60);
wsprintf(out, _T("CLog construction addr: %p\n"), this); min = static_cast<unsigned short>(static_cast<unsigned long>(exe_time / 1000 / 60) % 60);
OutputDebugString(out); hour = static_cast<unsigned short>((exe_time / 1000 / 60) / 60);
memset(&pi, 0, sizeof(pi)); day = static_cast<unsigned short>(exe_time / 1000.0 / 60.0 / 60.0 / 24);
InitializeCriticalSection(&m_cs);
} double ms = exe_time - (int)(exe_time)+((int)(exe_time) % 1000);
wsprintf(szTime, _T("%dday%02d:%02d:%02ds.%3.6fms"), day, hour, min, sec, ms);
LPCTSTR GetAppRunTime() { return szTime;
static TCHAR szTime[128];
memset(szTime, 0, sizeof szTime);
QueryPerformanceCounter(&stop_t);
exe_time = 1e3*(stop_t.QuadPart-start_t.QuadPart)/freq.QuadPart;
WORD day, hour, min, sec;
sec = static_cast<unsigned short>(static_cast<unsigned long>(exe_time / 1000) % 60);
min = static_cast<unsigned short>(static_cast<unsigned long>(exe_time / 1000 / 60) % 60);
hour = static_cast<unsigned short>((exe_time / 1000 / 60) / 60);
day = static_cast<unsigned short>(exe_time / 1000.0 / 60.0 / 60.0 / 24);
double ms = exe_time - (int)(exe_time) + ((int)(exe_time) % 1000);
wsprintf(szTime, _T("%dday%02d:%02d:%02ds.%3.6fms"), day, hour, min, sec, ms);
return szTime;
}
void Output(const TCHAR *out) {
if(m_bOutputLogFile){
OutputFile(out);
} }
void Output(const TCHAR *out)
{
if (m_bOutputLogFile) {
OutputFile(out);
}
#ifdef _DEBUG #ifdef _DEBUG
OutputDebugString(out);
#else
if(m_bOutputDbgView){
OutputDebugString(out); OutputDebugString(out);
} #else
if(m_bOutputDbgView){
OutputDebugString(out);
}
#endif #endif
if(m_bOutputConsole){ if (m_bOutputConsole) {
_tprintf(out); _tprintf(out);
}
} }
}
DWORD FormatBuf(const TCHAR *oldBuf, TCHAR *newBuf, DWORD 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);
GetLocalTime(&st); GetLocalTime(&st);
wsprintf(sztime, _T("HB %04d-%02d-%02d-w%d %02d:%02d:%02d.%03d ---- "), wsprintf(sztime, _T("HB %04d-%02d-%02d-w%d %02d:%02d:%02d.%03d ---- "),
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(static_cast<DWORD>(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<DWORD>(lstrlen(newBuf));
} }
return static_cast<DWORD>(lstrlen(newBuf));
} void OutputFile(const TCHAR *buf)
{
void OutputFile(const TCHAR *buf){ if (m_pLogFile == NULL)
if(m_pLogFile == NULL)
m_pLogFile = OpenLogFile();
if(m_pLogFile != NULL){
fseek(m_pLogFile, 0, SEEK_END);
long filelen = ftell(m_pLogFile);
if(filelen >= MAX_FILE_LEN){
fclose(m_pLogFile);
CreateFileName();
m_pLogFile = OpenLogFile(); m_pLogFile = OpenLogFile();
if (m_pLogFile != NULL) {
fseek(m_pLogFile, 0, SEEK_END);
long filelen = ftell(m_pLogFile);
if (filelen >= MAX_FILE_LEN) {
fclose(m_pLogFile);
CreateFileName();
m_pLogFile = OpenLogFile();
}
} }
} if (m_pLogFile != NULL) {
if(m_pLogFile != NULL){ fseek(m_pLogFile, 0, SEEK_END);
fseek(m_pLogFile, 0, SEEK_END);
#if defined(_UNICODE) || defined(UNICODE) #if defined(_UNICODE) || defined(UNICODE)
if(Utf16ToAnsiUseCharArray(buf, m_ansiBuf, MAX_OUTPUT_LEN)){ if (Utf16ToAnsiUseCharArray(buf, m_ansiBuf, MAX_OUTPUT_LEN)) {
fwrite(m_ansiBuf, 1, strlen(m_ansiBuf), m_pLogFile); fwrite(m_ansiBuf, 1, strlen(m_ansiBuf), m_pLogFile);
}else{ } else {
char *ansiOut = Utf16ToAnsi(buf); char *ansiOut = Utf16ToAnsi(buf);
fwrite(ansiOut, 1, strlen(ansiOut), m_pLogFile); fwrite(ansiOut, 1, strlen(ansiOut), m_pLogFile);
SAFEDELETEARR(ansiOut); SAFEDELETEARR(ansiOut);
} }
#else #else
fwrite(buf, 1, strlen(buf), m_pLogFile); fwrite(buf, 1, strlen(buf), m_pLogFile);
#endif #endif
fflush(m_pLogFile); fflush(m_pLogFile);
}
} }
}
BOOL OpenDbgview(BOOL bOpen)
BOOL OpenDbgview(BOOL bOpen){ {
static STARTUPINFO si; static STARTUPINFO si;
static LPCTSTR lpszAppName = _T("dbgview.exe"); static LPCTSTR lpszAppName = _T("dbgview.exe");
if(bOpen){ if (bOpen) {
if(!m_bDbgviewOpened){ if (!m_bDbgviewOpened) {
memset(&si,0,sizeof(STARTUPINFO)); memset(&si, 0, sizeof(STARTUPINFO));
si.cb = sizeof(STARTUPINFO); si.cb = sizeof(STARTUPINFO);
si.dwFlags = STARTF_USESHOWWINDOW; si.dwFlags = STARTF_USESHOWWINDOW;
si.wShowWindow = SW_SHOW; si.wShowWindow = SW_SHOW;
if(CreateProcess(lpszAppName,NULL,NULL,NULL,FALSE,0,NULL,NULL,&si,&pi)) { if (CreateProcess(lpszAppName, NULL, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) {
m_bDbgviewOpened = TRUE; m_bDbgviewOpened = TRUE;
}
} }
} else if (m_bDbgviewOpened) {
CloseHandle(pi.hThread);
CloseHandle(pi.hProcess);
m_bDbgviewOpened = FALSE;
} }
}else if(m_bDbgviewOpened){
CloseHandle(pi.hThread); return bOpen ? m_bDbgviewOpened : !m_bDbgviewOpened;
CloseHandle(pi.hProcess);
m_bDbgviewOpened = FALSE;
} }
return bOpen ? m_bDbgviewOpened : !m_bDbgviewOpened; FILE* OpenLogFile()
} {
FILE *pfile = NULL;
FILE* OpenLogFile(){ _tfopen_s(&pfile, g_szFileName, _T("r"));
FILE *pfile = NULL; if (pfile == NULL) {
_tfopen_s(&pfile, g_szFileName, _T("r")); _tfopen_s(&pfile, g_szFileName, _T("wb"));
if(pfile == NULL){ if (pfile == NULL) {
_tfopen_s(&pfile, g_szFileName, _T("wb")); MessageBox(NULL, _T("Create log file failed."), NULL, 0);
if(pfile == NULL){ ASSERT(0);
MessageBox(NULL, _T("Create log file failed."), NULL, 0); return NULL;
ASSERT(0); }
return NULL; } else {
} fclose(pfile);
}else{ _tfopen_s(&pfile, g_szFileName, _T("ab"));
fclose(pfile); if (pfile == NULL) {
_tfopen_s(&pfile, g_szFileName, _T("ab")); MessageBox(NULL, _T("Open log file failed."), NULL, 0);
if(pfile == NULL){ ASSERT(0);
MessageBox(NULL, _T("Open log file failed."), NULL, 0); return NULL;
ASSERT(0); }
return NULL;
} }
if (pfile != NULL)
m_bLogFileOpened = TRUE;
return pfile;
}
void CreateFileName()
{
SYSTEMTIME st;
GetLocalTime(&st);
const wchar_t* path = GetPrivateLogPath();
CreateDirectory(path, NULL);
wchar_t exe[1024] = { 0 };
GetModuleFileName(NULL, exe, 1023);
wsprintf(g_szFileName, _T("%s\\%s-%04d-%02d-%02d-w%d-%02d-%02d-%02d"),
path, CFileOper::GetFileNameFromPathName(exe),
st.wYear, st.wMonth, st.wDay,
(st.wDayOfWeek != 0) ? st.wDayOfWeek : 7,
st.wHour, st.wMinute, st.wSecond);
lstrcat(g_szFileName, _T(".log"));
} }
if(pfile != NULL)
m_bLogFileOpened = TRUE; void CloseLogFile()
return pfile; {
} if (m_pLogFile != NULL) {
fflush(m_pLogFile);
void CreateFileName(){ fclose(m_pLogFile);
SYSTEMTIME st; m_pLogFile = NULL;
GetLocalTime(&st); }
const wchar_t* path = GetPrivateLogPath();
CreateDirectory(path, NULL);
wchar_t exe[1024] = { 0 };
GetModuleFileName(NULL, exe, 1023);
wsprintf(g_szFileName, _T("%s\\%s-%04d-%02d-%02d-w%d-%02d-%02d-%02d"),
path, CFileOper::GetFileNameFromPathName(exe),
st.wYear, st.wMonth, st.wDay,
(st.wDayOfWeek != 0) ? st.wDayOfWeek : 7,
st.wHour, st.wMinute, st.wSecond);
lstrcat(g_szFileName, _T(".log"));
}
void CloseLogFile(){
if(m_pLogFile != NULL){
fflush(m_pLogFile);
fclose(m_pLogFile);
m_pLogFile = NULL;
} }
}
BOOL OpenConsole(BOOL bOpen)
BOOL OpenConsole(BOOL bOpen){ {
static FILE *pConsole = NULL; static FILE *pConsole = NULL;
if(bOpen){ if (bOpen) {
if(!m_bConsoleOpened){ if (!m_bConsoleOpened) {
if(AllocConsole()){ if (AllocConsole()) {
SetConsoleTitle(_T("output")); SetConsoleTitle(_T("output"));
/*COORD coord; /*COORD coord;
coord.X = 120; coord.X = 120;
coord.Y = 60; coord.Y = 60;
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE); HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
FillConsoleOutputAttribute(hStdOut, FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE, FillConsoleOutputAttribute(hStdOut, FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE,
120, coord, NULL); 120, coord, NULL);
SetConsoleScreenBufferSize(hStdOut, coord); SetConsoleScreenBufferSize(hStdOut, coord);
SMALL_RECT se; SMALL_RECT se;
se.Left = 0; se.Left = 0;
se.Top = 0; se.Top = 0;
se.Right = 100; se.Right = 100;
se.Bottom = 100; se.Bottom = 100;
SetConsoleWindowInfo(hStdOut, FALSE, &se); SetConsoleWindowInfo(hStdOut, FALSE, &se);
*/ */
_tfreopen_s(&pConsole, _T("CONOUT$"), _T("w"), stdout); _tfreopen_s(&pConsole, _T("CONOUT$"), _T("w"), stdout);
m_bConsoleOpened = TRUE; m_bConsoleOpened = TRUE;
}
} }
} return m_bConsoleOpened;
return m_bConsoleOpened; } else {
}else{ if (m_bConsoleOpened) {
if(m_bConsoleOpened){ fclose(pConsole);
fclose(pConsole); if (FreeConsole()) {
if(FreeConsole()){ m_bConsoleOpened = FALSE;
m_bConsoleOpened = FALSE; }
} }
return !m_bConsoleOpened;
} }
return !m_bConsoleOpened;
} }
}
LPCTSTR GetLastTimeLogFileName(){ LPCTSTR GetLastTimeLogFileName()
return g_szFileName; {
} return g_szFileName;
}; }
};
};
//CRITICAL_SECTION CLog::m_cs; //CRITICAL_SECTION CLog::m_cs;
//int CLog::m_nRef = 0; //int CLog::m_nRef = 0;
//char CLog::m_ansiBuf[MAX_OUTPUT_LEN] = {0}; //char CLog::m_ansiBuf[MAX_OUTPUT_LEN] = {0};
......
#pragma once #pragma once
namespace jlib
inline wchar_t* FormatWSAError(int errornumber)
{ {
switch (errornumber) { inline wchar_t* FormatWSAError(int errornumber)
case WSANOTINITIALISED: {
return L"A successful WSAStartup call must occur before using this function. "; switch (errornumber) {
break; case WSANOTINITIALISED:
case WSAENETDOWN: return L"A successful WSAStartup call must occur before using this function. ";
return L"The network subsystem has failed. "; break;
break; case WSAENETDOWN:
case WSAEACCES: return L"The network subsystem has failed. ";
return L"The requested address is a broadcast address, but the appropriate flag was not set. Call setsockopt with the SO_BROADCAST parameter to allow the use of the broadcast address. "; break;
break; case WSAEACCES:
case WSAEINVAL: return L"The requested address is a broadcast address, but the appropriate flag was not set. Call setsockopt with the SO_BROADCAST parameter to allow the use of the broadcast address. ";
return L"An unknown flag was specified, or MSG_OOB was specified for a socket with SO_OOBINLINE enabled. "; break;
break; case WSAEINVAL:
case WSAEINTR: return L"An unknown flag was specified, or MSG_OOB was specified for a socket with SO_OOBINLINE enabled. ";
return L"A blocking Windows Sockets 1.1 call was canceled through WSACancelBlockingCall. "; break;
break; case WSAEINTR:
case WSAEINPROGRESS: return L"A blocking Windows Sockets 1.1 call was canceled through WSACancelBlockingCall. ";
return L"A blocking Windows Sockets 1.1 call is in progress, or the service provider is still processing a callback function. "; break;
break; case WSAEINPROGRESS:
case WSAEFAULT: return L"A blocking Windows Sockets 1.1 call is in progress, or the service provider is still processing a callback function. ";
return L"The buf or to parameters are not part of the user address space, or the tolen parameter is too small. "; break;
break; case WSAEFAULT:
case WSAENETRESET: return L"The buf or to parameters are not part of the user address space, or the tolen parameter is too small. ";
return L"The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. "; break;
break; case WSAENETRESET:
case WSAENOBUFS: return L"The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. ";
return L"No buffer space is available. "; break;
break; case WSAENOBUFS:
case WSAENOTCONN: return L"No buffer space is available. ";
return L"The socket is not connected (connection-oriented sockets only. "; break;
break; case WSAENOTCONN:
case WSAENOTSOCK: return L"The socket is not connected (connection-oriented sockets only. ";
return L"The descriptor is not a socket. "; break;
break; case WSAENOTSOCK:
case WSAEOPNOTSUPP: return L"The descriptor is not a socket. ";
return L"MSG_OOB was specified, but the socket is not stream-style such as type SOCK_STREAM, OOB data is not supported in the communication domain associated with this socket, or the socket is unidirectional and supports only receive operations. "; break;
break; case WSAEOPNOTSUPP:
case WSAESHUTDOWN: return L"MSG_OOB was specified, but the socket is not stream-style such as type SOCK_STREAM, OOB data is not supported in the communication domain associated with this socket, or the socket is unidirectional and supports only receive operations. ";
return L"The socket has been shut down; it is not possible to sendto on a socket after shutdown has been invoked with how set to SD_SEND or SD_BOTH. "; break;
break; case WSAESHUTDOWN:
case WSAEWOULDBLOCK: return L"The socket has been shut down; it is not possible to sendto on a socket after shutdown has been invoked with how set to SD_SEND or SD_BOTH. ";
return L"The socket is marked as nonblocking and the requested operation would block. "; break;
break; case WSAEWOULDBLOCK:
case WSAEMSGSIZE: return L"The socket is marked as nonblocking and the requested operation would block. ";
return L"The socket is message oriented, and the message is larger than the maximum supported by the underlying transport. "; break;
break; case WSAEMSGSIZE:
case WSAEHOSTUNREACH: return L"The socket is message oriented, and the message is larger than the maximum supported by the underlying transport. ";
return L"The remote host cannot be reached from this host at this time. "; break;
break; case WSAEHOSTUNREACH:
case WSAECONNABORTED: return L"The remote host cannot be reached from this host at this time. ";
return L"The virtual circuit was terminated due to a time-out or other failure. The application should close the socket as it is no longer usable. "; break;
break; case WSAECONNABORTED:
case WSAECONNRESET: return L"The virtual circuit was terminated due to a time-out or other failure. The application should close the socket as it is no longer usable. ";
return L"The virtual circuit was reset by the remote side executing a hard or abortive close. For UPD sockets, the remote host was unable to deliver a previously sent UDP datagram and responded with a \"Port Unreachable\" ICMP packet. The application should close the socket as it is no longer usable. "; break;
break; case WSAECONNRESET:
case WSAEADDRNOTAVAIL: return L"The virtual circuit was reset by the remote side executing a hard or abortive close. For UPD sockets, the remote host was unable to deliver a previously sent UDP datagram and responded with a \"Port Unreachable\" ICMP packet. The application should close the socket as it is no longer usable. ";
return L"The remote address is not a valid address, for example, ADDR_ANY. "; break;
break; case WSAEADDRNOTAVAIL:
case WSAEAFNOSUPPORT: return L"The remote address is not a valid address, for example, ADDR_ANY. ";
return L"Addresses in the specified family cannot be used with this socket. "; break;
break; case WSAEAFNOSUPPORT:
case WSAEDESTADDRREQ: return L"Addresses in the specified family cannot be used with this socket. ";
return L"A destination address is required. "; break;
break; case WSAEDESTADDRREQ:
case WSAENETUNREACH: return L"A destination address is required. ";
return L"The network cannot be reached from this host at this time. "; break;
break; case WSAENETUNREACH:
case WSAETIMEDOUT: return L"The network cannot be reached from this host at this time. ";
return L"The connection has been dropped, because of a network failure or because the system on the other end went down without notice. "; break;
break; case WSAETIMEDOUT:
default:{ return L"The connection has been dropped, because of a network failure or because the system on the other end went down without notice. ";
static wchar_t buf[1024] = { 0 }; break;
swprintf_s(buf, L"Unknown socket error %d.", errornumber); default:{
return buf; static wchar_t buf[1024] = { 0 };
}break; swprintf_s(buf, L"Unknown socket error %d.", errornumber);
return buf;
}break;
}
} }
}
\ No newline at end of file };
...@@ -6,26 +6,27 @@ ...@@ -6,26 +6,27 @@
#include "mtverify.h" #include "mtverify.h"
#include "FileOper.h" #include "FileOper.h"
#include "Log.h" #include "Log.h"
#define LOG CLog::WriteLog #include "MyWSAError.h"
#define LOGA CLog::WriteLogA #include "observer_macro.h"
#define LOGW CLog::WriteLogW
#define LOGB(b, l) CLog::Dump(b, l) namespace jlib {
#define LOGASC(b, l) CLog::DumpAsc(b, l) #define JLOG CLog::WriteLog
#define JLOGA CLog::WriteLogA
#define JLOGW CLog::WriteLogW
#define JLOGB(b, l) CLog::Dump(b, l)
#define JLOGASC(b, l) CLog::DumpAsc(b, l)
class LogFunction { class LogFunction {
private: private:
const char* _func_name; const char* _func_name;
public: public:
LogFunction(const char* func_name) : _func_name(func_name) { LOGA("%s in\n", _func_name); } LogFunction(const char* func_name) : _func_name(func_name) { JLOGA("%s in\n", _func_name); }
~LogFunction() { LOGA("%s out\n", _func_name); } ~LogFunction() { JLOGA("%s out\n", _func_name); }
}; };
#define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name); #define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name);
#define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__) #define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__)
#include "MyWSAError.h"
#include "observer_macro.h"
#define NAMESPACE_END }; #define NAMESPACE_END };
#define DECLARE_UNCOPYABLE(classname) \ #define DECLARE_UNCOPYABLE(classname) \
...@@ -105,3 +106,5 @@ public: \ ...@@ -105,3 +106,5 @@ public: \
#define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; } #define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; }
};
#pragma once
namespace jlib {
// place this macro in your class's header file, in your class's definition // place this macro in your class's header file, in your class's definition
#define DECLARE_OBSERVER(callback, param_type) \ #define DECLARE_OBSERVER(callback, param_type) \
protected: \ protected: \
...@@ -70,7 +72,7 @@ void class_name::NotifyObservers(_param_type param) \ ...@@ -70,7 +72,7 @@ void class_name::NotifyObservers(_param_type param) \
_observerList.clear(); \ _observerList.clear(); \
} }
};
\ No newline at end of file
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