icinga2/lib/base/convert.hpp

85 lines
1.5 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-01-29 14:52:30 +01:00
#ifndef CONVERT_H
#define CONVERT_H
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/value.hpp"
#include <boost/lexical_cast.hpp>
2013-03-16 21:18:53 +01:00
2013-01-29 14:52:30 +01:00
namespace icinga
{
/**
* Utility class for converting types.
*
* @ingroup base
*/
2017-12-31 07:22:16 +01:00
class Convert
2013-01-29 14:52:30 +01:00
{
public:
template<typename T>
static long ToLong(const T& val)
{
try {
return boost::lexical_cast<long>(val);
} catch (const std::exception&) {
std::ostringstream msgbuf;
msgbuf << "Can't convert '" << val << "' to an integer.";
BOOST_THROW_EXCEPTION(std::invalid_argument(msgbuf.str()));
}
}
template<typename T>
static double ToDouble(const T& val)
{
try {
return boost::lexical_cast<double>(val);
} catch (const std::exception&) {
std::ostringstream msgbuf;
msgbuf << "Can't convert '" << val << "' to a floating point number.";
BOOST_THROW_EXCEPTION(std::invalid_argument(msgbuf.str()));
}
}
static long ToLong(const Value& val)
{
return val;
}
2019-01-30 14:47:59 +01:00
static long ToLong(double val)
{
return static_cast<long>(val);
}
static double ToDouble(const Value& val)
{
return val;
}
static bool ToBool(const Value& val)
2014-12-10 11:25:20 +01:00
{
return val.ToBool();
}
template<typename T>
static String ToString(const T& val)
{
2014-03-31 02:08:15 +02:00
return boost::lexical_cast<std::string>(val);
}
2013-01-29 14:52:30 +01:00
2013-11-11 13:04:18 +01:00
static String ToString(const String& val);
static String ToString(const Value& val);
static String ToString(double val);
2013-11-11 13:04:18 +01:00
static double ToDateTimeValue(double val);
static double ToDateTimeValue(const Value& val);
2013-01-29 14:52:30 +01:00
private:
Convert();
2013-01-29 14:52:30 +01:00
};
}
#endif /* CONVERT_H */