Salome HOME
Update copyrights
[tools/libbatch.git] / src / LSF / Batch_JobInfo_eLSF.cxx
1 //  Copyright (C) 2007-2012  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_eLSF.cxx :  emulation of LSF client
24  *
25  * Auteur : Bernard SECHER - CEA DEN
26  * Mail   : mailto:bernard.secher@cea.fr
27  * Date   : Thu Apr 24 10:17:22 2008
28  * Projet : PAL Salome 
29  *
30  */
31
32 #include <cstdio>
33 #include <sstream>
34
35 #include <Batch_Constants.hxx>
36 #include "Batch_JobInfo_eLSF.hxx"
37
38 using namespace std;
39
40 namespace Batch {
41
42   // Constructeurs
43   JobInfo_eLSF::JobInfo_eLSF(int id, const std::string & queryOutput) : JobInfo()
44   {
45     // Fill ID parameter
46     ostringstream oss;
47     oss << id;
48     _param[ID] = oss.str();
49
50     // read query output
51     string line;
52     istringstream fp(queryOutput);
53     getline(fp, line);
54
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.
58     if (fp.eof()) {
59       _param[STATE] = FINISHED;
60     } else {
61       string sjobid, username, status;
62       fp >> sjobid;
63       fp >> username;
64       fp >> status;
65
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;
84       } else {
85         cerr << "Unknown job state code: " << status << endl;
86       }
87
88       if( status.find("RUN") != string::npos)
89         _running = true;
90     }
91   }
92
93   // Teste si un job est present en machine
94   bool JobInfo_eLSF::isRunning() const
95   {
96     return _running;
97   }
98
99
100   // Destructeur
101   JobInfo_eLSF::~JobInfo_eLSF()
102   {
103     // Nothing to do
104   }
105
106   // Convertit une date HH:MM:SS en secondes
107   long JobInfo_eLSF::HMStoLong(const string & s)
108   {
109     long hour, min, sec;
110
111     sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
112     return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
113   }
114
115   // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
116   string JobInfo_eLSF::__str__() const
117   {
118     ostringstream sst;
119     sst << "<JobInfo_eLSF (" << this << ") :" << endl;
120     sst << " ID = " <<_param[ID] << endl;
121     sst << " STATE = " <<_param[STATE] << endl;
122
123     return sst.str();
124   }
125
126
127 }