]> SALOME platform Git repositories - modules/kernel.git/blob - src/ResourcesManager/SALOME_ResourcesManager.hxx
Salome HOME
Merging with WPDev
[modules/kernel.git] / src / ResourcesManager / SALOME_ResourcesManager.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #ifndef __SALOME_RESOURCESMANAGER_HXX__
21 #define __SALOME_RESOURCESMANAGER_HXX__
22
23 #include "Utils_SALOME_Exception.hxx"
24 #include "utilities.h"
25 #include <SALOMEconfig.h>
26 #include "SALOME_ResourcesCatalog_Handler.hxx"
27 #include "SALOME_LoadRateManager.hxx"
28 #include "SALOME_NamingService.hxx"
29 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
30 #include <string>
31 #include <fstream>
32 #include <vector>
33
34 // --- WARNING ---
35 // The call of BuildTempFileToLaunchRemoteContainer and RmTmpFile must be done
36 // in a critical section to be sure to be clean.
37 // Only one thread should use the SALOME_ResourcesManager class in a SALOME
38 // session.
39
40 class RESOURCESMANAGER_EXPORT SALOME_ResourcesManager
41   {
42
43   public:
44
45     SALOME_ResourcesManager(CORBA::ORB_ptr orb, const char *xmlFilePath);
46     SALOME_ResourcesManager(CORBA::ORB_ptr orb);
47
48     ~SALOME_ResourcesManager();
49
50     std::vector<std::string>
51     GetFittingResources(const Engines::MachineParameters& params,
52                         const char *moduleName)
53     throw(SALOME_Exception);
54
55     std::string FindBest(const Engines::MachineList& listOfMachines);
56
57     std::string BuildCommandToLaunchRemoteContainer
58     (const std::string& machine,
59      const Engines::MachineParameters& params, const long id);
60
61     std::string BuildCommandToLaunchLocalContainer
62     (const Engines::MachineParameters& params, const long id);
63
64     void RmTmpFile();
65
66     std::string BuildCommand(const std::string& machine,
67                              const char *containerName);
68
69     int AddResourceInCatalog
70     (const Engines::MachineParameters& paramsOfNewResources,
71      const std::map<std::string, std::string>& modulesOnNewResources,
72      const char *environPathOfPrerequired,
73      const char *alias,
74      const char *userName,
75      AccessModeType mode,
76      AccessProtocolType prot)
77     throw(SALOME_Exception);
78
79     void DeleteResourceInCatalog(const char *hostname);
80
81     void WriteInXmlFile();
82
83     const MapOfParserResourcesType& ParseXmlFile();
84
85     const MapOfParserResourcesType& GetList() const;
86
87   protected:
88     SALOME_NamingService *_NS;
89
90     std::string BuildTempFileToLaunchRemoteContainer
91     (const std::string& machine,
92      const Engines::MachineParameters& params);
93
94     void SelectOnlyResourcesWithOS(std::vector<std::string>& hosts,
95                                    const char *OS) const
96       throw(SALOME_Exception);
97
98     void KeepOnlyResourcesWithModule(std::vector<std::string>& hosts,
99                                      const char *moduleName) const
100       throw(SALOME_Exception);
101
102     void AddOmninamesParams(std::string& command) const;
103
104     void AddOmninamesParams(std::ofstream& fileStream) const;
105
106     std::string BuildTemporaryFileName() const;
107
108
109     //! will contain the path to the ressources catalog
110     QString _path_resources;
111
112     //! attribute that contains current tmp files generated
113     std::string _TmpFileName;
114
115     //! contains the rsh or ssh command to access directly to machine.
116     //  Only used by this->RmTmpFile in case of a remote launch.
117     std::string _CommandForRemAccess;
118
119     //! will contain the informations on the data type catalog(after parsing)
120     MapOfParserResourcesType _resourcesList;
121
122     SALOME_LoadRateManager _dynamicResourcesSelecter;
123
124     //! different behaviour if $APPLI exists (SALOME Application) 
125     bool _isAppliSalomeDefined;
126   };
127
128 #endif // RESSOURCESCATALOG_IMPL_H