]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/RENUMBER_Swig/MEDRenumberCommon.i
Salome HOME
fba1600f602534ae54aa060f614f1d245358af34
[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 %inline
62 {
63   void initializeMe()
64   {
65     SWIGTITraits<double>::TI=SWIGTYPE_p_MEDCoupling__DataArrayDouble;
66     SWIGTITraits<float>::TI=SWIGTYPE_p_MEDCoupling__DataArrayFloat;
67   }
68 }
69
70 class Renumbering
71 {
72 public:
73   %extend
74   {
75     virtual PyObject *renumber(const MEDCoupling::DataArrayInt *graph, const MEDCoupling::DataArrayInt *index_graph) throw(INTERP_KERNEL::Exception)
76     {
77       if(!graph || !index_graph)
78         throw INTERP_KERNEL::Exception("wrap of Renumbering::renumber : One of the input arrays is NULL !");
79       if(!graph->isAllocated() || !index_graph->isAllocated())
80         throw INTERP_KERNEL::Exception("wrap of Renumbering::renumber : One of the input arrays is not allocated !");
81       MEDCoupling::DataArrayInt *out0(0),*out1(0);
82       self->renumber(graph->begin(),index_graph->begin(),index_graph->getNumberOfTuples()-1,out0,out1);
83       PyObject *ret=PyTuple_New(2);
84       PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(out0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
85       PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(out1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
86       return ret;
87     }
88   }
89   virtual ~Renumbering();
90 };
91
92 namespace MED_RENUMBER
93 {
94   Renumbering *RenumberingFactory(const std::string& s) throw(INTERP_KERNEL::Exception);
95 }
96
97 %inline
98 {
99   std::vector<std::string> RenumberAvailableMethods()throw(INTERP_KERNEL::Exception)
100   {
101     std::vector<std::string> ret;
102 #ifdef HAS_BOOST
103     ret.push_back(std::string("BOOST"));
104 #endif
105 #ifdef HAS_METIS
106     ret.push_back(std::string("METIS"));
107 #endif
108     return ret;
109   }
110 }
111
112 %pythoncode %{
113 import os
114 __filename=os.environ.get('PYTHONSTARTUP')
115 if __filename and os.path.isfile(__filename):
116   execfile(__filename)
117   pass
118 %}