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"
|
|
|
|
|
|
2022-07-15 12:20:23 +02:00
|
|
|
#include "remotelinuxtr.h"
|
2022-05-12 23:55:09 +02:00
|
|
|
#include "sshkeycreationdialog.h"
|
|
|
|
|
|
2022-04-12 21:01:45 +02:00
|
|
|
#include <projectexplorer/devicesupport/idevice.h>
|
2022-05-13 01:08:44 +02:00
|
|
|
#include <projectexplorer/devicesupport/sshparameters.h>
|
2022-07-14 17:02:19 +02:00
|
|
|
|
2013-03-18 14:47:33 +01:00
|
|
|
#include <utils/fancylineedit.h>
|
2022-07-14 17:02:19 +02:00
|
|
|
#include <utils/layoutbuilder.h>
|
|
|
|
|
#include <utils/pathchooser.h>
|
|
|
|
|
#include <utils/portlist.h>
|
2016-08-03 17:55:54 +02:00
|
|
|
#include <utils/utilsicons.h>
|
2012-02-15 14:47:45 -08:00
|
|
|
|
2022-07-14 17:02:19 +02:00
|
|
|
#include <QCheckBox>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
#include <QPushButton>
|
|
|
|
|
#include <QRadioButton>
|
|
|
|
|
#include <QSpacerItem>
|
|
|
|
|
#include <QSpinBox>
|
|
|
|
|
|
2012-07-25 17:41:01 +02:00
|
|
|
using namespace ProjectExplorer;
|
2012-02-28 10:34:50 +01:00
|
|
|
using namespace Utils;
|
2012-02-15 14:47:45 -08:00
|
|
|
|
2022-07-14 17:02:19 +02:00
|
|
|
namespace RemoteLinux::Internal {
|
|
|
|
|
|
2012-02-15 14:47:45 -08:00
|
|
|
GenericLinuxDeviceConfigurationWidget::GenericLinuxDeviceConfigurationWidget(
|
2022-07-14 17:02:19 +02:00
|
|
|
const IDevice::Ptr &device) :
|
|
|
|
|
IDeviceWidget(device)
|
2012-02-15 14:47:45 -08:00
|
|
|
{
|
2022-07-14 17:02:19 +02:00
|
|
|
resize(556, 309);
|
|
|
|
|
|
2022-07-15 12:20:23 +02:00
|
|
|
m_defaultAuthButton = new QRadioButton(Tr::tr("Default"), this);
|
2022-07-14 17:02:19 +02:00
|
|
|
|
2022-07-15 12:20:23 +02:00
|
|
|
m_keyButton = new QRadioButton(Tr::tr("Specific &key"));
|
2022-07-14 17:02:19 +02:00
|
|
|
|
|
|
|
|
m_hostLineEdit = new QLineEdit(this);
|
2022-07-15 12:20:23 +02:00
|
|
|
m_hostLineEdit->setPlaceholderText(Tr::tr("IP or host name of the device"));
|
2022-07-14 17:02:19 +02:00
|
|
|
|
|
|
|
|
m_sshPortSpinBox = new QSpinBox(this);
|
|
|
|
|
m_sshPortSpinBox->setMinimum(0);
|
|
|
|
|
m_sshPortSpinBox->setMaximum(65535);
|
|
|
|
|
m_sshPortSpinBox->setValue(22);
|
|
|
|
|
|
2022-07-15 12:20:23 +02:00
|
|
|
m_hostKeyCheckBox = new QCheckBox(Tr::tr("&Check host key"));
|
2022-07-14 17:02:19 +02:00
|
|
|
|
|
|
|
|
m_portsLineEdit = new QLineEdit(this);
|
2022-07-15 12:20:23 +02:00
|
|
|
m_portsLineEdit->setToolTip(Tr::tr("You can enter lists and ranges like this: '1024,1026-1028,1030'."));
|
2022-07-14 17:02:19 +02:00
|
|
|
|
|
|
|
|
m_portsWarningLabel = new QLabel(this);
|
|
|
|
|
|
|
|
|
|
m_timeoutSpinBox = new QSpinBox(this);
|
|
|
|
|
m_timeoutSpinBox->setMaximum(10000);
|
|
|
|
|
m_timeoutSpinBox->setSingleStep(10);
|
|
|
|
|
m_timeoutSpinBox->setValue(1000);
|
2022-07-15 12:20:23 +02:00
|
|
|
m_timeoutSpinBox->setSuffix(Tr::tr("s"));
|
2022-07-14 17:02:19 +02:00
|
|
|
|
|
|
|
|
m_userLineEdit = new QLineEdit(this);
|
|
|
|
|
|
2022-07-15 12:20:23 +02:00
|
|
|
m_keyLabel = new QLabel(Tr::tr("Private key file:"));
|
2022-07-14 17:02:19 +02:00
|
|
|
|
|
|
|
|
m_keyFileLineEdit = new Utils::PathChooser(this);
|
|
|
|
|
|
2022-07-15 12:20:23 +02:00
|
|
|
auto createKeyButton = new QPushButton(Tr::tr("Create New..."));
|
2022-07-14 17:02:19 +02:00
|
|
|
|
|
|
|
|
m_machineTypeValueLabel = new QLabel(this);
|
|
|
|
|
|
|
|
|
|
m_gdbServerLineEdit = new QLineEdit(this);
|
2022-07-15 12:20:23 +02:00
|
|
|
m_gdbServerLineEdit->setPlaceholderText(Tr::tr("Leave empty to look up executable in $PATH"));
|
2022-07-14 17:02:19 +02:00
|
|
|
|
2022-07-15 12:20:23 +02:00
|
|
|
auto sshPortLabel = new QLabel(Tr::tr("&SSH port:"));
|
2022-07-14 17:02:19 +02:00
|
|
|
sshPortLabel->setBuddy(m_sshPortSpinBox);
|
|
|
|
|
|
|
|
|
|
using namespace Layouting;
|
|
|
|
|
|
|
|
|
|
Form {
|
2022-07-22 18:54:04 +02:00
|
|
|
Tr::tr("Machine type:"), m_machineTypeValueLabel, st, br,
|
|
|
|
|
Tr::tr("Authentication type:"), m_defaultAuthButton, m_keyButton, st, br,
|
|
|
|
|
Tr::tr("&Host name:"), m_hostLineEdit, sshPortLabel, m_sshPortSpinBox, m_hostKeyCheckBox, st, br,
|
|
|
|
|
Tr::tr("Free ports:"), m_portsLineEdit, m_portsWarningLabel, Tr::tr("Timeout:"), m_timeoutSpinBox, st, br,
|
|
|
|
|
Tr::tr("&Username:"), m_userLineEdit, st, br,
|
|
|
|
|
m_keyLabel, m_keyFileLineEdit, createKeyButton, st, br,
|
|
|
|
|
Tr::tr("GDB server executable:"), m_gdbServerLineEdit, st, br
|
2022-07-14 17:02:19 +02:00
|
|
|
}.attachTo(this);
|
|
|
|
|
|
|
|
|
|
connect(m_hostLineEdit, &QLineEdit::editingFinished,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::hostNameEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_userLineEdit, &QLineEdit::editingFinished,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::userNameEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_keyFileLineEdit, &PathChooser::editingFinished,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::keyFileEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_keyFileLineEdit, &PathChooser::browsingFinished,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::keyFileEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_keyButton, &QAbstractButton::toggled,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::authenticationTypeChanged);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_timeoutSpinBox, &QAbstractSpinBox::editingFinished,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::timeoutEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_timeoutSpinBox, &QSpinBox::valueChanged,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::timeoutEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_sshPortSpinBox, &QAbstractSpinBox::editingFinished,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::sshPortEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_sshPortSpinBox, &QSpinBox::valueChanged,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::sshPortEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_portsLineEdit, &QLineEdit::editingFinished,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::handleFreePortsChanged);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(createKeyButton, &QAbstractButton::clicked,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::createNewKey);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_gdbServerLineEdit, &QLineEdit::editingFinished,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::gdbServerEditingFinished);
|
2022-07-14 17:02:19 +02:00
|
|
|
connect(m_hostKeyCheckBox, &QCheckBox::toggled,
|
2016-06-30 23:04:57 +03:00
|
|
|
this, &GenericLinuxDeviceConfigurationWidget::hostKeyCheckingChanged);
|
2022-07-14 17:02:19 +02:00
|
|
|
m_gdbServerLineEdit->setToolTip(m_gdbServerLineEdit->placeholderText());
|
2012-02-15 14:47:45 -08:00
|
|
|
|
|
|
|
|
initGui();
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-14 17:02:19 +02:00
|
|
|
GenericLinuxDeviceConfigurationWidget::~GenericLinuxDeviceConfigurationWidget() = default;
|
2012-02-15 14:47:45 -08:00
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::authenticationTypeChanged()
|
|
|
|
|
{
|
2022-05-12 18:43:44 +02:00
|
|
|
SshParameters sshParams = device()->sshParameters();
|
2022-07-14 17:02:19 +02:00
|
|
|
const bool useKeyFile = m_keyButton->isChecked();
|
2018-11-23 11:07:57 +01:00
|
|
|
sshParams.authenticationType = useKeyFile
|
2022-05-12 18:43:44 +02:00
|
|
|
? SshParameters::AuthenticationTypeSpecificKey
|
|
|
|
|
: SshParameters::AuthenticationTypeAll;
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2022-07-14 17:02:19 +02:00
|
|
|
m_keyFileLineEdit->setEnabled(useKeyFile);
|
|
|
|
|
m_keyLabel->setEnabled(useKeyFile);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::hostNameEditingFinished()
|
|
|
|
|
{
|
2022-05-12 18:43:44 +02:00
|
|
|
SshParameters sshParams = device()->sshParameters();
|
2022-07-14 17:02:19 +02:00
|
|
|
sshParams.setHost(m_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()
|
|
|
|
|
{
|
2022-05-12 18:43:44 +02:00
|
|
|
SshParameters sshParams = device()->sshParameters();
|
2022-07-14 17:02:19 +02:00
|
|
|
sshParams.setPort(m_sshPortSpinBox->value());
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::timeoutEditingFinished()
|
|
|
|
|
{
|
2022-05-12 18:43:44 +02:00
|
|
|
SshParameters sshParams = device()->sshParameters();
|
2022-07-14 17:02:19 +02:00
|
|
|
sshParams.timeout = m_timeoutSpinBox->value();
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::userNameEditingFinished()
|
|
|
|
|
{
|
2022-05-12 18:43:44 +02:00
|
|
|
SshParameters sshParams = device()->sshParameters();
|
2022-07-14 17:02:19 +02:00
|
|
|
sshParams.setUserName(m_userLineEdit->text());
|
2012-07-25 17:41:01 +02:00
|
|
|
device()->setSshParameters(sshParams);
|
2012-02-15 14:47:45 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericLinuxDeviceConfigurationWidget::keyFileEditingFinished()
|
|
|
|
|
{
|
2022-05-12 18:43:44 +02:00
|
|
|
SshParameters sshParams = device()->sshParameters();
|
2022-07-14 17:02:19 +02:00
|
|
|
sshParams.privateKeyFile = m_keyFileLineEdit->filePath();
|
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()
|
|
|
|
|
{
|
2022-07-14 17:02:19 +02:00
|
|
|
device()->setDebugServerPath(device()->filePath(m_gdbServerLineEdit->text()));
|
2013-06-28 13:56:42 +02:00
|
|
|
}
|
|
|
|
|
|
2012-02-15 14:47:45 -08:00
|
|
|
void GenericLinuxDeviceConfigurationWidget::handleFreePortsChanged()
|
|
|
|
|
{
|
2022-07-14 17:02:19 +02:00
|
|
|
device()->setFreePorts(PortList::fromString(m_portsLineEdit->text()));
|
2012-02-15 14:47:45 -08:00
|
|
|
updatePortsWarningLabel();
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-27 16:30:57 +02:00
|
|
|
void GenericLinuxDeviceConfigurationWidget::setPrivateKey(const FilePath &path)
|
2012-02-15 14:47:45 -08:00
|
|
|
{
|
2022-07-14 17:02:19 +02:00
|
|
|
m_keyFileLineEdit->setFilePath(path);
|
2012-02-15 14:47:45 -08:00
|
|
|
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)
|
|
|
|
|
{
|
2022-05-12 18:43:44 +02:00
|
|
|
SshParameters sshParams = device()->sshParameters();
|
2014-11-12 16:50:04 +01:00
|
|
|
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();
|
|
|
|
|
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()
|
|
|
|
|
{
|
2022-07-14 17:02:19 +02:00
|
|
|
m_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)
|
2022-07-15 12:20:23 +02:00
|
|
|
m_machineTypeValueLabel->setText(Tr::tr("Physical Device"));
|
2012-03-05 12:37:32 +01:00
|
|
|
else
|
2022-07-15 12:20:23 +02:00
|
|
|
m_machineTypeValueLabel->setText(Tr::tr("Emulator"));
|
2022-07-14 17:02:19 +02:00
|
|
|
m_portsWarningLabel->setPixmap(Utils::Icons::CRITICAL.pixmap());
|
|
|
|
|
m_portsWarningLabel->setToolTip(QLatin1String("<font color=\"red\">")
|
2022-07-15 12:20:23 +02:00
|
|
|
+ Tr::tr("You will need at least one port.") + QLatin1String("</font>"));
|
2022-07-14 17:02:19 +02:00
|
|
|
m_keyFileLineEdit->setExpectedKind(PathChooser::File);
|
|
|
|
|
m_keyFileLineEdit->setHistoryCompleter(QLatin1String("Ssh.KeyFile.History"));
|
|
|
|
|
m_keyFileLineEdit->lineEdit()->setMinimumWidth(0);
|
2020-03-18 13:32:28 +01:00
|
|
|
QRegularExpressionValidator * const portsValidator
|
|
|
|
|
= new QRegularExpressionValidator(QRegularExpression(PortList::regularExpression()), this);
|
2022-07-14 17:02:19 +02:00
|
|
|
m_portsLineEdit->setValidator(portsValidator);
|
2012-02-15 14:47:45 -08:00
|
|
|
|
2022-05-12 18:43:44 +02:00
|
|
|
const SshParameters &sshParams = device()->sshParameters();
|
2012-02-15 14:47:45 -08:00
|
|
|
|
2016-07-20 18:04:56 +02:00
|
|
|
switch (sshParams.authenticationType) {
|
2022-05-12 18:43:44 +02:00
|
|
|
case SshParameters::AuthenticationTypeSpecificKey:
|
2022-07-14 17:02:19 +02:00
|
|
|
m_keyButton->setChecked(true);
|
2016-07-20 18:04:56 +02:00
|
|
|
break;
|
2022-05-12 18:43:44 +02:00
|
|
|
case SshParameters::AuthenticationTypeAll:
|
2022-07-14 17:02:19 +02:00
|
|
|
m_defaultAuthButton->setChecked(true);
|
2016-07-20 18:04:56 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2022-07-14 17:02:19 +02:00
|
|
|
m_timeoutSpinBox->setValue(sshParams.timeout);
|
|
|
|
|
m_hostLineEdit->setEnabled(!device()->isAutoDetected());
|
|
|
|
|
m_sshPortSpinBox->setEnabled(!device()->isAutoDetected());
|
|
|
|
|
m_hostKeyCheckBox->setChecked(sshParams.hostKeyCheckingMode != SshHostKeyCheckingNone);
|
|
|
|
|
|
|
|
|
|
m_hostLineEdit->setText(sshParams.host());
|
|
|
|
|
m_sshPortSpinBox->setValue(sshParams.port());
|
|
|
|
|
m_portsLineEdit->setText(device()->freePorts().toString());
|
|
|
|
|
m_timeoutSpinBox->setValue(sshParams.timeout);
|
|
|
|
|
m_userLineEdit->setText(sshParams.userName());
|
|
|
|
|
m_keyFileLineEdit->setFilePath(sshParams.privateKeyFile);
|
2022-06-28 13:37:57 +02:00
|
|
|
// FIXME: Use a remote executable line edit
|
2022-07-14 17:02:19 +02:00
|
|
|
m_gdbServerLineEdit->setText(device()->debugServerPath().path());
|
|
|
|
|
|
2012-02-15 14:47:45 -08:00
|
|
|
updatePortsWarningLabel();
|
|
|
|
|
}
|
2022-07-14 17:02:19 +02:00
|
|
|
|
|
|
|
|
} // RemoteLinux::Internal
|