icinga2/lib/base/object.cpp

76 lines
2.6 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. *
******************************************************************************/
2012-03-28 13:24:49 +02:00
#include "i2-base.h"
using namespace icinga;
2013-03-01 12:07:52 +01:00
boost::mutex Object::m_DebugMutex;
/**
* Default constructor for the Object class.
*/
Object::Object(void)
2013-03-01 12:07:52 +01:00
: m_LockCount(0)
2013-02-17 19:14:34 +01:00
{ }
/**
* Destructor for the Object class.
*/
Object::~Object(void)
2013-02-17 19:14:34 +01:00
{ }
2012-09-14 14:41:17 +02:00
/**
* Returns a reference-counted pointer to this object.
*
* @returns A shared_ptr object that points to this object
2013-02-18 14:40:24 +01:00
* @threadsafety Always.
2012-09-14 14:41:17 +02:00
*/
2012-06-16 16:54:55 +02:00
Object::SharedPtrHolder Object::GetSelf(void)
{
2013-03-01 12:07:52 +01:00
ObjectLock olock(this);
2012-06-16 16:54:55 +02:00
return Object::SharedPtrHolder(shared_from_this());
}
2012-08-03 13:19:55 +02:00
2012-09-14 14:41:17 +02:00
/**
2013-03-01 12:07:52 +01:00
* Checks if the calling thread owns the lock on this object or is currently
* in the constructor or destructor and therefore implicitly owns the lock.
2012-09-14 14:41:17 +02:00
*
2013-03-01 12:07:52 +01:00
* @returns True if the calling thread owns the lock, false otherwise.
2012-09-14 14:41:17 +02:00
*/
2013-03-01 12:07:52 +01:00
bool Object::OwnsLock(void) const
2012-08-03 13:19:55 +02:00
{
2013-03-01 12:07:52 +01:00
boost::mutex::scoped_lock lock(m_DebugMutex);
if (m_LockCount == 0 || m_LockOwner != boost::this_thread::get_id()) {
try {
shared_from_this();
} catch (const boost::bad_weak_ptr& ex) {
/* There's no shared_ptr to this object. Either someone created the object
* directly (e.g. on the stack) or we're in the constructor or destructor. Not holding the lock is ok here. */
return true;
}
return false;
}
return true;
2012-08-03 13:19:55 +02:00
}