Salome HOME
Fix remote directories in file transfer and merge some tests
[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 <sstream>
35
36 #include "Batch_Constants.hxx"
37 #include "Batch_Parametre.hxx"
38 #include "Batch_Environnement.hxx"
39 #include "Batch_JobInfo_eCCC.hxx"
40
41 using namespace std;
42
43 namespace Batch {
44
45
46
47   // Constructeurs
48   JobInfo_eCCC::JobInfo_eCCC(int id, string output) : JobInfo()
49   {
50     // On remplit les membres _param et _env
51     ostringstream oss;
52     oss << id;
53     _param[ID] = oss.str();
54
55     // read status of job in log file
56     char line[128];
57     istringstream fp(output);
58     fp.getline(line,80,'\n');
59     
60     string sjobid, username, status;
61     fp >> sjobid;
62     fp >> username;
63     fp >> status;
64
65     if (status == "PEND") {         // Pending
66       _param[STATE] = QUEUED;
67     } else if (status == "PSUSP") { // Suspended while pending
68       _param[STATE] = PAUSED;
69     } else if (status == "RUN") {   // Running
70       _param[STATE] = RUNNING;
71     } else if (status == "USUSP") { // Suspended while running
72       _param[STATE] = PAUSED;
73     } else if (status == "SSUSP") { // Suspended by CCC
74       _param[STATE] = PAUSED;
75     } else if (status == "DONE") {  // Finished successfully
76       _param[STATE] = FINISHED;
77     } else if (status == "EXIT") {  // Finished successfully
78       _param[STATE] = FINISHED;
79     } else if (status == "UNKWN") { // Lost contact
80       _param[STATE] = FAILED;
81     } else if (status == "ZOMBI") { // Zombie
82       _param[STATE] = FAILED;
83     } else {
84       cerr << "Unknown job state code: " << status << endl;
85     }
86
87     if( status.find("RUN") != string::npos)
88       _running = true;
89
90   }
91
92   // Teste si un job est present en machine
93   bool JobInfo_eCCC::isRunning() const
94   {
95     return _running;
96   }
97
98
99   // Destructeur
100   JobInfo_eCCC::~JobInfo_eCCC()
101   {
102     // Nothing to do
103   }
104
105   // Convertit une date HH:MM:SS en secondes
106   long JobInfo_eCCC::HMStoLong(const string & s)
107   {
108     long hour, min, sec;
109
110     sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
111     return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
112   }
113
114   // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
115   string JobInfo_eCCC::__str__() const
116   {
117     ostringstream sst;
118     sst << "<JobInfo_eCCC (" << this << ") :" << endl;
119     sst << " ID = " <<_param[ID] << endl;
120     sst << " STATE = " <<_param[STATE] << endl;
121
122     return sst.str();
123   }
124
125
126 }