2012-07-09 20:32:02 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
2012-07-09 20:32:02 +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 *
|
|
|
|
* 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/smart_ptr/make_shared.hpp>
|
|
|
|
#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);
|
2012-07-09 17:07:20 +02:00
|
|
|
|
2013-02-09 17:50:47 +01:00
|
|
|
String HostGroup::GetDisplayName(void) const
|
2012-07-01 13:08:07 +02:00
|
|
|
{
|
2013-02-26 10:13:54 +01:00
|
|
|
if (!m_DisplayName.IsEmpty())
|
|
|
|
return m_DisplayName;
|
2012-08-02 09:38:08 +02:00
|
|
|
else
|
|
|
|
return GetName();
|
2012-07-01 13:08:07 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
std::set<Host::Ptr> HostGroup::GetMembers(void) const
|
2012-07-01 13:08:07 +02:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
return m_Members;
|
2012-07-01 13:08:07 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void HostGroup::AddMember(const Host::Ptr& host)
|
2013-01-24 13:21:35 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Members.insert(host);
|
2013-01-24 13:21:35 +01:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void HostGroup::RemoveMember(const Host::Ptr& host)
|
2013-02-27 15:23:25 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
m_Members.erase(host);
|
2013-02-27 15:23:25 +01:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void HostGroup::InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const
|
2013-01-24 13:21:35 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
DynamicObject::InternalSerialize(bag, attributeTypes);
|
2013-03-06 13:01:51 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (attributeTypes & Attribute_Config)
|
|
|
|
bag->Set("display_name", m_DisplayName);
|
|
|
|
}
|
2013-01-24 13:21:35 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void HostGroup::InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes)
|
|
|
|
{
|
|
|
|
DynamicObject::InternalDeserialize(bag, attributeTypes);
|
2013-08-01 11:07:56 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
if (attributeTypes & Attribute_Config)
|
|
|
|
m_DisplayName = bag->Get("display_name");
|
2013-01-24 13:21:35 +01:00
|
|
|
}
|