Salome HOME
Add copy methods to PyPtr.
[tools/py2cpp.git] / src / PyPtr.hxx
1 // Copyright (C) 2019  EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef PY2CPP_PYPTR_HXX
20 #define PY2CPP_PYPTR_HXX
21 #include <Python.h>
22 #include <memory>
23 #include <string>
24
25 namespace py2cpp
26 {
27 class PyPtrDeleter
28 {
29 public:
30   void operator()(PyObject * po){Py_DECREF(po);}
31 };
32
33 typedef std::unique_ptr<PyObject, PyPtrDeleter> _PyPtr;
34
35 class PyPtr: public _PyPtr
36 {
37 public:
38   PyPtr();
39   PyPtr(std::nullptr_t copy);
40   PyPtr(PyObject* pyObj);
41   PyPtr(const PyPtr& copy);
42   PyPtr(PyPtr&& move);
43   PyPtr& operator=(const PyPtr& copy);
44   PyPtr& operator=(PyPtr&& move);
45   PyPtr& operator=(std::nullptr_t copy);
46
47   PyPtr getAttr(const std::string& attribute)const;
48   void setAttr(const std::string& attribute, const PyPtr& value)const;
49   std::string repr()const;
50 };
51
52 class AutoGIL
53 {
54 public:
55   AutoGIL():_gstate(PyGILState_Ensure()) { }
56   ~AutoGIL() { PyGILState_Release(_gstate); }
57 private:
58   PyGILState_STATE _gstate;
59 };
60
61 }
62
63 #endif // PY2CPP_PYPTR_HXX