forked from qt-creator/qt-creator
505 lines
17 KiB
C++
505 lines
17 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
** All rights reserved.
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** No Commercial Usage
|
|
** This file contains pre-release code and may not be distributed.
|
|
** You may use this file in accordance with the terms and conditions
|
|
** contained in the Technology Preview License Agreement accompanying
|
|
** this package.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, 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.
|
|
**
|
|
** If you have questions regarding the use of this file, please contact
|
|
** Nokia at qt-info@nokia.com.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "maemodeviceconfigurationssettingswidget.h"
|
|
|
|
#include "ui_maemodeviceconfigurationssettingswidget.h"
|
|
|
|
#include "maemoconfigtestdialog.h"
|
|
#include "maemodeviceconfigurations.h"
|
|
#include "maemoremoteprocessesdialog.h"
|
|
#include "maemosshconfigdialog.h"
|
|
|
|
#include <coreplugin/icore.h>
|
|
#include <coreplugin/ssh/sshremoteprocessrunner.h>
|
|
|
|
#include <QtCore/QFile>
|
|
#include <QtCore/QFileInfo>
|
|
#include <QtCore/QRegExp>
|
|
#include <QtCore/QSettings>
|
|
#include <QtCore/QTextStream>
|
|
|
|
#include <QtGui/QFileDialog>
|
|
#include <QtGui/QMessageBox>
|
|
#include <QtGui/QIntValidator>
|
|
|
|
#include <algorithm>
|
|
|
|
using namespace Core;
|
|
|
|
namespace Qt4ProjectManager {
|
|
namespace Internal {
|
|
namespace {
|
|
const QLatin1String LastDeviceConfigIndexKey("LastDisplayedMaemoDeviceConfig");
|
|
} // anonymous namespace
|
|
|
|
|
|
class NameValidator : public QValidator
|
|
{
|
|
public:
|
|
NameValidator(const MaemoDeviceConfigurations *devConfigs,
|
|
QWidget *parent = 0)
|
|
: QValidator(parent), m_devConfigs(devConfigs)
|
|
{
|
|
}
|
|
|
|
void setDisplayName(const QString &name) { m_oldName = name; }
|
|
|
|
virtual State validate(QString &input, int & /* pos */) const
|
|
{
|
|
if (input.trimmed().isEmpty()
|
|
|| (input != m_oldName && m_devConfigs->hasConfig(input)))
|
|
return Intermediate;
|
|
return Acceptable;
|
|
}
|
|
|
|
virtual void fixup(QString &input) const
|
|
{
|
|
int dummy = 0;
|
|
if (validate(input, dummy) != Acceptable)
|
|
input = m_oldName;
|
|
}
|
|
|
|
private:
|
|
QString m_oldName;
|
|
const MaemoDeviceConfigurations * const m_devConfigs;
|
|
};
|
|
|
|
|
|
MaemoDeviceConfigurationsSettingsWidget::MaemoDeviceConfigurationsSettingsWidget(QWidget *parent)
|
|
: QWidget(parent),
|
|
m_ui(new Ui_MaemoDeviceConfigurationsSettingsWidget),
|
|
m_devConfigs(MaemoDeviceConfigurations::cloneInstance()),
|
|
m_nameValidator(new NameValidator(m_devConfigs.data(), this)),
|
|
m_saveSettingsRequested(false)
|
|
{
|
|
initGui();
|
|
}
|
|
|
|
MaemoDeviceConfigurationsSettingsWidget::~MaemoDeviceConfigurationsSettingsWidget()
|
|
{
|
|
if (m_saveSettingsRequested) {
|
|
Core::ICore::instance()->settings()->setValue(LastDeviceConfigIndexKey,
|
|
currentIndex());
|
|
MaemoDeviceConfigurations::replaceInstance(m_devConfigs.data());
|
|
}
|
|
delete m_ui;
|
|
}
|
|
|
|
QString MaemoDeviceConfigurationsSettingsWidget::searchKeywords() const
|
|
{
|
|
QString rc;
|
|
QTextStream(&rc) << m_ui->configurationLabel->text()
|
|
<< ' ' << m_ui->sshPortLabel->text()
|
|
<< ' ' << m_ui->keyButton->text()
|
|
<< ' ' << m_ui->passwordButton->text()
|
|
<< ' ' << m_ui->authTypeLabel->text()
|
|
<< ' ' << m_ui->connectionTimeoutLabel->text()
|
|
<< ' ' << m_ui->deviceButton->text()
|
|
<< ' ' << m_ui->simulatorButton->text()
|
|
<< ' ' << m_ui->deviceTypeLabel->text()
|
|
<< ' ' << m_ui->deviceNameLabel->text()
|
|
<< ' ' << m_ui->hostNameLabel->text()
|
|
<< ' ' << m_ui->keyLabel->text()
|
|
<< ' ' << m_ui->nameLineEdit->text()
|
|
<< ' ' << m_ui->passwordLabel->text()
|
|
<< ' ' << m_ui->freePortsLabel->text()
|
|
<< ' ' << m_ui->portsWarningLabel->text()
|
|
<< ' ' << m_ui->pwdLineEdit->text()
|
|
<< ' ' << m_ui->timeoutSpinBox->value()
|
|
<< ' ' << m_ui->userLineEdit->text()
|
|
<< ' ' << m_ui->userNameLabel->text();
|
|
rc.remove(QLatin1Char('&'));
|
|
return rc;
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::initGui()
|
|
{
|
|
m_ui->setupUi(this);
|
|
m_ui->configurationComboBox->setModel(m_devConfigs.data());
|
|
m_ui->nameLineEdit->setValidator(m_nameValidator);
|
|
m_ui->keyFileLineEdit->setExpectedKind(Utils::PathChooser::File);
|
|
QRegExpValidator * const portsValidator
|
|
= new QRegExpValidator(QRegExp(MaemoDeviceConfig::portsRegExpr()), this);
|
|
m_ui->portsLineEdit->setValidator(portsValidator);
|
|
connect(m_ui->makeKeyFileDefaultButton, SIGNAL(clicked()),
|
|
SLOT(setDefaultKeyFilePath()));
|
|
int lastIndex = Core::ICore::instance()->settings()
|
|
->value(LastDeviceConfigIndexKey, 0).toInt();
|
|
if (lastIndex == -1)
|
|
lastIndex = 0;
|
|
if (lastIndex < m_ui->configurationComboBox->count())
|
|
m_ui->configurationComboBox->setCurrentIndex(lastIndex);
|
|
connect(m_ui->configurationComboBox, SIGNAL(currentIndexChanged(int)),
|
|
SLOT(currentConfigChanged(int)));
|
|
currentConfigChanged(currentIndex());
|
|
connect(m_ui->defaultDeviceButton, SIGNAL(clicked()),
|
|
SLOT(setDefaultDevice()));
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::addConfig()
|
|
{
|
|
const QString prefix = tr("New Device Configuration %1", "Standard "
|
|
"Configuration name with number");
|
|
int suffix = 1;
|
|
QString newName;
|
|
bool isUnique = false;
|
|
do {
|
|
newName = prefix.arg(QString::number(suffix++));
|
|
isUnique = !m_devConfigs->hasConfig(newName);
|
|
} while (!isUnique);
|
|
|
|
m_devConfigs->addConfiguration(newName, MaemoDeviceConfig::Physical);
|
|
m_ui->removeConfigButton->setEnabled(true);
|
|
m_ui->configurationComboBox->setCurrentIndex(m_ui->configurationComboBox->count()-1);
|
|
m_ui->configurationComboBox->setFocus();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::deleteConfig()
|
|
{
|
|
m_devConfigs->removeConfiguration(currentIndex());
|
|
if (m_devConfigs->rowCount() == 0)
|
|
currentConfigChanged(-1);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::displayCurrent()
|
|
{
|
|
const MaemoDeviceConfig::ConstPtr ¤t = currentConfig();
|
|
m_ui->defaultDeviceButton->setEnabled(!current->isDefault());
|
|
const SshConnectionParameters &sshParams = current->sshParameters();
|
|
if (current->type() == MaemoDeviceConfig::Physical)
|
|
m_ui->deviceButton->setChecked(true);
|
|
else
|
|
m_ui->simulatorButton->setChecked(true);
|
|
if (sshParams.authType == Core::SshConnectionParameters::AuthByPwd)
|
|
m_ui->passwordButton->setChecked(true);
|
|
else
|
|
m_ui->keyButton->setChecked(true);
|
|
m_ui->detailsWidget->setEnabled(true);
|
|
m_nameValidator->setDisplayName(current->name());
|
|
m_ui->timeoutSpinBox->setValue(sshParams.timeout);
|
|
fillInValues();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::fillInValues()
|
|
{
|
|
const MaemoDeviceConfig::ConstPtr ¤t = currentConfig();
|
|
m_ui->nameLineEdit->setText(current->name());
|
|
const SshConnectionParameters &sshParams = current->sshParameters();
|
|
m_ui->hostLineEdit->setText(sshParams.host);
|
|
m_ui->sshPortSpinBox->setValue(sshParams.port);
|
|
m_ui->portsLineEdit->setText(current->portsSpec());
|
|
m_ui->timeoutSpinBox->setValue(sshParams.timeout);
|
|
m_ui->userLineEdit->setText(sshParams.uname);
|
|
m_ui->pwdLineEdit->setText(sshParams.pwd);
|
|
m_ui->keyFileLineEdit->setPath(sshParams.privateKeyFile);
|
|
m_ui->showPasswordCheckBox->setChecked(false);
|
|
updatePortsWarningLabel();
|
|
const bool isSimulator = current->type() == MaemoDeviceConfig::Simulator;
|
|
m_ui->hostLineEdit->setReadOnly(isSimulator);
|
|
m_ui->sshPortSpinBox->setReadOnly(isSimulator);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::saveSettings()
|
|
{
|
|
// We must defer this step because of a stupid bug on MacOS. See QTCREATORBUG-1675.
|
|
m_saveSettingsRequested = true;
|
|
}
|
|
|
|
int MaemoDeviceConfigurationsSettingsWidget::currentIndex() const
|
|
{
|
|
return m_ui->configurationComboBox->currentIndex();
|
|
}
|
|
|
|
MaemoDeviceConfig::ConstPtr MaemoDeviceConfigurationsSettingsWidget::currentConfig() const
|
|
{
|
|
Q_ASSERT(currentIndex() != -1);
|
|
return m_devConfigs->deviceAt(currentIndex());
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::configNameEditingFinished()
|
|
{
|
|
if (m_ui->configurationComboBox->count() == 0)
|
|
return;
|
|
|
|
const QString &newName = m_ui->nameLineEdit->text();
|
|
m_devConfigs->setConfigurationName(currentIndex(), newName);
|
|
m_nameValidator->setDisplayName(newName);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::deviceTypeChanged()
|
|
{
|
|
const MaemoDeviceConfig::DeviceType devType
|
|
= m_ui->deviceButton->isChecked()
|
|
? MaemoDeviceConfig::Physical : MaemoDeviceConfig::Simulator;
|
|
m_devConfigs->setDeviceType(currentIndex(), devType);
|
|
fillInValues();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::authenticationTypeChanged()
|
|
{
|
|
SshConnectionParameters sshParams = currentConfig()->sshParameters();
|
|
const bool usePassword = m_ui->passwordButton->isChecked();
|
|
sshParams.authType = usePassword
|
|
? SshConnectionParameters::AuthByPwd
|
|
: SshConnectionParameters::AuthByKey;
|
|
m_devConfigs->setSshParameters(currentIndex(), sshParams);
|
|
m_ui->pwdLineEdit->setEnabled(usePassword);
|
|
m_ui->passwordLabel->setEnabled(usePassword);
|
|
m_ui->keyFileLineEdit->setEnabled(!usePassword);
|
|
m_ui->keyLabel->setEnabled(!usePassword);
|
|
m_ui->makeKeyFileDefaultButton->setEnabled(!usePassword);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::hostNameEditingFinished()
|
|
{
|
|
SshConnectionParameters sshParams = currentConfig()->sshParameters();
|
|
sshParams.host = m_ui->hostLineEdit->text();
|
|
m_devConfigs->setSshParameters(currentIndex(), sshParams);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::sshPortEditingFinished()
|
|
{
|
|
SshConnectionParameters sshParams = currentConfig()->sshParameters();
|
|
sshParams.port = m_ui->sshPortSpinBox->value();
|
|
m_devConfigs->setSshParameters(currentIndex(), sshParams);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::timeoutEditingFinished()
|
|
{
|
|
SshConnectionParameters sshParams = currentConfig()->sshParameters();
|
|
sshParams.timeout = m_ui->timeoutSpinBox->value();
|
|
m_devConfigs->setSshParameters(currentIndex(), sshParams);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::userNameEditingFinished()
|
|
{
|
|
SshConnectionParameters sshParams = currentConfig()->sshParameters();
|
|
sshParams.uname = m_ui->userLineEdit->text();
|
|
m_devConfigs->setSshParameters(currentIndex(), sshParams);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::passwordEditingFinished()
|
|
{
|
|
SshConnectionParameters sshParams = currentConfig()->sshParameters();
|
|
sshParams.pwd = m_ui->pwdLineEdit->text();
|
|
m_devConfigs->setSshParameters(currentIndex(), sshParams);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::keyFileEditingFinished()
|
|
{
|
|
SshConnectionParameters sshParams = currentConfig()->sshParameters();
|
|
sshParams.privateKeyFile = m_ui->keyFileLineEdit->path();
|
|
m_devConfigs->setSshParameters(currentIndex(), sshParams);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::handleFreePortsChanged()
|
|
{
|
|
m_devConfigs->setPortsSpec(currentIndex(), m_ui->portsLineEdit->text());
|
|
updatePortsWarningLabel();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::showPassword(bool showClearText)
|
|
{
|
|
m_ui->pwdLineEdit->setEchoMode(showClearText
|
|
? QLineEdit::Normal : QLineEdit::Password);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::testConfig()
|
|
{
|
|
QDialog *dialog = new MaemoConfigTestDialog(currentConfig(), this);
|
|
dialog->open();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::showGenerateSshKeyDialog()
|
|
{
|
|
MaemoSshConfigDialog dialog(this);
|
|
dialog.exec();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::showRemoteProcesses()
|
|
{
|
|
MaemoRemoteProcessesDialog dlg(currentConfig()->sshParameters(), this);
|
|
dlg.exec();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::setDefaultKeyFilePath()
|
|
{
|
|
m_devConfigs->setDefaultSshKeyFilePath(m_ui->keyFileLineEdit->path());
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::setDefaultDevice()
|
|
{
|
|
m_devConfigs->setDefaultDevice(currentIndex());
|
|
m_ui->defaultDeviceButton->setEnabled(false);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::setPrivateKey(const QString &path)
|
|
{
|
|
m_ui->keyFileLineEdit->setPath(path);
|
|
keyFileEditingFinished();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::deployKey()
|
|
{
|
|
if (m_keyDeployer)
|
|
return;
|
|
|
|
const SshConnectionParameters sshParams = currentConfig()->sshParameters();
|
|
const QString &dir = QFileInfo(sshParams.privateKeyFile).path();
|
|
QString publicKeyFileName = QFileDialog::getOpenFileName(this,
|
|
tr("Choose Public Key File"), dir,
|
|
tr("Public Key Files(*.pub);;All Files (*)"));
|
|
if (publicKeyFileName.isEmpty())
|
|
return;
|
|
|
|
QFile keyFile(publicKeyFileName);
|
|
QByteArray key;
|
|
const bool keyFileAccessible = keyFile.open(QIODevice::ReadOnly);
|
|
if (keyFileAccessible)
|
|
key = keyFile.readAll();
|
|
if (!keyFileAccessible || keyFile.error() != QFile::NoError) {
|
|
QMessageBox::critical(this, tr("Deployment Failed"),
|
|
tr("Could not read public key file '%1'.").arg(publicKeyFileName));
|
|
return;
|
|
}
|
|
|
|
disconnect(m_ui->deployKeyButton, 0, this, 0);
|
|
m_ui->deployKeyButton->setText(tr("Stop Deploying"));
|
|
connect(m_ui->deployKeyButton, SIGNAL(clicked()), this,
|
|
SLOT(stopDeploying()));
|
|
|
|
m_keyDeployer = SshRemoteProcessRunner::create(sshParams);
|
|
connect(m_keyDeployer.data(), SIGNAL(connectionError(Core::SshError)), this,
|
|
SLOT(handleConnectionFailure()));
|
|
connect(m_keyDeployer.data(), SIGNAL(processClosed(int)), this,
|
|
SLOT(handleKeyUploadFinished(int)));
|
|
const QByteArray command = "test -d .ssh "
|
|
"|| mkdir .ssh && chmod 0700 .ssh && echo '"
|
|
+ key + "' >> .ssh/authorized_keys";
|
|
m_keyDeployer->run(command);
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::handleConnectionFailure()
|
|
{
|
|
if (!m_keyDeployer)
|
|
return;
|
|
|
|
QMessageBox::critical(this, tr("Deployment Failed"),
|
|
tr("Could not connect to host: %1")
|
|
.arg(m_keyDeployer->connection()->errorString()));
|
|
stopDeploying();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::handleKeyUploadFinished(int exitStatus)
|
|
{
|
|
Q_ASSERT(exitStatus == SshRemoteProcess::FailedToStart
|
|
|| exitStatus == SshRemoteProcess::KilledBySignal
|
|
|| exitStatus == SshRemoteProcess::ExitedNormally);
|
|
|
|
if (!m_keyDeployer)
|
|
return;
|
|
|
|
if (exitStatus == SshRemoteProcess::ExitedNormally
|
|
&& m_keyDeployer->process()->exitCode() == 0) {
|
|
QMessageBox::information(this, tr("Deployment Succeeded"),
|
|
tr("Key was successfully deployed."));
|
|
} else {
|
|
QMessageBox::critical(this, tr("Deployment Failed"),
|
|
tr("Key deployment failed: %1.")
|
|
.arg(m_keyDeployer->process()->errorString()));
|
|
}
|
|
stopDeploying();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::stopDeploying()
|
|
{
|
|
if (m_keyDeployer) {
|
|
disconnect(m_keyDeployer.data(), 0, this, 0);
|
|
m_keyDeployer = SshRemoteProcessRunner::Ptr();
|
|
}
|
|
m_ui->deployKeyButton->disconnect();
|
|
m_ui->deployKeyButton->setText(tr("Deploy Public Key ..."));
|
|
connect(m_ui->deployKeyButton, SIGNAL(clicked()), this, SLOT(deployKey()));
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::currentConfigChanged(int index)
|
|
{
|
|
stopDeploying();
|
|
if (index == -1) {
|
|
m_ui->removeConfigButton->setEnabled(false);
|
|
m_ui->testConfigButton->setEnabled(false);
|
|
m_ui->generateKeyButton->setEnabled(false);
|
|
m_ui->deployKeyButton->setEnabled(false);
|
|
m_ui->remoteProcessesButton->setEnabled(false);
|
|
clearDetails();
|
|
m_ui->detailsWidget->setEnabled(false);
|
|
m_ui->defaultDeviceButton->setEnabled(false);
|
|
} else {
|
|
m_ui->removeConfigButton->setEnabled(true);
|
|
m_ui->testConfigButton->setEnabled(true);
|
|
m_ui->generateKeyButton->setEnabled(true);
|
|
m_ui->deployKeyButton->setEnabled(true);
|
|
m_ui->remoteProcessesButton->setEnabled(true);
|
|
m_ui->configurationComboBox->setCurrentIndex(index);
|
|
displayCurrent();
|
|
}
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::clearDetails()
|
|
{
|
|
m_ui->nameLineEdit->clear();
|
|
m_ui->hostLineEdit->clear();
|
|
m_ui->sshPortSpinBox->clear();
|
|
m_ui->timeoutSpinBox->clear();
|
|
m_ui->userLineEdit->clear();
|
|
m_ui->pwdLineEdit->clear();
|
|
m_ui->portsLineEdit->clear();
|
|
m_ui->portsWarningLabel->clear();
|
|
m_ui->keyFileLineEdit->lineEdit()->clear();
|
|
}
|
|
|
|
void MaemoDeviceConfigurationsSettingsWidget::updatePortsWarningLabel()
|
|
{
|
|
if (currentConfig()->freePorts().hasMore()) {
|
|
m_ui->portsWarningLabel->clear();
|
|
} else {
|
|
m_ui->portsWarningLabel->setText(QLatin1String("<font color=\"red\">")
|
|
+ tr("You will need at least one port.") + QLatin1String("</font>"));
|
|
}
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Qt4ProjectManager
|