icinga2/cib/host.cpp

129 lines
3.6 KiB
C++
Raw Normal View History

/******************************************************************************
* 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. *
******************************************************************************/
#include "i2-cib.h"
using namespace icinga;
REGISTER_CLASS(Host);
2012-06-30 13:39:55 +02:00
string Host::GetAlias(void) const
{
string value;
if (GetProperty("alias", &value))
return value;
return GetName();
}
2012-06-30 13:39:55 +02:00
bool Host::Exists(const string& name)
{
2012-07-30 10:17:29 +02:00
return (DynamicObject::GetObject("Host", name));
2012-06-30 13:39:55 +02:00
}
Host::Ptr Host::GetByName(const string& name)
{
2012-07-30 10:17:29 +02:00
DynamicObject::Ptr configObject = DynamicObject::GetObject("Host", name);
if (!configObject)
2012-07-17 20:41:06 +02:00
throw_exception(invalid_argument("Host '" + name + "' does not exist."));
return dynamic_pointer_cast<Host>(configObject);
}
2012-06-30 13:39:55 +02:00
Dictionary::Ptr Host::GetGroups(void) const
{
Dictionary::Ptr value;
GetProperty("hostgroups", &value);
2012-06-30 13:39:55 +02:00
return value;
}
2012-07-09 10:09:53 +02:00
set<string> Host::GetParents(void)
2012-07-09 12:44:31 +02:00
{
set<string> parents;
Dictionary::Ptr dependencies;
if (GetProperty("dependencies", &dependencies)) {
dependencies = Service::ResolveDependencies(GetSelf(), dependencies);
2012-07-09 12:44:31 +02:00
Variant dependency;
BOOST_FOREACH(tie(tuples::ignore, dependency), dependencies) {
Service::Ptr service = Service::GetByName(dependency);
2012-07-09 12:44:31 +02:00
string parent = service->GetHost()->GetName();
2012-07-09 12:44:31 +02:00
/* ignore ourselves */
if (parent == GetName())
continue;
parents.insert(parent);
}
}
return parents;
}
2012-07-13 11:29:23 +02:00
Dictionary::Ptr Host::GetMacros(void) const
{
Dictionary::Ptr value;
GetProperty("macros", &value);
return value;
}
bool Host::IsReachable(void)
{
Dictionary::Ptr dependencies;
if (GetProperty("dependencies", &dependencies)) {
dependencies = Service::ResolveDependencies(GetSelf(), dependencies);
Variant dependency;
BOOST_FOREACH(tie(tuples::ignore, dependency), dependencies) {
Service::Ptr service = Service::GetByName(dependency);
if (!service->IsReachable() ||
(service->GetState() != StateOK && service->GetState() != StateWarning)) {
return false;
}
}
}
return true;
}
bool Host::IsUp(void)
{
Dictionary::Ptr hostchecks;
if (GetProperty("hostchecks", &hostchecks)) {
hostchecks = Service::ResolveDependencies(GetSelf(), hostchecks);
Variant hostcheck;
BOOST_FOREACH(tie(tuples::ignore, hostcheck), hostchecks) {
Service::Ptr service = Service::GetByName(hostcheck);
2012-07-16 22:00:50 +02:00
if (service->GetState() != StateOK && service->GetState() != StateWarning) {
return false;
}
}
}
return true;
}