icinga2/lib/base/object.h

151 lines
4.0 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* 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 *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef OBJECT_H
#define OBJECT_H
2012-03-28 13:24:49 +02:00
namespace icinga
{
class SharedPtrHolder;
2012-04-22 16:45:31 +02:00
/**
* Base class for all heap-allocated objects. At least one of its methods
* has to be virtual for RTTI to work.
2012-05-18 22:21:28 +02:00
*
* @ingroup base
2012-04-22 16:45:31 +02:00
*/
2012-06-14 16:09:04 +02:00
class I2_BASE_API Object : public enable_shared_from_this<Object>, public boost::signals::trackable
2012-03-28 13:24:49 +02:00
{
public:
typedef shared_ptr<Object> Ptr;
typedef weak_ptr<Object> WeakPtr;
2012-03-28 13:24:49 +02:00
void Hold(void);
static void ClearHeldObjects(void);
2012-06-16 16:54:55 +02:00
/**
* Holds a shared pointer and provides support for implicit upcasts.
2012-09-19 12:32:39 +02:00
*
* @ingroup base
2012-06-16 16:54:55 +02:00
*/
class SharedPtrHolder
{
2012-06-16 16:54:55 +02:00
public:
2012-09-19 12:32:39 +02:00
/**
* Constructor for the SharedPtrHolder class.
*
* @param object The shared pointer that should be used to
* construct this shared pointer holder.
*/
2012-06-16 16:54:55 +02:00
explicit SharedPtrHolder(const Object::Ptr& object)
: m_Object(object)
{ }
2012-09-19 12:32:39 +02:00
/**
* Retrieves a shared pointer for the object that is associated
* this holder instance.
*
* @returns A shared pointer.
*/
2012-06-16 16:54:55 +02:00
template<typename T>
operator shared_ptr<T>(void) const
{
#ifdef _DEBUG
2012-06-16 16:54:55 +02:00
shared_ptr<T> other = dynamic_pointer_cast<T>(m_Object);
assert(other);
#else /* _DEBUG */
2012-06-16 16:54:55 +02:00
shared_ptr<T> other = static_pointer_cast<T>(m_Object);
#endif /* _DEBUG */
2012-06-16 16:54:55 +02:00
return other;
}
2012-09-19 12:32:39 +02:00
/**
* Retrieves a weak pointer for the object that is associated
* with this holder instance.
*
* @returns A weak pointer.
*/
2012-06-16 16:54:55 +02:00
template<typename T>
operator weak_ptr<T>(void) const
{
return static_cast<shared_ptr<T> >(*this);
}
private:
2012-09-19 12:32:39 +02:00
Object::Ptr m_Object; /**< The object that belongs to this
holder instance */
2012-06-16 16:54:55 +02:00
};
SharedPtrHolder GetSelf(void);
2012-08-03 13:19:55 +02:00
#ifdef _DEBUG
static int GetAliveObjectsCount(void);
2012-08-03 13:19:55 +02:00
static void PrintMemoryProfile(void);
#endif /* _DEBUG */
protected:
Object(void);
virtual ~Object(void);
private:
2012-06-16 16:54:55 +02:00
Object(const Object& other);
2012-08-07 21:02:12 +02:00
Object& operator=(const Object& rhs);
2012-06-16 16:54:55 +02:00
static boost::mutex *GetMutex(void);
static set<Object *> *GetAliveObjects(void);
static vector<Object::Ptr>& GetHeldObjects(void);
};
/**
* Compares a weak pointer with a raw pointer.
2012-09-19 12:32:39 +02:00
*
* @ingroup base
*/
2012-03-28 13:24:49 +02:00
template<class T>
struct WeakPtrEqual
2012-03-28 13:24:49 +02:00
{
private:
2012-09-19 12:32:39 +02:00
const void *m_Ref; /**< The object. */
2012-03-28 13:24:49 +02:00
public:
2012-09-19 12:32:39 +02:00
/**
* Constructor for the WeakPtrEqual class.
*
* @param ref The object that should be compared with the weak pointer.
*/
WeakPtrEqual(const void *ref) : m_Ref(ref) { }
2012-03-28 13:24:49 +02:00
/**
* Compares the two pointers.
*
* @param wref The weak pointer.
* @returns true if the pointers point to the same object, false otherwise.
*/
2012-03-28 13:24:49 +02:00
bool operator()(const weak_ptr<T>& wref) const
{
2012-08-08 08:34:15 +02:00
return (wref.lock().get() == static_cast<const T *>(m_Ref));
2012-03-28 13:24:49 +02:00
}
};
}
#endif /* OBJECT_H */