Salome HOME
Added constants to represent job status uniformly. Fixed some errors under Windows...
[tools/libbatch.git] / src / PBS / Batch_JobInfo_PBS.cxx
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 /*
23  * JobInfo_PBS.cxx : 
24  *
25  * Auteur : Ivan DUTKA-MALEN - EDF R&D
26  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
27  * Date   : Fri Nov 21 09:42:06 2003
28  * Projet : Salome 2
29  *
30  */
31
32 #include <cstdio>
33 #include <sstream>
34 //#include "MEDMEM_STRING.hxx"
35 #include "Batch_Parametre.hxx"
36 #include "Batch_Environnement.hxx"
37 #include "Batch_RunTimeException.hxx"
38 #include "Batch_JobInfo_PBS.hxx"
39 using namespace std;
40
41 namespace Batch {
42
43   // Constructeurs
44   JobInfo_PBS::JobInfo_PBS(struct batch_status * list, bool tobedeleted) : JobInfo()
45   {
46     // On ne considere que le premier element de la liste
47     // Si tout est OK, la liste ne devrait contenir qu'un element
48     // Sinon on leve une exception.
49     struct batch_status * p_job = list;
50     int i;
51     for(i=0; p_job; p_job = p_job->next) i++;
52     if (i == 0) throw RunTimeException("Liste vide (le job est absent de la file)");
53     if (i > 1) {
54       //MEDMEM::STRING sst;
55       ostringstream sst;
56       sst << "JobInfo_PBS::JobInfo_PBS(struct batch_status * list, bool tobedeleted) : la liste contient "
57           << i << " elements" << " (1 seul requis)" << endl;
58       throw RunTimeException(sst.str());
59     }
60     p_job = list;
61
62     // On remplit les membres _param et _env
63
64     if (p_job->name && strlen(p_job->name)) _param[ID]   = p_job->name;
65     if (p_job->text && strlen(p_job->text)) _param[TEXT] = p_job->text;
66
67     for(struct attrl * p_attr = p_job->attribs; p_attr; p_attr = p_attr->next) {
68
69       string name, res, value;
70       if (p_attr->name && strlen(p_attr->name)) name = p_attr->name;
71       if (p_attr->resource && strlen(p_attr->resource)) res = p_attr->resource;
72       if (p_attr->value && strlen(p_attr->value)) value = p_attr->value;
73
74       if (name == ATTR_N) {
75         _param[NAME] = value;
76       
77       } else if (name == ATTR_owner) {
78         _param[USER] = value;
79
80       } else if (name == ATTR_state) {
81         string status = value;
82         if (status == "C") {        // Completed
83           _param[STATE] = FINISHED;
84         } else if (status == "E") { // Exiting
85           _param[STATE] = RUNNING;
86         } else if (status == "H") { // Held
87           _param[STATE] = PAUSED;
88         } else if (status == "Q") { // Queued
89           _param[STATE] = QUEUED;
90         } else if (status == "R") { // Running
91           _param[STATE] = RUNNING;
92         } else if (status == "S") { // Suspend
93           _param[STATE] = PAUSED;
94         } else if (status == "T") { // Transiting
95           _param[STATE] = IN_PROCESS;
96         } else if (status == "W") { // Waiting
97           _param[STATE] = PAUSED;
98         } else {
99           cerr << "Unknown job state code: " << status << endl;
100         }
101
102       } else if (name == ATTR_queue) {
103         _param[QUEUE] = value;
104
105       } else if (name == ATTR_A) {
106         _param[ACCOUNT] = value;
107
108       } else if (name == ATTR_M) {
109         _param[MAIL] = value;
110
111       } else if (name == ATTR_c) {
112         if (!strcmp(value.c_str(), CHECKPOINT_UNSPECIFIED)) _param[CHECKPOINT] = 1L;
113         else _param[CHECKPOINT] = 0L;
114
115       } else if (name == ATTR_h) {
116         if (!strcmp(value.c_str(), NO_HOLD)) _param[HOLD] = 0L;
117         else _param[HOLD] = 1L;
118
119       } else if (name == ATTR_ctime) {
120         _param[CREATIONTIME] = atol(value.c_str());
121
122       } else if (name == ATTR_etime) {
123         _param[ELIGIBLETIME] = atol(value.c_str());
124
125       } else if (name == ATTR_mtime) {
126         _param[MODIFICATIONTIME] = atol(value.c_str());
127
128       } else if (name == ATTR_qtime) {
129         _param[QUEUEDTIME] = atol(value.c_str());
130
131       } else if (name == ATTR_exechost) {
132         _param[EXECUTIONHOST] = value;
133
134       } else if (name == ATTR_session) {
135         _param[PID] = atol(value.c_str());
136
137       } else if (name == ATTR_euser) {
138         _param[EUSER] = value;
139
140       } else if (name == ATTR_egroup) {
141         _param[EGROUP] = value;
142
143       } else if (name == ATTR_l) {
144         if (res == "cput") {
145           _param[MAXCPUTIME] = HMStoLong(value);
146
147         } else if (res == "walltime") {
148           _param[MAXWALLTIME] = HMStoLong(value);
149
150         }
151
152       } else if (name == ATTR_used) {
153         if (res == "cput") {
154           _param[USEDCPUTIME] = HMStoLong(value);
155
156         } else if (res == "walltime") {
157           _param[USEDWALLTIME] = HMStoLong(value);
158
159         }
160
161       } else if (name == ATTR_v) {
162         int deb = 0;
163         int pos = 0;
164         bool ok = true;
165
166         while (ok) {
167           pos = value.find(",", deb);
168           string sub = value.substr(deb, pos-deb);
169           deb = pos + 1;
170           if (pos < 0) ok = false;
171
172           int eq = sub.find("=");
173           _env[sub.substr(0, eq)] = sub.substr(eq+1);
174         }
175
176       }
177     }
178
179
180     if (tobedeleted) pbs_statfree(list);
181   }
182
183   // Destructeur
184   JobInfo_PBS::~JobInfo_PBS()
185   {
186     // Nothing to do
187   }
188   
189   // Convertit une date HH:MM:SS en secondes
190   long JobInfo_PBS::HMStoLong(const string & s)
191   {
192     long hour, min, sec;
193
194     sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
195     return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
196   }
197
198   // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
199   string JobInfo_PBS::__str__() const
200   {
201     //MEDMEM::STRING sst; 
202     ostringstream sst;
203     sst << "<JobInfo_PBS (" << this << ") :" << endl;
204     sst << " ID = " <<_param[ID] << endl;
205
206     sst << "  + Parametre :" << endl;
207     Parametre::const_iterator itp;
208     for(itp=_param.begin(); itp!=_param.end(); itp++) {
209       if ( (*itp).first != ID ) {
210         sst << "    * " << (*itp).first << " = " << (*itp).second << endl;
211       }
212     }
213     return sst.str();
214   }
215
216
217 }