icinga2/lib/icinga/hostgroup.cpp

49 lines
2.0 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2014-01-09 00:32:11 +01:00
* Copyright (C) 2012-present 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 *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2013-03-17 20:19:29 +01:00
#include "icinga/hostgroup.h"
2013-03-16 21:18:53 +01:00
#include "base/dynamictype.h"
#include "base/logger_fwd.h"
#include "base/objectlock.h"
2013-03-25 18:36:15 +01:00
#include "base/utility.h"
2013-03-18 11:02:18 +01:00
#include "base/timer.h"
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
2012-07-01 13:08:07 +02:00
using namespace icinga;
2013-03-01 12:07:52 +01:00
REGISTER_TYPE(HostGroup);
std::set<Host::Ptr> HostGroup::GetMembers(void) const
2012-07-01 13:08:07 +02:00
{
boost::mutex::scoped_lock lock(m_HostGroupMutex);
return m_Members;
2012-07-01 13:08:07 +02:00
}
void HostGroup::AddMember(const Host::Ptr& host)
{
boost::mutex::scoped_lock lock(m_HostGroupMutex);
m_Members.insert(host);
}
void HostGroup::RemoveMember(const Host::Ptr& host)
2013-02-27 15:23:25 +01:00
{
boost::mutex::scoped_lock lock(m_HostGroupMutex);
m_Members.erase(host);
2013-02-27 15:23:25 +01:00
}