Commit 37046691 authored by captainwong's avatar captainwong

use template refactor singleton pattern ok

parent ddbe329f
This diff is collapsed.
#pragma once
#ifdef WIN32
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
#include <Windows.h>
#endif
......@@ -43,6 +45,7 @@ class log : private boost::noncopyable
private:
bool log_to_file_ = false;
bool log_to_dbg_view_ = true;
bool log_to_console_ = true;
bool running_ = false;
std::ofstream log_file_;
std::string log_file_foler_ = "";
......@@ -56,6 +59,8 @@ public:
void set_line_prifix(const std::string& prefix) { line_prefix_ = prefix; }
void set_output_to_dbg_view(bool b = true) { log_to_dbg_view_ = b; }
void set_output_to_console(bool b = true) { log_to_console_ = b; }
void set_log_file_foler(const std::string& folder_path) { log_file_foler_ = folder_path.empty() ? "" : folder_path + "\\"; }
......@@ -102,7 +107,7 @@ public:
try {
log* instance = log::get_instance();
if (instance->log_to_file_ || instance->log_to_dbg_view_) {
if (instance->log_to_file_ || instance->log_to_dbg_view_ || instance->log_to_console_) {
size_t output_len = buff_len * 6 + 64;
std::unique_ptr<char[]> output = std::unique_ptr<char[]>(new char[output_len]);
output[0] = 0;
......@@ -129,7 +134,7 @@ public:
try {
log* instance = log::get_instance();
if (instance->log_to_file_ || instance->log_to_dbg_view_) {
if (instance->log_to_file_ || instance->log_to_dbg_view_ || instance->log_to_console_) {
size_t output_len = buff_len * 6 + 64;
std::unique_ptr<char[]> output = std::unique_ptr<char[]>(new char[output_len]);
output[0] = 0;
......@@ -156,7 +161,7 @@ public:
try {
log* instance = log::get_instance();
if (instance->log_to_file_ || instance->log_to_dbg_view_) {
if (instance->log_to_file_ || instance->log_to_dbg_view_ || instance->log_to_console_) {
wchar_t buf[max_output_size], *p;
p = buf;
va_list args;
......@@ -183,6 +188,10 @@ public:
std::printf(msg.c_str());
#endif
}
if (instance->log_to_console_) {
std::wprintf(L"%s", buf);
}
}
} catch (...) {
assert(0);
......@@ -194,7 +203,7 @@ public:
try {
log* instance = log::get_instance();
if (instance->log_to_file_ || instance->log_to_dbg_view_) {
if (instance->log_to_file_ || instance->log_to_dbg_view_ || instance->log_to_console_) {
char buf[max_output_size], *p;
p = buf;
va_list args;
......@@ -251,6 +260,10 @@ protected:
if (log_to_dbg_view_) {
output_to_dbg_view(msg);
}
if (log_to_console_) {
std::printf(msg.c_str());
}
}
void output_to_log_file(const std::string& msg) {
......@@ -269,13 +282,13 @@ protected:
if (log_file_.is_open()) {
log_file_.write(msg.c_str(), msg.size());
log_file_.flush();
}
}
void output_to_dbg_view(const std::string& msg) {
#ifdef WIN32
USES_CONVERSION;
OutputDebugStringW(A2W(msg.c_str()));
OutputDebugStringA(msg.c_str());
#else
std::printf(msg.c_str());
#endif
......@@ -286,22 +299,24 @@ protected:
};
class LogFunction {
class log_function {
private:
const char* func_name_;
std::chrono::steady_clock::time_point begin_;
public:
LogFunction(const char* func_name) : func_name_(func_name) {
log_function(const char* func_name) : func_name_(func_name) {
JLOGA("%s in\n", func_name_); begin_ = std::chrono::steady_clock::now();
}
~LogFunction() {
~log_function() {
auto diff = std::chrono::steady_clock::now() - begin_;
auto msec = std::chrono::duration_cast<std::chrono::milliseconds>(diff);
JLOGA("%s out, duration: %d(ms)\n", func_name_, msec.count());
}
};
#define LOG_FUNCTION(func_name) jlib::LogFunction __log_function_object__(func_name);
#define LOG_FUNCTION(func_name) jlib::log_function __log_function_object__(func_name);
#define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__);
class range_log
......
......@@ -22,6 +22,20 @@ inline std::string time_point_to_string(const std::chrono::system_clock::time_po
return ss.str();
}
inline std::wstring time_point_to_wstring(const std::chrono::system_clock::time_point& tp, bool with_milliseconds = false)
{
std::wstringstream ss;
auto t = std::chrono::system_clock::to_time_t(tp);
std::tm* tm = std::localtime(&t);
ss << std::put_time(tm, L"%Y-%m-%d %H:%M:%S");
if (with_milliseconds) {
auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(tp.time_since_epoch());
auto millis = ms.count() % 1000;
ss << L'.' << std::setw(3) << std::setfill(L'0') << millis;
}
return ss.str();
}
inline std::chrono::system_clock::time_point string_to_time_point(const std::string& s)
{
std::tm tm = { 0 };
......@@ -30,11 +44,24 @@ inline std::chrono::system_clock::time_point string_to_time_point(const std::str
return std::chrono::system_clock::from_time_t(std::mktime(&tm));
}
inline std::chrono::system_clock::time_point wstring_to_time_point(const std::wstring& s)
{
std::tm tm = { 0 };
std::wistringstream ss(s);
ss >> std::get_time(&tm, L"%Y-%m-%d %H:%M:%S");
return std::chrono::system_clock::from_time_t(std::mktime(&tm));
}
inline std::string now_to_string(bool with_milliseconds = false)
{
return time_point_to_string(std::chrono::system_clock::now(), with_milliseconds);
}
inline std::wstring now_to_wstring(bool with_milliseconds = false)
{
return time_point_to_wstring(std::chrono::system_clock::now(), with_milliseconds);
}
......
......@@ -8,8 +8,10 @@
#include "chrono_wrapper.h"
#include "MyWSAError.h"
//#include "observer_macro.h"
#include "observer.h"
#include "micro_getter_setter.h"
#include "micro_singleton.h"
//#include "micro_singleton.h"
#include "singleton.h"
namespace jlib {
......@@ -22,6 +24,15 @@ inline std::wstring get_exe_path()
}
inline std::string get_exe_path_a()
{
char path[1024] = { 0 };
GetModuleFileNameA(nullptr, path, 1024);
std::string::size_type pos = std::string(path).find_last_of("\\/");
return std::string(path).substr(0, pos);
}
class auto_timer : public boost::noncopyable
{
private:
......
#pragma once
#define DECLARE_SINGLETON(class_name) \
private: \
class_name(); \
static class_name* m_pInstance; \
static std::mutex m_lock4Instance; \
public: \
static class_name* GetInstance() { \
std::lock_guard<std::mutex> lock(m_lock4Instance); \
if (m_pInstance == NULL){ \
m_pInstance = new class_name(); \
} \
return m_pInstance; \
} \
static void ReleaseObject() { \
if (m_pInstance) { delete m_pInstance; m_pInstance = NULL; } \
}
#define IMPLEMENT_SINGLETON(class_name) \
class_name* class_name::m_pInstance = NULL; \
std::mutex class_name::m_lock4Instance;
#pragma once
#include <memory>
#include <list>
#include <mutex>
#include <boost/noncopyable.hpp>
namespace dp {
template <typename target>
class observer : public std::enable_shared_from_this<observer<target>>
{
public:
virtual void on_update(const target&) = 0;
};
template <typename target>
class observable : public boost::noncopyable
{
public:
typedef observer<target> observer_type;
typedef std::weak_ptr<observer_type> observer_ptr;
typedef std::lock_guard<std::mutex> lock_guard_type;
protected:
mutable std::mutex _mutex;
std::list<observer_ptr> _observers;
public:
void register_observer(const observer_ptr& obj) {
lock_guard_type lock(_mutex);
_observers.push_back(obj);
}
void notify_observers(const target& target) {
lock_guard_type lock(_mutex);
auto iter = _observers.begin();
while (iter != _observers.end()) {
std::shared_ptr<observer_type> obj(iter->lock());
if (obj) {
obj->on_update(target);
++iter;
} else {
iter = _observers.erase(iter);
}
}
}
};
};
#pragma once
class CLocalLock
{
public:
CLocalLock(LPCRITICAL_SECTION lpCriticalSection)
:m_lpCriticalSection(lpCriticalSection)
{
EnterCriticalSection(m_lpCriticalSection);
}
~CLocalLock()
{
LeaveCriticalSection(m_lpCriticalSection);
}
private:
LPCRITICAL_SECTION m_lpCriticalSection;
};
class CLock
{
public:
/*CLock(PCRITICAL_SECTION cs) : m_cs(cs), bNullInit(FALSE)
{
if (m_cs == NULL) {
bNullInit = TRUE;
m_cs = new CRITICAL_SECTION();
}
InitializeCriticalSection(m_cs);
}*/
CLock()/* : m_cs(NULL), bNullInit(FALSE)*/
{
/*if (m_cs == NULL) {
m_cs = new CRITICAL_SECTION();
}*/
InitializeCriticalSection(&m_cs);
}
~CLock()
{
DeleteCriticalSection(&m_cs);
/*if (bNullInit) {
delete m_cs;
}*/
}
void Lock()
{
EnterCriticalSection(&m_cs);
}
void UnLock()
{
LeaveCriticalSection(&m_cs);
}
BOOL TryLock()
{
return ::TryEnterCriticalSection(&m_cs);
}
LPCRITICAL_SECTION GetLockObject() { return &m_cs; }
private:
CRITICAL_SECTION m_cs;
//BOOL bNullInit;
};
#pragma once
class CLocalLock
{
public:
CLocalLock(LPCRITICAL_SECTION lpCriticalSection)
:m_lpCriticalSection(lpCriticalSection)
{
EnterCriticalSection(m_lpCriticalSection);
}
~CLocalLock()
{
LeaveCriticalSection(m_lpCriticalSection);
}
private:
LPCRITICAL_SECTION m_lpCriticalSection;
};
class CLock
{
public:
/*CLock(PCRITICAL_SECTION cs) : m_cs(cs), bNullInit(FALSE)
{
if (m_cs == NULL) {
bNullInit = TRUE;
m_cs = new CRITICAL_SECTION();
}
InitializeCriticalSection(m_cs);
}*/
CLock()/* : m_cs(NULL), bNullInit(FALSE)*/
{
/*if (m_cs == NULL) {
m_cs = new CRITICAL_SECTION();
}*/
InitializeCriticalSection(&m_cs);
}
~CLock()
{
DeleteCriticalSection(&m_cs);
/*if (bNullInit) {
delete m_cs;
}*/
}
void Lock()
{
EnterCriticalSection(&m_cs);
}
void UnLock()
{
LeaveCriticalSection(&m_cs);
}
BOOL TryLock()
{
return ::TryEnterCriticalSection(&m_cs);
}
LPCRITICAL_SECTION GetLockObject() { return &m_cs; }
private:
CRITICAL_SECTION m_cs;
//BOOL bNullInit;
};
#pragma once
#define DECLARE_SINGLETON(class_name) \
private: \
class_name(); \
static class_name* instance_for_singleton_; \
static std::mutex mutex_for_singleton_; \
public: \
static class_name* get_instance() { \
std::lock_guard<std::mutex> lock(mutex_for_singleton_); \
if (instance_for_singleton_ == nullptr) { \
instance_for_singleton_ = new class_name(); \
} \
return instance_for_singleton_; \
} \
static void release_singleton_object()() { \
if (instance_for_singleton_) { delete instance_for_singleton_; instance_for_singleton_ = nullptr; } \
}
#define IMPLEMENT_SINGLETON(class_name) \
class_name* class_name::instance_for_singleton_ = nullptr; \
std::mutex class_name::mutex_for_singleton_;
#pragma once
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_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_type on_result) : _udata(udata), _on_result(on_result) {} \
void* _udata; \
_callback_type _on_result; \
}_callbackInfo; \
std::list<_callbackInfo *> _observerList; \
CLock _lock4ObserverList; \
public: \
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_type cb) \
{ \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \
_callbackInfo *observer = new _callbackInfo(udata, cb); \
_observerList.push_back(observer); \
_lock4ObserverList.UnLock(); \
} \
void class_name::UnRegisterObserver(void* udata) \
{ \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \
_callbackInfo* observer = *iter; \
if (observer->_udata == udata) { \
delete observer; \
_observerList.erase(iter); \
break; \
} \
iter++; \
} \
_lock4ObserverList.UnLock(); \
} \
void class_name::NotifyObservers(_param_type param) \
{ \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \
_callbackInfo * observer = *iter++; \
observer->_on_result(observer->_udata, param); \
} \
_lock4ObserverList.UnLock(); \
}
// place this macro in your class's destruct function.
#define DESTROY_OBSERVER \
{ \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \
_callbackInfo * observer = *iter++; \
delete observer; \
} \
_observerList.clear(); \
}
};
#pragma once
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_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_type on_result) : _udata(udata), _on_result(on_result) {} \
void* _udata; \
_callback_type _on_result; \
}_callbackInfo; \
std::list<_callbackInfo *> _observerList; \
CLock _lock4ObserverList; \
public: \
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_type cb) \
{ \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \
_callbackInfo *observer = new _callbackInfo(udata, cb); \
_observerList.push_back(observer); \
_lock4ObserverList.UnLock(); \
} \
void class_name::UnRegisterObserver(void* udata) \
{ \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \
_callbackInfo* observer = *iter; \
if (observer->_udata == udata) { \
delete observer; \
_observerList.erase(iter); \
break; \
} \
iter++; \
} \
_lock4ObserverList.UnLock(); \
} \
void class_name::NotifyObservers(_param_type param) \
{ \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \
_callbackInfo * observer = *iter++; \
observer->_on_result(observer->_udata, param); \
} \
_lock4ObserverList.UnLock(); \
}
// place this macro in your class's destruct function.
#define DESTROY_OBSERVER \
{ \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \
_callbackInfo * observer = *iter++; \
delete observer; \
} \
_observerList.clear(); \
}
};
\ No newline at end of file
#pragma once
#include <memory>
#include <mutex>
#include <boost/noncopyable.hpp>
namespace dp {
template <class T>
class singleton : public boost::noncopyable
{
protected:
static std::shared_ptr<T> instance_;
static std::mutex mutex_for_singleton_;
singleton() {}
class T_ctor : public T {
public:
T_ctor() : T() {}
};
public:
virtual ~singleton() {}
static std::shared_ptr<T> get_instance() {
std::lock_guard<std::mutex> lock(mutex_for_singleton_);
if (!instance_) {
instance_ = std::make_shared<T_ctor>();
}
return instance_;
}
static T& get_object() {
return *get_instance();
}
static void release_singleton() {
instance_ = nullptr;
}
};
template <class T>
std::mutex singleton<T>::mutex_for_singleton_;
template <class T>
std::shared_ptr<T> singleton<T>::instance_ = nullptr;
}
......@@ -45,6 +45,15 @@ namespace utf8 {
utf8::utf8to16(a.begin(), a.end(), std::back_inserter(w));
return w;
}
inline bool mbcs_to_u16(const char* mbcs, wchar_t* u16buffer, size_t u16size) {
size_t request_size = MultiByteToWideChar(CP_ACP, 0, mbcs, -1, NULL, 0);
if (1 < request_size && request_size < u16size) {
MultiByteToWideChar(CP_ACP, 0, mbcs, -1, u16buffer, request_size);
return true;
}
return false;
};
}
#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