Salome HOME
Copyright update 2021
[tools/libbatch.git] / src / Core / JobInfo.cxx
1 // Copyright (C) 2007-2021  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, or (at your option) any later version.
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
36 #include "Constants.hxx"
37 #include "JobInfo.hxx"
38
39 using namespace std;
40
41 namespace Batch {
42
43   // Destructeur
44   JobInfo::~JobInfo()
45   {
46     // Nothing to do
47   }
48   
49
50   // Operateur pour l'affichage sur un stream
51   ostream & operator <<(ostream & os, const JobInfo & ji)
52   {
53     return os << ji.__str__();
54   }
55
56
57   // Methodes pour l'interfacage avec Python (SWIG) : affichage en Python
58   string JobInfo::__str__() const
59   {
60     //MEDMEM::STRING sst; 
61     ostringstream sst;
62     sst << "<JobInfo (" << this << ") :" << endl;
63     sst << " ID = " <<_param[ID] << endl;
64
65     sst << "  + Parametre :" << endl;
66     Parametre::const_iterator itp;
67     for(itp=_param.begin(); itp!=_param.end(); itp++) {
68       if ( (*itp).first != ID ) {
69         sst << "    * " << (*itp).first << " = " << (*itp).second << endl;
70       }
71     }
72
73     sst << "  + Environnement :" << endl;
74     Environnement::const_iterator ite;
75     for(ite=_env.begin(); ite!=_env.end(); ite++) {
76       sst << "    * " << (*ite).first << " = " << (*ite).second << endl;
77     }
78
79     sst << " >";
80
81     return sst.str();
82   }
83
84   // Accesseur
85   Parametre JobInfo::getParametre() const
86   {
87     return _param;
88   }
89
90   // Accesseur
91   Environnement JobInfo::getEnvironnement() const
92   {
93     return _env;
94   }
95
96   // To tokenize a string
97   void JobInfo::Tokenize(const std::string& str, std::vector<std::string>& tokens, const std::string& delimiters)
98   {
99     // Skip delimiters at beginning.
100     string::size_type lastPos = str.find_first_not_of(delimiters, 0);
101     // Find first "non-delimiter".
102     string::size_type pos     = str.find_first_of(delimiters, lastPos);
103
104     while (string::npos != pos || string::npos != lastPos)
105     {
106       // Found a token, add it to the vector.
107       tokens.push_back(str.substr(lastPos, pos - lastPos));
108       // Skip delimiters.  Note the "not_of"
109       lastPos = str.find_first_not_of(delimiters, pos);
110       // Find next "non-delimiter"
111       pos = str.find_first_of(delimiters, lastPos);
112     }
113   }
114
115 }