Salome HOME
Merge changes from 'master' branch.
[modules/gui.git] / tools / PyInterp / src / PyInterp_Utils.h
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library 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 GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : PyInterp_Utils.h
23 //  Author : Christian CAREMOLI, Paul RASCLE, Adrien BRUNETON
24
25 #ifndef PYINTERP_UTILS_H
26 #define PYINTERP_UTILS_H
27
28 #include "PyInterp.h"
29
30 #ifdef _DEBUG_
31   #include <iostream>
32 #endif
33
34 #if PY_VERSION_HEX < 0x03050000
35 static char*
36 Py_EncodeLocale(const wchar_t *arg, size_t *size)
37 {
38         return _Py_wchar2char(arg, size);
39 }
40 static wchar_t*
41 Py_DecodeLocale(const char *arg, size_t *size)
42 {
43         return _Py_char2wchar(arg, size);
44 }
45 #endif
46
47 /**
48  * \class PyLockWrapper
49  * \brief Python GIL wrapper.
50  *
51  * Utility class wrapping the Python GIL acquisition. This makes use of the high level
52  * API (PyGILState_Ensure and PyGILState_Release), and is hence compatible with only
53  * one running Python interpreter (no call to Py_NewInterpreter()).
54  * When the class is instanciated the lock is acquired. It is released at destruction time.
55  * Copy construction (and hence assignation) is forbidden.
56  */
57 class PYINTERP_EXPORT PyLockWrapper
58 {
59 public:
60   /**
61    * \brief Constructor. Automatically acquires GIL.
62    */
63   PyLockWrapper()
64   {
65     _gil_state = PyGILState_Ensure();
66     // Save current thread state for later comparison
67     _state = PyGILState_GetThisThreadState();
68   }
69
70   /**
71    * \brief Destructor. Automatically releases GIL.
72    */
73   ~PyLockWrapper()
74   {
75     PyThreadState* _currState = PyGILState_GetThisThreadState();
76 #ifdef _DEBUG_
77     if (_currState != _state)
78     {
79       std::cout << "!!!!!!!!! PyLockWrapper inconsistency - now entering infinite loop for debugging\n";
80       while(1);
81     }
82 #endif
83     PyGILState_Release(_gil_state);
84   }
85
86 private:
87   PyGILState_STATE _gil_state;
88   PyThreadState* _state;
89
90   // "Rule of 3" - Forbid usage of copy operator and copy-constructor
91   PyLockWrapper(const PyLockWrapper & another);
92   const PyLockWrapper & operator=(const PyLockWrapper & another);
93 };
94
95 /**
96  * \class PyObjWrapper
97  * \brief Utility class to properly handle the reference counting required on Python objects.
98  */
99 class PYINTERP_EXPORT PyObjWrapper
100 {
101   PyObject* myObject;
102 public:
103   PyObjWrapper(PyObject* theObject) : myObject(theObject) {}
104   PyObjWrapper() : myObject(0) {}
105   virtual ~PyObjWrapper() { Py_XDECREF(myObject); }
106
107   operator PyObject*()    { return myObject;  }
108   PyObject* operator->()  { return myObject;  }
109   PyObject* get()         { return myObject;  }
110   bool operator!()        { return !myObject; }
111   bool operator==(PyObject* theObject) { return myObject == theObject; }
112   PyObject** operator&()  { return &myObject; }
113   PyObjWrapper& operator=(PyObjWrapper* theObjWrapper)
114   {
115     Py_XDECREF(myObject);
116     myObject = theObjWrapper->myObject;
117     Py_XINCREF(myObject);
118     return *this;
119   }
120   PyObjWrapper& operator=(const PyObjWrapper& theObjWrapper)
121   {
122     Py_XDECREF(myObject);
123     myObject = theObjWrapper.myObject;
124     Py_XINCREF(myObject);
125     return *this;
126   }
127 };
128
129 #endif // PYINTERP_UTILS_H