2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-01-09 00:32:11 +01:00
|
|
|
* Copyright (C) 2012-present Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 12:06:41 +02: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 *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
#ifndef VALUE_H
|
|
|
|
#define VALUE_H
|
2012-04-18 15:22:25 +02:00
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/object.h"
|
|
|
|
#include "base/qstring.h"
|
2013-03-18 19:02:42 +01:00
|
|
|
#include <boost/variant/variant.hpp>
|
|
|
|
#include <boost/variant/get.hpp>
|
2013-03-15 18:21:29 +01:00
|
|
|
|
2012-07-24 10:50:53 +02:00
|
|
|
struct cJSON;
|
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2013-02-15 14:39:26 +01:00
|
|
|
/**
|
|
|
|
* The type of a Value.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
|
|
|
enum ValueType
|
|
|
|
{
|
|
|
|
ValueEmpty = 0,
|
|
|
|
ValueNumber = 1,
|
|
|
|
ValueString = 2,
|
|
|
|
ValueObject = 3
|
|
|
|
};
|
|
|
|
|
2012-05-15 10:58:14 +02:00
|
|
|
/**
|
|
|
|
* A type that can hold an arbitrary value.
|
2012-05-18 22:21:28 +02:00
|
|
|
*
|
|
|
|
* @ingroup base
|
2012-05-15 10:58:14 +02:00
|
|
|
*/
|
2012-08-02 09:38:08 +02:00
|
|
|
class I2_BASE_API Value
|
2012-04-18 15:22:25 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-03-18 19:02:42 +01:00
|
|
|
Value(void);
|
|
|
|
Value(int value);
|
2013-04-19 11:27:18 +02:00
|
|
|
Value(unsigned int value);
|
2013-03-18 19:02:42 +01:00
|
|
|
Value(long value);
|
2013-04-19 11:27:18 +02:00
|
|
|
Value(unsigned long value);
|
2013-03-18 19:02:42 +01:00
|
|
|
Value(double value);
|
|
|
|
Value(const String& value);
|
|
|
|
Value(const char *value);
|
2012-04-20 13:49:04 +02:00
|
|
|
|
2012-07-11 20:55:46 +02:00
|
|
|
template<typename T>
|
2012-08-02 09:38:08 +02:00
|
|
|
inline Value(const shared_ptr<T>& value)
|
|
|
|
: m_Value()
|
2012-07-11 20:55:46 +02:00
|
|
|
{
|
2012-08-02 09:38:08 +02:00
|
|
|
if (!value)
|
|
|
|
return;
|
|
|
|
|
2013-03-18 19:02:42 +01:00
|
|
|
m_Value = static_pointer_cast<Object>(value);
|
2012-07-11 20:55:46 +02:00
|
|
|
}
|
|
|
|
|
2013-02-24 01:10:34 +01:00
|
|
|
operator double(void) const;
|
|
|
|
operator String(void) const;
|
2012-04-20 13:49:04 +02:00
|
|
|
|
2013-11-08 21:12:22 +01:00
|
|
|
bool operator==(bool rhs);
|
|
|
|
bool operator!=(bool rhs);
|
|
|
|
|
2013-11-07 13:41:24 +01:00
|
|
|
bool operator==(int rhs);
|
|
|
|
bool operator!=(int rhs);
|
|
|
|
|
|
|
|
bool operator==(double rhs);
|
|
|
|
bool operator!=(double rhs);
|
|
|
|
|
|
|
|
bool operator==(const char *rhs);
|
|
|
|
bool operator!=(const char *rhs);
|
|
|
|
|
|
|
|
bool operator==(const String& rhs);
|
|
|
|
bool operator!=(const String& rhs);
|
|
|
|
|
|
|
|
bool operator==(const Value& rhs);
|
|
|
|
bool operator!=(const Value& rhs);
|
|
|
|
|
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>();
|
|
|
|
|
2013-12-02 09:16:46 +01:00
|
|
|
#ifdef _DEBUG
|
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)
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::bad_cast());
|
2013-12-02 09:16:46 +01:00
|
|
|
#else /* _DEBUG */
|
|
|
|
shared_ptr<T> object = static_pointer_cast<T>(boost::get<Object::Ptr>(m_Value));
|
|
|
|
#endif /* _DEBUG */
|
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
|
|
|
|
2013-03-27 07:26:42 +01: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-05-21 23:42:54 +02:00
|
|
|
|
2013-11-01 00:13:30 +01:00
|
|
|
return (dynamic_pointer_cast<T>(boost::get<Object::Ptr>(m_Value)) != NULL);
|
2012-07-11 20:55:46 +02:00
|
|
|
}
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
static Value FromJson(cJSON *json);
|
2012-07-24 10:50:53 +02:00
|
|
|
cJSON *ToJson(void) const;
|
|
|
|
|
2013-02-15 14:39:26 +01:00
|
|
|
ValueType GetType(void) const;
|
|
|
|
|
2012-07-11 20:55:46 +02:00
|
|
|
private:
|
2013-03-27 07:26:42 +01:00
|
|
|
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;
|
|
|
|
|
2013-08-19 08:53:59 +02:00
|
|
|
I2_BASE_API Value operator+(const Value& lhs, const char *rhs);
|
|
|
|
I2_BASE_API Value operator+(const char *lhs, const Value& rhs);
|
|
|
|
|
2013-11-07 13:41:24 +01:00
|
|
|
I2_BASE_API Value operator+(const Value& lhs, const String& rhs);
|
|
|
|
I2_BASE_API Value operator+(const String& lhs, const Value& rhs);
|
|
|
|
|
2013-07-23 08:57:22 +02:00
|
|
|
I2_BASE_API std::ostream& operator<<(std::ostream& stream, const Value& value);
|
|
|
|
I2_BASE_API std::istream& operator>>(std::istream& stream, Value& value);
|
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
#endif /* VALUE_H */
|