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