Salome HOME
Changed copyright notices.
[tools/libbatch.git] / src / Core / Batch_JobInfo.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.cxx : 
24  *
25  * Auteur : Ivan DUTKA-MALEN - EDF R&D
26  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
27  * Date   : Thu Nov  6 10:05:30 2003
28  * Projet : Salome 2
29  *
30  */
31
32 #include <iostream>
33 #include <string>
34 #include <sstream>
35 //#include "MEDMEM_STRING.hxx"
36 #include "Batch_JobInfo.hxx"
37
38 using namespace std;
39
40 namespace Batch {
41
42   // Destructeur
43   JobInfo::~JobInfo()
44   {
45     // Nothing to do
46   }
47   
48
49   // Operateur pour l'affichage sur un stream
50   ostream & operator <<(ostream & os, const JobInfo & ji)
51   {
52     return os << ji.__str__();
53   }
54
55
56   // Methodes pour l'interfacage avec Python (SWIG) : affichage en Python
57   string JobInfo::__str__() const
58   {
59     //MEDMEM::STRING sst; 
60     ostringstream sst;
61     sst << "<JobInfo (" << this << ") :" << endl;
62     sst << " ID = " <<_param[ID] << endl;
63
64     sst << "  + Parametre :" << endl;
65     Parametre::const_iterator itp;
66     for(itp=_param.begin(); itp!=_param.end(); itp++) {
67       if ( (*itp).first != ID ) {
68         sst << "    * " << (*itp).first << " = " << (*itp).second << endl;
69       }
70     }
71
72     sst << "  + Environnement :" << endl;
73     Environnement::const_iterator ite;
74     for(ite=_env.begin(); ite!=_env.end(); ite++) {
75       sst << "    * " << (*ite).first << " = " << (*ite).second << endl;
76     }
77
78     sst << " >";
79
80     return sst.str();
81   }
82
83   // Accesseur
84   Parametre JobInfo::getParametre() const
85   {
86     return _param;
87   }
88
89   // Accesseur
90   Environnement JobInfo::getEnvironnement() const
91   {
92     return _env;
93   }
94
95
96 }