2013-06-25 09:21:25 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2013-06-25 09:21:25 +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 *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/scriptvariable.hpp"
|
|
|
|
#include "base/singleton.hpp"
|
2013-06-25 09:21:25 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-12-04 10:41:26 +01:00
|
|
|
ScriptVariable::ScriptVariable(const Value& data)
|
|
|
|
: m_Data(data), m_Constant(false)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
ScriptVariable::Ptr ScriptVariable::GetByName(const String& name)
|
|
|
|
{
|
|
|
|
return ScriptVariableRegistry::GetInstance()->GetItem(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptVariable::SetConstant(bool constant)
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2013-12-04 10:41:26 +01:00
|
|
|
m_Constant = constant;
|
|
|
|
}
|
2013-06-26 09:08:50 +02:00
|
|
|
|
2013-12-04 10:41:26 +01:00
|
|
|
bool ScriptVariable::IsConstant(void) const
|
|
|
|
{
|
|
|
|
return m_Constant;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
|
|
|
|
2013-12-04 10:41:26 +01:00
|
|
|
void ScriptVariable::SetData(const Value& data)
|
2013-06-25 09:21:25 +02:00
|
|
|
{
|
2013-12-04 10:41:26 +01:00
|
|
|
m_Data = data;
|
2013-06-25 09:21:25 +02:00
|
|
|
}
|
2013-11-03 13:45:26 +01:00
|
|
|
|
2013-12-04 10:41:26 +01:00
|
|
|
Value ScriptVariable::GetData(void) const
|
2013-11-03 13:45:26 +01:00
|
|
|
{
|
2013-12-04 10:41:26 +01:00
|
|
|
return m_Data;
|
2013-11-03 13:45:26 +01:00
|
|
|
}
|
2013-12-04 10:41:26 +01:00
|
|
|
|
|
|
|
Value ScriptVariable::Get(const String& name)
|
|
|
|
{
|
|
|
|
ScriptVariable::Ptr sv = GetByName(name);
|
|
|
|
|
2014-03-20 15:31:48 +01:00
|
|
|
if (!sv)
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Tried to access undefined script variable '" + name + "'"));
|
2013-12-04 10:41:26 +01:00
|
|
|
|
|
|
|
return sv->GetData();
|
|
|
|
}
|
|
|
|
|
2013-12-17 14:24:29 +01:00
|
|
|
ScriptVariable::Ptr ScriptVariable::Set(const String& name, const Value& value, bool overwrite, bool make_const)
|
2013-12-04 10:41:26 +01:00
|
|
|
{
|
|
|
|
ScriptVariable::Ptr sv = GetByName(name);
|
|
|
|
|
|
|
|
if (!sv) {
|
|
|
|
sv = make_shared<ScriptVariable>(value);
|
|
|
|
ScriptVariableRegistry::GetInstance()->Register(name, sv);
|
|
|
|
} else if (overwrite) {
|
2013-12-04 11:04:36 +01:00
|
|
|
if (sv->IsConstant())
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Tried to modify read-only script variable '" + name + "'"));
|
|
|
|
|
2013-12-04 10:41:26 +01:00
|
|
|
sv->SetData(value);
|
|
|
|
}
|
|
|
|
|
2013-12-17 14:24:29 +01:00
|
|
|
if (make_const)
|
|
|
|
sv->SetConstant(true);
|
|
|
|
|
2013-12-04 10:41:26 +01:00
|
|
|
return sv;
|
|
|
|
}
|
|
|
|
|
2014-03-30 15:04:53 +02:00
|
|
|
void ScriptVariable::Unregister(const String& name)
|
|
|
|
{
|
|
|
|
ScriptVariableRegistry::GetInstance()->Unregister(name);
|
|
|
|
}
|
|
|
|
|
2013-12-09 12:26:25 +01:00
|
|
|
ScriptVariableRegistry *ScriptVariableRegistry::GetInstance(void)
|
|
|
|
{
|
|
|
|
return Singleton<ScriptVariableRegistry>::GetInstance();
|
|
|
|
}
|
|
|
|
|