icinga2/lib/python/pythoninterpreter.cpp

78 lines
2.7 KiB
C++
Raw Normal View History

2013-02-14 14:58:26 +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. *
******************************************************************************/
#include "i2-python.h"
using namespace icinga;
PythonInterpreter::PythonInterpreter(const PythonLanguage::Ptr& language,
const Script::Ptr& script)
2013-02-14 14:58:26 +01:00
: ScriptInterpreter(script), m_Language(language), m_ThreadState(NULL)
{
PyEval_AcquireLock();
PyInterpreterState *interp = m_Language->GetMainThreadState()->interp;
m_ThreadState = PyThreadState_New(interp);
(void) PyThreadState_Swap(m_ThreadState);
2013-02-14 14:58:26 +01:00
PyRun_SimpleString(script->GetCode().CStr());
(void) PyThreadState_Swap(NULL);
PyEval_ReleaseLock();
SubscribeFunction("python::Test");
2013-02-14 14:58:26 +01:00
}
PythonInterpreter::~PythonInterpreter(void)
{
PyEval_AcquireLock();
(void) PyThreadState_Swap(NULL);
2013-02-14 14:58:26 +01:00
PyThreadState_Clear(m_ThreadState);
PyThreadState_Delete(m_ThreadState);
PyEval_ReleaseLock();
}
void PythonInterpreter::RegisterPythonFunction(const String& name, PyObject *function)
{
SubscribeFunction(name);
Py_INCREF(function);
m_Functions[name] = function;
}
void PythonInterpreter::UnregisterPythonFunction(const String& name)
{
UnsubscribeFunction(name);
m_Functions.erase(name);
}
2013-02-15 05:04:38 +01:00
void PythonInterpreter::ProcessCall(const ScriptTask::Ptr& task, const String& function,
const vector<Value>& arguments)
2013-02-14 14:58:26 +01:00
{
PyEval_AcquireThread(m_ThreadState);
std::cout << "Received call for method '" << function << "'" << std::endl;
2013-02-14 14:58:26 +01:00
PyEval_ReleaseThread(m_ThreadState);
task->FinishResult(0);
2013-02-14 14:58:26 +01:00
}