2012-07-02 12:34:54 +02:00
|
|
|
#include "i2-cib.h"
|
2012-06-13 13:42:55 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2012-06-30 13:39:55 +02:00
|
|
|
string Host::GetAlias(void) const
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
|
|
|
string value;
|
|
|
|
|
2012-06-30 13:39:55 +02:00
|
|
|
if (GetConfigObject()->GetProperty("alias", &value))
|
2012-06-13 13:42:55 +02:00
|
|
|
return value;
|
|
|
|
|
|
|
|
return GetName();
|
|
|
|
}
|
|
|
|
|
2012-06-30 13:39:55 +02:00
|
|
|
bool Host::Exists(const string& name)
|
|
|
|
{
|
|
|
|
return (ConfigObject::GetObject("host", name));
|
|
|
|
}
|
|
|
|
|
|
|
|
Host Host::GetByName(const string& name)
|
2012-06-13 13:42:55 +02:00
|
|
|
{
|
|
|
|
ConfigObject::Ptr configObject = ConfigObject::GetObject("host", name);
|
|
|
|
|
|
|
|
if (!configObject)
|
|
|
|
throw invalid_argument("Host '" + name + "' does not exist.");
|
|
|
|
|
|
|
|
return Host(configObject);
|
|
|
|
}
|
2012-06-30 13:39:55 +02:00
|
|
|
|
|
|
|
Dictionary::Ptr Host::GetGroups(void) const
|
|
|
|
{
|
|
|
|
Dictionary::Ptr value;
|
|
|
|
GetConfigObject()->GetProperty("hostgroups", &value);
|
|
|
|
return value;
|
|
|
|
}
|
2012-07-09 10:09:53 +02:00
|
|
|
|