2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://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
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/value.hpp"
|
|
|
|
#include "base/array.hpp"
|
|
|
|
#include "base/dictionary.hpp"
|
|
|
|
#include "base/type.hpp"
|
2012-04-18 15:22:25 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
Value icinga::Empty;
|
2012-08-03 13:19:55 +02:00
|
|
|
|
2014-03-20 13:02:02 +01:00
|
|
|
bool Value::ToBool(void) const
|
|
|
|
{
|
2013-02-24 01:10:34 +01:00
|
|
|
switch (GetType()) {
|
|
|
|
case ValueNumber:
|
2014-03-20 13:02:02 +01:00
|
|
|
return static_cast<bool>(boost::get<double>(m_Value));
|
2013-02-24 01:10:34 +01:00
|
|
|
|
2014-12-10 09:04:49 +01:00
|
|
|
case ValueBoolean:
|
|
|
|
return boost::get<bool>(m_Value);
|
|
|
|
|
2013-02-24 01:10:34 +01:00
|
|
|
case ValueString:
|
2014-03-20 13:02:02 +01:00
|
|
|
return !boost::get<String>(m_Value).IsEmpty();
|
|
|
|
|
2013-02-24 01:10:34 +01:00
|
|
|
case ValueObject:
|
2014-03-20 13:02:02 +01:00
|
|
|
if (IsObjectType<Dictionary>()) {
|
|
|
|
Dictionary::Ptr dictionary = *this;
|
|
|
|
return dictionary->GetLength() > 0;
|
|
|
|
} else if (IsObjectType<Array>()) {
|
|
|
|
Array::Ptr array = *this;
|
|
|
|
return array->GetLength() > 0;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ValueEmpty:
|
|
|
|
return false;
|
|
|
|
|
2013-03-09 12:57:26 +01:00
|
|
|
default:
|
2014-03-20 13:02:02 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid variant type."));
|
2013-02-24 01:10:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-20 13:02:02 +01:00
|
|
|
String Value::GetTypeName(void) const
|
2013-11-07 13:41:24 +01:00
|
|
|
{
|
2014-11-03 00:44:04 +01:00
|
|
|
Type::Ptr t;
|
2013-11-07 13:41:24 +01:00
|
|
|
|
2014-03-20 13:02:02 +01:00
|
|
|
switch (GetType()) {
|
|
|
|
case ValueEmpty:
|
|
|
|
return "Empty";
|
|
|
|
case ValueNumber:
|
|
|
|
return "Number";
|
2014-12-10 09:04:49 +01:00
|
|
|
case ValueBoolean:
|
|
|
|
return "Boolean";
|
2014-03-20 13:02:02 +01:00
|
|
|
case ValueString:
|
|
|
|
return "String";
|
|
|
|
case ValueObject:
|
2015-03-28 16:56:47 +01:00
|
|
|
t = boost::get<Object::Ptr>(m_Value)->GetReflectionType();
|
2014-03-20 14:28:29 +01:00
|
|
|
if (!t) {
|
|
|
|
if (IsObjectType<Array>())
|
|
|
|
return "Array";
|
|
|
|
else if (IsObjectType<Dictionary>())
|
|
|
|
return "Dictionary";
|
|
|
|
else
|
|
|
|
return "Object";
|
|
|
|
} else
|
2014-03-20 13:02:02 +01:00
|
|
|
return t->GetName();
|
|
|
|
default:
|
|
|
|
return "Invalid";
|
|
|
|
}
|
2013-07-23 08:57:22 +02:00
|
|
|
}
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
Type::Ptr Value::GetReflectionType(void) const
|
|
|
|
{
|
|
|
|
switch (GetType()) {
|
|
|
|
case ValueEmpty:
|
2015-03-20 08:15:07 +01:00
|
|
|
return Object::TypeInstance;
|
2014-12-12 15:19:23 +01:00
|
|
|
case ValueNumber:
|
|
|
|
return Type::GetByName("Number");
|
|
|
|
case ValueBoolean:
|
|
|
|
return Type::GetByName("Boolean");
|
|
|
|
case ValueString:
|
|
|
|
return Type::GetByName("String");
|
|
|
|
case ValueObject:
|
2015-03-28 16:56:47 +01:00
|
|
|
return boost::get<Object::Ptr>(m_Value)->GetReflectionType();
|
2014-12-12 15:19:23 +01:00
|
|
|
default:
|
|
|
|
return Type::Ptr();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-17 13:59:49 +02:00
|
|
|
Value Value::Clone(void) const
|
|
|
|
{
|
|
|
|
if (IsObject())
|
|
|
|
return static_cast<Object::Ptr>(*this)->Clone();
|
|
|
|
else
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|