Salome HOME
CCAR: import_hook.py was too strict in ensure_list (ImportError raised)
[modules/kernel.git] / src / ResourcesManager / SALOME_ResourcesCatalog_Parser.hxx
1 //  Copyright (C) 2007-2010  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
23 //  SALOME ResourcesCatalog : implementation of catalog resources parsing (SALOME_ModuleCatalog.idl)
24 //  File   : SALOME_ResourcesCatalog_Parser.hxx
25 //  Author : Estelle Deville
26 //  Module : SALOME
27 //$Header$
28 //
29 #ifndef SALOME_RESOURCES_CATALOG_PARSER
30 #define SALOME_RESOURCES_CATALOG_PARSER
31
32 #include "ResourcesManager_Defs.hxx"
33
34 #include <string>
35 #include <vector>
36 #include <list>
37 #include <map>
38 #include <iostream>
39
40 #ifdef WNT
41 #pragma warning(disable:4251) // Warning DLL Interface ...
42 #endif
43
44 enum AccessProtocolType {rsh, ssh};
45
46 enum AccessModeType {interactive, batch};
47
48 enum BatchType {none, pbs, lsf, sge, ssh_batch, ccc};
49
50 enum MpiImplType {nompi, lam, mpich1, mpich2, openmpi, slurm, prun};
51
52 class RESOURCESMANAGER_EXPORT ResourceDataToSort
53   {
54
55   public:
56     std::string _Name;
57     unsigned int _nbOfNodes;
58     unsigned int _nbOfProcPerNode;
59     unsigned int _CPUFreqMHz;
60     unsigned int _memInMB;
61     static unsigned int _nbOfProcWanted;
62     static unsigned int _nbOfNodesWanted;
63     static unsigned int _nbOfProcPerNodeWanted;
64     static unsigned int _CPUFreqMHzWanted;
65     static unsigned int _memInMBWanted;
66
67   public:
68     ResourceDataToSort();
69     ResourceDataToSort(const std::string& name,
70                        unsigned int nbOfNodes,
71                        unsigned int nbOfProcPerNode,
72                        unsigned int CPUFreqMHz,
73                        unsigned int memInMB);
74     bool operator< (const ResourceDataToSort& other) const;
75     void Print() const;
76
77   private:
78     unsigned int GetNumberOfPoints() const;
79   };
80
81 struct RESOURCESMANAGER_EXPORT ParserResourcesClusterMembersType
82 {
83   std::string HostName;
84   AccessProtocolType Protocol;
85   AccessProtocolType ClusterInternalProtocol;
86   std::string UserName;
87   std::string AppliPath;
88   ResourceDataToSort DataForSort;
89 };
90
91 struct RESOURCESMANAGER_EXPORT ParserResourcesType
92 {
93   ResourceDataToSort DataForSort;
94   std::string Name;
95   std::string HostName;
96   AccessProtocolType Protocol;
97   AccessProtocolType ClusterInternalProtocol;
98   AccessModeType Mode;
99   BatchType Batch;
100   MpiImplType mpi;
101   std::string UserName;
102   std::string AppliPath;
103   std::vector<std::string> ComponentsList;
104   std::vector<std::string> ModulesList;
105   std::string OS;
106   std::string batchQueue;
107   std::string userCommands;
108   std::string use;
109   std::list<ParserResourcesClusterMembersType> ClusterMembersList;
110   unsigned int nbOfProc;
111
112   void Print();
113   void Clear();
114
115   std::string PrintAccessProtocolType() const;
116   std::string PrintAccessModeType() const;
117   std::string PrintBatchType() const;
118   std::string PrintMpiImplType() const;
119   std::string PrintClusterInternalProtocol() const;
120 };
121
122 typedef std::map<std::string, ParserResourcesType> MapOfParserResourcesType;
123 typedef std::map<std::string, ParserResourcesType>::iterator MapOfParserResourcesType_it;
124
125 #endif //SALOME_RESOURCES_CATALOG_PARSER