Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PythonInterpreter.h « system « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9a573ffb86cedaa9243ba93599b131c7c6de45d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
//
//  Filename         : PythonInterpreter.h
//  Author(s)        : Emmanuel Turquin
//  Purpose          : Python Interpreter
//  Date of creation : 17/04/2003
//
///////////////////////////////////////////////////////////////////////////////


//
//  Copyright (C) : Please refer to the COPYRIGHT file distributed 
//   with this source distribution. 
//
//  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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
//
///////////////////////////////////////////////////////////////////////////////

#ifndef  PYTHON_INTERPRETER_H
# define PYTHON_INTERPRETER_H

# include <iostream>
# include <Python.h>
# include "StringUtils.h"
# include "Interpreter.h"

class LIB_SYSTEM_EXPORT PythonInterpreter : public Interpreter
{
 public:

  PythonInterpreter() {
    _language = "Python";
    Py_Initialize();
  }

  virtual ~PythonInterpreter() {
    Py_Finalize();
  }

  int interpretCmd(const string& cmd) {
    initPath();
    char* c_cmd = strdup(cmd.c_str());
    int err = PyRun_SimpleString(c_cmd);
    free(c_cmd);
    return err;
  }

  int interpretFile(const string& filename) {
    initPath();
    string cmd("execfile(\"" + filename + "\")");
    char* c_cmd = strdup(cmd.c_str());
    int err = PyRun_SimpleString(c_cmd);
    free(c_cmd);
    return err;
  }

  struct Options
  {
    static void setPythonPath(const string& path) {
      _path = path;
    }

    static string getPythonPath() {
      return _path;
    }
  };

  void reset() {
    Py_Finalize();
    Py_Initialize();
    _initialized = false;
  }

private:

  static void initPath() {
    if (_initialized)
      return;
    PyRun_SimpleString("import sys");
    vector<string> pathnames;
    StringUtils::getPathName(_path, "", pathnames);
    string cmd;
    char* c_cmd;
    for (vector<string>::const_iterator it = pathnames.begin();
	 it != pathnames.end();
	 ++it) {
      cmd = "sys.path.append(\"" + *it + "\")";
      c_cmd = strdup(cmd.c_str());
      PyRun_SimpleString(c_cmd);
      free(c_cmd);
    }
    //    PyRun_SimpleString("from Freestyle import *");
    _initialized = true;
  }

  static bool	_initialized;
  static string _path;
};

#endif // PYTHON_INTERPRETER_H