Salome HOME
Update copyrights
[tools/libbatch.git] / src / PBS / Batch_JobInfo_ePBS.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_ePBS.cxx :  emulation of PBS 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 <iostream>
34 #include <sstream>
35
36 #include <Batch_Constants.hxx>
37 #include "Batch_JobInfo_ePBS.hxx"
38
39 using namespace std;
40
41 namespace Batch {
42
43   // Constructeurs
44   JobInfo_ePBS::JobInfo_ePBS(int id, string queryOutput) : JobInfo()
45   {
46     // Fill ID parameter
47     ostringstream oss;
48     oss << id;
49     _param[ID] = oss.str();
50
51     // read query output
52     istringstream queryIss(queryOutput);
53     string line;
54     size_t pos = string::npos;
55     while( (pos == string::npos) && getline(queryIss, line) ) {
56       pos = line.find("job_state");
57     }
58
59     if(pos!=string::npos){
60       string status;
61       istringstream iss(line);
62       iss >> status;
63       iss >> status;
64       iss >> status;
65
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;
82       } else {
83         cerr << "Unknown job state code: " << status << endl;
84       }
85     } else {
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;
90     }
91   }
92
93   // Destructeur
94   JobInfo_ePBS::~JobInfo_ePBS()
95   {
96     // Nothing to do
97   }
98
99   // Convertit une date HH:MM:SS en secondes
100   long JobInfo_ePBS::HMStoLong(const string & s)
101   {
102     long hour, min, sec;
103
104     sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
105     return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
106   }
107
108   // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
109   string JobInfo_ePBS::__str__() const
110   {
111     ostringstream sst;
112     sst << "<JobInfo_ePBS (" << this << ") :" << endl;
113     sst << " ID = " <<_param[ID] << endl;
114     sst << " STATE = " <<_param[STATE] << endl;
115
116     return sst.str();
117   }
118
119 }