]> SALOME platform Git repositories - modules/kernel.git/blob - src/Batch/Batch_JobInfo.cxx
Salome HOME
BUG 0020024: a --gdb-session option to runSalome ...
[modules/kernel.git] / src / Batch / Batch_JobInfo.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 /*
21  * JobInfo.cxx : 
22  *
23  * Auteur : Ivan DUTKA-MALEN - EDF R&D
24  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
25  * Date   : Thu Nov  6 10:05:30 2003
26  * Projet : Salome 2
27  *
28  */
29
30 #include <iostream>
31 #include <string>
32 #include <sstream>
33 //#include "MEDMEM_STRING.hxx"
34 #include "Batch_JobInfo.hxx"
35
36 using namespace std;
37
38 namespace Batch {
39
40   // Destructeur
41   JobInfo::~JobInfo()
42   {
43     // Nothing to do
44   }
45   
46
47   // Operateur pour l'affichage sur un stream
48   ostream & operator <<(ostream & os, const JobInfo & ji)
49   {
50     return os << ji.__str__();
51   }
52
53
54   // Methodes pour l'interfacage avec Python (SWIG) : affichage en Python
55   string JobInfo::__str__() const
56   {
57     //MEDMEM::STRING sst; 
58     ostringstream sst;
59     sst << "<JobInfo (" << this << ") :" << endl;
60     sst << " ID = " <<_param[ID] << endl;
61
62     sst << "  + Parametre :" << endl;
63     Parametre::const_iterator itp;
64     for(itp=_param.begin(); itp!=_param.end(); itp++) {
65       if ( (*itp).first != ID ) {
66         sst << "    * " << (*itp).first << " = " << (*itp).second << endl;
67       }
68     }
69
70     sst << "  + Environnement :" << endl;
71     Environnement::const_iterator ite;
72     for(ite=_env.begin(); ite!=_env.end(); ite++) {
73       sst << "    * " << (*ite).first << " = " << (*ite).second << endl;
74     }
75
76     sst << " >";
77
78     return sst.str();
79   }
80
81   // Accesseur
82   Parametre JobInfo::getParametre() const
83   {
84     return _param;
85   }
86
87   // Accesseur
88   Environnement JobInfo::getEnvironnement() const
89   {
90     return _env;
91   }
92
93
94 }