Salome HOME
Changed copyright notices.
[tools/libbatch.git] / src / LSF / Batch_JobInfo_LSF.cxx
1 //  Copyright (C) 2007-2010  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_LSF.cxx : 
24  *
25  * Auteur : Ivan DUTKA-MALEN - EDF R&D
26  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
27  * Date   : Fri Nov 21 09:42:06 2003
28  * Projet : Salome 2
29  *
30  */
31
32 #include <cstdio>
33 #include <sstream>
34 #include <string>
35 #include "Batch_Parametre.hxx"
36 #include "Batch_Environnement.hxx"
37 #include "Batch_RunTimeException.hxx"
38 #include "Batch_APIInternalFailureException.hxx"
39 #include "Batch_JobInfo_LSF.hxx"
40
41 using namespace std;
42
43 namespace Batch {
44
45
46
47   // Constructeurs
48   JobInfo_LSF::JobInfo_LSF(int id) : JobInfo()
49   {
50     struct loadIndexLog * p_ld        = new struct loadIndexLog;
51     struct jobInfoHead  * p_jInfoHead = lsb_openjobinfo_a(id, NULL, NULL, NULL, NULL, ALL_JOB);
52
53     int more = p_jInfoHead->numJobs;
54     if (more != 1) {
55       char * msg = lsb_sysmsg();
56       if (!msg) msg = "unknown";
57       throw APIInternalFailureException(string("LSF lsb_openjobinfo error. Reason : ") + msg);     
58     }
59
60     // on remplit une structure contenant <more> elements
61     struct jobInfoEnt & jobInfo = * lsb_readjobinfo(&more);
62
63
64     // On remplit les membres _param et _env
65     _param[ACCOUNT]          = jobInfo.submit.projectName;
66     _param[CHECKPOINT]       = jobInfo.submit.chkpntPeriod != 0;
67     _param[CKPTINTERVAL]     = jobInfo.submit.chkpntPeriod;
68     _param[CREATIONTIME]     = jobInfo.submitTime;
69     // _param[EGROUP]           = jobInfo.;
70     _param[ELIGIBLETIME]     = jobInfo.reserveTime;
71     _param[ENDTIME]          = jobInfo.endTime;
72     _param[EUSER]            = jobInfo.execUsername;
73     _param[EXECUTABLE]       = jobInfo.submit.command;
74     _param[EXITCODE]         = jobInfo.exitStatus;
75     _param[HOLD]             = jobInfo.status & (JOB_STAT_PSUSP | JOB_STAT_SSUSP | JOB_STAT_USUSP);
76     _param[MAIL]             = jobInfo.submit.mailUser;
77     _param[MAXCPUTIME]       = jobInfo.submit.rLimits[LSF_RLIMIT_CPU];
78     _param[MAXDISKSIZE]      = jobInfo.submit.rLimits[LSF_RLIMIT_FSIZE];
79     _param[MAXRAMSIZE]       = jobInfo.submit.rLimits[LSF_RLIMIT_SWAP];
80     _param[MAXWALLTIME]      = jobInfo.submit.rLimits[LSF_RLIMIT_RUN];
81     _param[MODIFICATIONTIME] = jobInfo.lastEvent;
82     _param[NAME]             = jobInfo.jName;
83     _param[NBPROC]           = jobInfo.submit.numProcessors;
84     _param[PID]              = jobInfo.jobPid;
85     _param[QUEUE]            = jobInfo.submit.queue;
86     _param[QUEUEDTIME]       = jobInfo.submitTime;
87     // _param[SERVER]           = jobInfo.;
88     _param[STARTTIME]        = jobInfo.startTime;
89     _param[TEXT]             = jobInfo.numReasons ? lsb_pendreason(jobInfo.numReasons,
90                                                                    jobInfo.reasonTb, 
91                                                                    p_jInfoHead,
92                                                                    p_ld,0) : "";
93     // _param[TMPDIR]           = jobInfo.;
94     _param[USEDCPUTIME]      = static_cast<long>(jobInfo.cpuTime);
95     // _param[USEDDISKSIZE]     = jobInfo.;
96     _param[USEDRAMSIZE]      = jobInfo.runRusage.mem;
97     _param[USEDWALLTIME]     = jobInfo.duration * 60L;
98     _param[USER]             = jobInfo.user;
99
100
101     ostringstream oss;
102     int jobid = jobInfo.jobId;
103     oss << jobid;
104     _param[ID] = oss.str();
105
106
107     string hosts, sep;
108     for(int i=0; i < jobInfo.numExHosts; i++, sep="+") {
109       hosts += jobInfo.exHosts[i];
110       hosts += sep;
111     }
112     _param[EXECUTIONHOST]    = hosts;
113
114     ostringstream status;
115
116     if (IS_PEND(jobInfo.status))
117       status << " Job is pending;";
118     if (IS_START(jobInfo.status))
119       status << " Job is started;";
120     if (IS_FINISH(jobInfo.status))
121       status << " Job is finished;";
122     if (IS_SUSP(jobInfo.status))
123       status << " Job is suspended;";
124     if (IS_POST_DONE(jobInfo.status))
125       status << " Job is post-done;";
126     if (IS_POST_ERR(jobInfo.status))
127       status << " Job is post-error;";
128
129     // TODO: Use constants for STATE instead
130     _param[STATE] = status.str();
131     _running = IS_FINISH(jobInfo.status) ? false : true;
132
133
134     if (strlen(jobInfo.submit.inFile))
135       _param[INFILE]  += Couple(jobInfo.submit.inFile, "stdin");
136     if (strlen(jobInfo.submit.outFile))
137       _param[OUTFILE]  += Couple(jobInfo.submit.outFile, "stdout");
138     if (strlen(jobInfo.submit.errFile))
139       _param[OUTFILE]  += Couple(jobInfo.submit.errFile, "stderr");
140
141     for(int i=0; i < jobInfo.submit.nxf; i++) {
142       switch (jobInfo.submit.xf[i].options) {
143       case XF_OP_SUB2EXEC:
144         _param[INFILE]  += Couple(jobInfo.submit.xf[i].subFn, jobInfo.submit.xf[i].execFn);
145         break;
146
147       case XF_OP_EXEC2SUB:
148         _param[OUTFILE] += Couple(jobInfo.submit.xf[i].subFn, jobInfo.submit.xf[i].execFn);
149         break;
150
151       default:
152         break;
153       }
154     }
155
156
157     lsb_closejobinfo();
158     delete p_ld;
159   }
160
161
162
163     // Teste si un job est present en machine
164   bool JobInfo_LSF::isRunning() const
165   {
166     return _running;
167   }
168
169
170   // Destructeur
171   JobInfo_LSF::~JobInfo_LSF()
172   {
173     // Nothing to do
174   }
175
176
177   
178   // Convertit une date HH:MM:SS en secondes
179   long JobInfo_LSF::HMStoLong(const string & s)
180   {
181     long hour, min, sec;
182
183     sscanf( s.c_str(), "%ld:%ld:%ld", &hour, &min, &sec);
184     return ( ( ( hour * 60L ) + min ) * 60L ) + sec;
185   }
186
187   // Methode pour l'interfacage avec Python (SWIG) : affichage en Python
188   string JobInfo_LSF::__str__() const
189   {
190     ostringstream sst;
191     sst << "<JobInfo_LSF (" << this << ") :" << endl;
192     sst << " ID = " <<_param[ID] << endl;
193
194     sst << "  + Parametre :" << endl;
195     Parametre::const_iterator itp;
196     for(itp=_param.begin(); itp!=_param.end(); itp++) {
197       if ( (*itp).first != ID ) {
198         sst << "    * " << (*itp).first << " = " << (*itp).second << endl;
199       }
200     }
201     return sst.str();
202   }
203
204
205 }