Salome HOME
Ready for Salome9/py3 - Thanks a lot Gilles
[tools/medcoupling.git] / src / RENUMBER_Swig / MEDRenumberCommon.i
1 // Copyright (C) 2007-2016  CEA/DEN, 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 // Author : Anthony Geay (CEA/DEN)
20
21 %module MEDRenumber
22
23 %include std_vector.i
24 %include std_string.i
25
26 %{
27 #include "MEDCouplingMemArray.txx"
28 #include "MCAuto.hxx"
29 #include "MEDCouplingDataArrayTypemaps.i"
30
31 #include "RenumberingFactory.hxx"
32 #include "RENUMBER_Renumbering.hxx"
33
34 using namespace MEDCoupling;
35 using namespace INTERP_KERNEL;
36  using namespace MED_RENUMBER;
37 %}
38
39 %template(ivec) std::vector<int>;
40 %template(dvec) std::vector<double>;
41 %template(svec) std::vector<std::string>;
42
43 #ifdef WITH_NUMPY
44 %init %{ import_array(); %}
45 #endif
46
47 %init %{ initializeMe(); %}
48
49 %feature("autodoc", "1");
50 %feature("docstring");
51
52 %newobject MED_RENUMBER::RenumberingFactory;
53
54 %nodefaultctor;
55
56 %rename (InterpKernelException) INTERP_KERNEL::Exception;
57
58 %include "MEDCouplingRefCountObject.i"
59 %include "MEDCouplingMemArray.i"
60
61 %{
62   void initializeMe()
63   {// AGY : here initialization of C++ traits in MEDCouplingDataArrayTypemaps.i for code factorization. Awful, I know, but no other solutions.
64     SWIGTITraits<double>::TI=SWIGTYPE_p_MEDCoupling__DataArrayDouble;
65     SWIGTITraits<float>::TI=SWIGTYPE_p_MEDCoupling__DataArrayFloat;
66   }
67 %}
68
69 class Renumbering
70 {
71 public:
72   %extend
73   {
74     virtual PyObject *renumber(const MEDCoupling::DataArrayInt *graph, const MEDCoupling::DataArrayInt *index_graph) throw(INTERP_KERNEL::Exception)
75     {
76       if(!graph || !index_graph)
77         throw INTERP_KERNEL::Exception("wrap of Renumbering::renumber : One of the input arrays is NULL !");
78       if(!graph->isAllocated() || !index_graph->isAllocated())
79         throw INTERP_KERNEL::Exception("wrap of Renumbering::renumber : One of the input arrays is not allocated !");
80       MEDCoupling::DataArrayInt *out0(0),*out1(0);
81       self->renumber(graph->begin(),index_graph->begin(),index_graph->getNumberOfTuples()-1,out0,out1);
82       PyObject *ret=PyTuple_New(2);
83       PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(out0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
84       PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(out1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
85       return ret;
86     }
87   }
88   virtual ~Renumbering();
89 };
90
91 namespace MED_RENUMBER
92 {
93   Renumbering *RenumberingFactory(const std::string& s) throw(INTERP_KERNEL::Exception);
94 }
95
96 %inline
97 {
98   std::vector<std::string> RenumberAvailableMethods()throw(INTERP_KERNEL::Exception)
99   {
100     std::vector<std::string> ret;
101 #ifdef HAS_BOOST
102     ret.push_back(std::string("BOOST"));
103 #endif
104 #ifdef HAS_METIS
105     ret.push_back(std::string("METIS"));
106 #endif
107     return ret;
108   }
109 }
110
111 %pythoncode %{
112 import os
113 __filename=os.environ.get('PYTHONSTARTUP')
114 if __filename and os.path.isfile(__filename):
115   exec(open(__filename).read())
116   pass
117 %}