icinga2/lib/base/script.cpp

78 lines
2.5 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. *
******************************************************************************/
2013-03-16 21:18:53 +01:00
#include "base/script.h"
#include "base/scriptlanguage.h"
#include "base/dynamictype.h"
#include "base/logger_fwd.h"
#include "base/objectlock.h"
2013-08-28 08:18:58 +02:00
#include "base/debug.h"
using namespace icinga;
2013-03-01 12:07:52 +01:00
REGISTER_TYPE(Script);
void Script::Start(void)
2013-02-14 14:58:26 +01:00
{
DynamicObject::Start();
2013-03-18 11:59:26 +01:00
ASSERT(OwnsLock());
2013-03-01 12:07:52 +01:00
2013-02-14 14:58:26 +01:00
SpawnInterpreter();
}
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;
}
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-02-14 14:58:26 +01:00
void Script::SpawnInterpreter(void)
{
2013-03-16 21:18:53 +01:00
Log(LogInformation, "base", "Reloading script '" + GetName() + "'");
2013-02-14 14:58:26 +01:00
ScriptLanguage::Ptr language = ScriptLanguage::GetByName(GetLanguage());
m_Interpreter = language->CreateInterpreter(GetSelf());
}
void Script::InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const
{
DynamicObject::InternalSerialize(bag, attributeTypes);
bag->Set("language", m_Language);
bag->Set("code", m_Code);
}
void Script::InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes)
{
DynamicObject::InternalDeserialize(bag, attributeTypes);
m_Language = bag->Get("language");
m_Code = bag->Get("code");
2013-08-28 08:18:58 +02:00
}