icinga2/lib/base/value.h

139 lines
3.4 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 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 *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef VALUE_H
#define VALUE_H
2012-04-18 15:22:25 +02:00
struct cJSON;
2012-04-18 15:22:25 +02:00
namespace icinga
{
/**
* A type that can hold an arbitrary value.
2012-05-18 22:21:28 +02:00
*
* @ingroup base
*/
class I2_BASE_API Value
2012-04-18 15:22:25 +02:00
{
public:
inline Value(void)
2012-07-11 20:55:46 +02:00
: m_Value()
{ }
2012-04-20 13:49:04 +02:00
inline Value(int value)
: m_Value(value)
{ }
inline Value(long value)
: m_Value(double(value))
2012-07-11 20:55:46 +02:00
{ }
2012-05-16 11:30:54 +02:00
inline Value(double value)
: m_Value(value)
{ }
inline Value(const String& value)
2012-07-11 20:55:46 +02:00
: m_Value(value)
{ }
2012-04-20 13:49:04 +02:00
inline Value(const char *value)
: m_Value(String(value))
2012-07-11 20:55:46 +02:00
{ }
2012-04-20 13:49:04 +02:00
2012-07-11 20:55:46 +02:00
template<typename T>
inline Value(const shared_ptr<T>& value)
: m_Value()
2012-07-11 20:55:46 +02:00
{
if (!value)
return;
2012-07-11 20:55:46 +02:00
Object::Ptr object = dynamic_pointer_cast<Object>(value);
if (!object)
2012-07-17 20:41:06 +02:00
throw_exception(invalid_argument("shared_ptr value type must inherit from Object class."));
2012-07-11 20:55:46 +02:00
m_Value = object;
}
operator double(void) const
{
if (m_Value.type() != typeid(double)) {
return boost::lexical_cast<double>(m_Value);
2012-07-11 20:55:46 +02:00
} else {
return boost::get<double>(m_Value);
}
}
operator String(void) const
{
if (IsEmpty())
return String();
if (m_Value.type() != typeid(String)) {
String result = boost::lexical_cast<String>(m_Value);
2012-07-11 20:55:46 +02:00
m_Value = result;
}
return boost::get<String>(m_Value);
2012-07-11 20:55:46 +02:00
}
2012-04-20 13:49:04 +02:00
template<typename T>
2012-07-11 20:55:46 +02:00
operator shared_ptr<T>(void) const
{
2012-07-24 13:13:02 +02:00
if (IsEmpty())
return shared_ptr<T>();
2012-07-11 20:55:46 +02:00
shared_ptr<T> object = dynamic_pointer_cast<T>(boost::get<Object::Ptr>(m_Value));
2012-04-18 15:22:25 +02:00
2012-07-11 20:55:46 +02:00
if (!object)
2012-07-17 20:41:06 +02:00
throw_exception(bad_cast());
2012-04-18 15:22:25 +02:00
2012-07-11 20:55:46 +02:00
return object;
}
2012-04-18 15:22:25 +02:00
2012-04-20 13:49:04 +02:00
bool IsEmpty(void) const;
2012-07-11 20:55:46 +02:00
bool IsScalar(void) const;
bool IsObject(void) const;
2012-04-20 13:49:04 +02:00
2012-07-11 20:55:46 +02:00
template<typename T>
bool IsObjectType(void) const
{
if (!IsObject())
return false;
2012-07-11 20:55:46 +02:00
return (dynamic_pointer_cast<T>(boost::get<Object::Ptr>(m_Value)));
}
static Value FromJson(cJSON *json);
cJSON *ToJson(void) const;
String Serialize(void) const;
static Value Deserialize(const String& jsonString);
2012-07-11 20:55:46 +02:00
private:
mutable boost::variant<boost::blank, double, String, Object::Ptr> m_Value;
2012-04-18 15:22:25 +02:00
};
2012-08-03 13:19:55 +02:00
static Value Empty;
2012-04-18 15:22:25 +02:00
}
#endif /* VALUE_H */