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