1 // Copyright (C) 2007-2012 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 * Batch_JobInfo_eLL.cxx :
25 * Created on: 30 nov. 2010
26 * Author : Renaud BARATE - EDF R&D
32 #include <Batch_RunTimeException.hxx>
33 #include <Batch_Constants.hxx>
35 #include "Batch_JobInfo_eLL.hxx"
41 JobInfo_eLL::JobInfo_eLL(const std::string & id, const std::string & output)
47 istringstream log(output);
50 // status should be on the third line
51 for (int i=0 ; i<3 ; i++)
54 istringstream iss(line);
57 if (status.size() == 0) {
58 // On some batch managers, the job is deleted as soon as it is finished,
59 // so we have to consider that an unknown job is a finished one, even if
60 // it is not always true.
61 _param[STATE] = FINISHED;
62 } else if (status == "C") { // Completed
63 _param[STATE] = FINISHED;
64 } else if (status == "R") { // Running
65 _param[STATE] = RUNNING;
66 } else if (status == "I") { // Idle
67 _param[STATE] = QUEUED;
68 } else if (status == "CA") { // Canceled
69 _param[STATE] = FAILED;
70 } else if (status == "CK") { // Checkpointing
71 _param[STATE] = RUNNING;
72 } else if (status == "CP") { // Complete Pending
73 _param[STATE] = RUNNING;
74 } else if (status == "D") { // Deferred
75 _param[STATE] = QUEUED;
76 } else if (status == "NQ") { // Not Queued
77 _param[STATE] = QUEUED;
78 } else if (status == "NR") { // Not Run
79 _param[STATE] = FAILED;
80 } else if (status == "P") { // Pending
81 _param[STATE] = RUNNING;
82 } else if (status == "E") { // Preempted
83 _param[STATE] = RUNNING;
84 } else if (status == "EP") { // Preempt Pending
85 _param[STATE] = RUNNING;
86 } else if (status == "X") { // Rejected
87 _param[STATE] = FAILED;
88 } else if (status == "XP") { // Reject Pending
89 _param[STATE] = QUEUED;
90 } else if (status == "RM") { // Removed
91 _param[STATE] = FAILED;
92 } else if (status == "RP") { // Remove Pending
93 _param[STATE] = FAILED;
94 } else if (status == "MP") { // Resume Pending
95 _param[STATE] = RUNNING;
96 } else if (status == "ST") { // Starting
97 _param[STATE] = RUNNING;
98 } else if (status == "S") { // System Hold
99 _param[STATE] = PAUSED;
100 } else if (status == "TX") { // Terminated
101 _param[STATE] = FAILED;
102 } else if (status == "HS") { // User & System Hold
103 _param[STATE] = PAUSED;
104 } else if (status == "H") { // User Hold
105 _param[STATE] = PAUSED;
106 } else if (status == "V") { // Vacated
107 _param[STATE] = FAILED;
108 } else if (status == "VP") { // Vacate Pending
109 _param[STATE] = FAILED;
111 throw RunTimeException("Unknown job state code: \"" + status + "\"");
115 JobInfo_eLL::~JobInfo_eLL()