Salome HOME
Copyright update 2021
[tools/libbatch.git] / src / SGE / JobInfo_SGE.cxx
1 // Copyright (C) 2007-2021  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, or (at your option) any later version.
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_SGE.cxx :  emulation of SGE 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 "Constants.hxx"
37 #include "Parametre.hxx"
38 #include "Environnement.hxx"
39 #include "RunTimeException.hxx"
40 #include "APIInternalFailureException.hxx"
41 #include "JobInfo_SGE.hxx"
42 #include "Log.hxx"
43
44 using namespace std;
45
46 namespace Batch {
47
48
49
50   // Constructeurs
51   JobInfo_SGE::JobInfo_SGE(int id, const std::string & output) : JobInfo()
52   {
53     // On remplit les membres _param et _nv
54     ostringstream oss;
55     oss << id;
56     _param[ID] = oss.str();
57
58     // read of log file
59     char line[128];
60     istringstream fp(output);
61       
62     string status;
63     string sline;
64     fp.getline(line,80,'\n');
65     sline = string(line);
66
67     if( sline.length() > 0 ){
68       istringstream iss(sline);
69       iss >> status >> status >> status >> status >> status;
70
71       if (status == "d") {         // Deletion
72         _param[STATE] = FAILED;
73       } else if (status == "t") {  // Transferring
74         _param[STATE] = IN_PROCESS;
75       } else if (status == "r") {  // Running
76         _param[STATE] = RUNNING;
77         _running = true;
78       } else if (status == "R") {  // Restarted
79         _param[STATE] = RUNNING;
80         _running = true;
81       } else if (status == "s") {  // Suspended
82         _param[STATE] = PAUSED;
83       } else if (status == "S") {  // Suspended
84         _param[STATE] = PAUSED;
85       } else if (status == "T") {  // Threshold
86         _param[STATE] = PAUSED;
87       } else if (status == "qw") { // Queued and waiting
88         _param[STATE] = QUEUED;
89       } else if (status == "h") {  // Hold
90         _param[STATE] = PAUSED;
91       } else {
92         LOG("Unknown job state code: " << status);
93       }
94     } else {
95       // TODO: Check this. I suppose that unknown jobs are finished ones.
96       _param[STATE] = FINISHED;
97     }
98   }
99
100   // Teste si un job est present en machine
101   bool JobInfo_SGE::isRunning() const
102   {
103     return _running;
104   }
105
106
107   // Destructeur
108   JobInfo_SGE::~JobInfo_SGE()
109   {
110     // Nothing to do
111   }
112
113   // Convertit une date HH:MM:SS en secondes
114   long JobInfo_SGE::HMStoLong(const string & s)
115   {
116     long hour, min, sec;
117
118     sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
119     return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
120   }
121
122   // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
123   string JobInfo_SGE::__str__() const
124   {
125     ostringstream sst;
126     sst << "<JobInfo_SGE (" << this << ") :" << endl;
127     sst << " ID = " <<_param[ID] << endl;
128     sst << " STATE = " <<_param[STATE] << endl;
129
130     return sst.str();
131   }
132
133
134 }