Salome HOME
Merging from V4_1_0_maintainance for porting on Win32 Platform
[modules/kernel.git] / src / Batch / Batch_JobInfo_eLSF.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 /*
21  * JobInfo_eLSF.cxx :  emulation of LSF client
22  *
23  * Auteur : Bernard SECHER - CEA DEN
24  * Mail   : mailto:bernard.secher@cea.fr
25  * Date   : Thu Apr 24 10:17:22 2008
26  * Projet : PAL Salome 
27  *
28  */
29
30 #include <cstdio>
31 #include <iostream>
32 #include <fstream>
33 #include <sstream>
34 #include "Batch_Parametre.hxx"
35 #include "Batch_Environnement.hxx"
36 #include "Batch_RunTimeException.hxx"
37 #include "Batch_APIInternalFailureException.hxx"
38 #include "Batch_JobInfo_eLSF.hxx"
39
40 using namespace std;
41
42 namespace Batch {
43
44
45
46   // Constructeurs
47   JobInfo_eLSF::JobInfo_eLSF(int id, string logFile) : JobInfo()
48   {
49     // On remplit les membres _param et _env
50     ostringstream oss;
51     oss << id;
52     _param[ID] = oss.str();
53
54     // read status of job in log file
55     char line[128];
56     ifstream fp(logFile.c_str(),ios::in);
57     fp.getline(line,80,'\n');
58     
59     string sjobid, username, status;
60     fp >> sjobid;
61     fp >> username;
62     fp >> status;
63
64     _param[STATE] = status;
65
66     if( status.find("RUN") != string::npos)
67       _running = true;
68
69   }
70
71   // Teste si un job est present en machine
72   bool JobInfo_eLSF::isRunning() const
73   {
74     return _running;
75   }
76
77
78   // Destructeur
79   JobInfo_eLSF::~JobInfo_eLSF()
80   {
81     // Nothing to do
82   }
83
84   // Convertit une date HH:MM:SS en secondes
85   long JobInfo_eLSF::HMStoLong(const string & s)
86   {
87     long hour, min, sec;
88
89     sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
90     return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
91   }
92
93   // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
94   string JobInfo_eLSF::__str__() const
95   {
96     ostringstream sst;
97     sst << "<JobInfo_eLSF (" << this << ") :" << endl;
98     sst << " ID = " <<_param[ID] << endl;
99     sst << " STATE = " <<_param[STATE] << endl;
100
101     return sst.str();
102   }
103
104
105 }