Files
qt-creator/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigwizard.cpp

608 lines
21 KiB
C++
Raw Normal View History

/****************************************************************************
**
** 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 "maemodeviceconfigwizard.h"
#include "ui_maemodeviceconfigwizardkeycreationpage.h"
#include "ui_maemodeviceconfigwizardkeydeploymentpage.h"
#include "ui_maemodeviceconfigwizardpreviouskeysetupcheckpage.h"
#include "ui_maemodeviceconfigwizardreusekeyscheckpage.h"
#include "ui_maemodeviceconfigwizardstartpage.h"
#include "maemodeviceconfigurations.h"
#include "maemokeydeployer.h"
#include <coreplugin/ssh/sshkeygenerator.h>
#include <QtCore/QDir>
#include <QtCore/QFile>
#include <QtGui/QButtonGroup>
#include <QtGui/QDesktopServices>
#include <QtGui/QMessageBox>
#include <QtGui/QWizardPage>
namespace Qt4ProjectManager {
namespace Internal {
namespace {
struct WizardData
{
QString configName;
QString hostName;
MaemoGlobal::MaemoVersion maemoVersion;
MaemoDeviceConfig::DeviceType deviceType;
QString privateKeyFilePath;
QString publicKeyFilePath;
};
enum PageId {
StartPageId, PreviousKeySetupCheckPageId, ReuseKeysCheckPageId,
KeyCreationPageId, KeyDeploymentPageId, FinalPageId
};
class MaemoDeviceConfigWizardStartPage : public QWizardPage
{
Q_OBJECT
public:
MaemoDeviceConfigWizardStartPage(QWidget *parent = 0)
: QWizardPage(parent), m_ui(new Ui::MaemoDeviceConfigWizardStartPage)
{
m_ui->setupUi(this);
setTitle(tr("General Information"));
setSubTitle(QLatin1String(" ")); // For Qt bug (background color)
m_ui->fremantleButton->setText(MaemoGlobal::maemoVersionToString(MaemoGlobal::Maemo5));
m_ui->harmattanButton->setText(MaemoGlobal::maemoVersionToString(MaemoGlobal::Maemo6));
m_ui->meegoButton->setText(MaemoGlobal::maemoVersionToString(MaemoGlobal::Meego));
QButtonGroup * const buttonGroup = new QButtonGroup(this);
buttonGroup->setExclusive(true);
buttonGroup->addButton(m_ui->hwButton);
buttonGroup->addButton(m_ui->qemuButton);
m_ui->nameLineEdit->setText(QLatin1String("(New Configuration)"));
connect(buttonGroup, SIGNAL(buttonClicked(int)),
SLOT(handleDeviceTypeChanged()));
m_ui->harmattanButton->setChecked(true);
m_ui->hwButton->setChecked(true);
handleDeviceTypeChanged();
m_ui->hostNameLineEdit->setText(MaemoDeviceConfig::defaultHost(deviceType()));
connect(m_ui->nameLineEdit, SIGNAL(textChanged(QString)), this,
SIGNAL(completeChanged()));
connect(m_ui->hostNameLineEdit, SIGNAL(textChanged(QString)), this,
SIGNAL(completeChanged()));
}
virtual bool isComplete() const
{
return !configName().isEmpty() && !hostName().isEmpty();
}
QString configName() const { return m_ui->nameLineEdit->text().trimmed(); }
QString hostName() const
{
return deviceType() == MaemoDeviceConfig::Simulator
? MaemoDeviceConfig::defaultHost(MaemoDeviceConfig::Simulator)
: m_ui->hostNameLineEdit->text().trimmed();
}
MaemoGlobal::MaemoVersion maemoVersion() const
{
return m_ui->fremantleButton->isChecked() ? MaemoGlobal::Maemo5
: m_ui->harmattanButton->isChecked() ? MaemoGlobal::Maemo6
: MaemoGlobal::Meego;
}
MaemoDeviceConfig::DeviceType deviceType() const
{
return m_ui->hwButton->isChecked()
? MaemoDeviceConfig::Physical : MaemoDeviceConfig::Simulator;
}
private slots:
void handleDeviceTypeChanged()
{
const bool enable = deviceType() == MaemoDeviceConfig::Physical;
m_ui->hostNameLabel->setEnabled(enable);
m_ui->hostNameLineEdit->setEnabled(enable);
}
private:
const QScopedPointer<Ui::MaemoDeviceConfigWizardStartPage> m_ui;
};
class MaemoDeviceConfigWizardPreviousKeySetupCheckPage : public QWizardPage
{
Q_OBJECT
public:
MaemoDeviceConfigWizardPreviousKeySetupCheckPage(QWidget *parent)
: QWizardPage(parent),
m_ui(new Ui::MaemoDeviceConfigWizardCheckPreviousKeySetupPage)
{
m_ui->setupUi(this);
m_ui->privateKeyFilePathChooser->setExpectedKind(Utils::PathChooser::File);
setTitle(tr("Device Status Check"));
setSubTitle(QLatin1String(" ")); // For Qt bug (background color)
QButtonGroup * const buttonGroup = new QButtonGroup(this);
buttonGroup->setExclusive(true);
buttonGroup->addButton(m_ui->keyWasSetUpButton);
buttonGroup->addButton(m_ui->keyWasNotSetUpButton);
connect(buttonGroup, SIGNAL(buttonClicked(int)),
SLOT(handleSelectionChanged()));
connect(m_ui->privateKeyFilePathChooser, SIGNAL(changed(QString)),
this, SIGNAL(completeChanged()));
}
virtual bool isComplete() const
{
return !keyBasedLoginWasSetup()
|| m_ui->privateKeyFilePathChooser->isValid();
}
virtual void initializePage()
{
m_ui->keyWasNotSetUpButton->setChecked(true);
m_ui->privateKeyFilePathChooser->setPath(MaemoDeviceConfig::defaultPrivateKeyFilePath());
handleSelectionChanged();
}
bool keyBasedLoginWasSetup() const {
return m_ui->keyWasSetUpButton->isChecked();
}
QString privateKeyFilePath() const {
return m_ui->privateKeyFilePathChooser->path();
}
private:
Q_SLOT void handleSelectionChanged()
{
m_ui->privateKeyFilePathChooser->setEnabled(keyBasedLoginWasSetup());
emit completeChanged();
}
const QScopedPointer<Ui::MaemoDeviceConfigWizardCheckPreviousKeySetupPage> m_ui;
};
class MaemoDeviceConfigWizardReuseKeysCheckPage : public QWizardPage
{
Q_OBJECT
public:
MaemoDeviceConfigWizardReuseKeysCheckPage(QWidget *parent)
: QWizardPage(parent),
m_ui(new Ui::MaemoDeviceConfigWizardReuseKeysCheckPage)
{
m_ui->setupUi(this);
setTitle(tr("Existing Keys Check"));
setSubTitle(QLatin1String(" ")); // For Qt bug (background color)
m_ui->publicKeyFilePathChooser->setExpectedKind(Utils::PathChooser::File);
m_ui->privateKeyFilePathChooser->setExpectedKind(Utils::PathChooser::File);
QButtonGroup * const buttonGroup = new QButtonGroup(this);
buttonGroup->setExclusive(true);
buttonGroup->addButton(m_ui->reuseButton);
buttonGroup->addButton(m_ui->dontReuseButton);
connect(buttonGroup, SIGNAL(buttonClicked(int)),
SLOT(handleSelectionChanged()));
connect(m_ui->privateKeyFilePathChooser, SIGNAL(changed(QString)),
this, SIGNAL(completeChanged()));
connect(m_ui->publicKeyFilePathChooser, SIGNAL(changed(QString)),
this, SIGNAL(completeChanged()));
}
virtual bool isComplete() const
{
return !reuseKeys() || (m_ui->publicKeyFilePathChooser->isValid()
&& m_ui->privateKeyFilePathChooser->isValid());
}
virtual void initializePage()
{
m_ui->dontReuseButton->setChecked(true);
m_ui->privateKeyFilePathChooser->setPath(MaemoDeviceConfig::defaultPrivateKeyFilePath());
m_ui->publicKeyFilePathChooser->setPath(MaemoDeviceConfig::defaultPublicKeyFilePath());
handleSelectionChanged();
}
bool reuseKeys() const { return m_ui->reuseButton->isChecked(); }
QString privateKeyFilePath() const {
return m_ui->privateKeyFilePathChooser->path();
}
QString publicKeyFilePath() const {
return m_ui->publicKeyFilePathChooser->path();
}
private:
Q_SLOT void handleSelectionChanged()
{
m_ui->privateKeyFilePathLabel->setEnabled(reuseKeys());
m_ui->privateKeyFilePathChooser->setEnabled(reuseKeys());
m_ui->publicKeyFilePathLabel->setEnabled(reuseKeys());
m_ui->publicKeyFilePathChooser->setEnabled(reuseKeys());
emit completeChanged();
}
const QScopedPointer<Ui::MaemoDeviceConfigWizardReuseKeysCheckPage> m_ui;
};
class MaemoDeviceConfigWizardKeyCreationPage : public QWizardPage
{
Q_OBJECT
public:
MaemoDeviceConfigWizardKeyCreationPage(QWidget *parent)
: QWizardPage(parent),
m_ui(new Ui::MaemoDeviceConfigWizardKeyCreationPage)
{
m_ui->setupUi(this);
setTitle(tr("Key Creation"));
setSubTitle(QLatin1String(" ")); // For Qt bug (background color)
connect(m_ui->keyDirPathChooser, SIGNAL(changed(QString)),
SLOT(enableOrDisableButton()));
connect(m_ui->createKeysButton, SIGNAL(clicked()), SLOT(createKeys()));
}
QString privateKeyFilePath() const {
return m_ui->keyDirPathChooser->path() + QLatin1String("/qtc_id_rsa");
}
QString publicKeyFilePath() const {
return privateKeyFilePath() + QLatin1String(".pub");
}
virtual void initializePage()
{
m_isComplete = false;
const QString &dir = QDesktopServices::storageLocation(QDesktopServices::HomeLocation)
+ QLatin1String("/.ssh");
m_ui->keyDirPathChooser->setPath(dir);
enableInput();
}
virtual bool isComplete() const { return m_isComplete; }
private:
Q_SLOT void enableOrDisableButton()
{
m_ui->createKeysButton->setEnabled(m_ui->keyDirPathChooser->isValid());
}
Q_SLOT void createKeys()
{
const QString &dirPath = m_ui->keyDirPathChooser->path();
QDir dir(dirPath);
QDir parentDir = QDir(dirPath + QLatin1String("/.."));
if ((!dir.exists() && !parentDir.mkdir(dir.dirName()))
|| !QFileInfo(dirPath).isWritable()) {
QMessageBox::critical(this, tr("Can't Create Keys"),
tr("You have not entered a writable directory."));
return;
}
m_ui->keyDirPathChooser->setEnabled(false);
m_ui->createKeysButton->setEnabled(false);
m_ui->statusLabel->setText(tr("Creating keys ... "));
Core::SshKeyGenerator keyGenerator;
if (!keyGenerator.generateKeys(Core::SshKeyGenerator::Rsa,
Core::SshKeyGenerator::OpenSsl, 1024)) {
QMessageBox::critical(this, tr("Can't Create Keys"),
tr("Key creation failed: %1").arg(keyGenerator.error()));
enableInput();
return;
}
if (!saveFile(privateKeyFilePath(), keyGenerator.privateKey())
|| !saveFile(publicKeyFilePath(), keyGenerator.publicKey())) {
enableInput();
return;
}
m_ui->statusLabel->setText(m_ui->statusLabel->text() + tr("Done!"));
m_isComplete = true;
emit completeChanged();
}
bool saveFile(const QString &filePath, const QByteArray &data)
{
QFile file(filePath);
const bool canOpen = file.open(QIODevice::WriteOnly);
if (canOpen)
file.write(data);
if (!canOpen || file.error() != QFile::NoError) {
QMessageBox::critical(this, tr("Could Not Save File"),
tr("Failed to save key file %1: %1").arg(filePath, file.errorString()));
return false;
}
return true;
}
void enableInput()
{
m_ui->keyDirPathChooser->setEnabled(true);
enableOrDisableButton();
m_ui->statusLabel->clear();
}
const QScopedPointer<Ui::MaemoDeviceConfigWizardKeyCreationPage> m_ui;
bool m_isComplete;
};
class MaemoDeviceConfigWizardKeyDeploymentPage : public QWizardPage
{
Q_OBJECT
public:
MaemoDeviceConfigWizardKeyDeploymentPage(const WizardData &wizardData,
QWidget *parent = 0)
: QWizardPage(parent),
m_ui(new Ui::MaemoDeviceConfigWizardKeyDeploymentPage),
m_wizardData(wizardData),
m_keyDeployer(new MaemoKeyDeployer(this))
{
m_ui->setupUi(this);
setTitle(tr("Key Deployment"));
setSubTitle(QLatin1String(" ")); // For Qt bug (background color)
connect(m_ui->deviceAddressLineEdit, SIGNAL(textChanged(QString)),
SLOT(enableOrDisableButton()));
connect(m_ui->passwordLineEdit, SIGNAL(textChanged(QString)),
SLOT(enableOrDisableButton()));
connect(m_ui->deployButton, SIGNAL(clicked()), SLOT(deployKey()));
connect(m_keyDeployer, SIGNAL(error(QString)),
SLOT(handleKeyDeploymentError(QString)));
connect(m_keyDeployer, SIGNAL(finishedSuccessfully()),
SLOT(handleKeyDeploymentSuccess()));
}
virtual void initializePage()
{
m_isComplete = false;
m_ui->deviceAddressLineEdit->setText(m_wizardData.hostName);
m_ui->passwordLineEdit->clear();
enableInput();
}
virtual bool isComplete() const { return m_isComplete; }
QString hostAddress() const {
return m_ui->deviceAddressLineEdit->text().trimmed();
}
private:
Q_SLOT void enableOrDisableButton()
{
m_ui->deployButton->setEnabled(!hostAddress().isEmpty()
&& !password().isEmpty());
}
Q_SLOT void deployKey()
{
using namespace Core;
m_ui->deviceAddressLineEdit->setEnabled(false);
m_ui->passwordLineEdit->setEnabled(false);
m_ui->deployButton->setEnabled(false);
Core::SshConnectionParameters sshParams(SshConnectionParameters::NoProxy);
sshParams.authType = SshConnectionParameters::AuthByPwd;
sshParams.host = hostAddress();
sshParams.port = MaemoDeviceConfig::defaultSshPort(MaemoDeviceConfig::Physical);
sshParams.pwd = password();
sshParams.timeout = 30;
sshParams.uname = MaemoDeviceConfig::defaultUser(m_wizardData.maemoVersion);
m_ui->statusLabel->setText(tr("Deploying... "));
m_keyDeployer->deployPublicKey(sshParams, m_wizardData.publicKeyFilePath);
}
Q_SLOT void handleKeyDeploymentError(const QString &errorMsg)
{
QMessageBox::critical(this, tr("Key Deployment Failure"), errorMsg);
enableInput();
}
Q_SLOT void handleKeyDeploymentSuccess()
{
QMessageBox::information(this, tr("Key Deployment Success"),
tr("The key was successfully deployed. You may now close "
"the \"Mad Developer\" application and continue."));
m_ui->statusLabel->setText(m_ui->statusLabel->text() + tr("Done!"));
m_isComplete = true;
emit completeChanged();
}
void enableInput()
{
m_ui->deviceAddressLineEdit->setEnabled(true);
m_ui->passwordLineEdit->setEnabled(true);
m_ui->statusLabel->clear();
enableOrDisableButton();
}
QString password() const {
return m_ui->passwordLineEdit->text().trimmed();
}
const QScopedPointer<Ui::MaemoDeviceConfigWizardKeyDeploymentPage> m_ui;
bool m_isComplete;
const WizardData &m_wizardData;
MaemoKeyDeployer * const m_keyDeployer;
};
class MaemoDeviceConfigWizardFinalPage : public QWizardPage
{
Q_OBJECT
public:
MaemoDeviceConfigWizardFinalPage(const WizardData &wizardData,
QWidget *parent)
: QWizardPage(parent),
m_infoLabel(new QLabel(this)),
m_wizardData(wizardData)
{
setTitle(tr("Setup Finished"));
setSubTitle(QLatin1String(" ")); // For Qt bug (background color)
m_infoLabel->setWordWrap(true);
QVBoxLayout * const layout = new QVBoxLayout(this);
layout->addWidget(m_infoLabel);
}
virtual void initializePage()
{
QString infoText = tr("The new device configuration will now be "
"created and a test procedure will be run to check whether "
"Qt Creator can connect to the device and to provide some "
"information about its features.");
if (m_wizardData.deviceType == MaemoDeviceConfig::Simulator) {
infoText += QLatin1Char('\n')
+ tr("Please make sure that Qemu is running, otherwise "
"the test will fail.");
}
m_infoLabel->setText(infoText);
}
private:
QLabel * const m_infoLabel;
const WizardData &m_wizardData;
};
} // anonymous namespace
struct MaemoDeviceConfigWizardPrivate
{
MaemoDeviceConfigWizardPrivate(MaemoDeviceConfigurations *devConfigs,
QWidget *parent)
: devConfigs(devConfigs),
startPage(parent),
previousKeySetupPage(parent),
reuseKeysCheckPage(parent),
keyCreationPage(parent),
keyDeploymentPage(wizardData, parent),
finalPage(wizardData, parent)
{
}
WizardData wizardData;
MaemoDeviceConfigurations * const devConfigs;
MaemoDeviceConfigWizardStartPage startPage;
MaemoDeviceConfigWizardPreviousKeySetupCheckPage previousKeySetupPage;
MaemoDeviceConfigWizardReuseKeysCheckPage reuseKeysCheckPage;
MaemoDeviceConfigWizardKeyCreationPage keyCreationPage;
MaemoDeviceConfigWizardKeyDeploymentPage keyDeploymentPage;
MaemoDeviceConfigWizardFinalPage finalPage;
};
MaemoDeviceConfigWizard::MaemoDeviceConfigWizard(MaemoDeviceConfigurations *devConfigs,
QWidget *parent)
: QWizard(parent),
d(new MaemoDeviceConfigWizardPrivate(devConfigs, this))
{
setWindowTitle(tr("New Device Configuration Setup"));
setPage(StartPageId, &d->startPage);
setPage(PreviousKeySetupCheckPageId, &d->previousKeySetupPage);
setPage(ReuseKeysCheckPageId, &d->reuseKeysCheckPage);
setPage(KeyCreationPageId, &d->keyCreationPage);
setPage(KeyDeploymentPageId, &d->keyDeploymentPage);
setPage(FinalPageId, &d->finalPage);
d->finalPage.setCommitPage(true);
}
MaemoDeviceConfigWizard::~MaemoDeviceConfigWizard() {}
void MaemoDeviceConfigWizard::createDeviceConfig()
{
QString name = d->wizardData.configName;
if (d->devConfigs->hasConfig(name)) {
const QString nameTemplate = name + QLatin1String(" (%1)");
int suffix = 2;
do
name = nameTemplate.arg(QString::number(suffix++));
while (d->devConfigs->hasConfig(name));
}
if (d->wizardData.deviceType == MaemoDeviceConfig::Physical) {
d->devConfigs->addHardwareDeviceConfiguration(name,
d->wizardData.maemoVersion, d->wizardData.hostName,
d->wizardData.privateKeyFilePath);
} else {
d->devConfigs->addEmulatorDeviceConfiguration(name,
d->wizardData.maemoVersion);
}
}
int MaemoDeviceConfigWizard::nextId() const
{
switch (currentId()) {
case StartPageId:
d->wizardData.configName = d->startPage.configName();
d->wizardData.maemoVersion = d->startPage.maemoVersion();
d->wizardData.deviceType = d->startPage.deviceType();
d->wizardData.hostName = d->startPage.hostName();
if (d->wizardData.deviceType == MaemoDeviceConfig::Simulator) {
return FinalPageId;
} else {
return PreviousKeySetupCheckPageId;
}
case PreviousKeySetupCheckPageId:
if (d->previousKeySetupPage.keyBasedLoginWasSetup()) {
d->wizardData.privateKeyFilePath
= d->previousKeySetupPage.privateKeyFilePath();
return FinalPageId;
} else {
return ReuseKeysCheckPageId;
}
case ReuseKeysCheckPageId:
if (d->reuseKeysCheckPage.reuseKeys()) {
d->wizardData.privateKeyFilePath
= d->reuseKeysCheckPage.privateKeyFilePath();
d->wizardData.publicKeyFilePath
= d->reuseKeysCheckPage.publicKeyFilePath();
return KeyDeploymentPageId;
} else {
return KeyCreationPageId;
}
case KeyCreationPageId:
d->wizardData.privateKeyFilePath
= d->keyCreationPage.privateKeyFilePath();
d->wizardData.publicKeyFilePath
= d->keyCreationPage.publicKeyFilePath();
return KeyDeploymentPageId;
case KeyDeploymentPageId:
d->wizardData.hostName = d->keyDeploymentPage.hostAddress();
return FinalPageId;
case FinalPageId: return -1;
default:
Q_ASSERT(false);
return -1;
}
}
} // namespace Internal
} // namespace Qt4ProjectManager
#include "maemodeviceconfigwizard.moc"