Salome HOME
f30db8fe11c31e5606a7f146615caa97401729f4
[modules/kernel.git] / src / Container / SALOME_ContainerManager.hxx
1 // Copyright (C) 2007-2023  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
23 #ifndef __SALOME_CONTAINERMANAGER_HXX__
24 #define __SALOME_CONTAINERMANAGER_HXX__
25
26 #include "SALOME_Container.hxx"
27
28 #include <SALOMEconfig.h>
29 #include CORBA_CLIENT_HEADER(SALOME_Component)
30 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
31 #include "SALOME_ResourcesCatalog_Parser.hxx"
32
33 #include "Utils_Mutex.hxx"
34
35 #include <string>
36 #include <set>
37
38 class SALOME_NamingService_Abstract;
39 class SALOME_ResourcesManager_Client;
40
41 class CONTAINER_EXPORT SALOME_ContainerManager : public POA_Engines::ContainerManager
42 {
43
44 public:
45   SALOME_ContainerManager(CORBA::ORB_ptr orb, PortableServer::POA_var poa, SALOME_NamingService_Abstract *ns);
46   ~SALOME_ContainerManager();
47
48   // Corba Methods
49   Engines::Container_ptr GiveContainer(const Engines::ContainerParameters& params);
50
51   void ShutdownContainers();
52
53   // C++ Methods
54   void Shutdown();
55
56   void DeclareUsingSalomeSession() { _isSSL = false; }
57
58   static const char *_ContainerManagerNameInNS;
59
60 protected:
61   // C++ methods
62   Engines::Container_ptr
63   FindContainer(const Engines::ContainerParameters& params,
64                 const Engines::ResourceList& possibleResources);
65
66   Engines::Container_ptr
67   FindContainer(const Engines::ContainerParameters& params,
68                 const std::string& resource);
69
70   std::string GetCppBinaryOfKernelContainer() const;
71   
72   std::string GetRunRemoteExecutableScript() const;
73
74   std::string BuildCommandToLaunchRemoteContainer(const std::string & resource_name,
75                                                   const Engines::ContainerParameters& params,
76                                                   const std::string& container_exe="SALOME_Container") const;
77
78   std::string BuildCommandToLaunchLocalContainer(const Engines::ContainerParameters& params,
79                                                  const std::string& machinesFile,
80                                                  const std::string& container_exe,//"SALOME_Container"
81                                                  std::string& tmpFileName) const;
82
83   std::string BuildTempFileToLaunchRemoteContainer(const std::string& resource_name,
84                                                    const Engines::ContainerParameters& params, std::string& tmpFileName) const;
85
86   static void RmTmpFile(std::string& tmpFile);
87
88   void AddOmninamesParams(std::string& command) const;
89
90   void AddOmninamesParams(std::ostream& fileStream) const;
91
92   static std::string BuildTemporaryFileName();
93
94   std::string GetMPIZeroNode(const std::string machine, const std::string machinesFile) const;
95
96   std::string machinesFile(const int nbproc);
97
98   std::string getCommandToRunRemoteProcess(AccessProtocolType protocol, 
99                                           const std::string & hostname, 
100                                           const std::string & username,
101                                           const std::string & applipath,
102                                           const std::string & workdir="") const;
103
104   Engines::Container_ptr
105   LaunchContainer(const Engines::ContainerParameters& params,
106                   const std::string & resource_selected,
107                   const std::string & hostname,
108                   const std::string & machFile,
109                   const std::string & containerNameInNS);
110
111   CORBA::ORB_var _orb;
112   PortableServer::POA_var _poa;
113
114   SALOME_ResourcesManager_Client *_resManager;
115   SALOME_NamingService_Abstract *_NS;
116
117   //! different behaviour if $APPLI exists (SALOME Application)
118   bool _isAppliSalomeDefined;
119
120   //! attribute that contains the number of processes used in batch mode by MPI containers
121   int _nbprocUsed;
122
123   //! attribute that specifies the launch mode.
124   bool _isSSL = true;
125
126   static omni_mutex _numInstanceMutex ; // lib and instance protection
127
128   //! attributes to allow concurrency for // GiveContainer
129   Utils_Mutex _giveContainerMutex1;
130
131   pid_t _pid_mpiServer;
132
133   // Begin of PacO++ Parallel extension
134   typedef std::vector<std::string> actual_launch_machine_t;
135
136   bool checkPaCOParameters(Engines::ContainerParameters & params, std::string resource_selected);
137
138   Engines::Container_ptr
139   StartPaCOPPContainer(const Engines::ContainerParameters& params, std::string resource_selected);
140
141
142
143   std::string BuildCommandToLaunchPaCOProxyContainer(const Engines::ContainerParameters& params,
144                                                      std::string machine_file_name,
145                                                      std::string & proxy_hostname);
146
147   std::string BuildCommandToLaunchPaCONodeContainer(const Engines::ContainerParameters& params,
148                                                     const std::string & machine_file_name,
149                                                     SALOME_ContainerManager::actual_launch_machine_t & vect_machine,
150                                                     const std::string & proxy_hostname);
151
152   void LogConfiguration(const std::string & log_type,
153                         const std::string & exe_type,
154                         const std::string & container_name,
155                         const std::string & hostname,
156                         std::string & begin,
157                         std::string & end);
158
159   CORBA::Object_ptr
160   LaunchPaCOProxyContainer(const std::string& command,
161                            const Engines::ContainerParameters& params,
162                            const std::string& hostname);
163
164   bool
165   LaunchPaCONodeContainer(const std::string& command,
166                           const Engines::ContainerParameters& params,
167                           const std::string& name,
168                           SALOME_ContainerManager::actual_launch_machine_t & vect_machine);
169   // End of PaCO++ Parallel extension
170 public:
171   static char *GetenvThreadSafe(const char *name);
172   static std::string GetenvThreadSafeAsString(const char *name);
173   static int SystemThreadSafe(const char *command);
174   static long SystemWithPIDThreadSafe(const std::vector<std::string>& command);
175   static void AddOmninamesParams(std::ostream& fileStream, SALOME_NamingService_Abstract *ns);
176   static void MakeTheCommandToBeLaunchedASync(std::string& command);
177   static int GetTimeOutToLoaunchServer();
178   static void SleepInSecond(int ellapseTimeInSecond);
179  private:
180   static const int TIME_OUT_TO_LAUNCH_CONT;
181   static Utils_Mutex _getenvMutex;
182   static Utils_Mutex _systemMutex;
183 };
184 #endif