Files
qt-creator/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp
Mehdi Fekari 7b313e9696 Qnx: Refactor BlackBerryConfiguration
Improve the NDK setting page to enable managing multiple NDKs.

* Refactor BlackBerryConfiguration to support multiple configurations
* Add auto detected kits for installed NDKs
* Add/Remove manual NDKs

Change-Id: Icbc850551da3f729ccaa3473da720ade3051adaf
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Reviewed-by: Wolfgang Bremer <wbremer@blackberry.com>
2013-07-24 18:20:23 +02:00

296 lines
9.9 KiB
C++

/**************************************************************************
**
** Copyright (C) 2011 - 2013 Research In Motion
**
** Contact: Research In Motion (blackberry-qt@qnx.com)
** Contact: KDAB (info@kdab.com)
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** 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, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
#include "blackberrydebugtokenrequestdialog.h"
#include "blackberrydebugtokenrequester.h"
#include "blackberrydeviceinformation.h"
#include "blackberryconfigurationmanager.h"
#include "blackberrycertificate.h"
#include "ui_blackberrydebugtokenrequestdialog.h"
#include <QPushButton>
#include <QDir>
#include <QMessageBox>
namespace Qnx {
namespace Internal {
BlackBerryDebugTokenRequestDialog::BlackBerryDebugTokenRequestDialog(
QWidget *parent, Qt::WindowFlags f) :
QDialog(parent, f),
m_ui(new Ui_BlackBerryDebugTokenRequestDialog),
m_requester(new BlackBerryDebugTokenRequester(this)),
m_deviceInfo(new BlackBerryDeviceInformation(this))
{
m_ui->setupUi(this);
m_ui->progressBar->hide();
m_ui->status->clear();
m_ui->debugTokenPath->setExpectedKind(Utils::PathChooser::SaveFile);
m_ui->debugTokenPath->setPromptDialogTitle(tr("Request Debug Token"));
m_ui->debugTokenPath->setPromptDialogFilter(tr("BAR Files (*.bar)"));
m_cancelButton = m_ui->buttonBox->button(QDialogButtonBox::Cancel);
m_okButton = m_ui->buttonBox->button(QDialogButtonBox::Ok);
m_okButton->setEnabled(false);
populateComboBox();
connect(m_cancelButton, SIGNAL(clicked()),
this, SLOT(reject()));
connect(m_okButton, SIGNAL(clicked()),
this, SLOT(requestDebugToken()));
connect(m_ui->debugTokenPath, SIGNAL(changed(QString)),
this, SLOT(validate()));
connect(m_ui->debugTokenPath, SIGNAL(beforeBrowsing()),
this, SLOT(setDefaultPath()));
connect(m_ui->debugTokenPath, SIGNAL(editingFinished()),
this, SLOT(appendExtension()));
connect(m_ui->debugTokenPath, SIGNAL(editingFinished()),
this, SLOT(expandPath()));
connect(m_ui->keystorePassword, SIGNAL(textChanged(QString)),
this, SLOT(validate()));
connect(m_ui->cskPassword, SIGNAL(textChanged(QString)),
this, SLOT(validate()));
connect(m_ui->devicePin, SIGNAL(textChanged(QString)),
this, SLOT(validate()));
connect(m_ui->showPassword, SIGNAL(stateChanged(int)),
this, SLOT(checkBoxChanged(int)));
connect(m_requester, SIGNAL(finished(int)),
this, SLOT(debugTokenArrived(int)));
connect(m_deviceInfo, SIGNAL(finished(int)),
this, SLOT(setDevicePin(int)));
}
BlackBerryDebugTokenRequestDialog::~BlackBerryDebugTokenRequestDialog()
{
delete m_ui;
}
QString BlackBerryDebugTokenRequestDialog::debugToken() const
{
return m_ui->debugTokenPath->path();
}
void BlackBerryDebugTokenRequestDialog::setTargetDetails(const QString &deviceIp, const QString &password)
{
m_ui->devicePin->setPlaceholderText(tr("Requesting Device PIN..."));
m_deviceInfo->setDeviceTarget(deviceIp, password);
}
void BlackBerryDebugTokenRequestDialog::validate()
{
if (!m_ui->debugTokenPath->isValid()
|| m_ui->keystorePassword->text().isEmpty()
|| m_ui->devicePin->text().isEmpty()
|| m_ui->cskPassword->text().isEmpty()) {
m_okButton->setEnabled(false);
return;
}
QFileInfo fileInfo(m_ui->debugTokenPath->path());
if (!fileInfo.dir().exists()) {
m_ui->status->setText(tr("Base directory does not exist."));
m_okButton->setEnabled(false);
return;
}
m_ui->status->clear();
m_okButton->setEnabled(true);
}
void BlackBerryDebugTokenRequestDialog::requestDebugToken()
{
setBusy(true);
QFile file(m_ui->debugTokenPath->path());
if (file.exists()) {
const int result = QMessageBox::question(this, tr("Are you sure?"),
tr("The file '%1' will be overwritten. Do you want to proceed?")
.arg(file.fileName()), QMessageBox::Yes | QMessageBox::No);
if (result & QMessageBox::Yes) {
file.remove();
} else {
setBusy(false);
return;
}
}
m_requester->requestDebugToken(m_ui->debugTokenPath->path(),
m_ui->cskPassword->text(),
m_ui->keystore->itemText(m_ui->keystore->currentIndex()),
m_ui->keystorePassword->text(), m_ui->devicePin->text());
}
void BlackBerryDebugTokenRequestDialog::setDefaultPath()
{
const QString path = m_ui->debugTokenPath->path();
const QString defaultFileName = QLatin1String("/debugToken.bar");
if (path.isEmpty()) {
m_ui->debugTokenPath->setPath(QDir::homePath() + defaultFileName);
return;
}
const QFileInfo fileInfo(path);
if (fileInfo.isDir())
m_ui->debugTokenPath->setPath(path + defaultFileName);
}
void BlackBerryDebugTokenRequestDialog::appendExtension()
{
QString path = m_ui->debugTokenPath->path();
if (path.isEmpty())
return;
if (!path.endsWith(QLatin1String(".bar"))) {
path += QLatin1String(".bar");
m_ui->debugTokenPath->setPath(path);
}
}
void BlackBerryDebugTokenRequestDialog::expandPath()
{
const QString path = m_ui->debugTokenPath->path();
if (path.isEmpty() || path.startsWith(QLatin1Char('/')))
return;
const QFileInfo fileInfo(path);
m_ui->debugTokenPath->setPath(fileInfo.absoluteFilePath());
}
void BlackBerryDebugTokenRequestDialog::checkBoxChanged(int state)
{
if (state == Qt::Checked) {
m_ui->cskPassword->setEchoMode(QLineEdit::Normal);
m_ui->keystorePassword->setEchoMode(QLineEdit::Normal);
} else {
m_ui->cskPassword->setEchoMode(QLineEdit::Password);
m_ui->keystorePassword->setEchoMode(QLineEdit::Password);
}
}
void BlackBerryDebugTokenRequestDialog::debugTokenArrived(int status)
{
QString errorString = tr("Failed to request debug token: ");
switch (status) {
case BlackBerryDebugTokenRequester::Success:
accept();
return;
case BlackBerryDebugTokenRequester::WrongCskPassword:
errorString += tr("Wrong CSK password.");
break;
case BlackBerryDebugTokenRequester::WrongKeystorePassword:
errorString += tr("Wrong keystore password.");
break;
case BlackBerryDebugTokenRequester::NetworkUnreachable:
errorString += tr("Network unreachable.");
break;
case BlackBerryDebugTokenRequester::IllegalPin:
errorString += tr("Illegal device PIN.");
break;
case BlackBerryDebugTokenRequester::FailedToStartInferiorProcess:
errorString += tr("Failed to start inferior process.");
break;
case BlackBerryDebugTokenRequester::InferiorProcessTimedOut:
errorString += tr("Inferior processes timed out.");
break;
case BlackBerryDebugTokenRequester::InferiorProcessCrashed:
errorString += tr("Inferior process has crashed.");
break;
case BlackBerryDebugTokenRequester::InferiorProcessReadError:
case BlackBerryDebugTokenRequester::InferiorProcessWriteError:
errorString += tr("Failed to communicate with the inferior process.");
break;
case BlackBerryDebugTokenRequester::NotYetRegistered:
errorString += tr("Not yet registered to request debug tokens.");
break;
case BlackBerryDebugTokenRequester::UnknownError:
errorString += tr("An unknwon error has occurred.");
break;
}
QMessageBox::critical(this, tr("Error"), errorString);
setBusy(false);
}
void BlackBerryDebugTokenRequestDialog::setDevicePin(int status)
{
m_ui->devicePin->setPlaceholderText(QString());
if (status != BlackBerryDeviceInformation::Success)
return;
const QString devicePin = m_deviceInfo->devicePin();
if (devicePin.isEmpty())
return;
m_ui->devicePin->setText(devicePin);
}
void BlackBerryDebugTokenRequestDialog::setBusy(bool busy)
{
m_okButton->setEnabled(!busy);
m_cancelButton->setEnabled(!busy);
m_ui->debugTokenPath->setEnabled(!busy);
m_ui->keystore->setEnabled(!busy);
m_ui->keystorePassword->setEnabled(!busy);
m_ui->cskPassword->setEnabled(!busy);
m_ui->showPassword->setEnabled(!busy);
m_ui->devicePin->setEnabled(!busy);
m_ui->progressBar->setVisible(busy);
if (busy)
m_ui->status->setText(tr("Requesting debug token..."));
else
m_ui->status->clear();
}
void BlackBerryDebugTokenRequestDialog::populateComboBox()
{
BlackBerryConfigurationManager &configManager = BlackBerryConfigurationManager::instance();
QList<BlackBerryCertificate*> certificates = configManager.certificates();
foreach (const BlackBerryCertificate *certificate, certificates)
m_ui->keystore->addItem(certificate->fileName());
}
}
} // namespace Qnx