icinga2/lib/base/object.cpp

125 lines
3.5 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 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"
#include "base/dictionary.hpp"
2014-11-03 07:07:54 +01:00
#include "base/primitivetype.hpp"
#include "base/utility.hpp"
2012-03-28 13:24:49 +02:00
using namespace icinga;
REGISTER_PRIMITIVE_TYPE(Object, None, Object::GetPrototype());
2014-11-03 00:44:04 +01:00
/**
* Default constructor for the Object class.
*/
Object::Object(void)
: m_References(0)
2014-12-19 12:19:28 +01:00
#ifdef I2_DEBUG
, m_LockOwner(0)
2014-12-19 12:19:28 +01:00
#endif /* I2_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
{ }
/**
* Returns a string representation for the object.
*/
String Object::ToString(void) const
{
return "Object of type '" + Utility::GetTypeName(typeid(*this)) + "'";
}
2014-12-19 12:19:28 +01:00
#ifdef I2_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
{
#ifdef _WIN32
DWORD tid = InterlockedExchangeAdd(&m_LockOwner, 0);
return (tid == GetCurrentThreadId());
#else /* _WIN32 */
pthread_t tid = __sync_fetch_and_add(&m_LockOwner, 0);
return (tid == pthread_self());
#endif /* _WIN32 */
2012-08-03 13:19:55 +02:00
}
2014-12-19 12:19:28 +01:00
#endif /* I2_DEBUG */
2014-11-11 23:06:47 +01:00
void Object::InflateMutex(void)
{
m_Mutex.Inflate();
}
void Object::SetField(int id, const Value&, bool, const Value&)
{
if (id == 0)
BOOST_THROW_EXCEPTION(std::runtime_error("Prototype field cannot be set."));
else
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
}
Value Object::GetField(int id) const
{
if (id == 0)
return Empty;
else
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
}
void Object::Validate(int types, const ValidationUtils& utils)
{
/* Nothing to do here. */
}
void Object::ValidateField(int id, const Value& value, const ValidationUtils& utils)
{
/* Nothing to do here. */
}
void Object::NotifyField(int id, const Value& cookie)
{
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
}
Object::Ptr Object::NavigateField(int id) const
{
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
}
Object::Ptr Object::Clone(void) const
{
BOOST_THROW_EXCEPTION(std::runtime_error("Object cannot be cloned."));
}
2015-08-18 07:46:04 +02:00
Type::Ptr Object::GetReflectionType(void) const
{
return Object::TypeInstance;
}