Salome HOME
merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_28sep2007
[modules/kernel.git] / src / ParallelContainer / SALOME_ParallelContainer_i.hxx
1 //  SALOME_ParallelContainer : implementation of container and engine for Parallel Kernel
2 //
3 //  Copyright (C) 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //  File   : SALOME_ParallelContainer_i.hxx
23 //  Author : AndrĂ© RIBES, EDF
24 //  Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
25
26 #ifndef _SALOME_PARALLEL_CONTAINER_I_HXX_
27 #define _SALOME_PARALLEL_CONTAINER_I_HXX_
28
29 #include <SALOMEconfig.h>
30
31 #include "SALOME_ComponentPaCO_Engines_Container_server.h"
32
33 #include <iostream>
34 #include <signal.h>
35 #include <stdlib.h>
36 #ifndef WNT
37 #include <unistd.h>
38 #endif
39 #include <sys/types.h>
40 #include <omnithread.h>
41 #include <map>
42 #include <string>
43
44 class SALOME_NamingService;
45
46
47 #if defined CONTAINER_EXPORTS
48 #if defined WIN32
49 #define CONTAINER_EXPORT __declspec( dllexport )
50 #else
51 #define CONTAINER_EXPORT
52 #endif
53 #else
54 #if defined WNT
55 #define CONTAINER_EXPORT __declspec( dllimport )
56 #else
57 #define CONTAINER_EXPORT
58 #endif
59 #endif
60
61 class CONTAINER_EXPORT Engines_Parallel_Container_i:
62   /*  public virtual POA_Engines::Container, */
63   public Engines::Container_serv,
64   public virtual PortableServer::RefCountServantBase
65 {
66 public:
67   Engines_Parallel_Container_i(CORBA::ORB_ptr orb, char * ior);
68   Engines_Parallel_Container_i(CORBA::ORB_ptr orb, char * ior,
69                       PortableServer::POA_ptr poa,
70                       char * containerName ,
71                       int argc, char* argv[],
72                       bool activAndRegist = true,
73                       bool isServantAloneInProcess = true);
74   virtual ~Engines_Parallel_Container_i();
75
76   // --- CORBA methods
77
78   virtual bool load_component_Library(const char* componentName);
79
80   virtual Engines::Component_ptr
81   create_component_instance( const char* componentName,
82                              CORBA::Long studyId); // 0 for multiStudy
83
84   Engines::Component_ptr
85   find_component_instance( const char* registeredName,
86                            CORBA::Long studyId); // 0 for multiStudy
87
88   Engines::Component_ptr
89   load_impl(const char* nameToRegister,
90             const char* componentName);
91
92
93   void remove_impl(Engines::Component_ptr component_i);
94   void finalize_removal();
95
96   virtual void ping();
97   char* name();
98   virtual void Shutdown();
99   char* getHostName();
100   CORBA::Long getPID();
101   //! Kill current container
102   bool Kill_impl() ;
103
104   // --- local C++ methods
105
106   Engines::Component_ptr
107   find_or_create_instance( std::string genericRegisterName,
108                            std::string componentLibraryName);
109
110   Engines::Component_ptr
111   createInstance(std::string genericRegisterName,
112                  void *handle,
113                  int studyId);
114
115   Engines::Component_ptr
116   createParallelInstance(std::string genericRegisterName,
117                          void *handle,
118                          int studyId);
119
120   static bool isPythonContainer(const char* ContainerName);
121   static void decInstanceCnt(std::string genericRegisterName);
122
123   // --- needed for parallel components, Numerical Platon
124
125   int getArgc() { return _argc; }
126   char **getArgv() { return _argv; }
127
128   void set_id(PortableServer::ObjectId * id) { _id = id;}
129
130   Engines::fileRef_ptr createFileRef(const char* origFileName);
131   Engines::fileTransfer_ptr getFileTransfer();
132
133   virtual Engines::Salome_file_ptr createSalome_file(const char* origFileName);
134 protected:
135
136   static std::map<std::string, int> _cntInstances_map;
137   static std::map<std::string, void *> _library_map; // library names, loaded
138   static std::map<std::string, void *> _toRemove_map;// library names to remove
139   static omni_mutex _numInstanceMutex ; // lib and instance protection
140
141   bool _isSupervContainer;
142
143   SALOME_NamingService *_NS ;
144   std::string _library_path;
145   std::string _containerName;
146   CORBA::ORB_var _orb;
147   PortableServer::POA_var _poa;
148   PortableServer::ObjectId * _id ;
149   int _numInstance ;
150   std::map<std::string,Engines::Component_var> _listInstances_map;
151   std::map<std::string,Engines::fileRef_var> _fileRef_map;
152   std::map<std::string,Engines::Salome_file_var> _Salome_file_map;
153   Engines::fileTransfer_var _fileTransfer;
154
155   int    _argc ;
156   char** _argv ;
157   long   _pid;
158   bool   _isServantAloneInProcess;
159 };
160
161 #endif
162