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