1 // Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 * JobInfo_ePBS.cxx : emulation of PBS client
25 * Auteur : Bernard SECHER - CEA DEN
26 * Mail : mailto:bernard.secher@cea.fr
27 * Date : Thu Apr 24 10:17:22 2008
36 #include "Batch_Parametre.hxx"
37 #include "Batch_Environnement.hxx"
38 #include "Batch_RunTimeException.hxx"
39 #include "Batch_APIInternalFailureException.hxx"
40 #include "Batch_JobInfo_ePBS.hxx"
49 JobInfo_ePBS::JobInfo_ePBS(int id, string logFile) : JobInfo()
51 // On remplit les membres _param et _env
54 _param[ID] = oss.str();
58 ifstream fp(logFile.c_str(),ios::in);
62 int pos = string::npos;
63 while( (pos == string::npos) && fp.getline(line,80,'\n') ){
65 pos = sline.find("job_state");
68 if(pos!=string::npos){
69 istringstream iss(sline);
77 _param[STATE] = status;
79 if( status.find("R") != string::npos)
84 // Teste si un job est present en machine
85 bool JobInfo_ePBS::isRunning() const
92 JobInfo_ePBS::~JobInfo_ePBS()
97 // Convertit une date HH:MM:SS en secondes
98 long JobInfo_ePBS::HMStoLong(const string & s)
102 sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
103 return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
106 // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
107 string JobInfo_ePBS::__str__() const
110 sst << "<JobInfo_ePBS (" << this << ") :" << endl;
111 sst << " ID = " <<_param[ID] << endl;
112 sst << " STATE = " <<_param[STATE] << endl;