2011-03-09 12:07:35 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
2011-05-06 15:05:37 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2011-03-09 12:07:35 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-05-06 15:05:37 +02:00
|
|
|
** 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.
|
2011-03-09 12:07:35 +01:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-05-06 15:05:37 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2011-03-09 12:07:35 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-05-06 15:05:37 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
2011-03-09 12:07:35 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2011-03-09 12:07:35 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
2011-05-06 15:05:37 +02:00
|
|
|
|
2011-03-09 12:07:35 +01:00
|
|
|
#include "maemodeploymentmounter.h"
|
|
|
|
|
|
|
|
|
|
#include "maemoglobal.h"
|
|
|
|
|
#include "maemoremotemounter.h"
|
|
|
|
|
#include "maemousedportsgatherer.h"
|
|
|
|
|
|
|
|
|
|
#include <qt4projectmanager/qt4buildconfiguration.h>
|
2011-07-20 11:50:01 +02:00
|
|
|
#include <utils/qtcassert.h>
|
2011-03-09 12:07:35 +01:00
|
|
|
#include <utils/ssh/sshconnection.h>
|
|
|
|
|
|
2011-05-25 11:23:25 +02:00
|
|
|
using namespace Qt4ProjectManager;
|
2011-03-09 12:07:35 +01:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
2011-05-25 11:23:25 +02:00
|
|
|
namespace RemoteLinux {
|
2011-03-09 12:07:35 +01:00
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
MaemoDeploymentMounter::MaemoDeploymentMounter(QObject *parent)
|
|
|
|
|
: QObject(parent),
|
|
|
|
|
m_state(Inactive),
|
|
|
|
|
m_mounter(new MaemoRemoteMounter(this)),
|
|
|
|
|
m_portsGatherer(new MaemoUsedPortsGatherer(this))
|
|
|
|
|
{
|
|
|
|
|
connect(m_mounter, SIGNAL(error(QString)), SLOT(handleMountError(QString)));
|
|
|
|
|
connect(m_mounter, SIGNAL(mounted()), SLOT(handleMounted()));
|
|
|
|
|
connect(m_mounter, SIGNAL(unmounted()), SLOT(handleUnmounted()));
|
|
|
|
|
connect(m_mounter, SIGNAL(reportProgress(QString)),
|
|
|
|
|
SIGNAL(reportProgress(QString)));
|
|
|
|
|
connect(m_mounter, SIGNAL(debugOutput(QString)),
|
|
|
|
|
SIGNAL(debugOutput(QString)));
|
|
|
|
|
|
|
|
|
|
connect(m_portsGatherer, SIGNAL(error(QString)),
|
|
|
|
|
SLOT(handlePortsGathererError(QString)));
|
|
|
|
|
connect(m_portsGatherer, SIGNAL(portListReady()),
|
|
|
|
|
SLOT(handlePortListReady()));
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-22 10:00:50 +02:00
|
|
|
MaemoDeploymentMounter::~MaemoDeploymentMounter() {}
|
|
|
|
|
|
2011-03-09 12:07:35 +01:00
|
|
|
void MaemoDeploymentMounter::setupMounts(const SshConnection::Ptr &connection,
|
2011-05-31 12:47:53 +02:00
|
|
|
const LinuxDeviceConfiguration::ConstPtr &devConf,
|
2011-03-09 12:07:35 +01:00
|
|
|
const QList<MaemoMountSpecification> &mountSpecs,
|
2011-04-26 12:10:37 +02:00
|
|
|
const Qt4BuildConfiguration *bc)
|
2011-03-09 12:07:35 +01:00
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == Inactive, return);
|
2011-03-09 12:07:35 +01:00
|
|
|
|
|
|
|
|
m_mountSpecs = mountSpecs;
|
|
|
|
|
m_connection = connection;
|
2011-04-26 12:10:37 +02:00
|
|
|
m_devConf = devConf;
|
|
|
|
|
m_mounter->setConnection(m_connection, m_devConf);
|
2011-03-09 12:07:35 +01:00
|
|
|
m_buildConfig = bc;
|
|
|
|
|
connect(m_connection.data(), SIGNAL(error(Utils::SshError)),
|
|
|
|
|
SLOT(handleConnectionError()));
|
|
|
|
|
setState(UnmountingOldDirs);
|
|
|
|
|
unmount();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::tearDownMounts()
|
|
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == Mounted, return);
|
2011-03-09 12:07:35 +01:00
|
|
|
|
|
|
|
|
setState(UnmountingCurrentMounts);
|
|
|
|
|
unmount();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::setupMounter()
|
|
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == UnmountingOldDirs, return);
|
|
|
|
|
|
2011-03-09 12:07:35 +01:00
|
|
|
setState(UnmountingCurrentDirs);
|
|
|
|
|
|
|
|
|
|
m_mounter->resetMountSpecifications();
|
|
|
|
|
m_mounter->setBuildConfiguration(m_buildConfig);
|
|
|
|
|
foreach (const MaemoMountSpecification &mountSpec, m_mountSpecs)
|
|
|
|
|
m_mounter->addMountSpecification(mountSpec, true);
|
|
|
|
|
unmount();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::unmount()
|
|
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == UnmountingOldDirs || m_state == UnmountingCurrentDirs
|
|
|
|
|
|| m_state == UnmountingCurrentMounts, return);
|
2011-03-09 12:07:35 +01:00
|
|
|
|
|
|
|
|
if (m_mounter->hasValidMountSpecifications())
|
|
|
|
|
m_mounter->unmount();
|
|
|
|
|
else
|
|
|
|
|
handleUnmounted();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::handleMounted()
|
|
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == Mounting || m_state == Inactive, return);
|
2011-03-09 12:07:35 +01:00
|
|
|
|
|
|
|
|
if (m_state == Inactive)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
setState(Mounted);
|
|
|
|
|
emit setupDone();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::handleUnmounted()
|
|
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == UnmountingOldDirs || m_state == UnmountingCurrentDirs
|
|
|
|
|
|| m_state == UnmountingCurrentMounts || m_state == Inactive, return);
|
2011-03-09 12:07:35 +01:00
|
|
|
|
|
|
|
|
switch (m_state) {
|
|
|
|
|
case UnmountingOldDirs:
|
|
|
|
|
setupMounter();
|
|
|
|
|
break;
|
|
|
|
|
case UnmountingCurrentDirs:
|
|
|
|
|
setState(GatheringPorts);
|
2011-04-26 12:10:37 +02:00
|
|
|
m_portsGatherer->start(m_connection, m_devConf);
|
2011-03-09 12:07:35 +01:00
|
|
|
break;
|
|
|
|
|
case UnmountingCurrentMounts:
|
|
|
|
|
setState(Inactive);
|
|
|
|
|
emit tearDownDone();
|
|
|
|
|
break;
|
|
|
|
|
case Inactive:
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::handlePortsGathererError(const QString &errorMsg)
|
|
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == GatheringPorts || m_state == Inactive, return);
|
|
|
|
|
|
2011-03-09 12:07:35 +01:00
|
|
|
if (m_state == Inactive)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
setState(Inactive);
|
|
|
|
|
m_mounter->resetMountSpecifications();
|
|
|
|
|
emit error(errorMsg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::handlePortListReady()
|
|
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == GatheringPorts || m_state == Inactive, return);
|
|
|
|
|
|
2011-03-09 12:07:35 +01:00
|
|
|
if (m_state == Inactive)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
setState(Mounting);
|
2011-04-26 12:10:37 +02:00
|
|
|
m_freePorts = MaemoGlobal::freePorts(m_devConf, m_buildConfig->qtVersion());
|
2011-03-09 12:07:35 +01:00
|
|
|
m_mounter->mount(&m_freePorts, m_portsGatherer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::handleMountError(const QString &errorMsg)
|
|
|
|
|
{
|
2011-07-20 11:50:01 +02:00
|
|
|
QTC_ASSERT(m_state == UnmountingOldDirs || m_state == UnmountingCurrentDirs
|
|
|
|
|
|| m_state == UnmountingCurrentMounts || m_state == Mounting || m_state == Mounted
|
|
|
|
|
|| m_state == Inactive, return);
|
|
|
|
|
|
2011-03-09 12:07:35 +01:00
|
|
|
if (m_state == Inactive)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
setState(Inactive);
|
|
|
|
|
emit error(errorMsg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::handleConnectionError()
|
|
|
|
|
{
|
|
|
|
|
if (m_state == Inactive)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
setState(Inactive);
|
|
|
|
|
emit error(tr("Connection failed: %1").arg(m_connection->errorString()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MaemoDeploymentMounter::setState(State newState)
|
|
|
|
|
{
|
|
|
|
|
if (m_state == newState)
|
|
|
|
|
return;
|
|
|
|
|
if (newState == Inactive && m_connection) {
|
|
|
|
|
disconnect(m_connection.data(), 0, this, 0);
|
|
|
|
|
m_connection.clear();
|
|
|
|
|
}
|
|
|
|
|
m_state = newState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2011-05-25 11:23:25 +02:00
|
|
|
} // namespace RemoteLinux
|