/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** ** GNU Lesser General Public License Usage ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this file. ** Please review the following information to ensure the GNU Lesser General ** Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** **************************************************************************/ #include "maemoremotecopyfacility.h" #include "maemoglobal.h" #include #include #include #include using namespace RemoteLinux; using namespace Utils; namespace Madde { namespace Internal { MaemoRemoteCopyFacility::MaemoRemoteCopyFacility(QObject *parent) : QObject(parent), m_isCopying(false) { } MaemoRemoteCopyFacility::~MaemoRemoteCopyFacility() {} void MaemoRemoteCopyFacility::copyFiles(const SshConnection::Ptr &connection, const LinuxDeviceConfiguration::ConstPtr &devConf, const QList &deployables, const QString &mountPoint) { Q_ASSERT(connection->state() == SshConnection::Connected); Q_ASSERT(!m_isCopying); m_devConf = devConf; m_deployables = deployables; m_mountPoint = mountPoint; m_copyRunner = SshRemoteProcessRunner::create(connection); connect(m_copyRunner.data(), SIGNAL(connectionError(Utils::SshError)), SLOT(handleConnectionError())); connect(m_copyRunner.data(), SIGNAL(processOutputAvailable(QByteArray)), SLOT(handleRemoteStdout(QByteArray))); connect(m_copyRunner.data(), SIGNAL(processErrorOutputAvailable(QByteArray)), SLOT(handleRemoteStderr(QByteArray))); connect(m_copyRunner.data(), SIGNAL(processClosed(int)), SLOT(handleCopyFinished(int))); m_isCopying = true; copyNextFile(); } void MaemoRemoteCopyFacility::cancel() { Q_ASSERT(m_isCopying); SshRemoteProcessRunner::Ptr killProcess = SshRemoteProcessRunner::create(m_copyRunner->connection()); killProcess->run("pkill cp"); setFinished(); } void MaemoRemoteCopyFacility::handleConnectionError() { const QString errMsg = m_copyRunner->connection()->errorString(); setFinished(); emit finished(tr("Connection failed: %1").arg(errMsg)); } void MaemoRemoteCopyFacility::handleRemoteStdout(const QByteArray &output) { emit stdoutData(QString::fromUtf8(output)); } void MaemoRemoteCopyFacility::handleRemoteStderr(const QByteArray &output) { emit stderrData(QString::fromUtf8(output)); } void MaemoRemoteCopyFacility::handleCopyFinished(int exitStatus) { if (!m_isCopying) return; if (exitStatus != SshRemoteProcess::ExitedNormally || m_copyRunner->process()->exitCode() != 0) { setFinished(); emit finished(tr("Error: Copy command failed.")); } else { emit fileCopied(m_deployables.takeFirst()); copyNextFile(); } } void MaemoRemoteCopyFacility::copyNextFile() { Q_ASSERT(m_isCopying); if (m_deployables.isEmpty()) { setFinished(); emit finished(); return; } const DeployableFile &d = m_deployables.first(); QString sourceFilePath = m_mountPoint; #ifdef Q_OS_WIN const QString localFilePath = QDir::fromNativeSeparators(d.localFilePath); sourceFilePath += QLatin1Char('/') + localFilePath.at(0).toLower() + localFilePath.mid(2); #else sourceFilePath += d.localFilePath; #endif QString command = QString::fromLatin1("%1 mkdir -p %3 && %1 cp -a %2 %3") .arg(MaemoGlobal::remoteSudo(m_devConf->osType(), m_copyRunner->connection()->connectionParameters().userName), sourceFilePath, d.remoteDir); emit progress(tr("Copying file '%1' to directory '%2' on the device...") .arg(d.localFilePath, d.remoteDir)); m_copyRunner->run(command.toUtf8()); } void MaemoRemoteCopyFacility::setFinished() { disconnect(m_copyRunner.data(), 0, this, 0); m_copyRunner.clear(); m_deployables.clear(); m_isCopying = false; } } // namespace Internal } // namespace Madde