forked from qt-creator/qt-creator
Qnx: Rename qnxdeviceconfiguration* to qnxdevice*
All other targets call their devices "Device", not "DeviceConfiguration". Also, add a few namespaces and inline the trivial QnxDeviceConfigurationWizardSetupPage files. Change-Id: I26168d1b676f6a646b11b61d4cdb7d0f30e18242 Reviewed-by: Anton Kreuzkamp <anton.kreuzkamp@kdab.com> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
236
src/plugins/qnx/qnxdevice.cpp
Normal file
236
src/plugins/qnx/qnxdevice.cpp
Normal file
@@ -0,0 +1,236 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2016 BlackBerry Limited. All rights reserved.
|
||||
** 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 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.
|
||||
**
|
||||
** 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.
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include "qnxdevice.h"
|
||||
#include "qnxdevicetester.h"
|
||||
#include "qnxdeviceprocesslist.h"
|
||||
#include "qnxdeviceprocesssignaloperation.h"
|
||||
#include "qnxdeployqtlibrariesdialog.h"
|
||||
#include "qnxdeviceprocess.h"
|
||||
|
||||
#include <projectexplorer/devicesupport/sshdeviceprocess.h>
|
||||
#include <projectexplorer/runnables.h>
|
||||
#include <ssh/sshconnection.h>
|
||||
#include <utils/port.h>
|
||||
#include <utils/qtcassert.h>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QRegExp>
|
||||
#include <QStringList>
|
||||
#include <QThread>
|
||||
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Utils;
|
||||
|
||||
namespace Qnx {
|
||||
|
||||
using namespace Internal;
|
||||
|
||||
const char QnxVersionKey[] = "QnxVersion";
|
||||
const char DeployQtLibrariesActionId [] = "Qnx.Qnx.DeployQtLibrariesAction";
|
||||
|
||||
class QnxPortsGatheringMethod : public PortsGatheringMethod
|
||||
{
|
||||
// TODO: The command is probably needlessly complicated because the parsing method
|
||||
// used to be fixed. These two can now be matched to each other.
|
||||
QByteArray commandLine(QAbstractSocket::NetworkLayerProtocol protocol) const
|
||||
{
|
||||
Q_UNUSED(protocol);
|
||||
return "netstat -na "
|
||||
"| sed 's/[a-z]\\+\\s\\+[0-9]\\+\\s\\+[0-9]\\+\\s\\+\\(\\*\\|[0-9\\.]\\+\\)\\.\\([0-9]\\+\\).*/\\2/g' "
|
||||
"| while read line; do "
|
||||
"if [[ $line != udp* ]] && [[ $line != Active* ]]; then "
|
||||
"printf '%x\n' $line; "
|
||||
"fi; "
|
||||
"done";
|
||||
}
|
||||
|
||||
QList<Port> usedPorts(const QByteArray &output) const
|
||||
{
|
||||
QList<Port> ports;
|
||||
QList<QByteArray> portStrings = output.split('\n');
|
||||
portStrings.removeFirst();
|
||||
foreach (const QByteArray &portString, portStrings) {
|
||||
if (portString.isEmpty())
|
||||
continue;
|
||||
bool ok;
|
||||
const Port port(portString.toInt(&ok, 16));
|
||||
if (ok) {
|
||||
if (!ports.contains(port))
|
||||
ports << port;
|
||||
} else {
|
||||
qWarning("%s: Unexpected string '%s' is not a port.",
|
||||
Q_FUNC_INFO, portString.data());
|
||||
}
|
||||
}
|
||||
return ports;
|
||||
}
|
||||
};
|
||||
|
||||
QnxDevice::QnxDevice()
|
||||
: RemoteLinux::LinuxDevice()
|
||||
, m_versionNumber(0)
|
||||
{
|
||||
}
|
||||
|
||||
QnxDevice::QnxDevice(const QString &name, Core::Id type, MachineType machineType, Origin origin, Core::Id id)
|
||||
: RemoteLinux::LinuxDevice(name, type, machineType, origin, id)
|
||||
, m_versionNumber(0)
|
||||
{
|
||||
}
|
||||
|
||||
QnxDevice::QnxDevice(const QnxDevice &other)
|
||||
: RemoteLinux::LinuxDevice(other)
|
||||
, m_versionNumber(other.m_versionNumber)
|
||||
{
|
||||
}
|
||||
|
||||
QnxDevice::Ptr QnxDevice::create()
|
||||
{
|
||||
return Ptr(new QnxDevice);
|
||||
}
|
||||
|
||||
QnxDevice::Ptr QnxDevice::create(const QString &name, Core::Id type, MachineType machineType, Origin origin, Core::Id id)
|
||||
{
|
||||
return Ptr(new QnxDevice(name, type, machineType, origin, id));
|
||||
}
|
||||
|
||||
QString QnxDevice::displayType() const
|
||||
{
|
||||
return tr("QNX");
|
||||
}
|
||||
|
||||
int QnxDevice::qnxVersion() const
|
||||
{
|
||||
if (m_versionNumber == 0)
|
||||
updateVersionNumber();
|
||||
|
||||
return m_versionNumber;
|
||||
}
|
||||
|
||||
void QnxDevice::updateVersionNumber() const
|
||||
{
|
||||
QEventLoop eventLoop;
|
||||
SshDeviceProcess versionNumberProcess(sharedFromThis());
|
||||
QObject::connect(&versionNumberProcess, &SshDeviceProcess::finished, &eventLoop, &QEventLoop::quit);
|
||||
QObject::connect(&versionNumberProcess, &DeviceProcess::error, &eventLoop, &QEventLoop::quit);
|
||||
|
||||
StandardRunnable r;
|
||||
r.executable = QLatin1String("uname");
|
||||
r.commandLineArguments = QLatin1String("-r");
|
||||
versionNumberProcess.start(r);
|
||||
|
||||
bool isGuiThread = QThread::currentThread() == QCoreApplication::instance()->thread();
|
||||
if (isGuiThread)
|
||||
QApplication::setOverrideCursor(Qt::WaitCursor);
|
||||
|
||||
eventLoop.exec(QEventLoop::ExcludeUserInputEvents);
|
||||
|
||||
QByteArray output = versionNumberProcess.readAllStandardOutput();
|
||||
QString versionMessage = QString::fromLatin1(output);
|
||||
QRegExp versionNumberRegExp = QRegExp(QLatin1String("(\\d+)\\.(\\d+)\\.(\\d+)"));
|
||||
if (versionNumberRegExp.indexIn(versionMessage) > -1 && versionNumberRegExp.captureCount() == 3) {
|
||||
int major = versionNumberRegExp.cap(1).toInt();
|
||||
int minor = versionNumberRegExp.cap(2).toInt();
|
||||
int patch = versionNumberRegExp.cap(3).toInt();
|
||||
m_versionNumber = (major << 16)|(minor<<8)|(patch);
|
||||
}
|
||||
|
||||
if (isGuiThread)
|
||||
QApplication::restoreOverrideCursor();
|
||||
}
|
||||
|
||||
void QnxDevice::fromMap(const QVariantMap &map)
|
||||
{
|
||||
m_versionNumber = map.value(QLatin1String(QnxVersionKey), 0).toInt();
|
||||
RemoteLinux::LinuxDevice::fromMap(map);
|
||||
}
|
||||
|
||||
QVariantMap QnxDevice::toMap() const
|
||||
{
|
||||
QVariantMap map(RemoteLinux::LinuxDevice::toMap());
|
||||
map.insert(QLatin1String(QnxVersionKey), m_versionNumber);
|
||||
return map;
|
||||
}
|
||||
|
||||
IDevice::Ptr QnxDevice::clone() const
|
||||
{
|
||||
return Ptr(new QnxDevice(*this));
|
||||
}
|
||||
|
||||
PortsGatheringMethod::Ptr QnxDevice::portsGatheringMethod() const
|
||||
{
|
||||
return PortsGatheringMethod::Ptr(new QnxPortsGatheringMethod);
|
||||
}
|
||||
|
||||
DeviceProcessList *QnxDevice::createProcessListModel(QObject *parent) const
|
||||
{
|
||||
return new QnxDeviceProcessList(sharedFromThis(), parent);
|
||||
}
|
||||
|
||||
DeviceTester *QnxDevice::createDeviceTester() const
|
||||
{
|
||||
return new QnxDeviceTester;
|
||||
}
|
||||
|
||||
DeviceProcess *QnxDevice::createProcess(QObject *parent) const
|
||||
{
|
||||
return new QnxDeviceProcess(sharedFromThis(), parent);
|
||||
}
|
||||
|
||||
QList<Core::Id> QnxDevice::actionIds() const
|
||||
{
|
||||
QList<Core::Id> actions = RemoteLinux::LinuxDevice::actionIds();
|
||||
actions << Core::Id(DeployQtLibrariesActionId);
|
||||
return actions;
|
||||
}
|
||||
|
||||
QString QnxDevice::displayNameForActionId(Core::Id actionId) const
|
||||
{
|
||||
if (actionId == Core::Id(DeployQtLibrariesActionId))
|
||||
return tr("Deploy Qt libraries...");
|
||||
|
||||
return RemoteLinux::LinuxDevice::displayNameForActionId(actionId);
|
||||
}
|
||||
|
||||
void QnxDevice::executeAction(Core::Id actionId, QWidget *parent)
|
||||
{
|
||||
const QnxDevice::ConstPtr device =
|
||||
sharedFromThis().staticCast<const QnxDevice>();
|
||||
if (actionId == Core::Id(DeployQtLibrariesActionId)) {
|
||||
QnxDeployQtLibrariesDialog dialog(device, parent);
|
||||
dialog.exec();
|
||||
} else {
|
||||
RemoteLinux::LinuxDevice::executeAction(actionId, parent);
|
||||
}
|
||||
}
|
||||
|
||||
DeviceProcessSignalOperation::Ptr QnxDevice::signalOperation() const
|
||||
{
|
||||
return DeviceProcessSignalOperation::Ptr(
|
||||
new QnxDeviceProcessSignalOperation(sshParameters()));
|
||||
}
|
||||
|
||||
} // namespace Qnx
|
||||
Reference in New Issue
Block a user