1 // Copyright (C) 2007-2015 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, or (at your option) any later version.
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 * CommunicationProtocol.cxx :
25 * Created on: 14 sept. 2009
26 * Author : Renaud BARATE - EDF R&D
31 #include <libbatch_config.h>
33 #include "CommunicationProtocol.hxx"
35 #include "CommunicationProtocolRSH.hxx"
38 #include "CommunicationProtocolSH.hxx"
41 #include "CommunicationProtocolSSH.hxx"
43 #include "APIInternalFailureException.hxx"
44 #include "RunTimeException.hxx"
51 CommunicationProtocol::CommunicationProtocol(CommunicationProtocolType type)
56 CommunicationProtocol::~CommunicationProtocol()
60 const CommunicationProtocol & CommunicationProtocol::getInstance(CommunicationProtocolType protocolType)
62 if (protocolType == SH) {
64 static CommunicationProtocolSH instanceSH;
67 throw RunTimeException("Can't use SH protocol (SH tools were "
68 "not found on the system at compile time).");
70 } else if (protocolType == RSH) {
72 static CommunicationProtocolRSH instanceRSH;
75 throw RunTimeException("Can't use RSH protocol (RSH tools were "
76 "not found on the system at compile time).");
78 } else if (protocolType == SSH) {
80 static CommunicationProtocolSSH instanceSSH;
83 throw RunTimeException("Can't use SSH protocol (SSH tools were "
84 "not found on the system at compile time).");
87 throw APIInternalFailureException("Unknown communication protocol.");
90 string CommunicationProtocol::getExecCommand(const string & subCommand,
92 const string & user) const
94 return commandStringFromArgs(getExecCommandArgs(subCommand, host, user));
97 int CommunicationProtocol::copyFile(const std::string & sourcePath,
98 const std::string & sourceHost,
99 const std::string & sourceUser,
100 const std::string & destinationPath,
101 const std::string & destinationHost,
102 const std::string & destinationUser) const
104 string command = commandStringFromArgs(getCopyCommandArgs(sourcePath, sourceHost, sourceUser,
105 destinationPath, destinationHost,
108 int status = system(command.c_str());
112 string CommunicationProtocol::getRemoveSubCommand(const string & path) const
114 return string("rm ") + path;
117 string CommunicationProtocol::getRemoveDirectorySubCommand(const string & path) const
119 return string("rm -fR ") + path;
122 string CommunicationProtocol::getMakeDirectorySubCommand(const string & path) const
124 return string("mkdir -p ") + path;
127 int CommunicationProtocol::removeFile(const std::string & path,
128 const std::string & host,
129 const std::string & user) const
131 string command = getExecCommand(getRemoveSubCommand(path), host, user);
133 int status = system(command.c_str());
137 int CommunicationProtocol::removeDirectory(const std::string & path,
138 const std::string & host,
139 const std::string & user) const
141 string command = getExecCommand(getRemoveDirectorySubCommand(path), host, user);
143 int status = system(command.c_str());
147 int CommunicationProtocol::makeDirectory(const std::string & path,
148 const std::string & host,
149 const std::string & user) const
151 string command = getExecCommand(getMakeDirectorySubCommand(path), host, user);
153 int status = system(command.c_str());
157 string CommunicationProtocol::commandStringFromArgs(const vector<string> & commandArgs) const
161 // On Windows we surround the whole command with quotes to avoid problems when
162 // we have several quoted arguments.
167 for (unsigned int i=0 ; i<commandArgs.size() ; i++) {
168 if (i != 0) commandStr += " ";
170 // if the argument contains spaces, we surround it with simple quotes (Linux)
171 // or double quotes (Windows)
172 if (commandArgs[i].find(' ') != string::npos) {
173 commandStr += string("\"") + commandArgs[i] + "\"";
175 commandStr += commandArgs[i];
186 CommunicationProtocolType CommunicationProtocol::getType() const