]> SALOME platform Git repositories - modules/kernel.git/blob - src/Batch/Batch_JobInfo.cxx
Salome HOME
Copyrights update
[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/
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 using namespace std;
36
37 namespace Batch {
38
39   // Destructeur
40   JobInfo::~JobInfo()
41   {
42     // Nothing to do
43   }
44   
45
46   // Operateur pour l'affichage sur un stream
47   ostream & operator <<(ostream & os, const JobInfo & ji)
48   {
49     return os << ji.__str__();
50   }
51
52
53   // Methodes pour l'interfacage avec Python (SWIG) : affichage en Python
54   string JobInfo::__str__() const
55   {
56     //MEDMEM::STRING sst; 
57     ostringstream sst;
58     sst << "<JobInfo (" << this << ") :" << endl;
59     sst << " ID = " <<_param[ID] << endl;
60
61     sst << "  + Parametre :" << endl;
62     Parametre::const_iterator itp;
63     for(itp=_param.begin(); itp!=_param.end(); itp++) {
64       if ( (*itp).first != ID ) {
65         sst << "    * " << (*itp).first << " = " << (*itp).second << endl;
66       }
67     }
68
69     sst << "  + Environnement :" << endl;
70     Environnement::const_iterator ite;
71     for(ite=_env.begin(); ite!=_env.end(); ite++) {
72       sst << "    * " << (*ite).first << " = " << (*ite).second << endl;
73     }
74
75     sst << " >";
76
77     return sst.str();
78   }
79
80   // Accesseur
81   Parametre JobInfo::getParametre() const
82   {
83     return _param;
84   }
85
86   // Accesseur
87   Environnement JobInfo::getEnvironnement() const
88   {
89     return _env;
90   }
91
92
93 }