icinga2/lib/base/script.cpp

47 lines
2 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2013-09-25 01:43:57 -04:00
* Copyright (C) 2012-2013 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 16:18:53 -04: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 02:18:58 -04:00
#include "base/debug.h"
using namespace icinga;
2013-03-01 06:07:52 -05:00
REGISTER_TYPE(Script);
void Script::Start(void)
2013-02-14 08:58:26 -05:00
{
DynamicObject::Start();
2013-03-18 06:59:26 -04:00
ASSERT(OwnsLock());
2013-03-01 06:07:52 -05:00
2013-02-14 08:58:26 -05:00
SpawnInterpreter();
}
void Script::SpawnInterpreter(void)
{
2013-03-16 16:18:53 -04:00
Log(LogInformation, "base", "Reloading script '" + GetName() + "'");
2013-02-14 08:58:26 -05:00
ScriptLanguage::Ptr language = ScriptLanguage::GetByName(GetLanguage());
m_Interpreter = language->CreateInterpreter(GetSelf());
}