Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/kernel.git] / src / MPIContainer / MPIContainer_i.hxx
1 //  SALOME MPIContainer : implemenation of container based on MPI libraries
2 //
3 //  Copyright (C) 2003  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. 
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 //
24 //  File   : MPIContainer_i.hxx
25 //  Module : SALOME
26
27 #ifndef _SALOME_PCONTAINER_
28 #define _SALOME_PCONTAINER_ 
29
30 #include <SALOMEconfig.h>
31 #include CORBA_SERVER_HEADER(SALOME_MPIContainer)
32 #include "SALOME_Container_i.hxx"
33 #include "MPIObject_i.hxx"
34
35 class Engines_MPIContainer_i : public POA_Engines::MPIContainer,
36                                public Engines_Container_i,
37                                public MPIObject_i
38 {
39
40  public:
41   // Constructor
42   Engines_MPIContainer_i( int nbproc, int numproc,
43                           CORBA::ORB_ptr orb,
44                           PortableServer::POA_ptr poa,
45                           char * containerName,
46                           int argc, char *argv[]);
47   Engines_MPIContainer_i(int nbproc, int numproc);
48   // Destructor
49   ~Engines_MPIContainer_i();
50
51   // shutdown corba server
52   void Shutdown();
53
54   // Load a component library
55   // synchronous version for process 0
56   bool load_component_Library(const char* componentName);
57   // asynchronous version for other process
58   void Asload_component_Library(const char* componentName);
59
60   // Create an instance of component
61   // synchronous version for process 0
62   Engines::Component_ptr
63   create_component_instance( const char* componentName,
64                              CORBA::Long studyId); // 0 for multiStudy
65   // asynchronous version for other process
66   void Ascreate_component_instance( const char* componentName,
67                                   CORBA::Long studyId); // 0 for multiStudy
68
69   // Load a component in current MPI container
70   // synchronous version for process 0
71   Engines::Component_ptr load_impl(const char* nameToRegister,
72                                    const char* componentName);
73   // asynchronous version for other process
74   void Asload_impl(const char* nameToRegister, const char* componentName);
75
76   // Unload a component from current MPI container
77   // synchronous version for process 0
78   void remove_impl(Engines::Component_ptr component_i);
79   // asynchronous version for other process
80   void Asremove_impl(Engines::Component_ptr component_i);
81
82   // synchronous version for process 0
83   void finalize_removal();
84   // asynchronous version for other process
85   void Asfinalize_removal();
86
87  private:
88   // local version to not duplicate code 
89   // called by synchronous and asynchronous version
90   bool Lload_component_Library(const char* componentName);
91   Engines::Component_ptr
92   Lcreate_component_instance( const char* componentName,
93                               CORBA::Long studyId); // 0 for multiStudy
94   Engines::Component_ptr Lload_impl(const char* nameToRegister,
95                                     const char* componentName);
96   void Lremove_impl(Engines::Component_ptr component_i);
97   void Lfinalize_removal();
98
99   Engines::Component_ptr
100   createMPIInstance(std::string genericRegisterName,
101                     void *handle,
102                     int studyId);
103
104 };
105 #endif