Salome HOME
Copyright update 2021
[tools/medcoupling.git] / src / RENUMBER_Swig / MEDRenumberImpl.i
1 // Copyright (C) 2017-2021  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 (EDF R&D)
20
21 %{
22 #include "RenumberingFactory.hxx"
23 #include "RENUMBER_Renumbering.hxx"
24   
25 using namespace MED_RENUMBER;
26 %}
27
28 %newobject MED_RENUMBER::RenumberingFactory;
29
30 class Renumbering
31 {
32 public:
33   %extend
34   {
35     virtual PyObject *renumber(const MEDCoupling::DataArrayIdType *graph, const MEDCoupling::DataArrayIdType *index_graph)
36     {
37       if(!graph || !index_graph)
38         throw INTERP_KERNEL::Exception("wrap of Renumbering::renumber : One of the input arrays is NULL !");
39       if(!graph->isAllocated() || !index_graph->isAllocated())
40         throw INTERP_KERNEL::Exception("wrap of Renumbering::renumber : One of the input arrays is not allocated !");
41       MEDCoupling::DataArrayIdType *out0(0),*out1(0);
42       self->renumber(graph->begin(),index_graph->begin(),index_graph->getNumberOfTuples()-1,out0,out1);
43       PyObject *ret=PyTuple_New(2);
44       PyTuple_SetItem(ret,0,SWIG_NewPointerObj(SWIG_as_voidptr(out0),SWIGTITraits<mcIdType>::TI, SWIG_POINTER_OWN | 0 ));
45       PyTuple_SetItem(ret,1,SWIG_NewPointerObj(SWIG_as_voidptr(out1),SWIGTITraits<mcIdType>::TI, SWIG_POINTER_OWN | 0 ));
46       return ret;
47     }
48   }
49   virtual ~Renumbering();
50 };
51
52 namespace MED_RENUMBER
53 {
54   Renumbering *RenumberingFactory(const std::string& s);
55   std::vector<std::string> RenumberAvailableMethods();
56   std::vector<std::string> AllRenumberMethods();
57 }