icinga2/lib/base/object.cpp

86 lines
2.6 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2014 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. *
******************************************************************************/
2014-05-25 16:23:35 +02:00
#include "base/object.hpp"
#include "base/value.hpp"
2014-11-03 07:07:54 +01:00
#include "base/primitivetype.hpp"
2012-03-28 13:24:49 +02:00
using namespace icinga;
2014-11-03 00:44:04 +01:00
REGISTER_PRIMITIVE_TYPE(Object);
2013-03-02 09:07:47 +01:00
#ifdef _DEBUG
2013-03-01 12:07:52 +01:00
boost::mutex Object::m_DebugMutex;
2013-03-02 09:07:47 +01:00
#endif /* _DEBUG */
2013-03-01 12:07:52 +01:00
/**
* Default constructor for the Object class.
*/
Object::Object(void)
2013-03-04 15:52:42 +01:00
#ifdef _DEBUG
: m_Locked(false)
#endif /* _DEBUG */
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
*/
2012-06-16 16:54:55 +02:00
Object::SharedPtrHolder Object::GetSelf(void)
{
2012-06-16 16:54:55 +02:00
return Object::SharedPtrHolder(shared_from_this());
}
2012-08-03 13:19:55 +02:00
2013-03-02 09:07:47 +01:00
#ifdef _DEBUG
2012-09-14 14:41:17 +02:00
/**
2013-03-04 15:52:42 +01:00
* Checks if the calling thread owns the lock on this object.
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);
2013-03-04 15:52:42 +01:00
return (m_Locked && m_LockOwner == boost::this_thread::get_id());
2012-08-03 13:19:55 +02:00
}
2013-03-02 09:07:47 +01:00
#endif /* _DEBUG */
Object::SharedPtrHolder::operator Value(void) const
{
return m_Object;
}
void Object::SetField(int, const Value&)
{
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
}
Value Object::GetField(int) const
{
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
}