Salome HOME
Merge branch 'V9_9_BR'
[modules/kernel.git] / src / MPIContainer / MPIObject_i.hxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef _SALOME_POBJECT_I_H_
24 #define _SALOME_POBJECT_I_H_ 
25
26 #include <mpi.h>
27 #include <string>
28 #include <map>
29 #include <SALOMEconfig.h>
30 #include CORBA_SERVER_HEADER(SALOME_MPIObject)
31
32 class MPIObject_i: public virtual POA_Engines::MPIObject
33 {
34  public:
35   MPIObject_i();
36   ~MPIObject_i();
37     
38   Engines::IORTab* tior();
39   void tior(const Engines::IORTab& ior);
40
41  protected:
42   // Numero du processus
43   int _numproc;
44   // Nombre de processus
45   int _nbproc;
46   // IOR des objets paralleles sur tous les process mpi
47   Engines::IORTab* _tior;
48   // Echange des IOR de l'objet entre process
49   void BCastIOR(CORBA::ORB_ptr orb,Engines::MPIObject_ptr pobj,bool amiCont);
50 #ifdef HAVE_MPI2
51   // MPI2 connection
52   void remoteMPI2Connect(std::string service);
53   // MPI2 disconnection
54   void remoteMPI2Disconnect(std::string service);
55 #endif
56
57 protected:
58   std::map<std::string, MPI_Comm> _gcom;
59
60 private:
61   std::map<std::string, MPI_Comm> _icom;
62   std::map<std::string, bool> _srv;
63   std::map<std::string, std::string> _port_name;
64
65 } ;
66
67 #endif