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