icinga2/lib/base/singleton.hpp

59 lines
1.9 KiB
C++
Raw Normal View History

2013-03-15 11:19:52 +01:00
/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
2013-03-15 11:19:52 +01:00
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef SINGLETON_H
#define SINGLETON_H
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
2013-03-16 21:18:53 +01:00
#include <boost/thread/mutex.hpp>
2013-03-15 11:19:52 +01:00
namespace icinga
{
/**
* A singleton.
*
* @ingroup base
*/
template<typename T>
2013-03-18 22:40:40 +01:00
class Singleton
2013-03-15 11:19:52 +01:00
{
public:
static T *GetInstance(void)
{
/* FIXME: This relies on static initializers being atomic. */
static boost::mutex mutex;
boost::mutex::scoped_lock lock(mutex);
2013-03-18 22:40:40 +01:00
static T *instance;
2013-03-15 11:19:52 +01:00
2013-03-18 22:40:40 +01:00
if (!instance)
instance = new T();
return instance;
2013-03-15 11:19:52 +01:00
}
2013-03-15 18:21:29 +01:00
private:
2013-03-15 18:21:29 +01:00
static T *m_Instance;
2013-03-15 11:19:52 +01:00
};
}
#endif /* SINGLETON_H */