Commit a6475c9d authored by captainwong's avatar captainwong

ready to ninghai

parent 8b06dd1d
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#endif // _MSC_VER > 1000 #endif // _MSC_VER > 1000
#include <assert.h> #include <assert.h>
#include <mutex>
//#include "dbghlpapi.h" //#include "dbghlpapi.h"
...@@ -35,8 +36,8 @@ namespace jlib ...@@ -35,8 +36,8 @@ namespace jlib
{ {
#define IMPLEMENT_CLASS_LOG_STATIC_MEMBER \ #define IMPLEMENT_CLASS_LOG_STATIC_MEMBER \
CRITICAL_SECTION CLog::m_cs;\ std::mutex CLog::m_cs;\
CLock CLog::m_lockForSingleton;\ std::mutex 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;\
...@@ -71,8 +72,8 @@ namespace jlib ...@@ -71,8 +72,8 @@ namespace jlib
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 std::mutex m_cs;
static CLock m_lockForSingleton; static std::mutex 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;
...@@ -85,12 +86,11 @@ namespace jlib ...@@ -85,12 +86,11 @@ namespace jlib
static CLog* GetInstance() static CLog* GetInstance()
{ {
m_lockForSingleton.Lock(); std::lock_guard<std::mutex> lock(m_lockForSingleton);
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; return CLog::m_pInstance;
} }
...@@ -104,7 +104,7 @@ namespace jlib ...@@ -104,7 +104,7 @@ namespace jlib
OpenDbgview(FALSE); OpenDbgview(FALSE);
if (m_bLogFileOpened) if (m_bLogFileOpened)
CloseLogFile(); CloseLogFile();
DeleteCriticalSection(&m_cs); //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"));
...@@ -146,7 +146,7 @@ namespace jlib ...@@ -146,7 +146,7 @@ namespace jlib
CLog* plog = CLog::GetInstance(); CLog* plog = CLog::GetInstance();
if (plog == NULL) if (plog == NULL)
return; return;
CLocalLock lock(&m_cs); std::lock_guard<std::mutex> 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];
...@@ -176,7 +176,7 @@ namespace jlib ...@@ -176,7 +176,7 @@ namespace jlib
CLog* plog = CLog::GetInstance(); CLog* plog = CLog::GetInstance();
if (plog == NULL) if (plog == NULL)
return; return;
CLocalLock lock(&m_cs); std::lock_guard<std::mutex> 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];
...@@ -206,7 +206,7 @@ namespace jlib ...@@ -206,7 +206,7 @@ namespace jlib
CLog* plog = CLog::GetInstance(); CLog* plog = CLog::GetInstance();
if (plog == NULL) if (plog == NULL)
return; return;
CLocalLock lock(&m_cs); std::lock_guard<std::mutex> lock(m_cs);
if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) { if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
static TCHAR buf[MAX_OUTPUT_LEN], output[MAX_OUTPUT_LEN], *p; static TCHAR buf[MAX_OUTPUT_LEN], output[MAX_OUTPUT_LEN], *p;
p = buf; p = buf;
...@@ -233,7 +233,7 @@ namespace jlib ...@@ -233,7 +233,7 @@ namespace jlib
CLog* plog = CLog::GetInstance(); CLog* plog = CLog::GetInstance();
if (plog == NULL) if (plog == NULL)
return; return;
CLocalLock lock(&m_cs); std::lock_guard<std::mutex> lock(m_cs);
if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) { if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
static wchar_t buf[MAX_OUTPUT_LEN], *p; static wchar_t buf[MAX_OUTPUT_LEN], *p;
p = buf; p = buf;
...@@ -274,7 +274,7 @@ namespace jlib ...@@ -274,7 +274,7 @@ namespace jlib
CLog* plog = CLog::GetInstance(); CLog* plog = CLog::GetInstance();
if (plog == NULL) if (plog == NULL)
return; return;
CLocalLock lock(&m_cs); std::lock_guard<std::mutex> lock(m_cs);
if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) { if (plog->m_bOutputLogFile || plog->m_bOutputDbgView || plog->m_bOutputConsole) {
static char buf[MAX_OUTPUT_LEN], *p; static char buf[MAX_OUTPUT_LEN], *p;
p = buf; p = buf;
...@@ -325,7 +325,7 @@ namespace jlib ...@@ -325,7 +325,7 @@ namespace jlib
wsprintf(out, _T("CLog construction addr: %p\n"), this); wsprintf(out, _T("CLog construction addr: %p\n"), this);
OutputDebugString(out); OutputDebugString(out);
memset(&pi, 0, sizeof(pi)); memset(&pi, 0, sizeof(pi));
InitializeCriticalSection(&m_cs); //InitializeCriticalSection(&m_cs);
} }
LPCTSTR GetAppRunTime() LPCTSTR GetAppRunTime()
......
#pragma once #pragma once
#include <chrono> #include <chrono>
#include <mutex>
#include "utf8.h" #include "utf8.h"
#include "LocalLock.h" //#include "LocalLock.h"
#include "mtverify.h" #include "mtverify.h"
#include "FileOper.h" #include "FileOper.h"
#include "Log.h" #include "Log.h"
...@@ -45,14 +46,13 @@ public: ...@@ -45,14 +46,13 @@ public:
private: \ private: \
class_name(); \ class_name(); \
static class_name* m_pInstance; \ static class_name* m_pInstance; \
static CLock m_lock4Instance; \ static std::mutex m_lock4Instance; \
public: \ public: \
static class_name* GetInstance() { \ static class_name* GetInstance() { \
m_lock4Instance.Lock(); \ std::lock_guard<std::mutex> lock(m_lock4Instance); \
if (m_pInstance == NULL){ \ if (m_pInstance == NULL){ \
m_pInstance = new class_name(); \ m_pInstance = new class_name(); \
} \ } \
m_lock4Instance.UnLock(); \
return m_pInstance; \ return m_pInstance; \
} \ } \
static void ReleaseObject() { \ static void ReleaseObject() { \
...@@ -62,7 +62,7 @@ public: \ ...@@ -62,7 +62,7 @@ public: \
#define IMPLEMENT_SINGLETON(class_name) \ #define IMPLEMENT_SINGLETON(class_name) \
class_name* class_name::m_pInstance = NULL; \ class_name* class_name::m_pInstance = NULL; \
CLock class_name::m_lock4Instance; std::mutex class_name::m_lock4Instance;
// getter & setter // getter & setter
#define DECLARE_GETTER(type, val) \ #define DECLARE_GETTER(type, val) \
...@@ -108,8 +108,8 @@ public: \ ...@@ -108,8 +108,8 @@ public: \
} }
#define DECLARE_GETTER_SETTER_STRING(val) \ #define DECLARE_GETTER_SETTER_STRING(val) \
DECLARE_GETTER_STRING(val); \ DECLARE_GETTER(CString, val); \
DECLARE_SETTER_STRING(val); DECLARE_SETTER(CString, val);
#define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; } #define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; }
......
...@@ -4,27 +4,27 @@ namespace jlib { ...@@ -4,27 +4,27 @@ 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: \
typedef callback _callback; \ typedef callback _callback_type; \
typedef const param_type _param_type; \ typedef const param_type _param_type; \
typedef struct callback##Info { \ typedef struct callback##Info { \
DECLARE_UNCOPYABLE(callback##Info) \ DECLARE_UNCOPYABLE(callback##Info) \
public: \ public: \
callback##Info() : _udata(NULL), _on_result(NULL) {} \ callback##Info() : _udata(NULL), _on_result(NULL) {} \
callback##Info(void* udata, _callback on_result) : _udata(udata), _on_result(on_result) {} \ callback##Info(void* udata, _callback_type on_result) : _udata(udata), _on_result(on_result) {} \
void* _udata; \ void* _udata; \
_callback _on_result; \ _callback_type _on_result; \
}_callbackInfo; \ }_callbackInfo; \
std::list<_callbackInfo *> _observerList; \ std::list<_callbackInfo *> _observerList; \
CLock _lock4ObserverList; \ CLock _lock4ObserverList; \
public: \ public: \
void RegisterObserver(void* udata, _callback cb); \ void RegisterObserver(void* udata, _callback_type cb); \
void UnRegisterObserver(void* udata); \ void UnRegisterObserver(void* udata); \
void NotifyObservers(_param_type param); void NotifyObservers(_param_type param);
// place this macro in your class's cpp file // place this macro in your class's cpp file
#define IMPLEMENT_OBSERVER(class_name) \ #define IMPLEMENT_OBSERVER(class_name) \
void class_name::RegisterObserver(void* udata, _callback cb) \ void class_name::RegisterObserver(void* udata, _callback_type cb) \
{ \ { \
AUTO_LOG_FUNCTION; \ AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \ _lock4ObserverList.Lock(); \
......
...@@ -28,7 +28,23 @@ DEALINGS IN THE SOFTWARE. ...@@ -28,7 +28,23 @@ DEALINGS IN THE SOFTWARE.
#ifndef UTF8_FOR_CPP_2675DCD0_9480_4c0c_B92A_CC14C027B731 #ifndef UTF8_FOR_CPP_2675DCD0_9480_4c0c_B92A_CC14C027B731
#define UTF8_FOR_CPP_2675DCD0_9480_4c0c_B92A_CC14C027B731 #define UTF8_FOR_CPP_2675DCD0_9480_4c0c_B92A_CC14C027B731
#include <string>
#include "utf8/checked.h" #include "utf8/checked.h"
#include "utf8/unchecked.h" #include "utf8/unchecked.h"
namespace utf8 {
inline std::string w2a(const std::wstring& w) {
std::string a;
utf8::utf16to8(w.begin(), w.end(), std::back_inserter(a));
return a;
}
inline std::wstring a2w(const std::string& a) {
std::wstring w;
utf8::utf8to16(a.begin(), a.end(), std::back_inserter(w));
return w;
}
}
#endif // header guard #endif // header guard
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