icinga2/lib/base/script.cpp

89 lines
2.6 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 *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#include "i2-base.h"
using namespace icinga;
2013-03-01 12:07:52 +01:00
REGISTER_TYPE(Script);
/**
* Constructor for the Script class.
*
* @param properties A serialized dictionary containing attributes.
*/
Script::Script(const Dictionary::Ptr& properties)
: DynamicObject(properties)
2013-02-26 10:13:54 +01:00
{
RegisterAttribute("language", Attribute_Config, &m_Language);
RegisterAttribute("code", Attribute_Config, &m_Code);
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
void Script::Start(void)
2013-02-14 14:58:26 +01:00
{
2013-03-01 12:07:52 +01:00
assert(OwnsLock());
2013-02-14 14:58:26 +01:00
SpawnInterpreter();
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
String Script::GetLanguage(void) const
{
2013-03-01 12:07:52 +01:00
ObjectLock olock(this);
2013-02-26 10:13:54 +01:00
return m_Language;
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
String Script::GetCode(void) const
{
2013-03-01 12:07:52 +01:00
ObjectLock olock(this);
2013-02-26 10:13:54 +01:00
return m_Code;
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
void Script::OnAttributeUpdate(const String& name, const Value& oldValue)
{
2013-03-02 09:07:47 +01:00
assert(!OwnsLock());
2013-02-14 14:58:26 +01:00
if (name == "language" || name == "code")
SpawnInterpreter();
}
2013-03-02 09:07:47 +01:00
/**
* @threadsafety Always.
*/
2013-02-14 14:58:26 +01:00
void Script::SpawnInterpreter(void)
{
2013-02-14 14:58:26 +01:00
Logger::Write(LogInformation, "base", "Reloading script '" + GetName() + "'");
2013-02-14 14:58:26 +01:00
ScriptLanguage::Ptr language = ScriptLanguage::GetByName(GetLanguage());
m_Interpreter = language->CreateInterpreter(GetSelf());
}