Salome HOME
Base implementation of Notebook
[modules/kernel.git] / src / ParallelContainer / SALOME_ParallelContainer_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_ParallelContainer : implementation of container and engine for Parallel Kernel
23 //  File   : SALOME_ParallelContainer_i.hxx
24 //  Author : André RIBES, EDF
25 //
26 #ifndef _SALOME_PARALLEL_CONTAINER_I_HXX_
27 #define _SALOME_PARALLEL_CONTAINER_I_HXX_
28
29 #include <SALOMEconfig.h>
30
31 #include "SALOME_PACOExtensionPaCO_Engines_PACO_Container_server.hxx"
32 #include "SALOME_ParallelGlobalProcessVar_i.hxx"
33
34 #include <iostream>
35 #include <signal.h>
36 #include <stdlib.h>
37 #ifndef WIN32
38 #include <unistd.h>
39 #endif
40 #include <sys/types.h>
41 #include <omnithread.h>
42 #include <map>
43 #include <string>
44
45 class SALOME_NamingService;
46
47 #ifdef WIN32
48 # if defined CONTAINER_EXPORTS || defined SalomeParallelContainer_EXPORTS
49 #  define CONTAINER_EXPORT __declspec( dllexport )
50 # else
51 #  define CONTAINER_EXPORT __declspec( dllimport )
52 # endif
53 #else
54 # define CONTAINER_EXPORT
55 #endif
56
57 class CONTAINER_EXPORT Engines_Parallel_Container_i:
58   virtual public Engines::PACO_Container_serv,
59   virtual public ParallelGlobalProcessVar_i,
60   virtual public PortableServer::RefCountServantBase
61 {
62 public:
63   Engines_Parallel_Container_i(CORBA::ORB_ptr orb, 
64                                char * ior, 
65                                int rank,
66                                PortableServer::POA_ptr poa,
67                                std::string containerName ,
68                                bool isServantAloneInProcess = true);
69
70   virtual ~Engines_Parallel_Container_i();
71
72   // --- CORBA methods
73
74   virtual bool load_component_Library(const char* componentName);
75
76   virtual Engines::Component_ptr
77   create_component_instance( const char* componentName,
78                              CORBA::Long studyId); // 0 for multiStudy
79
80   Engines::Component_ptr
81   find_component_instance( const char* registeredName,
82                            CORBA::Long studyId); // 0 for multiStudy
83
84   Engines::Component_ptr
85   load_impl(const char* nameToRegister,
86             const char* componentName);
87
88   void
89   create_paco_component_node_instance(const char* componentName,
90                                       const char* proxy_containerName,
91                                       CORBA::Long studyId); // 0 for multiStudy
92
93   void updateInstanceNumber();
94
95   void remove_impl(Engines::Component_ptr component_i);
96   void finalize_removal();
97
98   virtual void ping();
99   char* name();
100   char* workingdir();
101   char* logfilename();
102   void logfilename(const char* name);
103
104   virtual void Shutdown();
105   char* getHostName();
106   CORBA::Long getPID();
107
108   //! Kill current container
109   bool Kill_impl() ;
110
111   // --- local C++ methods
112   Engines::Component_ptr
113   find_or_create_instance(std::string genericRegisterName);
114
115   Engines::Component_ptr
116   createCPPInstance(std::string genericRegisterName,
117                     void *handle,
118                     int studyId);
119
120   Engines::Component_ptr
121   createPythonInstance(std::string genericRegisterName,
122                        int studyId);
123
124   static bool isPythonContainer(const char* ContainerName);
125   static void decInstanceCnt(std::string genericRegisterName);
126
127   // --- needed for parallel components, Numerical Platon
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   void copyFile(Engines::Container_ptr container, const char* remoteFile, const char* localFile);
135
136 protected:
137
138   SALOME_NamingService *_NS;
139   std::string _hostname;
140   std::string _library_path;
141   std::string _containerName;
142   std::string _logfilename;
143   CORBA::ORB_var _orb;
144   PortableServer::POA_var _poa;
145   PortableServer::ObjectId * _id;
146   int _numInstance;
147   CORBA::Long   _pid;
148   bool   _isServantAloneInProcess;
149   Engines::fileTransfer_var _fileTransfer;
150
151   typedef std::map<std::string,Engines::Component_var> _listInstances_map_t;
152   typedef std::map<std::string,Engines::fileRef_var> _fileRef_map_t;
153   typedef std::map<std::string,Engines::Salome_file_var> _Salome_file_map_t;
154   _listInstances_map_t _listInstances_map;
155   _fileRef_map_t _fileRef_map;
156   _Salome_file_map_t _Salome_file_map;
157
158   // Cette map contient les references vers les différentes
159   // instances d'objets parallèles.
160   std::map<std::string, PortableServer::ObjectId *> _par_obj_inst_map;
161
162   typedef  PortableServer::ObjectId * (*FACTORY_FUNCTION) (CORBA::ORB_ptr, char *, int,
163                                                            PortableServer::POA_ptr, 
164                                                            PortableServer::ObjectId *, 
165                                                            const char *, 
166                                                            const char *);
167 };
168
169 #endif
170