Commit a6475c9d authored by captainwong's avatar captainwong

ready to ninghai

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