Salome HOME
Revert previous change since bug in vishnu_create_dir -p is now fixed
[tools/libbatch.git] / src / CCC / Batch_JobInfo_eCCC.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_eCCC.cxx :  emulation of CCC client for CCRT machines
24  *
25  * Auteur : Bernard SECHER - CEA DEN
26  * Mail   : mailto:bernard.secher@cea.fr
27  * Date   : Thu Apr 24 10:17:22 2010
28  * Projet : PAL Salome 
29  *
30  */
31
32 #include <cstdio>
33 #include <iostream>
34 #include <fstream>
35 #include <sstream>
36
37 #include "Batch_Constants.hxx"
38 #include "Batch_Parametre.hxx"
39 #include "Batch_Environnement.hxx"
40 #include "Batch_RunTimeException.hxx"
41 #include "Batch_APIInternalFailureException.hxx"
42 #include "Batch_JobInfo_eCCC.hxx"
43
44 using namespace std;
45
46 namespace Batch {
47
48
49
50   // Constructeurs
51   JobInfo_eCCC::JobInfo_eCCC(int id, string logFile) : JobInfo()
52   {
53     // On remplit les membres _param et _env
54     ostringstream oss;
55     oss << id;
56     _param[ID] = oss.str();
57
58     // read status of job in log file
59     char line[128];
60     ifstream fp(logFile.c_str(),ios::in);
61     fp.getline(line,80,'\n');
62     
63     string sjobid, username, status;
64     fp >> sjobid;
65     fp >> username;
66     fp >> status;
67
68     if (status == "PEND") {         // Pending
69       _param[STATE] = QUEUED;
70     } else if (status == "PSUSP") { // Suspended while pending
71       _param[STATE] = PAUSED;
72     } else if (status == "RUN") {   // Running
73       _param[STATE] = RUNNING;
74     } else if (status == "USUSP") { // Suspended while running
75       _param[STATE] = PAUSED;
76     } else if (status == "SSUSP") { // Suspended by CCC
77       _param[STATE] = PAUSED;
78     } else if (status == "DONE") {  // Finished successfully
79       _param[STATE] = FINISHED;
80     } else if (status == "EXIT") {  // Finished successfully
81       _param[STATE] = FINISHED;
82     } else if (status == "UNKWN") { // Lost contact
83       _param[STATE] = FAILED;
84     } else if (status == "ZOMBI") { // Zombie
85       _param[STATE] = FAILED;
86     } else {
87       cerr << "Unknown job state code: " << status << endl;
88     }
89
90     if( status.find("RUN") != string::npos)
91       _running = true;
92
93   }
94
95   // Teste si un job est present en machine
96   bool JobInfo_eCCC::isRunning() const
97   {
98     return _running;
99   }
100
101
102   // Destructeur
103   JobInfo_eCCC::~JobInfo_eCCC()
104   {
105     // Nothing to do
106   }
107
108   // Convertit une date HH:MM:SS en secondes
109   long JobInfo_eCCC::HMStoLong(const string & s)
110   {
111     long hour, min, sec;
112
113     sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
114     return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
115   }
116
117   // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
118   string JobInfo_eCCC::__str__() const
119   {
120     ostringstream sst;
121     sst << "<JobInfo_eCCC (" << this << ") :" << endl;
122     sst << " ID = " <<_param[ID] << endl;
123     sst << " STATE = " <<_param[STATE] << endl;
124
125     return sst.str();
126   }
127
128
129 }