2026-01-27 09:06:40 -05:00
|
|
|
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2013-01-29 08:52:30 -05:00
|
|
|
|
|
|
|
|
#ifndef CONVERT_H
|
|
|
|
|
#define CONVERT_H
|
|
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
|
#include "base/value.hpp"
|
2013-11-08 09:42:46 -05:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2013-03-16 16:18:53 -04:00
|
|
|
|
2013-01-29 08:52:30 -05:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Utility class for converting types.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup base
|
|
|
|
|
*/
|
2017-12-31 01:22:16 -05:00
|
|
|
class Convert
|
2013-01-29 08:52:30 -05:00
|
|
|
{
|
|
|
|
|
public:
|
2013-11-08 09:42:46 -05:00
|
|
|
template<typename T>
|
|
|
|
|
static long ToLong(const T& val)
|
|
|
|
|
{
|
2013-12-09 03:52:09 -05:00
|
|
|
try {
|
|
|
|
|
return boost::lexical_cast<long>(val);
|
2014-08-25 02:35:35 -04:00
|
|
|
} catch (const std::exception&) {
|
2013-12-09 03:52:09 -05:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
|
msgbuf << "Can't convert '" << val << "' to an integer.";
|
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument(msgbuf.str()));
|
|
|
|
|
}
|
2013-11-08 09:42:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
static double ToDouble(const T& val)
|
|
|
|
|
{
|
2013-12-09 03:52:09 -05:00
|
|
|
try {
|
|
|
|
|
return boost::lexical_cast<double>(val);
|
2014-08-25 02:35:35 -04:00
|
|
|
} catch (const std::exception&) {
|
2013-12-09 03:52:09 -05:00
|
|
|
std::ostringstream msgbuf;
|
|
|
|
|
msgbuf << "Can't convert '" << val << "' to a floating point number.";
|
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument(msgbuf.str()));
|
|
|
|
|
}
|
2013-11-08 09:42:46 -05:00
|
|
|
}
|
|
|
|
|
|
2017-12-20 07:22:38 -05:00
|
|
|
static long ToLong(const Value& val)
|
2014-12-17 02:54:28 -05:00
|
|
|
{
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-30 08:47:59 -05:00
|
|
|
static long ToLong(double val)
|
|
|
|
|
{
|
|
|
|
|
return static_cast<long>(val);
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-20 07:22:38 -05:00
|
|
|
static double ToDouble(const Value& val)
|
2014-11-17 07:59:29 -05:00
|
|
|
{
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-20 07:22:38 -05:00
|
|
|
static bool ToBool(const Value& val)
|
2014-12-10 05:25:20 -05:00
|
|
|
{
|
|
|
|
|
return val.ToBool();
|
|
|
|
|
}
|
2013-11-08 09:42:46 -05:00
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
static String ToString(const T& val)
|
|
|
|
|
{
|
2014-03-30 20:08:15 -04:00
|
|
|
return boost::lexical_cast<std::string>(val);
|
2013-11-08 09:42:46 -05:00
|
|
|
}
|
2013-01-29 08:52:30 -05:00
|
|
|
|
2013-11-11 07:04:18 -05:00
|
|
|
static String ToString(const String& val);
|
|
|
|
|
static String ToString(const Value& val);
|
2016-06-16 09:14:35 -04:00
|
|
|
static String ToString(double val);
|
2013-11-11 07:04:18 -05:00
|
|
|
|
2016-03-29 06:45:22 -04:00
|
|
|
static double ToDateTimeValue(double val);
|
|
|
|
|
static double ToDateTimeValue(const Value& val);
|
|
|
|
|
|
2013-01-29 08:52:30 -05:00
|
|
|
private:
|
2018-01-03 22:25:35 -05:00
|
|
|
Convert();
|
2013-01-29 08:52:30 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* CONVERT_H */
|