2013-02-14 14:58:26 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
2013-02-14 14:58:26 +01:00
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PYTHONINTERPRETER_H
|
|
|
|
#define PYTHONINTERPRETER_H
|
|
|
|
|
2013-03-18 11:02:18 +01:00
|
|
|
#include <Python.h>
|
|
|
|
#include "python/pythonlanguage.h"
|
|
|
|
#include "base/scriptinterpreter.h"
|
|
|
|
|
2013-02-14 14:58:26 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A Python script interpreter.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2013-03-18 11:02:18 +01:00
|
|
|
class PythonInterpreter : public ScriptInterpreter
|
2013-02-14 14:58:26 +01:00
|
|
|
{
|
|
|
|
public:
|
2013-07-09 08:42:08 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(PythonInterpreter);
|
2013-02-14 14:58:26 +01:00
|
|
|
|
|
|
|
PythonInterpreter(const PythonLanguage::Ptr& language, const Script::Ptr& script);
|
|
|
|
~PythonInterpreter(void);
|
|
|
|
|
2013-02-15 16:34:33 +01:00
|
|
|
void RegisterPythonFunction(const String& name, PyObject *function);
|
|
|
|
void UnregisterPythonFunction(const String& name);
|
2013-02-14 16:43:58 +01:00
|
|
|
|
2013-02-14 14:58:26 +01:00
|
|
|
protected:
|
|
|
|
PythonLanguage::Ptr m_Language;
|
|
|
|
PyThreadState *m_ThreadState;
|
2013-03-18 11:02:18 +01:00
|
|
|
std::map<String, PyObject *> m_Functions;
|
2013-02-14 14:58:26 +01:00
|
|
|
|
2013-03-27 07:27:44 +01:00
|
|
|
virtual Value ProcessCall(const String& function, const std::vector<Value>& arguments);
|
2013-02-14 14:58:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PYTHONINTERPRETER_H */
|