2013-04-25 16:02:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2013-04-25 16:02:17 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
|
**
|
|
|
|
|
** 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
|
2014-10-01 13:21:18 +02:00
|
|
|
** conditions see http://www.qt.io/licensing. For further information
|
|
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2013-04-25 16:02:17 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2013-04-25 16:02:17 +02:00
|
|
|
**
|
|
|
|
|
** 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 "iossimulator.h"
|
|
|
|
|
#include "iosconstants.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
|
|
|
|
|
|
#include <QCoreApplication>
|
2014-02-25 16:02:02 +01:00
|
|
|
#include <QProcess>
|
2013-04-25 16:02:17 +02:00
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
namespace Ios {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2014-03-28 15:25:28 +01:00
|
|
|
IosSimulator::IosSimulator(Core::Id id)
|
2013-04-25 16:02:17 +02:00
|
|
|
: IDevice(Core::Id(Constants::IOS_SIMULATOR_TYPE),
|
|
|
|
|
IDevice::AutoDetected,
|
|
|
|
|
IDevice::Emulator,
|
|
|
|
|
id),
|
2014-02-25 16:02:02 +01:00
|
|
|
m_lastPort(Constants::IOS_SIMULATOR_PORT_START)
|
2013-04-25 16:02:17 +02:00
|
|
|
{
|
2013-11-07 13:16:42 +01:00
|
|
|
setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "iOS Simulator"));
|
2013-11-29 00:44:13 +01:00
|
|
|
setDeviceState(DeviceReadyToUse);
|
2013-04-25 16:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IosSimulator::IosSimulator()
|
|
|
|
|
: IDevice(Core::Id(Constants::IOS_SIMULATOR_TYPE),
|
|
|
|
|
IDevice::AutoDetected,
|
|
|
|
|
IDevice::Emulator,
|
2014-02-25 16:02:02 +01:00
|
|
|
Core::Id(Constants::IOS_SIMULATOR_DEVICE_ID)),
|
|
|
|
|
m_lastPort(Constants::IOS_SIMULATOR_PORT_START)
|
2013-04-25 16:02:17 +02:00
|
|
|
{
|
2013-11-07 13:16:42 +01:00
|
|
|
setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "iOS Simulator"));
|
2013-04-25 16:02:17 +02:00
|
|
|
setDeviceState(DeviceReadyToUse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IosSimulator::IosSimulator(const IosSimulator &other)
|
2014-02-25 16:02:02 +01:00
|
|
|
: IDevice(other), m_lastPort(other.m_lastPort)
|
2013-04-25 16:02:17 +02:00
|
|
|
{
|
2013-11-07 13:16:42 +01:00
|
|
|
setDisplayName(QCoreApplication::translate("Ios::Internal::IosSimulator", "iOS Simulator"));
|
2013-11-29 00:44:13 +01:00
|
|
|
setDeviceState(DeviceReadyToUse);
|
2013-04-25 16:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IDevice::DeviceInfo IosSimulator::deviceInformation() const
|
|
|
|
|
{
|
|
|
|
|
return IDevice::DeviceInfo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString IosSimulator::displayType() const
|
|
|
|
|
{
|
2013-11-07 13:16:42 +01:00
|
|
|
return QCoreApplication::translate("Ios::Internal::IosSimulator", "iOS Simulator");
|
2013-04-25 16:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IDeviceWidget *IosSimulator::createWidget()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<Core::Id> IosSimulator::actionIds() const
|
|
|
|
|
{
|
2013-11-11 19:15:40 +01:00
|
|
|
return QList<Core::Id>();
|
2013-04-25 16:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString IosSimulator::displayNameForActionId(Core::Id actionId) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(actionId)
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IosSimulator::executeAction(Core::Id actionId, QWidget *parent)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(actionId)
|
|
|
|
|
Q_UNUSED(parent)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DeviceProcessSignalOperation::Ptr IosSimulator::signalOperation() const
|
|
|
|
|
{
|
|
|
|
|
return DeviceProcessSignalOperation::Ptr();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IDevice::Ptr IosSimulator::clone() const
|
|
|
|
|
{
|
|
|
|
|
return IDevice::Ptr(new IosSimulator(*this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IosSimulator::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
IDevice::fromMap(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap IosSimulator::toMap() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap res = IDevice::toMap();
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-25 16:02:02 +01:00
|
|
|
quint16 IosSimulator::nextPort() const
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < 100; ++i) {
|
|
|
|
|
// use qrand instead?
|
|
|
|
|
if (++m_lastPort >= Constants::IOS_SIMULATOR_PORT_END)
|
|
|
|
|
m_lastPort = Constants::IOS_SIMULATOR_PORT_START;
|
|
|
|
|
QProcess portVerifier;
|
|
|
|
|
// this is a bit too broad (it does not check just listening sockets, but also connections
|
|
|
|
|
// to that port from this computer)
|
|
|
|
|
portVerifier.start(QLatin1String("lsof"), QStringList() << QLatin1String("-n")
|
|
|
|
|
<< QLatin1String("-P") << QLatin1String("-i")
|
|
|
|
|
<< QString::fromLatin1(":%1").arg(m_lastPort));
|
|
|
|
|
if (!portVerifier.waitForStarted())
|
|
|
|
|
break;
|
|
|
|
|
portVerifier.closeWriteChannel();
|
|
|
|
|
if (!portVerifier.waitForFinished())
|
|
|
|
|
break;
|
|
|
|
|
if (portVerifier.exitStatus() != QProcess::NormalExit
|
|
|
|
|
|| portVerifier.exitCode() != 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return m_lastPort;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool IosSimulator::canAutoDetectPorts() const
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-25 16:02:17 +02:00
|
|
|
IosSimulator::ConstPtr IosKitInformation::simulator(Kit *kit)
|
|
|
|
|
{
|
|
|
|
|
if (!kit)
|
|
|
|
|
return IosSimulator::ConstPtr();
|
|
|
|
|
ProjectExplorer::IDevice::ConstPtr dev = ProjectExplorer::DeviceKitInformation::device(kit);
|
|
|
|
|
IosSimulator::ConstPtr res = dev.dynamicCast<const IosSimulator>();
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Ios
|