2012-07-09 14:32:02 -04: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 *
|
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2013-03-17 15:19:29 -04:00
|
|
|
#include "icinga/hostgroup.h"
|
2013-03-16 16:18:53 -04:00
|
|
|
#include "base/dynamictype.h"
|
|
|
|
|
#include "base/logger_fwd.h"
|
|
|
|
|
#include "base/objectlock.h"
|
2013-03-25 13:36:15 -04:00
|
|
|
#include "base/utility.h"
|
2013-03-18 06:02:18 -04:00
|
|
|
#include "base/timer.h"
|
2013-03-16 16:18:53 -04:00
|
|
|
#include <boost/smart_ptr/make_shared.hpp>
|
|
|
|
|
#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(HostGroup);
|
2012-07-09 11:07:20 -04:00
|
|
|
|
2013-02-09 11:50:47 -05:00
|
|
|
String HostGroup::GetDisplayName(void) const
|
2012-07-01 07:08:07 -04:00
|
|
|
{
|
2013-02-26 04:13:54 -05:00
|
|
|
if (!m_DisplayName.IsEmpty())
|
|
|
|
|
return m_DisplayName;
|
2012-08-02 03:38:08 -04:00
|
|
|
else
|
|
|
|
|
return GetName();
|
2012-07-01 07:08:07 -04:00
|
|
|
}
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
std::set<Host::Ptr> HostGroup::GetMembers(void) const
|
2012-07-01 07:08:07 -04:00
|
|
|
{
|
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 HostGroup::AddMember(const Host::Ptr& host)
|
2013-01-24 07:21:35 -05:00
|
|
|
{
|
2013-08-20 05:06:04 -04:00
|
|
|
m_Members.insert(host);
|
2013-01-24 07:21:35 -05:00
|
|
|
}
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
void HostGroup::RemoveMember(const Host::Ptr& host)
|
2013-02-27 09:23:25 -05:00
|
|
|
{
|
2013-08-20 05:06:04 -04:00
|
|
|
m_Members.erase(host);
|
2013-02-27 09:23:25 -05:00
|
|
|
}
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
void HostGroup::InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const
|
2013-01-24 07:21:35 -05:00
|
|
|
{
|
2013-08-20 05:06:04 -04:00
|
|
|
DynamicObject::InternalSerialize(bag, attributeTypes);
|
2013-03-06 07:01:51 -05:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
if (attributeTypes & Attribute_Config)
|
|
|
|
|
bag->Set("display_name", m_DisplayName);
|
|
|
|
|
}
|
2013-01-24 07:21:35 -05:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
void HostGroup::InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes)
|
|
|
|
|
{
|
|
|
|
|
DynamicObject::InternalDeserialize(bag, attributeTypes);
|
2013-08-01 05:07:56 -04:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
if (attributeTypes & Attribute_Config)
|
|
|
|
|
m_DisplayName = bag->Get("display_name");
|
2013-01-24 07:21:35 -05:00
|
|
|
}
|