Salome HOME
Issue 0020194: EDF 977 ALL: Get rid of warnings PACKAGE_VERSION already defined
[modules/kernel.git] / src / ResourcesManager / SALOME_ResourcesCatalog_Parser.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 ResourcesCatalog : implementation of catalog resources parsing (SALOME_ModuleCatalog.idl)
23 //  File   : SALOME_ResourcesCatalog_Parser.hxx
24 //  Author : Estelle Deville
25 //  Module : SALOME
26 //$Header$
27 //
28 #ifndef SALOME_RESOURCES_CATALOG_PARSER
29 #define SALOME_RESOURCES_CATALOG_PARSER
30
31 #include "ResourcesManager_Defs.hxx"
32
33 #include <string>
34 #include <vector>
35 #include <list>
36 #include <map>
37 #include <iostream>
38
39 enum AccessProtocolType {rsh, ssh};
40
41 enum AccessModeType {interactive, batch};
42
43 enum BatchType {none, pbs, lsf, sge};
44
45 enum MpiImplType {nompi, lam, mpich1, mpich2, openmpi, slurm, prun};
46
47 class RESOURCESMANAGER_EXPORT ResourceDataToSort
48   {
49
50   public:
51     std::string _hostName;
52     unsigned int _nbOfNodes;
53     unsigned int _nbOfProcPerNode;
54     unsigned int _CPUFreqMHz;
55     unsigned int _memInMB;
56     static unsigned int _nbOfNodesWanted;
57     static unsigned int _nbOfProcPerNodeWanted;
58     static unsigned int _CPUFreqMHzWanted;
59     static unsigned int _memInMBWanted;
60
61   public:
62     ResourceDataToSort();
63     ResourceDataToSort(const std::string& hostname,
64                        unsigned int nbOfNodes,
65                        unsigned int nbOfProcPerNode,
66                        unsigned int CPUFreqMHz,
67                        unsigned int memInMB);
68     bool operator< (const ResourceDataToSort& other) const;
69     void Print() const;
70
71   private:
72     unsigned int GetNumberOfPoints() const;
73   };
74
75 struct RESOURCESMANAGER_EXPORT ParserResourcesClusterMembersType
76 {
77   std::string HostName;
78   AccessProtocolType Protocol;
79   std::string UserName;
80   std::string AppliPath;
81   ResourceDataToSort DataForSort;
82 };
83
84 struct RESOURCESMANAGER_EXPORT ParserResourcesType
85 {
86   ResourceDataToSort DataForSort;
87   std::string HostName;
88   std::string Alias;
89   AccessProtocolType Protocol;
90   AccessModeType Mode;
91   BatchType Batch;
92   MpiImplType mpi;
93   std::string UserName;
94   std::string AppliPath;
95   std::vector<std::string> ComponentsList;
96   std::vector<std::string> ModulesList;
97   std::string OS;
98   std::string batchQueue;
99   std::string userCommands;
100   std::string use;
101   std::list<ParserResourcesClusterMembersType> ClusterMembersList;
102   unsigned int nbOfProc;
103
104   void Print();
105   void Clear();
106 };
107
108 typedef std::map<std::string, ParserResourcesType> MapOfParserResourcesType;
109 typedef std::map<std::string, ParserResourcesType>::iterator MapOfParserResourcesType_it;
110
111 #endif //SALOME_RESOURCES_CATALOG_PARSER