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_eLSF.cxx : emulation of LSF client
25 * Auteur : Bernard SECHER - CEA DEN
26 * Mail : mailto:bernard.secher@cea.fr
27 * Date : Thu Apr 24 10:17:22 2008
35 #include <Batch_Constants.hxx>
36 #include "Batch_JobInfo_eLSF.hxx"
43 JobInfo_eLSF::JobInfo_eLSF(int id, const std::string & queryOutput) : JobInfo()
48 _param[ID] = oss.str();
52 istringstream fp(queryOutput);
55 // On some batch managers, the job is deleted soon after it is finished,
56 // so we have to consider that an unknown job (empty file) is a finished
57 // one, even if it is not always true.
59 _param[STATE] = FINISHED;
61 string sjobid, username, status;
66 if (status == "PEND") { // Pending
67 _param[STATE] = QUEUED;
68 } else if (status == "PSUSP") { // Suspended while pending
69 _param[STATE] = PAUSED;
70 } else if (status == "RUN") { // Running
71 _param[STATE] = RUNNING;
72 } else if (status == "USUSP") { // Suspended while running
73 _param[STATE] = PAUSED;
74 } else if (status == "SSUSP") { // Suspended by LSF
75 _param[STATE] = PAUSED;
76 } else if (status == "DONE") { // Finished successfully
77 _param[STATE] = FINISHED;
78 } else if (status == "EXIT") { // Finished in error
79 _param[STATE] = FAILED;
80 } else if (status == "UNKWN") { // Lost contact
81 _param[STATE] = FAILED;
82 } else if (status == "ZOMBI") { // Zombie
83 _param[STATE] = FAILED;
85 cerr << "Unknown job state code: " << status << endl;
88 if( status.find("RUN") != string::npos)
93 // Teste si un job est present en machine
94 bool JobInfo_eLSF::isRunning() const
101 JobInfo_eLSF::~JobInfo_eLSF()
106 // Convertit une date HH:MM:SS en secondes
107 long JobInfo_eLSF::HMStoLong(const string & s)
111 sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
112 return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
115 // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
116 string JobInfo_eLSF::__str__() const
119 sst << "<JobInfo_eLSF (" << this << ") :" << endl;
120 sst << " ID = " <<_param[ID] << endl;
121 sst << " STATE = " <<_param[STATE] << endl;