2016-09-26 12:40:09 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** 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 "simulatorcontrol.h"
|
|
|
|
|
#include "iosconfigurations.h"
|
|
|
|
|
|
2017-01-24 16:30:26 +01:00
|
|
|
#include "utils/algorithm.h"
|
2016-11-04 17:39:39 +01:00
|
|
|
#include "utils/runextensions.h"
|
|
|
|
|
#include "utils/qtcassert.h"
|
|
|
|
|
#include "utils/synchronousprocess.h"
|
2016-10-27 16:45:20 +02:00
|
|
|
|
2016-09-26 12:40:09 +02:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <chrono>
|
2016-11-04 17:39:39 +01:00
|
|
|
#include <memory>
|
2016-09-26 12:40:09 +02:00
|
|
|
|
|
|
|
|
#include <QJsonArray>
|
|
|
|
|
#include <QJsonDocument>
|
|
|
|
|
#include <QJsonObject>
|
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
using namespace std;
|
|
|
|
|
|
2016-09-26 12:40:09 +02:00
|
|
|
namespace {
|
|
|
|
|
Q_LOGGING_CATEGORY(simulatorLog, "qtc.ios.simulator")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace Ios {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
static int SIMULATOR_START_TIMEOUT = 60000;
|
2017-01-23 15:39:01 +01:00
|
|
|
|
|
|
|
|
// simctl Json Tags and tokens.
|
|
|
|
|
static QString DeviceTypeTag = QStringLiteral("devicetypes");
|
|
|
|
|
static QString DevicesTag = QStringLiteral("devices");
|
|
|
|
|
static QString AvailabilityTag = QStringLiteral("availability");
|
|
|
|
|
static QString UnavailabilityToken = QStringLiteral("unavailable");
|
|
|
|
|
static QString IdentifierTag = QStringLiteral("identifier");
|
|
|
|
|
static QString RuntimesTag = QStringLiteral("runtimes");
|
|
|
|
|
static QString NameTag = QStringLiteral("name");
|
|
|
|
|
static QString StateTag = QStringLiteral("state");
|
|
|
|
|
static QString UdidTag = QStringLiteral("udid");
|
|
|
|
|
static QString RuntimeVersionTag = QStringLiteral("version");
|
|
|
|
|
static QString BuildVersionTag = QStringLiteral("buildversion");
|
2016-09-26 12:40:09 +02:00
|
|
|
|
2017-01-09 12:43:00 +01:00
|
|
|
static bool checkForTimeout(const chrono::high_resolution_clock::time_point &start, int msecs = 10000)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
|
|
|
|
bool timedOut = false;
|
2016-11-04 17:39:39 +01:00
|
|
|
auto end = chrono::high_resolution_clock::now();
|
|
|
|
|
if (chrono::duration_cast<chrono::milliseconds>(end-start).count() > msecs)
|
2016-09-26 12:40:09 +02:00
|
|
|
timedOut = true;
|
|
|
|
|
return timedOut;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
static bool runCommand(QString command, const QStringList &args, QByteArray *output)
|
|
|
|
|
{
|
|
|
|
|
Utils::SynchronousProcess p;
|
2016-12-19 18:41:00 +01:00
|
|
|
p.setTimeoutS(-1);
|
2016-11-04 17:39:39 +01:00
|
|
|
Utils::SynchronousProcessResponse resp = p.runBlocking(command, args);
|
|
|
|
|
if (output)
|
|
|
|
|
*output = resp.allRawOutput();
|
|
|
|
|
return resp.result == Utils::SynchronousProcessResponse::Finished;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-23 15:13:19 +01:00
|
|
|
static bool runSimCtlCommand(QStringList args, QByteArray *output)
|
2016-10-27 16:22:03 +02:00
|
|
|
{
|
|
|
|
|
args.prepend(QStringLiteral("simctl"));
|
2017-01-23 15:13:19 +01:00
|
|
|
return runCommand(QStringLiteral("xcrun"), args, output);
|
2016-11-04 17:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
2017-01-23 15:39:01 +01:00
|
|
|
static QList<DeviceTypeInfo> getAvailableDeviceTypes()
|
|
|
|
|
{
|
|
|
|
|
QList<DeviceTypeInfo> deviceTypes;
|
|
|
|
|
QByteArray output;
|
|
|
|
|
runSimCtlCommand({QLatin1String("list"), QLatin1String("-j"), DeviceTypeTag}, &output);
|
|
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(output);
|
|
|
|
|
if (!doc.isNull()) {
|
|
|
|
|
const QJsonArray runtimesArray = doc.object().value(DeviceTypeTag).toArray();
|
|
|
|
|
foreach (const QJsonValue deviceTypeValue, runtimesArray) {
|
|
|
|
|
QJsonObject deviceTypeObject = deviceTypeValue.toObject();
|
|
|
|
|
if (!deviceTypeObject.value(AvailabilityTag).toString().contains(UnavailabilityToken)) {
|
|
|
|
|
DeviceTypeInfo deviceType;
|
|
|
|
|
deviceType.name = deviceTypeObject.value(NameTag).toString("unknown");
|
|
|
|
|
deviceType.identifier = deviceTypeObject.value(IdentifierTag).toString("unknown");
|
|
|
|
|
deviceTypes.append(deviceType);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
stable_sort(deviceTypes.begin(), deviceTypes.end());
|
|
|
|
|
} else {
|
|
|
|
|
qCDebug(simulatorLog) << "Error parsing json output from simctl. Output:" << output;
|
|
|
|
|
}
|
|
|
|
|
return deviceTypes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static QList<RuntimeInfo> getAvailableRuntimes()
|
|
|
|
|
{
|
|
|
|
|
QList<RuntimeInfo> runtimes;
|
|
|
|
|
QByteArray output;
|
|
|
|
|
runSimCtlCommand({QLatin1String("list"), QLatin1String("-j"), RuntimesTag}, &output);
|
|
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(output);
|
|
|
|
|
if (!doc.isNull()) {
|
|
|
|
|
const QJsonArray runtimesArray = doc.object().value(RuntimesTag).toArray();
|
|
|
|
|
foreach (const QJsonValue runtimeValue, runtimesArray) {
|
|
|
|
|
QJsonObject runtimeObject = runtimeValue.toObject();
|
|
|
|
|
if (!runtimeObject.value(AvailabilityTag).toString().contains(UnavailabilityToken)) {
|
|
|
|
|
RuntimeInfo runtime;
|
|
|
|
|
runtime.name = runtimeObject.value(NameTag).toString("unknown");
|
|
|
|
|
runtime.build = runtimeObject.value(BuildVersionTag).toString("unknown");
|
|
|
|
|
runtime.identifier = runtimeObject.value(IdentifierTag).toString("unknown");
|
|
|
|
|
runtime.version = runtimeObject.value(RuntimeVersionTag).toString("unknown");
|
|
|
|
|
runtimes.append(runtime);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
stable_sort(runtimes.begin(), runtimes.end());
|
|
|
|
|
} else {
|
|
|
|
|
qCDebug(simulatorLog) << "Error parsing json output from simctl. Output:" << output;
|
|
|
|
|
}
|
|
|
|
|
return runtimes;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
class SimulatorControlPrivate {
|
2016-09-26 12:40:09 +02:00
|
|
|
private:
|
2016-11-04 17:39:39 +01:00
|
|
|
SimulatorControlPrivate();
|
2016-09-26 12:40:09 +02:00
|
|
|
~SimulatorControlPrivate();
|
|
|
|
|
|
2017-01-24 16:30:26 +01:00
|
|
|
static SimulatorInfo deviceInfo(const QString &simUdid);
|
2016-11-04 17:39:39 +01:00
|
|
|
static QString bundleIdentifier(const Utils::FileName &bundlePath);
|
|
|
|
|
static QString bundleExecutable(const Utils::FileName &bundlePath);
|
|
|
|
|
|
|
|
|
|
void startSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi, const QString &simUdid);
|
|
|
|
|
void installApp(QFutureInterface<SimulatorControl::ResponseData> &fi, const QString &simUdid,
|
|
|
|
|
const Utils::FileName &bundlePath);
|
|
|
|
|
void launchApp(QFutureInterface<SimulatorControl::ResponseData> &fi, const QString &simUdid,
|
2016-12-19 18:41:00 +01:00
|
|
|
const QString &bundleIdentifier, bool waitForDebugger,
|
2016-12-21 18:28:42 +01:00
|
|
|
const QStringList &extraArgs, const QString &stdoutPath,
|
|
|
|
|
const QString &stderrPath);
|
2017-01-23 15:39:01 +01:00
|
|
|
void deleteSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid);
|
|
|
|
|
void resetSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid);
|
|
|
|
|
void renameSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid, const QString &newName);
|
|
|
|
|
void createSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &name, const DeviceTypeInfo &deviceType,
|
|
|
|
|
const RuntimeInfo &runtime);
|
|
|
|
|
void takeSceenshot(QFutureInterface<SimulatorControl::ResponseData> &fi, const QString &simUdid,
|
|
|
|
|
const QString &filePath);
|
2016-11-04 17:39:39 +01:00
|
|
|
|
2017-01-24 16:30:26 +01:00
|
|
|
static QList<SimulatorInfo> availableDevices;
|
2017-01-23 15:39:01 +01:00
|
|
|
static QList<DeviceTypeInfo> availableDeviceTypes;
|
|
|
|
|
static QList<RuntimeInfo> availableRuntimes;
|
2016-09-26 12:40:09 +02:00
|
|
|
friend class SimulatorControl;
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
SimulatorControl::SimulatorControl(QObject *parent) :
|
|
|
|
|
QObject(parent),
|
|
|
|
|
d(new SimulatorControlPrivate)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
}
|
2016-09-26 12:40:09 +02:00
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
SimulatorControl::~SimulatorControl()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2017-01-24 16:30:26 +01:00
|
|
|
QList<SimulatorInfo> SimulatorControl::availableSimulators()
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
return SimulatorControlPrivate::availableDevices;
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2017-01-24 16:30:26 +01:00
|
|
|
static QList<SimulatorInfo> getAllSimulatorDevices()
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2017-01-24 16:30:26 +01:00
|
|
|
QList<SimulatorInfo> simulatorDevices;
|
2017-01-23 15:13:19 +01:00
|
|
|
QByteArray output;
|
2017-01-23 15:39:01 +01:00
|
|
|
runSimCtlCommand({QLatin1String("list"), QLatin1String("-j"), DevicesTag}, &output);
|
2016-09-26 12:40:09 +02:00
|
|
|
QJsonDocument doc = QJsonDocument::fromJson(output);
|
|
|
|
|
if (!doc.isNull()) {
|
2017-01-23 15:39:01 +01:00
|
|
|
const QJsonObject runtimeObject = doc.object().value(DevicesTag).toObject();
|
2017-01-24 16:30:26 +01:00
|
|
|
foreach (const QString &runtime, runtimeObject.keys()) {
|
|
|
|
|
const QJsonArray devices = runtimeObject.value(runtime).toArray();
|
|
|
|
|
foreach (const QJsonValue deviceValue, devices) {
|
|
|
|
|
QJsonObject deviceObject = deviceValue.toObject();
|
|
|
|
|
SimulatorInfo device;
|
2017-01-23 15:39:01 +01:00
|
|
|
device.identifier = deviceObject.value(UdidTag).toString();
|
|
|
|
|
device.name = deviceObject.value(NameTag).toString();
|
2017-01-24 16:30:26 +01:00
|
|
|
device.runtimeName = runtime;
|
2017-01-23 15:39:01 +01:00
|
|
|
const QString availableStr = deviceObject.value(AvailabilityTag).toString();
|
|
|
|
|
device.available = !availableStr.contains(UnavailabilityToken);
|
|
|
|
|
device.state = deviceObject.value(StateTag).toString();
|
2017-01-24 16:30:26 +01:00
|
|
|
simulatorDevices.append(device);
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
}
|
2017-01-24 16:30:26 +01:00
|
|
|
stable_sort(simulatorDevices.begin(), simulatorDevices.end());
|
2016-09-26 12:40:09 +02:00
|
|
|
} else {
|
|
|
|
|
qCDebug(simulatorLog) << "Error parsing json output from simctl. Output:" << output;
|
|
|
|
|
}
|
2017-01-24 16:30:26 +01:00
|
|
|
return simulatorDevices;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static QList<SimulatorInfo> getAvailableSimulators()
|
|
|
|
|
{
|
|
|
|
|
auto filterSim = [](const SimulatorInfo &device) { return device.available;};
|
|
|
|
|
QList<SimulatorInfo> availableDevices = Utils::filtered(getAllSimulatorDevices(), filterSim);
|
2016-10-27 16:45:20 +02:00
|
|
|
return availableDevices;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-23 15:39:01 +01:00
|
|
|
QFuture<QList<DeviceTypeInfo> > SimulatorControl::updateDeviceTypes()
|
|
|
|
|
{
|
|
|
|
|
QFuture< QList<DeviceTypeInfo> > future = Utils::runAsync(getAvailableDeviceTypes);
|
|
|
|
|
Utils::onResultReady(future, [](const QList<DeviceTypeInfo> &deviceTypes) {
|
|
|
|
|
SimulatorControlPrivate::availableDeviceTypes = deviceTypes;
|
|
|
|
|
});
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<RuntimeInfo> SimulatorControl::availableRuntimes()
|
|
|
|
|
{
|
|
|
|
|
return SimulatorControlPrivate::availableRuntimes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFuture<QList<RuntimeInfo> > SimulatorControl::updateRuntimes()
|
|
|
|
|
{
|
|
|
|
|
QFuture< QList<RuntimeInfo> > future = Utils::runAsync(getAvailableRuntimes);
|
|
|
|
|
Utils::onResultReady(future, [](const QList<RuntimeInfo> &runtimes) {
|
|
|
|
|
SimulatorControlPrivate::availableRuntimes = runtimes;
|
|
|
|
|
});
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFuture< QList<SimulatorInfo> > SimulatorControl::updateAvailableSimulators()
|
2016-10-27 16:45:20 +02:00
|
|
|
{
|
2017-01-24 16:30:26 +01:00
|
|
|
QFuture< QList<SimulatorInfo> > future = Utils::runAsync(getAvailableSimulators);
|
|
|
|
|
Utils::onResultReady(future, [](const QList<SimulatorInfo> &devices) {
|
2016-11-04 17:39:39 +01:00
|
|
|
SimulatorControlPrivate::availableDevices = devices;
|
2016-10-27 16:45:20 +02:00
|
|
|
});
|
2017-01-23 15:39:01 +01:00
|
|
|
return future;
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
bool SimulatorControl::isSimulatorRunning(const QString &simUdid)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
if (simUdid.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
return SimulatorControlPrivate::deviceInfo(simUdid).isBooted();
|
|
|
|
|
}
|
2016-09-26 12:40:09 +02:00
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
QString SimulatorControl::bundleIdentifier(const Utils::FileName &bundlePath)
|
|
|
|
|
{
|
|
|
|
|
return SimulatorControlPrivate::bundleIdentifier(bundlePath);
|
|
|
|
|
}
|
2016-09-26 12:40:09 +02:00
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
QString SimulatorControl::bundleExecutable(const Utils::FileName &bundlePath)
|
|
|
|
|
{
|
|
|
|
|
return SimulatorControlPrivate::bundleExecutable(bundlePath);
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2016-12-19 18:41:00 +01:00
|
|
|
QFuture<SimulatorControl::ResponseData> SimulatorControl::startSimulator(const QString &simUdid) const
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
return Utils::runAsync(&SimulatorControlPrivate::startSimulator, d, simUdid);
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
QFuture<SimulatorControl::ResponseData>
|
|
|
|
|
SimulatorControl::installApp(const QString &simUdid, const Utils::FileName &bundlePath) const
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
return Utils::runAsync(&SimulatorControlPrivate::installApp, d, simUdid, bundlePath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFuture<SimulatorControl::ResponseData>
|
|
|
|
|
SimulatorControl::launchApp(const QString &simUdid, const QString &bundleIdentifier,
|
2016-12-21 18:28:42 +01:00
|
|
|
bool waitForDebugger, const QStringList &extraArgs,
|
|
|
|
|
const QString &stdoutPath, const QString &stderrPath) const
|
2016-11-04 17:39:39 +01:00
|
|
|
{
|
2016-12-19 18:41:00 +01:00
|
|
|
return Utils::runAsync(&SimulatorControlPrivate::launchApp, d, simUdid, bundleIdentifier,
|
2016-12-21 18:28:42 +01:00
|
|
|
waitForDebugger, extraArgs, stdoutPath, stderrPath);
|
2016-11-04 17:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
2017-01-23 15:39:01 +01:00
|
|
|
QFuture<SimulatorControl::ResponseData> SimulatorControl::deleteSimulator(const QString &simUdid) const
|
|
|
|
|
{
|
|
|
|
|
return Utils::runAsync(&SimulatorControlPrivate::deleteSimulator, d, simUdid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFuture<SimulatorControl::ResponseData> SimulatorControl::resetSimulator(const QString &simUdid) const
|
|
|
|
|
{
|
|
|
|
|
return Utils::runAsync(&SimulatorControlPrivate::resetSimulator, d, simUdid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFuture<SimulatorControl::ResponseData> SimulatorControl::renameSimulator(const QString &simUdid,
|
|
|
|
|
const QString &newName) const
|
|
|
|
|
{
|
|
|
|
|
return Utils::runAsync(&SimulatorControlPrivate::renameSimulator, d, simUdid, newName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFuture<SimulatorControl::ResponseData>
|
|
|
|
|
SimulatorControl::createSimulator(const QString &name,
|
|
|
|
|
const DeviceTypeInfo &deviceType,
|
|
|
|
|
const RuntimeInfo &runtime)
|
|
|
|
|
{
|
|
|
|
|
return Utils::runAsync(&SimulatorControlPrivate::createSimulator, d, name, deviceType, runtime);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFuture<SimulatorControl::ResponseData> SimulatorControl::takeSceenshot(const QString &simUdid,
|
|
|
|
|
const QString &filePath)
|
|
|
|
|
{
|
|
|
|
|
return Utils::runAsync(&SimulatorControlPrivate::takeSceenshot, d, simUdid, filePath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Static members
|
2017-01-24 16:30:26 +01:00
|
|
|
QList<SimulatorInfo> SimulatorControlPrivate::availableDevices;
|
2017-01-23 15:39:01 +01:00
|
|
|
QList<DeviceTypeInfo> SimulatorControlPrivate::availableDeviceTypes;
|
|
|
|
|
QList<RuntimeInfo> SimulatorControlPrivate::availableRuntimes;
|
2016-11-04 17:39:39 +01:00
|
|
|
|
|
|
|
|
SimulatorControlPrivate::SimulatorControlPrivate()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SimulatorControlPrivate::~SimulatorControlPrivate()
|
|
|
|
|
{
|
|
|
|
|
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2017-01-24 16:30:26 +01:00
|
|
|
SimulatorInfo SimulatorControlPrivate::deviceInfo(const QString &simUdid)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2017-01-24 16:30:26 +01:00
|
|
|
auto matchDevice = [simUdid](const SimulatorInfo &device) {
|
|
|
|
|
return device.identifier == simUdid;
|
|
|
|
|
};
|
|
|
|
|
SimulatorInfo device = Utils::findOrDefault(getAllSimulatorDevices(), matchDevice);
|
|
|
|
|
if (device.identifier.isEmpty())
|
2016-11-04 17:39:39 +01:00
|
|
|
qCDebug(simulatorLog) << "Cannot find device info. Invalid UDID.";
|
2017-01-24 16:30:26 +01:00
|
|
|
|
|
|
|
|
return device;
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
QString SimulatorControlPrivate::bundleIdentifier(const Utils::FileName &bundlePath)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
|
|
|
|
QString bundleID;
|
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
if (bundlePath.exists()) {
|
|
|
|
|
CFStringRef cFBundlePath = bundlePath.toString().toCFString();
|
|
|
|
|
CFURLRef bundle_url = CFURLCreateWithFileSystemPath (kCFAllocatorDefault, cFBundlePath, kCFURLPOSIXPathStyle, true);
|
|
|
|
|
CFRelease(cFBundlePath);
|
|
|
|
|
CFBundleRef bundle = CFBundleCreate (kCFAllocatorDefault, bundle_url);
|
|
|
|
|
CFRelease(bundle_url);
|
|
|
|
|
CFStringRef cFBundleID = CFBundleGetIdentifier(bundle);
|
|
|
|
|
bundleID = QString::fromCFString(cFBundleID).trimmed();
|
|
|
|
|
CFRelease(bundle);
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
Q_UNUSED(bundlePath)
|
|
|
|
|
#endif
|
|
|
|
|
return bundleID;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
QString SimulatorControlPrivate::bundleExecutable(const Utils::FileName &bundlePath)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
|
|
|
|
QString executable;
|
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
if (bundlePath.exists()) {
|
|
|
|
|
CFStringRef cFBundlePath = bundlePath.toString().toCFString();
|
|
|
|
|
CFURLRef bundle_url = CFURLCreateWithFileSystemPath (kCFAllocatorDefault, cFBundlePath, kCFURLPOSIXPathStyle, true);
|
|
|
|
|
CFRelease(cFBundlePath);
|
|
|
|
|
CFBundleRef bundle = CFBundleCreate (kCFAllocatorDefault, bundle_url);
|
|
|
|
|
CFStringRef cFStrExecutableName = (CFStringRef)CFBundleGetValueForInfoDictionaryKey(bundle, kCFBundleExecutableKey);
|
|
|
|
|
executable = QString::fromCFString(cFStrExecutableName).trimmed();
|
|
|
|
|
CFRelease(bundle);
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
Q_UNUSED(bundlePath)
|
|
|
|
|
#endif
|
|
|
|
|
return executable;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
void SimulatorControlPrivate::startSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
SimulatorControl::ResponseData response(simUdid);
|
2017-01-26 13:59:09 +01:00
|
|
|
SimulatorInfo simInfo = deviceInfo(simUdid);
|
2017-04-28 08:27:10 +02:00
|
|
|
|
|
|
|
|
if (!simInfo.available) {
|
|
|
|
|
qCDebug(simulatorLog) << "Simulator device is not available." << simUdid;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Shutting down state checks are for the case when simulator start is called within a short
|
|
|
|
|
// interval of closing the previous interval of the simulator. We wait untill the shutdown
|
|
|
|
|
// process is complete.
|
|
|
|
|
auto start = chrono::high_resolution_clock::now();
|
|
|
|
|
while (simInfo.isShuttingDown() && !checkForTimeout(start, SIMULATOR_START_TIMEOUT)) {
|
|
|
|
|
// Wait till the simulator shuts down, if doing so.
|
|
|
|
|
QThread::currentThread()->msleep(100);
|
|
|
|
|
simInfo = deviceInfo(simUdid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (simInfo.isShuttingDown()) {
|
|
|
|
|
qCDebug(simulatorLog) << "Can not start Simulator device. "
|
|
|
|
|
<< "Previous instance taking too long to shutdown." << simInfo;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (simInfo.isShutdown()) {
|
2016-11-04 17:39:39 +01:00
|
|
|
const QString cmd = IosConfigurations::developerPath()
|
|
|
|
|
.appendPath(QStringLiteral("/Applications/Simulator.app/Contents/MacOS/Simulator"))
|
|
|
|
|
.toString();
|
|
|
|
|
const QStringList args({QStringLiteral("--args"), QStringLiteral("-CurrentDeviceUDID"), simUdid});
|
|
|
|
|
|
|
|
|
|
if (QProcess::startDetached(cmd, args)) {
|
|
|
|
|
if (fi.isCanceled())
|
|
|
|
|
return;
|
|
|
|
|
// At this point the sim device exists, available and was not running.
|
|
|
|
|
// So the simulator is started and we'll wait for it to reach to a state
|
|
|
|
|
// where we can interact with it.
|
2017-04-28 08:27:10 +02:00
|
|
|
start = chrono::high_resolution_clock::now();
|
2017-01-24 16:30:26 +01:00
|
|
|
SimulatorInfo info;
|
2016-11-04 17:39:39 +01:00
|
|
|
do {
|
|
|
|
|
info = deviceInfo(simUdid);
|
|
|
|
|
if (fi.isCanceled())
|
|
|
|
|
return;
|
|
|
|
|
} while (!info.isBooted()
|
|
|
|
|
&& !checkForTimeout(start, SIMULATOR_START_TIMEOUT));
|
|
|
|
|
if (info.isBooted()) {
|
|
|
|
|
response.success = true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
qCDebug(simulatorLog) << "Error starting simulator.";
|
|
|
|
|
}
|
2017-04-28 08:27:10 +02:00
|
|
|
} else {
|
|
|
|
|
qCDebug(simulatorLog) << "Can not start Simulator device. Simulator not in shutdown state."
|
|
|
|
|
<< simInfo;
|
2016-11-04 17:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!fi.isCanceled()) {
|
|
|
|
|
fi.reportResult(response);
|
|
|
|
|
}
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
void SimulatorControlPrivate::installApp(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid, const Utils::FileName &bundlePath)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
QTC_CHECK(bundlePath.exists());
|
|
|
|
|
|
2017-01-23 15:13:19 +01:00
|
|
|
SimulatorControl::ResponseData response(simUdid);
|
|
|
|
|
response.success = runSimCtlCommand({QStringLiteral("install"), simUdid, bundlePath.toString()},
|
|
|
|
|
&response.commandOutput);
|
|
|
|
|
if (!fi.isCanceled())
|
2016-11-04 17:39:39 +01:00
|
|
|
fi.reportResult(response);
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2016-12-19 18:41:00 +01:00
|
|
|
void SimulatorControlPrivate::launchApp(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid, const QString &bundleIdentifier,
|
2016-12-21 18:28:42 +01:00
|
|
|
bool waitForDebugger, const QStringList &extraArgs,
|
|
|
|
|
const QString &stdoutPath, const QString &stderrPath)
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
SimulatorControl::ResponseData response(simUdid);
|
2016-12-19 18:41:00 +01:00
|
|
|
if (!bundleIdentifier.isEmpty() && !fi.isCanceled()) {
|
|
|
|
|
QStringList args({QStringLiteral("launch"), simUdid, bundleIdentifier});
|
2016-11-04 17:39:39 +01:00
|
|
|
|
2016-12-21 18:28:42 +01:00
|
|
|
// simctl usage documentation : Note: Log output is often directed to stderr, not stdout.
|
|
|
|
|
if (!stdoutPath.isEmpty())
|
|
|
|
|
args.insert(1, QStringLiteral("--stderr=%1").arg(stdoutPath));
|
|
|
|
|
|
|
|
|
|
if (!stderrPath.isEmpty())
|
|
|
|
|
args.insert(1, QStringLiteral("--stdout=%1").arg(stderrPath));
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
if (waitForDebugger)
|
2016-12-19 18:41:00 +01:00
|
|
|
args.insert(1, QStringLiteral("-w"));
|
2016-09-26 12:40:09 +02:00
|
|
|
|
2016-12-19 18:41:00 +01:00
|
|
|
foreach (const QString extraArgument, extraArgs) {
|
|
|
|
|
if (!extraArgument.trimmed().isEmpty())
|
|
|
|
|
args << extraArgument;
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2017-01-23 15:13:19 +01:00
|
|
|
if (runSimCtlCommand(args, &response.commandOutput)) {
|
|
|
|
|
const QByteArray pIdStr = response.commandOutput.trimmed().split(' ').last().trimmed();
|
|
|
|
|
bool validPid = false;
|
|
|
|
|
response.pID = pIdStr.toLongLong(&validPid);
|
|
|
|
|
response.success = validPid;
|
|
|
|
|
}
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
if (!fi.isCanceled()) {
|
|
|
|
|
fi.reportResult(response);
|
|
|
|
|
}
|
2016-09-26 12:40:09 +02:00
|
|
|
}
|
|
|
|
|
|
2017-01-23 15:39:01 +01:00
|
|
|
void SimulatorControlPrivate::deleteSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid)
|
|
|
|
|
{
|
|
|
|
|
SimulatorControl::ResponseData response(simUdid);
|
|
|
|
|
response.success = runSimCtlCommand({QStringLiteral("delete"), simUdid}, &response.commandOutput);
|
|
|
|
|
|
|
|
|
|
if (!fi.isCanceled())
|
|
|
|
|
fi.reportResult(response);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SimulatorControlPrivate::resetSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid)
|
|
|
|
|
{
|
|
|
|
|
SimulatorControl::ResponseData response(simUdid);
|
|
|
|
|
response.success = runSimCtlCommand({QStringLiteral("erase"), simUdid}, &response.commandOutput);
|
|
|
|
|
|
|
|
|
|
if (!fi.isCanceled())
|
|
|
|
|
fi.reportResult(response);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SimulatorControlPrivate::renameSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid, const QString &newName)
|
|
|
|
|
{
|
|
|
|
|
SimulatorControl::ResponseData response(simUdid);
|
|
|
|
|
response.success = runSimCtlCommand({QStringLiteral("rename"), simUdid, newName},
|
|
|
|
|
&response.commandOutput);
|
|
|
|
|
|
|
|
|
|
if (!fi.isCanceled())
|
|
|
|
|
fi.reportResult(response);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SimulatorControlPrivate::createSimulator(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &name,
|
|
|
|
|
const DeviceTypeInfo &deviceType,
|
|
|
|
|
const RuntimeInfo &runtime)
|
|
|
|
|
{
|
|
|
|
|
SimulatorControl::ResponseData response("Invalid");
|
|
|
|
|
if (!name.isEmpty()) {
|
2017-02-22 15:09:35 +01:00
|
|
|
response.success = runSimCtlCommand({QStringLiteral("create"), name,
|
|
|
|
|
deviceType.identifier,
|
|
|
|
|
runtime.identifier},
|
2017-01-23 15:39:01 +01:00
|
|
|
&response.commandOutput);
|
|
|
|
|
response.simUdid = response.success ? QString::fromLatin1(response.commandOutput.trimmed())
|
|
|
|
|
: QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!fi.isCanceled())
|
|
|
|
|
fi.reportResult(response);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SimulatorControlPrivate::takeSceenshot(QFutureInterface<SimulatorControl::ResponseData> &fi,
|
|
|
|
|
const QString &simUdid, const QString &filePath)
|
|
|
|
|
{
|
|
|
|
|
SimulatorControl::ResponseData response(simUdid);
|
2017-02-22 15:09:35 +01:00
|
|
|
response.success = runSimCtlCommand({QStringLiteral("io"), simUdid, QStringLiteral("screenshot"),
|
|
|
|
|
filePath},
|
2017-01-23 15:39:01 +01:00
|
|
|
&response.commandOutput);
|
|
|
|
|
if (!fi.isCanceled())
|
|
|
|
|
fi.reportResult(response);
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-28 08:27:10 +02:00
|
|
|
QDebug &operator<<(QDebug &stream, const SimulatorInfo &info)
|
|
|
|
|
{
|
|
|
|
|
stream << "Name: " << info.name << "UDID: " << info.identifier
|
|
|
|
|
<< "Availability: " << info.available << "State: " << info.state
|
|
|
|
|
<< "Runtime: " << info.runtimeName;
|
|
|
|
|
return stream;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-27 11:00:20 +01:00
|
|
|
bool SimulatorInfo::operator==(const SimulatorInfo &other) const
|
|
|
|
|
{
|
|
|
|
|
return identifier == other.identifier
|
|
|
|
|
&& state == other.state
|
|
|
|
|
&& name == other.name
|
|
|
|
|
&& available == other.available
|
|
|
|
|
&& runtimeName == other.runtimeName;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-26 12:40:09 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Ios
|