2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2012-02-15 14:47:45 -08:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-02-15 14:47:45 -08:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-02-15 14:47:45 -08:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-02-15 14:47:45 -08:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-02-15 14:47:45 -08:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-02-15 14:47:45 -08:00
|
|
|
|
|
|
|
|
#include "genericlinuxdeviceconfigurationwidget.h"
|
|
|
|
|
#include "ui_genericlinuxdeviceconfigurationwidget.h"
|
|
|
|
|
|
2014-06-13 11:19:54 +02:00
|
|
|
#include <coreplugin/coreconstants.h>
|
2012-02-28 10:34:50 +01:00
|
|
|
#include <utils/portlist.h>
|
2013-03-18 14:47:33 +01:00
|
|
|
#include <utils/fancylineedit.h>
|
2016-08-03 17:55:54 +02:00
|
|
|
#include <utils/utilsicons.h>
|
2012-05-18 10:49:35 +02:00
|
|
|
#include <ssh/sshconnection.h>
|
|
|
|
|
#include <ssh/sshkeycreationdialog.h>
|
2012-02-15 14:47:45 -08:00
|
|
|
|
2012-07-25 17:41:01 +02:00
|
|
|
using namespace ProjectExplorer;
|
2012-02-15 14:47:45 -08:00
|
|
|
using namespace RemoteLinux;
|
2012-05-18 10:49:35 +02:00
|
|
|
using namespace QSsh;
|
2012-02-28 10:34:50 +01:00
|
|
|
using namespace Utils;
|
2012-02-15 14:47:45 -08:00
|
|
|
|
|
|
|
|
GenericLinuxDeviceConfigurationWidget::GenericLinuxDeviceConfigurationWidget(
|
2012-07-25 17:41:01 +02:00
|
|
|
const IDevice::Ptr &deviceConfig, QWidget *parent) :
|
|
|
|
|
IDeviceWidget(deviceConfig, parent),
|
2012-02-15 14:47:45 -08:00
|
|
|
m_ui(new Ui::GenericLinuxDeviceConfigurationWidget)
|
|
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
2016-06-30 23:04:57 +03:00
|
|
|
connect(m_ui->hostLineEdit, &QLineEdit::editingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::hostNameEditingFinished);
|
|
|
|
|
connect(m_ui->userLineEdit, &QLineEdit::editingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::userNameEditingFinished);
|
|
|
|
|
connect(m_ui->pwdLineEdit, &QLineEdit::editingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::passwordEditingFinished);
|
|
|
|
|
connect(m_ui->passwordButton, &QAbstractButton::toggled,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::authenticationTypeChanged);
|
|
|
|
|
connect(m_ui->keyFileLineEdit, &PathChooser::editingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::keyFileEditingFinished);
|
|
|
|
|
connect(m_ui->keyFileLineEdit, &PathChooser::browsingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::keyFileEditingFinished);
|
|
|
|
|
connect(m_ui->keyButton, &QAbstractButton::toggled,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::authenticationTypeChanged);
|
2016-07-20 18:04:56 +02:00
|
|
|
connect(m_ui->agentButton, &QAbstractButton::toggled,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::authenticationTypeChanged);
|
2016-06-30 23:04:57 +03:00
|
|
|
connect(m_ui->timeoutSpinBox, &QAbstractSpinBox::editingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::timeoutEditingFinished);
|
|
|
|
|
connect(m_ui->timeoutSpinBox, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged),
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::timeoutEditingFinished);
|
|
|
|
|
connect(m_ui->sshPortSpinBox, &QAbstractSpinBox::editingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::sshPortEditingFinished);
|
|
|
|
|
connect(m_ui->sshPortSpinBox, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged),
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::sshPortEditingFinished);
|
|
|
|
|
connect(m_ui->showPasswordCheckBox, &QAbstractButton::toggled,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::showPassword);
|
|
|
|
|
connect(m_ui->portsLineEdit, &QLineEdit::editingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::handleFreePortsChanged);
|
|
|
|
|
connect(m_ui->createKeyButton, &QAbstractButton::clicked,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::createNewKey);
|
|
|
|
|
connect(m_ui->gdbServerLineEdit, &QLineEdit::editingFinished,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::gdbServerEditingFinished);
|
|
|
|
|
connect(m_ui->hostKeyCheckBox, &QCheckBox::toggled,
|
|
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::hostKeyCheckingChanged);
|
2012-02-15 14:47:45 -08:00
|
|
|
|
|
|
|
|
initGui();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GenericLinuxDeviceConfigurationWidget::~GenericLinuxDeviceConfigurationWidget()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::authenticationTypeChanged()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
SshConnectionParameters sshParams = device()->sshParameters();
|
2012-02-15 14:47:45 -08:00
|
|
|
const bool usePassword = m_ui->passwordButton->isChecked();
|
2016-07-20 18:04:56 +02:00
|
|
|
const bool useKeyFile = m_ui->keyButton->isChecked();
|
|
|
|
|
sshParams.authenticationType
|
|
|
|
|
= usePassword ? SshConnectionParameters::AuthenticationTypeTryAllPasswordBasedMethods
|
|
|
|
|
: useKeyFile ? SshConnectionParameters::AuthenticationTypePublicKey
|
|
|
|
|
: SshConnectionParameters::AuthenticationTypeAgent;
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
m_ui->pwdLineEdit->setEnabled(usePassword);
|
|
|
|
|
m_ui->passwordLabel->setEnabled(usePassword);
|
2016-07-20 18:04:56 +02:00
|
|
|
m_ui->keyFileLineEdit->setEnabled(useKeyFile);
|
|
|
|
|
m_ui->keyLabel->setEnabled(useKeyFile);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::hostNameEditingFinished()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
SshConnectionParameters sshParams = device()->sshParameters();
|
2012-04-20 13:51:04 +02:00
|
|
|
sshParams.host = m_ui->hostLineEdit->text().trimmed();
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::sshPortEditingFinished()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
SshConnectionParameters sshParams = device()->sshParameters();
|
2012-02-15 14:47:45 -08:00
|
|
|
sshParams.port = m_ui->sshPortSpinBox->value();
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::timeoutEditingFinished()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
SshConnectionParameters sshParams = device()->sshParameters();
|
2012-02-15 14:47:45 -08:00
|
|
|
sshParams.timeout = m_ui->timeoutSpinBox->value();
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::userNameEditingFinished()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
SshConnectionParameters sshParams = device()->sshParameters();
|
2012-02-15 14:47:45 -08:00
|
|
|
sshParams.userName = m_ui->userLineEdit->text();
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::passwordEditingFinished()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
SshConnectionParameters sshParams = device()->sshParameters();
|
2012-02-15 14:47:45 -08:00
|
|
|
sshParams.password = m_ui->pwdLineEdit->text();
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::keyFileEditingFinished()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
SshConnectionParameters sshParams = device()->sshParameters();
|
2012-02-15 14:47:45 -08:00
|
|
|
sshParams.privateKeyFile = m_ui->keyFileLineEdit->path();
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
2013-06-28 13:56:42 +02:00
|
|
|
void GenericLinuxDeviceConfigurationWidget::gdbServerEditingFinished()
|
|
|
|
|
{
|
|
|
|
|
device()->setDebugServerPath(m_ui->gdbServerLineEdit->text());
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 14:47:45 -08:00
|
|
|
void GenericLinuxDeviceConfigurationWidget::handleFreePortsChanged()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setFreePorts(PortList::fromString(m_ui->portsLineEdit->text()));
|
2012-02-15 14:47:45 -08:00
|
|
|
updatePortsWarningLabel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::showPassword(bool showClearText)
|
|
|
|
|
{
|
|
|
|
|
m_ui->pwdLineEdit->setEchoMode(showClearText
|
|
|
|
|
? QLineEdit::Normal : QLineEdit::Password);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::setPrivateKey(const QString &path)
|
|
|
|
|
{
|
|
|
|
|
m_ui->keyFileLineEdit->setPath(path);
|
|
|
|
|
keyFileEditingFinished();
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-06 12:31:42 +01:00
|
|
|
void GenericLinuxDeviceConfigurationWidget::createNewKey()
|
|
|
|
|
{
|
|
|
|
|
SshKeyCreationDialog dialog(this);
|
|
|
|
|
if (dialog.exec() == QDialog::Accepted)
|
|
|
|
|
setPrivateKey(dialog.privateKeyFilePath());
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-12 16:50:04 +01:00
|
|
|
void GenericLinuxDeviceConfigurationWidget::hostKeyCheckingChanged(bool doCheck)
|
|
|
|
|
{
|
|
|
|
|
SshConnectionParameters sshParams = device()->sshParameters();
|
|
|
|
|
sshParams.hostKeyCheckingMode
|
2015-02-03 23:51:02 +02:00
|
|
|
= doCheck ? SshHostKeyCheckingAllowNoMatch : SshHostKeyCheckingNone;
|
2014-11-12 16:50:04 +01:00
|
|
|
device()->setSshParameters(sshParams);
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-27 10:20:43 +02:00
|
|
|
void GenericLinuxDeviceConfigurationWidget::updateDeviceFromUi()
|
|
|
|
|
{
|
|
|
|
|
hostNameEditingFinished();
|
|
|
|
|
sshPortEditingFinished();
|
|
|
|
|
timeoutEditingFinished();
|
|
|
|
|
userNameEditingFinished();
|
|
|
|
|
passwordEditingFinished();
|
|
|
|
|
keyFileEditingFinished();
|
|
|
|
|
handleFreePortsChanged();
|
2013-06-28 13:56:42 +02:00
|
|
|
gdbServerEditingFinished();
|
2012-09-27 10:20:43 +02:00
|
|
|
}
|
|
|
|
|
|
2012-02-15 14:47:45 -08:00
|
|
|
void GenericLinuxDeviceConfigurationWidget::updatePortsWarningLabel()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
m_ui->portsWarningLabel->setVisible(!device()->freePorts().hasMore());
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::initGui()
|
|
|
|
|
{
|
2012-07-25 17:41:01 +02:00
|
|
|
if (device()->machineType() == IDevice::Hardware)
|
2012-03-05 12:37:32 +01:00
|
|
|
m_ui->machineTypeValueLabel->setText(tr("Physical Device"));
|
|
|
|
|
else
|
|
|
|
|
m_ui->machineTypeValueLabel->setText(tr("Emulator"));
|
2017-01-02 12:37:49 +01:00
|
|
|
m_ui->portsWarningLabel->setPixmap(Utils::Icons::CRITICAL.pixmap());
|
2012-02-15 14:47:45 -08:00
|
|
|
m_ui->portsWarningLabel->setToolTip(QLatin1String("<font color=\"red\">")
|
|
|
|
|
+ tr("You will need at least one port.") + QLatin1String("</font>"));
|
2012-02-28 10:34:50 +01:00
|
|
|
m_ui->keyFileLineEdit->setExpectedKind(PathChooser::File);
|
2013-11-25 14:37:43 +01:00
|
|
|
m_ui->keyFileLineEdit->setHistoryCompleter(QLatin1String("Ssh.KeyFile.History"));
|
2012-02-15 14:47:45 -08:00
|
|
|
m_ui->keyFileLineEdit->lineEdit()->setMinimumWidth(0);
|
|
|
|
|
QRegExpValidator * const portsValidator
|
|
|
|
|
= new QRegExpValidator(QRegExp(PortList::regularExpression()), this);
|
|
|
|
|
m_ui->portsLineEdit->setValidator(portsValidator);
|
|
|
|
|
|
2012-07-25 17:41:01 +02:00
|
|
|
const SshConnectionParameters &sshParams = device()->sshParameters();
|
2012-02-15 14:47:45 -08:00
|
|
|
|
2016-07-20 18:04:56 +02:00
|
|
|
switch (sshParams.authenticationType) {
|
|
|
|
|
case SshConnectionParameters::AuthenticationTypePublicKey:
|
2012-02-15 14:47:45 -08:00
|
|
|
m_ui->keyButton->setChecked(true);
|
2016-07-20 18:04:56 +02:00
|
|
|
break;
|
|
|
|
|
case SshConnectionParameters::AuthenticationTypeAgent:
|
|
|
|
|
m_ui->agentButton->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
case SshConnectionParameters::AuthenticationTypePassword:
|
|
|
|
|
case SshConnectionParameters::AuthenticationTypeKeyboardInteractive:
|
|
|
|
|
case SshConnectionParameters::AuthenticationTypeTryAllPasswordBasedMethods:
|
|
|
|
|
m_ui->passwordButton->setChecked(true);
|
|
|
|
|
}
|
2012-02-15 14:47:45 -08:00
|
|
|
m_ui->timeoutSpinBox->setValue(sshParams.timeout);
|
2012-07-25 17:41:01 +02:00
|
|
|
m_ui->hostLineEdit->setEnabled(!device()->isAutoDetected());
|
|
|
|
|
m_ui->sshPortSpinBox->setEnabled(!device()->isAutoDetected());
|
2014-11-12 16:50:04 +01:00
|
|
|
m_ui->hostKeyCheckBox->setChecked(sshParams.hostKeyCheckingMode != SshHostKeyCheckingNone);
|
2012-02-15 14:47:45 -08:00
|
|
|
|
|
|
|
|
m_ui->hostLineEdit->setText(sshParams.host);
|
|
|
|
|
m_ui->sshPortSpinBox->setValue(sshParams.port);
|
2012-07-25 17:41:01 +02:00
|
|
|
m_ui->portsLineEdit->setText(device()->freePorts().toString());
|
2012-02-15 14:47:45 -08:00
|
|
|
m_ui->timeoutSpinBox->setValue(sshParams.timeout);
|
|
|
|
|
m_ui->userLineEdit->setText(sshParams.userName);
|
|
|
|
|
m_ui->pwdLineEdit->setText(sshParams.password);
|
|
|
|
|
m_ui->keyFileLineEdit->setPath(sshParams.privateKeyFile);
|
|
|
|
|
m_ui->showPasswordCheckBox->setChecked(false);
|
2013-06-28 13:56:42 +02:00
|
|
|
m_ui->gdbServerLineEdit->setText(device()->debugServerPath());
|
2012-02-15 14:47:45 -08:00
|
|
|
updatePortsWarningLabel();
|
|
|
|
|
}
|