Salome HOME
A patch from Paul RASCLE for: kernel documentation with doxygen, modification on...
[modules/kernel.git] / src / Batch / Batch_Job_Local.cxx
1 // Copyright (C) 2005  OPEN CASCADE, CEA, EDF R&D, LEG
2 //           PRINCIPIA R&D, EADS CCR, Lip6, BV, CEDRAT
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 // 
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 // 
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 // 
19 /*
20  * Job_Local.cxx : 
21  *
22  * Auteur : Ivan DUTKA-MALEN - EDF R&D
23  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
24  * Date   : Fri Nov 14 11:00:39 2003
25  * Projet : Salome 2
26  *
27  */
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include "Batch_Job_Local.hxx"
33
34 namespace Batch {
35
36   // Constructeur
37   Job_Local::Job_Local(const Job & job) : 
38     _command(), _param(job.getParametre()), _env(job.getEnvironnement())
39   {
40     // On positionne le nom du EXECUTIONHOST a "localhost" s'il n'est pas precise
41     if ( _param.find(EXECUTIONHOST) == _param.end() ) {
42       _param[EXECUTIONHOST] = "localhost";
43     }
44
45     // On convertit les objets Parametre et Environnement en liste chainee d'attributs + operateur
46     addEnvironnement( _env   );
47     addParametre    ( _param );
48
49   }
50
51
52   // Destructeur
53   Job_Local::~Job_Local()
54   {
55   }
56
57
58   void Job_Local::addParametre(const Parametre & P)
59   {
60     // En dernier, on ajoute le chemin complet de la commande
61     _command += P[EXECUTABLE].str();
62   }
63
64
65   void Job_Local::addEnvironnement(const Environnement & E)
66   {
67     for(Environnement::const_iterator it=E.begin(); it != E.end(); it++) {
68       string variable = (*it).first;
69       string value    = (*it).second;
70
71       // On remplace toutes les occurences de single-quote par backslash-single-quote
72       for(int pos=0; pos < value.size(); pos++) {
73         pos = value.find("'", pos);
74         if ( (pos < 0) || (pos > value.size()) ) break;
75         value.replace(pos, 1, "\'");
76       }
77       _command += variable + "='" + value + "' ";
78     }
79   }
80
81   string Job_Local::getCommand(void) const {
82     return _command;
83   }
84
85
86   // Retourne l'objet Parametre
87   Parametre Job_Local::getParametre() const
88   {
89     return _param;
90   }
91
92   // Retourne l'objet Environnement
93   Environnement Job_Local::getEnvironnement() const
94   {
95     return _env;
96   }
97
98
99 }