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