Merge pull request #2948 from ace20022/blu_lang_fix
[vuplus_xbmc] / xbmc / interfaces / python / PythonInvoker.h
1 #pragma once
2 /*
3  *      Copyright (C) 2013 Team XBMC
4  *      http://www.xbmc.org
5  *
6  *  This Program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2, or (at your option)
9  *  any later version.
10  *
11  *  This Program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with XBMC; see the file COPYING.  If not, see
18  *  <http://www.gnu.org/licenses/>.
19  *
20  */
21
22 #include <string>
23
24 #include "interfaces/generic/ILanguageInvoker.h"
25 #include "threads/CriticalSection.h"
26 #include "threads/Event.h"
27
28 class CPythonInvoker : public ILanguageInvoker
29 {
30 public:
31   CPythonInvoker(ILanguageInvocationHandler *invocationHandler);
32   virtual ~CPythonInvoker();
33
34   virtual bool Execute(const std::string &script, const std::vector<std::string> &arguments = std::vector<std::string>());
35
36   virtual bool IsStopping() const { return m_stop || ILanguageInvoker::IsStopping(); }
37
38 protected:
39   virtual bool execute(const std::string &script, const std::vector<std::string> &arguments);
40   virtual bool stop(bool abort);
41
42   virtual void onError();
43
44 private:
45   void addPath(const std::string path);
46
47   char *m_source;
48   unsigned int  m_argc;
49   char **m_argv;
50   std::string m_pythonPath;
51   void *m_threadState;
52   bool m_stop;
53   CEvent m_stoppedEvent;
54   CCriticalSection m_critical;
55 };