Salome HOME
Initial version.
[tools/py2cpp.git] / src / PyPtr.cxx
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 #include "PyPtr.hxx"
20 namespace py2cpp
21 {
22
23 PyPtr PyPtr::getAttr(const std::string& attribute)const
24 {
25   PyObject* result = nullptr;
26   PyObject* thisObj = get();
27   if(thisObj)
28     result = PyObject_GetAttrString(thisObj, attribute.c_str());
29   
30   return PyPtr(result);
31 }
32
33 std::string PyPtr::repr()const
34 {
35   std::string result;
36   PyObject* thisObj = get();
37   if(thisObj)
38   {
39     PyObject* pyResult = PyObject_Repr(thisObj);
40     if(pyResult && PyUnicode_Check(pyResult))
41       result = PyUnicode_AsUTF8(pyResult);
42     Py_XDECREF(pyResult);
43   }
44   return result;
45 }
46
47 }