2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 12:06:41 +02:00
|
|
|
* *
|
|
|
|
* 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-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/object.hpp"
|
|
|
|
#include "base/value.hpp"
|
2014-12-12 15:19:23 +01:00
|
|
|
#include "base/dictionary.hpp"
|
2014-11-03 07:07:54 +01:00
|
|
|
#include "base/primitivetype.hpp"
|
2014-12-08 09:12:40 +01:00
|
|
|
#include "base/utility.hpp"
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
2012-05-14 19:14:23 +02:00
|
|
|
|
2015-11-05 10:29:02 +01:00
|
|
|
DEFINE_TYPE_INSTANCE(Object);
|
2014-11-03 00:44:04 +01:00
|
|
|
|
2012-05-14 19:14:23 +02:00
|
|
|
/**
|
|
|
|
* Default constructor for the Object class.
|
|
|
|
*/
|
|
|
|
Object::Object(void)
|
2014-11-08 21:17:16 +01:00
|
|
|
: m_References(0)
|
2014-12-19 12:19:28 +01:00
|
|
|
#ifdef I2_DEBUG
|
2014-11-12 12:32:14 +01:00
|
|
|
, m_LockOwner(0)
|
2014-12-19 12:19:28 +01:00
|
|
|
#endif /* I2_DEBUG */
|
2013-02-17 19:14:34 +01:00
|
|
|
{ }
|
2012-05-14 19:14:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destructor for the Object class.
|
|
|
|
*/
|
|
|
|
Object::~Object(void)
|
2013-02-17 19:14:34 +01:00
|
|
|
{ }
|
2012-06-14 15:16:41 +02:00
|
|
|
|
2014-12-08 09:12:40 +01:00
|
|
|
/**
|
|
|
|
* Returns a string representation for the object.
|
|
|
|
*/
|
|
|
|
String Object::ToString(void) const
|
|
|
|
{
|
2015-11-10 07:59:10 +01:00
|
|
|
return "Object of type '" + GetReflectionType()->GetName() + "'";
|
2014-12-08 09:12:40 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2014-11-12 12:32:14 +01: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 */
|
2013-06-13 11:33:00 +02:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
void Object::SetField(int id, const Value&, bool, const Value&)
|
2013-11-04 23:14:34 +01:00
|
|
|
{
|
2015-07-30 08:23:43 +02:00
|
|
|
if (id == 0)
|
2015-11-05 10:29:02 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Type field cannot be set."));
|
2015-07-30 08:23:43 +02:00
|
|
|
else
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
|
2013-11-04 23:14:34 +01:00
|
|
|
}
|
|
|
|
|
2015-07-30 08:23:43 +02:00
|
|
|
Value Object::GetField(int id) const
|
2013-11-04 23:14:34 +01:00
|
|
|
{
|
2015-07-30 08:23:43 +02:00
|
|
|
if (id == 0)
|
2015-11-05 10:29:02 +01:00
|
|
|
return GetReflectionType()->GetName();
|
2015-07-30 08:23:43 +02:00
|
|
|
else
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
|
2013-11-04 23:14:34 +01:00
|
|
|
}
|
2014-05-11 06:30:50 +02:00
|
|
|
|
2015-08-25 13:53:43 +02:00
|
|
|
void Object::Validate(int types, const ValidationUtils& utils)
|
|
|
|
{
|
|
|
|
/* Nothing to do here. */
|
|
|
|
}
|
|
|
|
|
2015-08-13 08:52:00 +02:00
|
|
|
void Object::ValidateField(int id, const Value& value, const ValidationUtils& utils)
|
|
|
|
{
|
|
|
|
/* Nothing to do here. */
|
|
|
|
}
|
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
void Object::NotifyField(int id, const Value& cookie)
|
|
|
|
{
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
|
2015-08-13 08:52:00 +02:00
|
|
|
}
|
2015-08-17 13:59:49 +02:00
|
|
|
|
2015-09-22 09:42:30 +02:00
|
|
|
Object::Ptr Object::NavigateField(int id) const
|
|
|
|
{
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid field ID."));
|
|
|
|
}
|
|
|
|
|
2015-08-17 13:59:49 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|