icinga2/lib/icinga/pluginutility.cpp

158 lines
4.3 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 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 "icinga/pluginutility.h"
#include "icinga/checkcommand.h"
2013-03-17 20:19:29 +01:00
#include "icinga/macroprocessor.h"
#include "icinga/icingaapplication.h"
#include "icinga/perfdatavalue.h"
2013-03-17 20:19:29 +01:00
#include "base/dynamictype.h"
#include "base/logger_fwd.h"
2013-03-25 18:36:15 +01:00
#include "base/scriptfunction.h"
#include "base/utility.h"
2013-03-25 20:47:02 +01:00
#include "base/process.h"
2013-11-13 09:08:17 +01:00
#include "base/objectlock.h"
2013-03-15 18:21:29 +01:00
#include <boost/algorithm/string/classification.hpp>
2013-03-18 11:02:18 +01:00
#include <boost/algorithm/string/split.hpp>
#include <boost/algorithm/string/trim.hpp>
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
using namespace icinga;
ServiceState PluginUtility::ExitStatusToState(int exitStatus)
{
switch (exitStatus) {
case 0:
return StateOK;
case 1:
return StateWarning;
case 2:
return StateCritical;
default:
return StateUnknown;
2012-06-19 09:38:20 +02:00
}
}
CheckResult::Ptr PluginUtility::ParseCheckOutput(const String& output)
{
CheckResult::Ptr result = make_shared<CheckResult>();
String text;
String perfdata;
2013-03-18 11:02:18 +01:00
std::vector<String> lines;
boost::algorithm::split(lines, output, boost::is_any_of("\r\n"));
BOOST_FOREACH (const String& line, lines) {
size_t delim = line.FindFirstOf("|");
if (!text.IsEmpty())
text += "\n";
if (delim != String::NPos) {
text += line.SubStr(0, delim);
if (!perfdata.IsEmpty())
perfdata += " ";
perfdata += line.SubStr(delim + 1, line.GetLength());
} else {
text += line;
}
}
boost::algorithm::trim(perfdata);
result->SetOutput(text);
result->SetPerformanceData(ParsePerfdata(perfdata));
return result;
}
Value PluginUtility::ParsePerfdata(const String& perfdata)
{
try {
Dictionary::Ptr result = make_shared<Dictionary>();
size_t begin = 0;
String multi_prefix;
for (;;) {
size_t eqp = perfdata.FindFirstOf('=', begin);
if (eqp == String::NPos)
break;
String key = perfdata.SubStr(begin, eqp - begin);
if (key.GetLength() > 2 && key[0] == '\'' && key[key.GetLength() - 1] == '\'')
key = key.SubStr(1, key.GetLength() - 2);
size_t multi_index = key.RFind("::");
if (multi_index != String::NPos)
multi_prefix = "";
size_t spq = perfdata.FindFirstOf(' ', eqp);
if (spq == String::NPos)
spq = perfdata.GetLength();
String value = perfdata.SubStr(eqp + 1, spq - eqp - 1);
if (!multi_prefix.IsEmpty())
key = multi_prefix + "::" + key;
result->Set(key, PerfdataValue::Parse(value));
if (multi_index != String::NPos)
multi_prefix = key.SubStr(0, multi_index);
begin = spq + 1;
}
return result;
} catch (const std::exception&) {
return perfdata;
}
}
String PluginUtility::FormatPerfdata(const Value& perfdata)
{
String output;
if (!perfdata.IsObjectType<Dictionary>())
return perfdata;
Dictionary::Ptr dict = perfdata;
2013-11-13 09:08:17 +01:00
ObjectLock olock(dict);
String key;
Value value;
BOOST_FOREACH(boost::tie(key, value), dict) {
if (!output.IsEmpty())
output += " ";
output += key + "=" + PerfdataValue::Format(value);
}
return output;
}