Salome HOME
95717ea31fb091b1ba7e6386166e8d96a900b39f
[tools/medcoupling.git] / src / ParaMEDMEM / ExplicitMapping.hxx
1 // Copyright (C) 2007-2019  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
20 #ifndef __EXPLICITMAPPING_HXX__
21 #define __EXPLICITMAPPING_HXX__
22
23 #include "MCIdType.hxx"
24
25 #include <vector>
26 #include <map>
27 #include <set>
28
29 namespace MEDCoupling
30 {
31   /*!
32    * Internal class, not part of the public API.
33    *
34    * Used by the ExplicitCoincidentDEC.
35    */
36   class ExplicitMapping
37   {
38   public:
39     ExplicitMapping();
40     ~ExplicitMapping();
41     
42     void pushBackElem(std::pair<int,mcIdType> idistant);
43     void  setDistantElem(mcIdType ilocal, std::pair<int,mcIdType> idistant);
44     int nbDistantDomains();
45     std::pair <int,mcIdType> getDistantNumbering(mcIdType ielem) const;
46     
47     int getDistantDomain(int i);
48     int getNbDistantElems(int i);
49     mcIdType* serialize(int idproc);
50     void unserialize(int nbprocs, int* sizes,int nbtarget, int* targetrank, mcIdType* commbuffer);
51     
52     int* getBufferIndex() const { return _buffer_index; }
53     int* getCounts() const { return _send_counts; }
54   private:
55     std::vector <std::pair<int,mcIdType> > _mapping;
56     std::set<int> _distant_domains;
57     int* _numbers;
58     int* _domains;
59     mcIdType* _comm_buffer;
60     int* _buffer_index;
61     int* _send_counts;
62
63     void computeNumbers();
64   };
65 }
66
67 #endif