1 // Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 * JobInfo_ePBS.cxx : emulation of PBS client
25 * Auteur : Bernard SECHER - CEA DEN
26 * Mail : mailto:bernard.secher@cea.fr
27 * Date : Thu Apr 24 10:17:22 2008
36 #include <Batch_Constants.hxx>
37 #include "Batch_JobInfo_ePBS.hxx"
44 JobInfo_ePBS::JobInfo_ePBS(int id, string queryOutput) : JobInfo()
49 _param[ID] = oss.str();
52 istringstream queryIss(queryOutput);
54 size_t pos = string::npos;
55 while( (pos == string::npos) && getline(queryIss, line) ) {
56 pos = line.find("job_state");
59 if(pos!=string::npos){
61 istringstream iss(line);
66 if (status == "C") { // Completed
67 _param[STATE] = FINISHED;
68 } else if (status == "E") { // Exiting
69 _param[STATE] = RUNNING;
70 } else if (status == "H") { // Held
71 _param[STATE] = PAUSED;
72 } else if (status == "Q") { // Queued
73 _param[STATE] = QUEUED;
74 } else if (status == "R") { // Running
75 _param[STATE] = RUNNING;
76 } else if (status == "S") { // Suspend
77 _param[STATE] = PAUSED;
78 } else if (status == "T") { // Transiting
79 _param[STATE] = IN_PROCESS;
80 } else if (status == "W") { // Waiting
81 _param[STATE] = PAUSED;
83 cerr << "Unknown job state code: " << status << endl;
86 // On some batch managers, the job is deleted as soon as it is finished,
87 // so we have to consider that an unknown job is a finished one, even if
88 // it is not always true.
89 _param[STATE] = FINISHED;
94 JobInfo_ePBS::~JobInfo_ePBS()
99 // Convertit une date HH:MM:SS en secondes
100 long JobInfo_ePBS::HMStoLong(const string & s)
104 sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
105 return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
108 // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
109 string JobInfo_ePBS::__str__() const
112 sst << "<JobInfo_ePBS (" << this << ") :" << endl;
113 sst << " ID = " <<_param[ID] << endl;
114 sst << " STATE = " <<_param[STATE] << endl;