summaryrefslogtreecommitdiff
path: root/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp')
-rw-r--r--src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp229
1 files changed, 229 insertions, 0 deletions
diff --git a/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp b/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp
new file mode 100644
index 0000000000..955ed226d4
--- /dev/null
+++ b/src/plugins/qnx/blackberrydebugtokenrequestdialog.cpp
@@ -0,0 +1,229 @@
+/**************************************************************************
+**
+** 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 "blackberryconfiguration.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)
+{
+ m_ui->setupUi(this);
+ m_ui->progressBar->hide();
+ m_ui->status->clear();
+ m_ui->debugTokenPath->setExpectedKind(Utils::PathChooser::Any);
+ 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(editingFinished()),
+ this, SLOT(appendExtension()));
+ 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)));
+}
+
+QString BlackBerryDebugTokenRequestDialog::debugToken() const
+{
+ return m_ui->debugTokenPath->path();
+}
+
+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::appendExtension()
+{
+ QString path = m_ui->debugTokenPath->path();
+
+ if (!path.endsWith(QLatin1String(".bar"))) {
+ path += QLatin1String(".bar");
+ m_ui->debugTokenPath->setPath(path);
+ }
+}
+
+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::UnknownError:
+ errorString += tr("An unknwon error has occurred.");
+ break;
+ }
+
+ QMessageBox::critical(this, tr("Error"), errorString);
+
+ setBusy(false);
+}
+
+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()
+{
+ BlackBerryConfiguration &configuration = BlackBerryConfiguration::instance();
+
+ QList<BlackBerryCertificate*> certificates = configuration.certificates();
+
+ foreach (const BlackBerryCertificate *certificate, certificates)
+ m_ui->keystore->addItem(certificate->fileName());
+}
+
+}
+} // namespace Qnx