Salome HOME
Rollback of rc2 changes
[tools/libbatch.git] / src / Core / Batch_CommunicationProtocolSH.cxx
1 //  Copyright (C) 2007-2010  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.
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  *  Batch_CommunicationProtocolSH.cxx :
24  *
25  *  Created on: 16 sept. 2009
26  *  Author : Renaud BARATE - EDF R&D
27  */
28
29 #include <Batch_config.h>
30
31 #include "Batch_CommunicationProtocolSH.hxx"
32
33 using namespace std;
34
35 namespace Batch {
36
37   // Simple method to fix path strings depending on the platform. On Windows, it will replace
38   // forward slashes '/' by backslashes '\'. On Unix, the path is just copied without change.
39   string CommunicationProtocolSH::fixPath(const string & path) const
40   {
41     string fixedPath = path;
42   #ifdef WIN32
43     for (unsigned int i=0 ; i<fixedPath.size() ; i++) {
44       if (fixedPath[i] == '/') fixedPath[i] = '\\';
45     }
46   #endif
47     return fixedPath;
48   }
49
50   vector<string> CommunicationProtocolSH::getExecCommandArgs(const string & subCommand,
51                                                              const string & host,
52                                                              const string & user) const
53   {
54     vector<string> cmd;
55
56     cmd.push_back(fixPath(SH_COMMAND));
57
58 #ifdef WIN32
59     cmd.push_back("/c");
60 #else
61     cmd.push_back("-c");
62 #endif
63
64     cmd.push_back(fixPath(subCommand));
65
66     return cmd;
67   }
68
69   vector<string> CommunicationProtocolSH::getCopyCommandArgs(const string & sourcePath,
70                                                              const string & sourceHost,
71                                                              const string & sourceUser,
72                                                              const string & destinationPath,
73                                                              const string & destinationHost,
74                                                              const string & destinationUser) const
75   {
76     vector<string> cmd;
77     cmd.push_back(CP_COMMAND);
78 #ifndef WIN32
79     cmd.push_back("-r");
80 #endif
81     cmd.push_back(fixPath(sourcePath));
82     cmd.push_back(fixPath(destinationPath));
83     return cmd;
84   }
85
86   string CommunicationProtocolSH::getRemoveSubCommand(const string & path) const
87   {
88     return string(RM_COMMAND) + " " + fixPath(path);
89   }
90
91   string CommunicationProtocolSH::getMakeDirectorySubCommand(const string & path) const
92   {
93     string subCommand = MKDIR_COMMAND;
94 #ifndef WIN32
95     subCommand += " -p";
96 #endif
97     subCommand += " " + fixPath(path);
98     return subCommand;
99   }
100
101 }