2012-05-10 06:06:41 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* 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 07:33:57 -04:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 06:06:41 -04:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-04-02 02:56:30 -04:00
|
|
|
#ifndef OBJECT_H
|
|
|
|
|
#define OBJECT_H
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2013-03-16 16:18:53 -04:00
|
|
|
#include "base/i2-base.h"
|
2013-03-18 17:40:40 -04:00
|
|
|
#include <boost/thread/thread.hpp>
|
|
|
|
|
|
|
|
|
|
#ifndef _DEBUG
|
2013-03-15 13:21:29 -04:00
|
|
|
#include <boost/thread/mutex.hpp>
|
2013-03-18 17:40:40 -04:00
|
|
|
#else /* _DEBUG */
|
|
|
|
|
#include "base/utility.h"
|
|
|
|
|
#include <boost/thread/recursive_mutex.hpp>
|
|
|
|
|
#endif /* _DEBUG */
|
|
|
|
|
|
2013-03-18 14:02:42 -04:00
|
|
|
#include <boost/smart_ptr/shared_ptr.hpp>
|
|
|
|
|
#include <boost/smart_ptr/weak_ptr.hpp>
|
2013-03-16 16:18:53 -04:00
|
|
|
#include <boost/smart_ptr/enable_shared_from_this.hpp>
|
2013-03-15 13:21:29 -04:00
|
|
|
|
2013-03-18 14:02:42 -04:00
|
|
|
using boost::shared_ptr;
|
|
|
|
|
using boost::weak_ptr;
|
|
|
|
|
using boost::dynamic_pointer_cast;
|
|
|
|
|
using boost::static_pointer_cast;
|
|
|
|
|
|
2012-03-28 07:24:49 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2013-06-13 05:33:00 -04:00
|
|
|
class Value;
|
2012-06-16 07:06:06 -04:00
|
|
|
|
2013-07-09 02:42:08 -04:00
|
|
|
#define DECLARE_PTR_TYPEDEFS(klass) \
|
|
|
|
|
typedef shared_ptr<klass> Ptr; \
|
|
|
|
|
typedef weak_ptr<klass> WeakPtr
|
|
|
|
|
|
2012-04-22 10:45:31 -04: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 16:21:28 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
2012-04-22 10:45:31 -04:00
|
|
|
*/
|
2013-03-15 13:21:29 -04:00
|
|
|
class I2_BASE_API Object : public boost::enable_shared_from_this<Object>
|
2012-03-28 07:24:49 -04:00
|
|
|
{
|
2012-05-21 17:42:54 -04:00
|
|
|
public:
|
2013-07-09 02:42:08 -04:00
|
|
|
DECLARE_PTR_TYPEDEFS(Object);
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2013-03-10 04:08:59 -04:00
|
|
|
Object(void);
|
|
|
|
|
virtual ~Object(void);
|
|
|
|
|
|
2012-06-16 10:54:55 -04:00
|
|
|
/**
|
|
|
|
|
* Holds a shared pointer and provides support for implicit upcasts.
|
2012-09-19 06:32:39 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
2012-06-16 10:54:55 -04:00
|
|
|
*/
|
|
|
|
|
class SharedPtrHolder
|
2012-06-16 07:06:06 -04:00
|
|
|
{
|
2012-06-16 10:54:55 -04:00
|
|
|
public:
|
2012-09-19 06:32:39 -04:00
|
|
|
/**
|
|
|
|
|
* Constructor for the SharedPtrHolder class.
|
|
|
|
|
*
|
|
|
|
|
* @param object The shared pointer that should be used to
|
|
|
|
|
* construct this shared pointer holder.
|
|
|
|
|
*/
|
2012-06-16 10:54:55 -04:00
|
|
|
explicit SharedPtrHolder(const Object::Ptr& object)
|
|
|
|
|
: m_Object(object)
|
|
|
|
|
{ }
|
|
|
|
|
|
2012-09-19 06:32:39 -04:00
|
|
|
/**
|
|
|
|
|
* Retrieves a shared pointer for the object that is associated
|
|
|
|
|
* this holder instance.
|
|
|
|
|
*
|
|
|
|
|
* @returns A shared pointer.
|
|
|
|
|
*/
|
2012-06-16 10:54:55 -04:00
|
|
|
template<typename T>
|
|
|
|
|
operator shared_ptr<T>(void) const
|
|
|
|
|
{
|
2012-06-16 07:06:06 -04:00
|
|
|
#ifdef _DEBUG
|
2012-06-16 10:54:55 -04:00
|
|
|
shared_ptr<T> other = dynamic_pointer_cast<T>(m_Object);
|
2013-03-07 10:00:10 -05:00
|
|
|
ASSERT(other);
|
2012-06-16 07:06:06 -04:00
|
|
|
#else /* _DEBUG */
|
2012-06-16 10:54:55 -04:00
|
|
|
shared_ptr<T> other = static_pointer_cast<T>(m_Object);
|
2012-06-16 07:06:06 -04:00
|
|
|
#endif /* _DEBUG */
|
|
|
|
|
|
2012-06-16 10:54:55 -04:00
|
|
|
return other;
|
|
|
|
|
}
|
2012-06-16 07:06:06 -04:00
|
|
|
|
2012-09-19 06:32:39 -04:00
|
|
|
/**
|
|
|
|
|
* Retrieves a weak pointer for the object that is associated
|
|
|
|
|
* with this holder instance.
|
|
|
|
|
*
|
|
|
|
|
* @returns A weak pointer.
|
|
|
|
|
*/
|
2012-06-16 10:54:55 -04:00
|
|
|
template<typename T>
|
|
|
|
|
operator weak_ptr<T>(void) const
|
|
|
|
|
{
|
|
|
|
|
return static_cast<shared_ptr<T> >(*this);
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-13 05:33:00 -04:00
|
|
|
operator Value(void) const;
|
|
|
|
|
|
2012-06-16 10:54:55 -04:00
|
|
|
private:
|
2012-09-19 06:32:39 -04:00
|
|
|
Object::Ptr m_Object; /**< The object that belongs to this
|
|
|
|
|
holder instance */
|
2012-06-16 10:54:55 -04:00
|
|
|
};
|
|
|
|
|
|
2013-03-04 09:52:42 -05:00
|
|
|
#ifdef _DEBUG
|
|
|
|
|
bool OwnsLock(void) const;
|
|
|
|
|
#endif /* _DEBUG */
|
2012-08-03 07:19:55 -04:00
|
|
|
|
2012-07-27 10:05:02 -04:00
|
|
|
protected:
|
2013-03-01 06:07:52 -05:00
|
|
|
SharedPtrHolder GetSelf(void);
|
|
|
|
|
|
2012-06-16 07:06:06 -04:00
|
|
|
private:
|
2012-06-16 10:54:55 -04:00
|
|
|
Object(const Object& other);
|
2012-08-07 15:02:12 -04:00
|
|
|
Object& operator=(const Object& rhs);
|
2012-06-16 10:54:55 -04:00
|
|
|
|
2013-03-04 09:52:42 -05:00
|
|
|
#ifndef _DEBUG
|
|
|
|
|
typedef boost::mutex MutexType;
|
|
|
|
|
#else /* _DEBUG */
|
|
|
|
|
typedef boost::recursive_mutex MutexType;
|
2013-03-01 06:07:52 -05:00
|
|
|
|
|
|
|
|
static boost::mutex m_DebugMutex;
|
2013-03-04 09:52:42 -05:00
|
|
|
mutable bool m_Locked;
|
|
|
|
|
mutable boost::thread::id m_LockOwner;
|
2013-03-02 03:07:47 -05:00
|
|
|
#endif /* _DEBUG */
|
2013-03-01 06:07:52 -05:00
|
|
|
|
2013-03-04 09:52:42 -05:00
|
|
|
mutable MutexType m_Mutex;
|
|
|
|
|
|
2013-03-06 05:03:50 -05:00
|
|
|
friend struct ObjectLock;
|
2013-02-17 13:14:34 -05:00
|
|
|
};
|
|
|
|
|
|
2012-05-21 06:53:38 -04:00
|
|
|
/**
|
|
|
|
|
* Compares a weak pointer with a raw pointer.
|
2012-09-19 06:32:39 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
2012-05-21 06:53:38 -04:00
|
|
|
*/
|
2012-03-28 07:24:49 -04:00
|
|
|
template<class T>
|
2012-05-21 06:53:38 -04:00
|
|
|
struct WeakPtrEqual
|
2012-03-28 07:24:49 -04:00
|
|
|
{
|
|
|
|
|
private:
|
2012-09-19 06:32:39 -04:00
|
|
|
const void *m_Ref; /**< The object. */
|
2012-03-28 07:24:49 -04:00
|
|
|
|
|
|
|
|
public:
|
2012-09-19 06:32:39 -04:00
|
|
|
/**
|
|
|
|
|
* Constructor for the WeakPtrEqual class.
|
|
|
|
|
*
|
|
|
|
|
* @param ref The object that should be compared with the weak pointer.
|
|
|
|
|
*/
|
2012-05-21 06:53:38 -04:00
|
|
|
WeakPtrEqual(const void *ref) : m_Ref(ref) { }
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2012-05-21 06:53:38 -04: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 07:24:49 -04:00
|
|
|
bool operator()(const weak_ptr<T>& wref) const
|
|
|
|
|
{
|
2012-08-08 02:34:15 -04:00
|
|
|
return (wref.lock().get() == static_cast<const T *>(m_Ref));
|
2012-03-28 07:24:49 -04:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-02 02:56:30 -04:00
|
|
|
#endif /* OBJECT_H */
|