1 // Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 * CommunicationProtocolSH.cxx :
25 * Created on: 16 sept. 2009
26 * Author : Renaud BARATE - EDF R&D
31 #include "CommunicationProtocolSH.hxx"
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
41 string fixedPath = path;
43 for (unsigned int i=0 ; i<fixedPath.size() ; i++) {
44 if (fixedPath[i] == '/') fixedPath[i] = '\\';
50 vector<string> CommunicationProtocolSH::getExecCommandArgs(const string & subCommand,
52 const string & user) const
56 cmd.push_back(fixPath(SH_COMMAND));
64 cmd.push_back(fixPath(subCommand));
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
77 cmd.push_back(CP_COMMAND);
81 cmd.push_back(fixPath(sourcePath));
82 cmd.push_back(fixPath(destinationPath));
86 string CommunicationProtocolSH::getRemoveSubCommand(const string & path) const
88 return string(RM_COMMAND) + " " + fixPath(path);
91 string CommunicationProtocolSH::getMakeDirectorySubCommand(const string & path) const
93 string subCommand = MKDIR_COMMAND;
97 subCommand += " " + fixPath(path);