2012-05-10 12:06:41 +02: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 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
2012-05-14 19:14:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default constructor for the Object class.
|
|
|
|
*/
|
|
|
|
Object::Object(void)
|
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
|
|
|
|
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)
|
2012-06-16 13:06:06 +02:00
|
|
|
{
|
2012-06-16 16:54:55 +02:00
|
|
|
return Object::SharedPtrHolder(shared_from_this());
|
2012-06-16 13:06:06 +02:00
|
|
|
}
|
2012-08-03 13:19:55 +02:00
|
|
|
|
2012-09-14 14:41:17 +02:00
|
|
|
/**
|
2013-02-17 19:14:34 +01:00
|
|
|
* Returns the mutex that must be held while calling non-static methods
|
|
|
|
* which have not been explicitly marked as thread-safe.
|
2012-09-14 14:41:17 +02:00
|
|
|
*
|
2013-02-17 19:14:34 +01:00
|
|
|
* @returns The object's mutex.
|
|
|
|
* @threadsafety Always.
|
2012-09-14 14:41:17 +02:00
|
|
|
*/
|
2013-02-18 14:40:24 +01:00
|
|
|
recursive_mutex& Object::GetMutex(void) const
|
2012-08-03 13:19:55 +02:00
|
|
|
{
|
2013-02-17 19:14:34 +01:00
|
|
|
return m_Mutex;
|
2012-08-03 13:19:55 +02:00
|
|
|
}
|