2014-11-06 16:36:42 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2014-11-06 16:36:42 +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-11-06 15:17:08 +01:00
|
|
|
|
|
|
|
#include "thresholds.h"
|
2014-11-19 06:40:58 +01:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <iostream>
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2014-11-13 15:57:10 +01:00
|
|
|
using namespace boost::algorithm;
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2014-12-17 14:23:20 +01:00
|
|
|
threshold::threshold()
|
|
|
|
: set(false)
|
2014-11-14 14:36:10 +01:00
|
|
|
{}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
threshold::threshold(CONST std::wstring& stri)
|
2014-11-06 15:17:08 +01:00
|
|
|
{
|
|
|
|
if (stri.empty())
|
2014-11-10 14:39:12 +01:00
|
|
|
throw std::invalid_argument("Threshold must not be empty");
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wstring str = stri;
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2014-11-13 15:57:10 +01:00
|
|
|
//kill whitespace
|
2014-11-13 20:11:17 +01:00
|
|
|
boost::algorithm::trim(str);
|
2014-11-13 15:57:10 +01:00
|
|
|
|
2014-11-06 15:17:08 +01:00
|
|
|
bool low = (str.at(0) == L'!');
|
|
|
|
if (low)
|
2015-03-23 13:07:02 +01:00
|
|
|
str = std::wstring(str.begin() + 1, str.end());
|
2014-11-06 15:17:08 +01:00
|
|
|
|
2014-11-14 14:36:10 +01:00
|
|
|
bool pc = false;
|
2014-11-06 15:17:08 +01:00
|
|
|
|
|
|
|
if (str.at(0) == L'[' && str.at(str.length() - 1) == L']') {//is range
|
2015-03-23 13:07:02 +01:00
|
|
|
str = std::wstring(str.begin() + 1, str.end() - 1);
|
|
|
|
std::vector<std::wstring> svec;
|
2014-11-06 15:17:08 +01:00
|
|
|
boost::split(svec, str, boost::is_any_of(L"-"));
|
|
|
|
if (svec.size() != 2)
|
2014-11-10 14:39:12 +01:00
|
|
|
throw std::invalid_argument("Threshold range requires two arguments");
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wstring str1 = svec.at(0), str2 = svec.at(1);
|
2014-11-06 15:17:08 +01:00
|
|
|
|
|
|
|
if (str1.at(str1.length() - 1) == L'%' && str2.at(str2.length() - 1) == L'%') {
|
2014-12-17 14:23:20 +01:00
|
|
|
pc = true;
|
2015-03-23 13:07:02 +01:00
|
|
|
str1 = std::wstring(str1.begin(), str1.end() - 1);
|
|
|
|
str2 = std::wstring(str2.begin(), str2.end() - 1);
|
2014-11-06 15:17:08 +01:00
|
|
|
}
|
2014-12-17 14:23:20 +01:00
|
|
|
|
2014-11-06 15:17:08 +01:00
|
|
|
try {
|
2014-11-19 06:40:58 +01:00
|
|
|
boost::algorithm::trim(str1);
|
2015-03-23 13:07:02 +01:00
|
|
|
lower = boost::lexical_cast<DOUBLE>(str1);
|
2014-11-19 06:40:58 +01:00
|
|
|
boost::algorithm::trim(str2);
|
2015-03-23 13:07:02 +01:00
|
|
|
upper = boost::lexical_cast<DOUBLE>(str2);
|
2014-11-19 06:40:58 +01:00
|
|
|
legal = !low; perc = pc; set = true;
|
2015-03-23 13:07:02 +01:00
|
|
|
} catch (CONST boost::bad_lexical_cast&) {
|
2014-11-10 14:39:12 +01:00
|
|
|
throw std::invalid_argument("Unknown Threshold type");
|
2014-11-06 15:17:08 +01:00
|
|
|
}
|
|
|
|
} else { //not range
|
|
|
|
if (str.at(str.length() - 1) == L'%') {
|
2014-12-17 14:23:20 +01:00
|
|
|
pc = true;
|
2015-03-23 13:07:02 +01:00
|
|
|
str = std::wstring(str.begin(), str.end() - 1);
|
2014-11-06 15:17:08 +01:00
|
|
|
}
|
|
|
|
try {
|
2014-11-19 06:40:58 +01:00
|
|
|
boost::algorithm::trim(str);
|
2015-03-23 13:07:02 +01:00
|
|
|
lower = upper = boost::lexical_cast<DOUBLE>(str);
|
2014-11-19 06:40:58 +01:00
|
|
|
legal = !low; perc = pc; set = true;
|
2015-03-23 13:07:02 +01:00
|
|
|
} catch (CONST boost::bad_lexical_cast&) {
|
2014-11-10 14:39:12 +01:00
|
|
|
throw std::invalid_argument("Unknown Threshold type");
|
2014-11-06 15:17:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-17 14:23:20 +01:00
|
|
|
//return TRUE if the threshold is broken
|
2015-03-23 13:07:02 +01:00
|
|
|
BOOL threshold::rend(CONST DOUBLE val, CONST DOUBLE max)
|
2014-12-17 14:23:20 +01:00
|
|
|
{
|
2015-03-23 13:07:02 +01:00
|
|
|
DOUBLE upperAbs = upper;
|
|
|
|
DOUBLE lowerAbs = lower;
|
2015-01-23 16:34:16 +01:00
|
|
|
|
|
|
|
if (perc) {
|
2015-03-23 13:07:02 +01:00
|
|
|
upperAbs = upper / 100.0 * max;
|
|
|
|
lowerAbs = lower / 100.0 * max;
|
2015-01-23 16:34:16 +01:00
|
|
|
}
|
|
|
|
|
2014-12-17 14:23:20 +01:00
|
|
|
if (!set)
|
|
|
|
return set;
|
2015-01-23 16:34:16 +01:00
|
|
|
if (lowerAbs == upperAbs)
|
|
|
|
return val > upperAbs == legal;
|
2014-12-17 14:23:20 +01:00
|
|
|
else
|
2015-01-23 16:34:16 +01:00
|
|
|
return (val < lowerAbs || upperAbs < val) != legal;
|
2014-12-17 14:23:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//returns a printable string of the threshold
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wstring threshold::pString(CONST DOUBLE max)
|
2014-12-17 14:23:20 +01:00
|
|
|
{
|
|
|
|
if (!set)
|
|
|
|
return L"";
|
2015-01-23 16:34:16 +01:00
|
|
|
//transform percentages to abolute values
|
2015-03-23 13:07:02 +01:00
|
|
|
DOUBLE lowerAbs = lower;
|
|
|
|
DOUBLE upperAbs = upper;
|
2015-02-03 10:22:09 +01:00
|
|
|
if (perc) {
|
2015-03-23 13:07:02 +01:00
|
|
|
lowerAbs = lower / 100.0 * max;
|
|
|
|
upperAbs = upper / 100.0 * max;
|
2015-02-03 10:22:09 +01:00
|
|
|
}
|
2014-12-17 14:23:20 +01:00
|
|
|
|
2015-01-23 16:34:16 +01:00
|
|
|
std::wstring s, lowerStr = removeZero(lowerAbs),
|
|
|
|
upperStr = removeZero(upperAbs);
|
2014-12-17 14:23:20 +01:00
|
|
|
|
|
|
|
if (lower != upper) {
|
2015-01-23 16:34:16 +01:00
|
|
|
s.append(L"[").append(lowerStr).append(L"-")
|
|
|
|
.append(upperStr).append(L"]");
|
|
|
|
} else
|
2015-02-03 10:22:09 +01:00
|
|
|
s.append(lowerStr);
|
2015-01-23 16:34:16 +01:00
|
|
|
|
2014-12-17 14:23:20 +01:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wstring removeZero(DOUBLE val)
|
2014-12-17 14:23:20 +01:00
|
|
|
{
|
|
|
|
std::wstring ret = boost::lexical_cast<std::wstring>(val);
|
2015-03-23 13:07:02 +01:00
|
|
|
INT pos = ret.length();
|
2014-12-17 14:23:20 +01:00
|
|
|
if (ret.find_first_of(L".") == std::string::npos)
|
|
|
|
return ret;
|
|
|
|
for (std::wstring::reverse_iterator rit = ret.rbegin(); rit != ret.rend(); ++rit) {
|
|
|
|
if (*rit == L'.') {
|
|
|
|
return ret.substr(0, pos - 1);
|
|
|
|
}
|
|
|
|
if (*rit != L'0') {
|
|
|
|
return ret.substr(0, pos);
|
|
|
|
}
|
|
|
|
pos--;
|
|
|
|
}
|
2014-12-19 09:36:59 +01:00
|
|
|
return L"0";
|
2014-12-17 14:23:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::wstring> splitMultiOptions(std::wstring str)
|
|
|
|
{
|
2015-03-23 13:07:02 +01:00
|
|
|
std::vector<std::wstring> sVec;
|
2014-12-17 14:23:20 +01:00
|
|
|
boost::split(sVec, str, boost::is_any_of(L","));
|
|
|
|
return sVec;
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
Bunit parseBUnit(CONST std::wstring& str)
|
2014-11-06 15:17:08 +01:00
|
|
|
{
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wstring wstr = to_upper_copy(str);
|
2014-11-13 15:57:10 +01:00
|
|
|
|
|
|
|
if (wstr == L"B")
|
2014-11-06 15:17:08 +01:00
|
|
|
return BunitB;
|
2015-02-03 10:22:09 +01:00
|
|
|
if (wstr == L"KB")
|
2014-11-06 15:17:08 +01:00
|
|
|
return BunitkB;
|
2014-11-13 15:57:10 +01:00
|
|
|
if (wstr == L"MB")
|
2014-11-06 15:17:08 +01:00
|
|
|
return BunitMB;
|
2014-11-13 15:57:10 +01:00
|
|
|
if (wstr == L"GB")
|
2014-11-06 15:17:08 +01:00
|
|
|
return BunitGB;
|
2014-11-13 15:57:10 +01:00
|
|
|
if (wstr == L"TB")
|
2014-11-06 15:17:08 +01:00
|
|
|
return BunitTB;
|
|
|
|
|
|
|
|
throw std::invalid_argument("Unknown unit type");
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wstring BunitStr(CONST Bunit& unit)
|
2014-11-13 15:57:10 +01:00
|
|
|
{
|
2014-11-06 15:17:08 +01:00
|
|
|
switch (unit) {
|
|
|
|
case BunitB:
|
|
|
|
return L"B";
|
|
|
|
case BunitkB:
|
|
|
|
return L"kB";
|
|
|
|
case BunitMB:
|
|
|
|
return L"MB";
|
|
|
|
case BunitGB:
|
|
|
|
return L"GB";
|
|
|
|
case BunitTB:
|
|
|
|
return L"TB";
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
Tunit parseTUnit(CONST std::wstring& str) {
|
|
|
|
std::wstring wstr = to_lower_copy(str);
|
2014-11-13 15:57:10 +01:00
|
|
|
|
|
|
|
if (wstr == L"ms")
|
2014-11-06 15:17:08 +01:00
|
|
|
return TunitMS;
|
2014-11-13 15:57:10 +01:00
|
|
|
if (wstr == L"s")
|
2014-11-06 15:17:08 +01:00
|
|
|
return TunitS;
|
2014-11-13 15:57:10 +01:00
|
|
|
if (wstr == L"m")
|
2014-11-06 15:17:08 +01:00
|
|
|
return TunitM;
|
2014-11-13 15:57:10 +01:00
|
|
|
if (wstr == L"h")
|
2014-11-06 15:17:08 +01:00
|
|
|
return TunitH;
|
|
|
|
|
|
|
|
throw std::invalid_argument("Unknown unit type");
|
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
std::wstring TunitStr(CONST Tunit& unit)
|
2014-11-13 15:57:10 +01:00
|
|
|
{
|
2014-11-06 15:17:08 +01:00
|
|
|
switch (unit) {
|
|
|
|
case TunitMS:
|
|
|
|
return L"ms";
|
|
|
|
case TunitS:
|
|
|
|
return L"s";
|
|
|
|
case TunitM:
|
|
|
|
return L"m";
|
|
|
|
case TunitH:
|
|
|
|
return L"h";
|
|
|
|
}
|
|
|
|
return NULL;
|
2014-11-14 14:36:10 +01:00
|
|
|
}
|
|
|
|
|
2015-03-23 13:07:02 +01:00
|
|
|
VOID die(DWORD err)
|
2014-11-14 14:36:10 +01:00
|
|
|
{
|
|
|
|
if (!err)
|
|
|
|
err = GetLastError();
|
|
|
|
LPWSTR mBuf = NULL;
|
2015-03-23 13:07:02 +01:00
|
|
|
if (!FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPWSTR)&mBuf, 0, NULL))
|
|
|
|
std::wcout << "Failed to format error message, last error was: " << err << '\n';
|
|
|
|
else
|
|
|
|
std::wcout << mBuf << std::endl;
|
2014-11-06 15:17:08 +01:00
|
|
|
}
|