mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
888 B
57 lines
888 B
#ifndef _singleton_h_
|
|
#define _singleton_h_
|
|
|
|
#include "AmThread.h"
|
|
|
|
template<class T>
|
|
class singleton
|
|
: public T
|
|
{
|
|
singleton() : T() {}
|
|
~singleton() {}
|
|
|
|
public:
|
|
static singleton<T>* instance()
|
|
{
|
|
_inst_m.lock();
|
|
if(NULL == _instance) {
|
|
_instance = new singleton<T>();
|
|
}
|
|
_inst_m.unlock();
|
|
|
|
return _instance;
|
|
}
|
|
|
|
static bool haveInstance()
|
|
{
|
|
bool res = false;
|
|
_inst_m.lock();
|
|
res = _instance != NULL;
|
|
_inst_m.unlock();
|
|
return res;
|
|
}
|
|
|
|
static void dispose()
|
|
{
|
|
_inst_m.lock();
|
|
if(_instance != NULL){
|
|
_instance->T::dispose();
|
|
delete _instance;
|
|
_instance = NULL;
|
|
}
|
|
_inst_m.unlock();
|
|
}
|
|
|
|
private:
|
|
static singleton<T>* _instance;
|
|
static AmMutex _inst_m;
|
|
};
|
|
|
|
template<class T>
|
|
singleton<T>* singleton<T>::_instance = NULL;
|
|
|
|
template<class T>
|
|
AmMutex singleton<T>::_inst_m;
|
|
|
|
#endif
|