Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/kernel.git] / src / Batch / Batch_BatchManager_Local_SH.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  * BatchManager_Local_SH.cxx : 
21  *
22  * Auteur : Ivan DUTKA-MALEN - EDF R&D
23  * Mail   : mailto:ivan.dutka-malen@der.edf.fr
24  * Date   : Thu Nov  6 10:17:22 2003
25  * Projet : Salome 2
26  *
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #  include <SALOMEconfig.h>
31 #endif
32
33 #include <iostream>
34 #include <fstream>
35 #include <sstream>
36 #include <cstdlib>
37 #include <sys/types.h>
38 #include <sys/wait.h>
39 #include <ctime>
40 #include <unistd.h>
41 #include <pthread.h>
42 #include <signal.h>
43 #include <errno.h>
44 #include <string.h>
45 #include "Batch_IOMutex.hxx"
46 #include "Batch_BatchManager_Local_SH.hxx"
47
48 #ifndef RM
49 #error "RM undefined. You must set RM to a valid path to a rm-like command."
50 #endif
51
52 #ifndef CP
53 #error "CP undefined. You must set CP to a valid path to a cp-like command."
54 #endif
55
56 #ifndef SH
57 #error "SH undefined. You must set SH to a valid path to a sh-like command."
58 #endif
59
60 namespace Batch {
61
62
63   // Constructeur
64   BatchManager_Local_SH::BatchManager_Local_SH(const FactBatchManager * parent, const char * host) throw(InvalidArgumentException,ConnexionFailureException) : BatchManager_Local(parent, host)
65   {
66   }
67
68   // Destructeur
69   BatchManager_Local_SH::~BatchManager_Local_SH()
70   {
71   }
72
73
74   // Methode qui renvoie la commande de copie du fichier source en destination
75   string BatchManager_Local_SH::copy_command(const string & host_source, const string & source, const string & host_destination, const string & destination) const
76   {
77     ostringstream copy_cmd;
78     copy_cmd << CP << " " << source << " " << destination;
79     return copy_cmd.str();
80   }
81   
82   // Methode qui renvoie la commande a executer
83   string BatchManager_Local_SH::exec_command(Parametre & param) const
84   {
85     ostringstream exec_sub_cmd;
86     exec_sub_cmd << param[EXECUTABLE];
87
88     if (param.find(ARGUMENTS) != param.end()) {
89       Versatile V = param[ARGUMENTS];
90       for(Versatile::const_iterator it=V.begin(); it!=V.end(); it++) {
91         StringType argt = * static_cast<StringType *>(*it);
92         string     arg  = argt;
93         exec_sub_cmd << " " << arg;
94       }
95     }
96
97     param[ARGUMENTS]  = "-c";
98     param[ARGUMENTS] += exec_sub_cmd.str();
99
100     return SH;
101   }
102
103   // Methode qui renvoie la commande d'effacement du fichier
104   string BatchManager_Local_SH::remove_command(const string & host_destination, const string & destination) const
105   {
106     ostringstream remove_cmd;
107     remove_cmd << RM << " " << destination;
108     return remove_cmd.str();
109   }
110   
111 }