2014-03-18 11:44:09 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-04-23 15:57:58 +02:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2014-03-18 11:44:09 +01: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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/service.hpp"
|
|
|
|
#include "config/configitembuilder.hpp"
|
|
|
|
#include "config/applyrule.hpp"
|
|
|
|
#include "base/initialize.hpp"
|
|
|
|
#include "base/dynamictype.hpp"
|
|
|
|
#include "base/logger_fwd.hpp"
|
|
|
|
#include "base/context.hpp"
|
|
|
|
#include "base/workqueue.hpp"
|
2014-03-18 11:44:09 +01:00
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2014-03-28 18:26:46 +01:00
|
|
|
INITIALIZE_ONCE(&Service::RegisterApplyRuleHandler);
|
2014-03-18 11:44:09 +01:00
|
|
|
|
2014-03-28 18:26:46 +01:00
|
|
|
void Service::RegisterApplyRuleHandler(void)
|
2014-03-18 11:44:09 +01:00
|
|
|
{
|
2014-04-05 12:56:56 +02:00
|
|
|
std::vector<String> targets;
|
|
|
|
targets.push_back("Host");
|
|
|
|
ApplyRule::RegisterType("Service", targets, &Service::EvaluateApplyRules);
|
2014-03-18 11:44:09 +01:00
|
|
|
}
|
|
|
|
|
2014-05-17 20:13:25 +02:00
|
|
|
bool Service::EvaluateApplyRuleOne(const Host::Ptr& host, const ApplyRule& rule)
|
2014-03-18 11:44:09 +01:00
|
|
|
{
|
2014-04-05 12:56:56 +02:00
|
|
|
DebugInfo di = rule.GetDebugInfo();
|
2014-03-18 11:44:09 +01:00
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
msgbuf << "Evaluating 'apply' rule (" << di << ")";
|
|
|
|
CONTEXT(msgbuf.str());
|
2014-03-18 15:29:04 +01:00
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
Dictionary::Ptr locals = make_shared<Dictionary>();
|
|
|
|
locals->Set("host", host);
|
2014-03-27 12:30:24 +01:00
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
if (!rule.EvaluateFilter(locals))
|
2014-04-07 13:23:27 +02:00
|
|
|
return false;
|
2014-03-18 11:44:09 +01:00
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
std::ostringstream msgbuf2;
|
|
|
|
msgbuf2 << "Applying service '" << rule.GetName() << "' to host '" << host->GetName() << "' for rule " << di;
|
2014-05-28 13:45:45 +02:00
|
|
|
Log(LogDebug, "Service", msgbuf2.str());
|
2014-03-18 11:44:09 +01:00
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
ConfigItemBuilder::Ptr builder = make_shared<ConfigItemBuilder>(di);
|
|
|
|
builder->SetType("Service");
|
2014-04-05 22:17:20 +02:00
|
|
|
builder->SetName(rule.GetName());
|
2014-04-05 12:56:56 +02:00
|
|
|
builder->SetScope(rule.GetScope());
|
2014-03-18 11:44:09 +01:00
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
builder->AddExpression(make_shared<AExpression>(&AExpression::OpSet,
|
|
|
|
make_shared<AExpression>(&AExpression::OpLiteral, "host_name", di),
|
|
|
|
make_shared<AExpression>(&AExpression::OpLiteral, host->GetName(), di),
|
|
|
|
di));
|
2014-03-18 11:44:09 +01:00
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
builder->AddExpression(make_shared<AExpression>(&AExpression::OpSet,
|
|
|
|
make_shared<AExpression>(&AExpression::OpLiteral, "name", di),
|
|
|
|
make_shared<AExpression>(&AExpression::OpLiteral, rule.GetName(), di),
|
|
|
|
di));
|
2014-03-30 10:00:11 +02:00
|
|
|
|
2014-05-09 10:33:22 +02:00
|
|
|
String zone = host->GetZone();
|
|
|
|
|
|
|
|
if (!zone.IsEmpty()) {
|
|
|
|
builder->AddExpression(make_shared<AExpression>(&AExpression::OpSet,
|
|
|
|
make_shared<AExpression>(&AExpression::OpLiteral, "zone", di),
|
|
|
|
make_shared<AExpression>(&AExpression::OpLiteral, zone, di),
|
|
|
|
di));
|
|
|
|
}
|
|
|
|
|
2014-04-05 12:56:56 +02:00
|
|
|
builder->AddExpression(rule.GetExpression());
|
|
|
|
|
|
|
|
ConfigItem::Ptr serviceItem = builder->Compile();
|
|
|
|
serviceItem->Register();
|
|
|
|
DynamicObject::Ptr dobj = serviceItem->Commit();
|
|
|
|
dobj->OnConfigLoaded();
|
2014-04-07 13:23:27 +02:00
|
|
|
|
|
|
|
return true;
|
2014-04-05 12:56:56 +02:00
|
|
|
}
|
2014-03-30 10:00:11 +02:00
|
|
|
|
2014-05-17 20:13:25 +02:00
|
|
|
void Service::EvaluateApplyRule(const ApplyRule& rule)
|
2014-04-05 12:56:56 +02:00
|
|
|
{
|
2014-04-07 13:23:27 +02:00
|
|
|
int apply_count = 0;
|
|
|
|
|
2014-09-02 13:02:22 +02:00
|
|
|
BOOST_FOREACH(const Host::Ptr& host, DynamicType::GetObjectsByType<Host>()) {
|
2014-05-17 20:13:25 +02:00
|
|
|
CONTEXT("Evaluating 'apply' rules for host '" + host->GetName() + "'");
|
2014-04-07 13:23:27 +02:00
|
|
|
|
2014-05-17 20:13:25 +02:00
|
|
|
if (EvaluateApplyRuleOne(host, rule))
|
|
|
|
apply_count++;
|
|
|
|
}
|
2014-04-07 13:23:27 +02:00
|
|
|
|
2014-05-17 20:13:25 +02:00
|
|
|
if (apply_count == 0)
|
2014-05-28 13:45:45 +02:00
|
|
|
Log(LogWarning, "Service", "Apply rule '" + rule.GetName() + "' for host does not match anywhere!");
|
2014-05-17 20:13:25 +02:00
|
|
|
}
|
2014-03-18 11:44:09 +01:00
|
|
|
|
2014-05-17 20:13:25 +02:00
|
|
|
void Service::EvaluateApplyRules(const std::vector<ApplyRule>& rules)
|
|
|
|
{
|
|
|
|
ParallelWorkQueue upq;
|
|
|
|
|
|
|
|
BOOST_FOREACH(const ApplyRule& rule, rules) {
|
|
|
|
upq.Enqueue(boost::bind(&Service::EvaluateApplyRule, boost::cref(rule)));
|
2014-03-18 11:44:09 +01:00
|
|
|
}
|
2014-05-17 20:13:25 +02:00
|
|
|
|
|
|
|
upq.Join();
|
2014-03-18 11:44:09 +01:00
|
|
|
}
|