Salome HOME
CCAR: several changes in Container Manager and Resources Manager
[modules/kernel.git] / src / ResourcesManager / ResourcesManager.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 #ifndef __RESOURCESMANAGER_HXX__
23 #define __RESOURCESMANAGER_HXX__
24
25 #include "ResourcesManager_Defs.hxx"
26
27 #include <string>
28 #include <fstream>
29 #include <vector>
30 #include "SALOME_ResourcesCatalog_Parser.hxx"
31 #include "SALOME_ResourcesCatalog_Handler.hxx"
32 #include "SALOME_LoadRateManager.hxx"
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 struct machineParams{
41   std::string hostname;
42   std::string OS;
43   unsigned int nb_node;
44   unsigned int nb_proc_per_node;
45   unsigned int cpu_clock;
46   unsigned int mem_mb;
47   std::vector<std::string> componentList;
48   std::vector<std::string> computerList;
49 };
50
51 class RESOURCESMANAGER_EXPORT ResourcesException
52 {
53 public:
54   const std::string msg;
55
56   ResourcesException(const std::string m) : msg(m) {}
57 };
58
59 class RESOURCESMANAGER_EXPORT ResourcesManager_cpp
60   {
61
62   public:
63
64     ResourcesManager_cpp(const char *xmlFilePath);
65     ResourcesManager_cpp() throw(ResourcesException);
66
67     ~ResourcesManager_cpp();
68
69     std::vector<std::string> 
70     GetFittingResources(const machineParams& params) throw(ResourcesException);
71
72     std::string Find(const std::string& policy, const std::vector<std::string>& listOfMachines);
73
74     int AddResourceInCatalog
75     (const machineParams& paramsOfNewResources,
76      const std::vector<std::string>& componentsOnNewResources,
77      const char *alias,
78      const char *userName,
79      AccessModeType mode,
80      AccessProtocolType prot) throw(ResourcesException);
81
82     void DeleteResourceInCatalog(const char *hostname);
83
84     void WriteInXmlFile();
85
86     const MapOfParserResourcesType& ParseXmlFile();
87
88     const MapOfParserResourcesType& GetList() const;
89
90     ParserResourcesType GetResourcesList(const std::string& machine);
91
92   protected:
93     
94     void SelectOnlyResourcesWithOS(std::vector<std::string>& hosts,
95                                    const char *OS) const
96       throw(ResourcesException);
97
98     void KeepOnlyResourcesWithComponent(std::vector<std::string>& hosts,
99                                      const std::vector<std::string>& componentList) const
100       throw(ResourcesException);
101
102     //! will contain the path to the ressources catalog
103     std::string _path_resources;
104
105     //! will contain the informations on the data type catalog(after parsing)
106     MapOfParserResourcesType _resourcesList;
107
108     //! will contain the informations on the data type catalog(after parsing)
109     MapOfParserResourcesType _resourcesBatchList;
110
111     //! a map that contains all the available load rate managers (the key is the name)
112     std::map<std::string , LoadRateManager*> _resourceManagerMap;
113
114     //! different behaviour if $APPLI exists (SALOME Application) 
115     bool _isAppliSalomeDefined;    
116   };
117
118 #endif // __RESOURCESMANAGER_HXX__