Salome HOME
876e76e654e6723a5b5195ade4a9347f89a2aef4
[tools/medcoupling.git] / src / RENUMBER_Swig / MEDRenumberCommon.i
1 // Copyright (C) 2007-2015  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.hxx"
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 %feature("autodoc", "1");
48 %feature("docstring");
49
50 %newobject MED_RENUMBER::RenumberingFactory;
51
52 %nodefaultctor;
53
54 %rename (InterpKernelException) INTERP_KERNEL::Exception;
55
56 %include "MEDCouplingRefCountObject.i"
57 %include "MEDCouplingMemArray.i"
58
59 class Renumbering
60 {
61 public:
62   %extend
63   {
64     virtual PyObject *renumber(const MEDCoupling::DataArrayInt *graph, const MEDCoupling::DataArrayInt *index_graph) throw(INTERP_KERNEL::Exception)
65     {
66       if(!graph || !index_graph)
67         throw INTERP_KERNEL::Exception("wrap of Renumbering::renumber : One of the input arrays is NULL !");
68       if(!graph->isAllocated() || !index_graph->isAllocated())
69         throw INTERP_KERNEL::Exception("wrap of Renumbering::renumber : One of the input arrays is not allocated !");
70       MEDCoupling::DataArrayInt *out0(0),*out1(0);
71       self->renumber(graph->begin(),index_graph->begin(),index_graph->getNumberOfTuples()-1,out0,out1);
72       PyObject *ret=PyTuple_New(2);
73       PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(out0),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
74       PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(out1),SWIGTYPE_p_MEDCoupling__DataArrayInt, SWIG_POINTER_OWN | 0 ));
75       return ret;
76     }
77   }
78   virtual ~Renumbering();
79 };
80
81 namespace MED_RENUMBER
82 {
83   Renumbering *RenumberingFactory(const std::string& s) throw(INTERP_KERNEL::Exception);
84 }
85
86 %inline
87 {
88   std::vector<std::string> RenumberAvailableMethods()throw(INTERP_KERNEL::Exception)
89   {
90     std::vector<std::string> ret;
91 #ifdef HAS_BOOST
92     ret.push_back(std::string("BOOST"));
93 #endif
94 #ifdef HAS_METIS
95     ret.push_back(std::string("METIS"));
96 #endif
97     return ret;
98   }
99 }
100
101 %pythoncode %{
102 import os
103 __filename=os.environ.get('PYTHONSTARTUP')
104 if __filename and os.path.isfile(__filename):
105   execfile(__filename)
106   pass
107 %}