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