2013-02-14 12:02:02 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* 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"
|
2013-02-14 12:02:02 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(Script);
|
2013-02-14 12:02:02 +01:00
|
|
|
|
2013-02-27 12:44:51 +01:00
|
|
|
void Script::Start(void)
|
2013-02-14 14:58:26 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02: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();
|
|
|
|
}
|
|
|
|
|
2013-02-14 12:02:02 +01:00
|
|
|
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-02-14 12:02:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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 12:02:02 +01:00
|
|
|
}
|
|
|
|
|
2013-02-14 14:58:26 +01:00
|
|
|
void Script::SpawnInterpreter(void)
|
2013-02-14 12:02:02 +01:00
|
|
|
{
|
2013-03-16 21:18:53 +01:00
|
|
|
Log(LogInformation, "base", "Reloading script '" + GetName() + "'");
|
2013-02-14 12:02:02 +01:00
|
|
|
|
2013-02-14 14:58:26 +01:00
|
|
|
ScriptLanguage::Ptr language = ScriptLanguage::GetByName(GetLanguage());
|
|
|
|
m_Interpreter = language->CreateInterpreter(GetSelf());
|
2013-02-14 12:02:02 +01:00
|
|
|
}
|
2013-08-20 11:06:04 +02:00
|
|
|
|
|
|
|
void Script::InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const
|
|
|
|
{
|
|
|
|
DynamicObject::InternalSerialize(bag, attributeTypes);
|
|
|
|
|
2013-08-29 10:40:43 +02:00
|
|
|
if (attributeTypes & Attribute_Config) {
|
|
|
|
bag->Set("language", m_Language);
|
|
|
|
bag->Set("code", m_Code);
|
|
|
|
}
|
2013-08-20 11:06:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Script::InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes)
|
|
|
|
{
|
|
|
|
DynamicObject::InternalDeserialize(bag, attributeTypes);
|
|
|
|
|
2013-08-29 10:40:43 +02:00
|
|
|
if (attributeTypes & Attribute_Config) {
|
|
|
|
m_Language = bag->Get("language");
|
|
|
|
m_Code = bag->Get("code");
|
|
|
|
}
|
2013-08-28 08:18:58 +02:00
|
|
|
}
|