]> SALOME platform Git repositories - modules/kernel.git/blob - src/Batch/Batch_Job_Local.cxx
Salome HOME
Fix compilation problems on Win32 platform
[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 #ifndef WIN32
32 #include <unistd.h>
33 #endif
34 #include "Batch_Job_Local.hxx"
35
36 namespace Batch {
37
38   // Constructeur
39   Job_Local::Job_Local(const Job & job) : 
40     _command(), _param(job.getParametre()), _env(job.getEnvironnement())
41   {
42     // On positionne le nom du EXECUTIONHOST a "localhost" s'il n'est pas precise
43     if ( _param.find(EXECUTIONHOST) == _param.end() ) {
44       _param[EXECUTIONHOST] = "localhost";
45     }
46
47     // On convertit les objets Parametre et Environnement en liste chainee d'attributs + operateur
48     addEnvironnement( _env   );
49     addParametre    ( _param );
50
51   }
52
53
54   // Destructeur
55   Job_Local::~Job_Local()
56   {
57   }
58
59
60   void Job_Local::addParametre(const Parametre & P)
61   {
62     // En dernier, on ajoute le chemin complet de la commande
63     _command += P[EXECUTABLE].str();
64   }
65
66
67   void Job_Local::addEnvironnement(const Environnement & E)
68   {
69     for(Environnement::const_iterator it=E.begin(); it != E.end(); it++) {
70       string variable = (*it).first;
71       string value    = (*it).second;
72
73       // On remplace toutes les occurences de single-quote par backslash-single-quote
74       for(int pos=0; pos < value.size(); pos++) {
75         pos = value.find("'", pos);
76         if ( (pos < 0) || (pos > value.size()) ) break;
77         value.replace(pos, 1, "\'");
78       }
79       _command += variable + "='" + value + "' ";
80     }
81   }
82
83   string Job_Local::getCommand(void) const {
84     return _command;
85   }
86
87
88   // Retourne l'objet Parametre
89   Parametre Job_Local::getParametre() const
90   {
91     return _param;
92   }
93
94   // Retourne l'objet Environnement
95   Environnement Job_Local::getEnvironnement() const
96   {
97     return _env;
98   }
99
100
101 }