2012-07-09 14:32:02 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2014-03-18 20:02:29 -04:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-07-09 14:32:02 -04: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 *
|
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-09-10 08:07:32 -04:00
|
|
|
#include "i2-icinga.h"
|
2013-03-16 16:18:53 -04:00
|
|
|
#include "icinga/servicegroup.h"
|
|
|
|
|
#include "base/dynamictype.h"
|
|
|
|
|
#include "base/objectlock.h"
|
|
|
|
|
#include "base/logger_fwd.h"
|
2013-03-18 06:02:18 -04:00
|
|
|
#include "base/timer.h"
|
2013-03-25 13:36:15 -04:00
|
|
|
#include "base/utility.h"
|
2013-03-16 16:18:53 -04:00
|
|
|
#include <boost/foreach.hpp>
|
2012-07-01 07:08:07 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2013-03-01 06:07:52 -05:00
|
|
|
REGISTER_TYPE(ServiceGroup);
|
2012-07-09 11:07:20 -04:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
std::set<Service::Ptr> ServiceGroup::GetMembers(void) const
|
2012-07-01 07:08:07 -04:00
|
|
|
{
|
2014-03-11 05:40:37 -04:00
|
|
|
boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
|
2013-08-20 05:06:04 -04:00
|
|
|
return m_Members;
|
2012-07-01 07:08:07 -04:00
|
|
|
}
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
void ServiceGroup::AddMember(const Service::Ptr& service)
|
2013-01-24 07:21:35 -05:00
|
|
|
{
|
2014-03-11 05:40:37 -04:00
|
|
|
boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
|
2013-08-20 05:06:04 -04:00
|
|
|
m_Members.insert(service);
|
2013-01-24 07:21:35 -05:00
|
|
|
}
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
void ServiceGroup::RemoveMember(const Service::Ptr& service)
|
2013-02-27 09:23:25 -05:00
|
|
|
{
|
2014-03-11 05:40:37 -04:00
|
|
|
boost::mutex::scoped_lock lock(m_ServiceGroupMutex);
|
2013-08-20 05:06:04 -04:00
|
|
|
m_Members.erase(service);
|
2013-02-27 09:23:25 -05:00
|
|
|
}
|