icinga2/lib/base/value.cpp

115 lines
3.3 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 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. *
******************************************************************************/
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;
Value icinga::Empty;
2012-08-03 13:19:55 +02:00
bool Value::ToBool(void) const
{
2013-02-24 01:10:34 +01:00
switch (GetType()) {
case ValueNumber:
return static_cast<bool>(boost::get<double>(m_Value));
2013-02-24 01:10:34 +01:00
case ValueBoolean:
return boost::get<bool>(m_Value);
2013-02-24 01:10:34 +01:00
case ValueString:
return !boost::get<String>(m_Value).IsEmpty();
2013-02-24 01:10:34 +01:00
case ValueObject:
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:
BOOST_THROW_EXCEPTION(std::runtime_error("Invalid variant type."));
2013-02-24 01:10:34 +01:00
}
}
String Value::GetTypeName(void) const
{
2014-11-03 00:44:04 +01:00
Type::Ptr t;
switch (GetType()) {
case ValueEmpty:
return "Empty";
case ValueNumber:
return "Number";
case ValueBoolean:
return "Boolean";
case ValueString:
return "String";
case ValueObject:
t = boost::get<Object::Ptr>(m_Value)->GetReflectionType();
if (!t) {
if (IsObjectType<Array>())
return "Array";
else if (IsObjectType<Dictionary>())
return "Dictionary";
else
return "Object";
} else
return t->GetName();
default:
return "Invalid";
}
}
Type::Ptr Value::GetReflectionType(void) const
{
switch (GetType()) {
case ValueEmpty:
return Object::TypeInstance;
case ValueNumber:
return Type::GetByName("Number");
case ValueBoolean:
return Type::GetByName("Boolean");
case ValueString:
return Type::GetByName("String");
case ValueObject:
return boost::get<Object::Ptr>(m_Value)->GetReflectionType();
default:
return Type::Ptr();
}
}
Value Value::Clone(void) const
{
if (IsObject())
return static_cast<Object::Ptr>(*this)->Clone();
else
return *this;
}