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.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
2016-11-04 17:39:39 +01:00
|
|
|
#pragma once
|
2016-09-26 12:40:09 +02:00
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
#include <QObject>
|
|
|
|
|
#include <QFuture>
|
2016-09-26 12:40:09 +02:00
|
|
|
#include "utils/fileutils.h"
|
|
|
|
|
|
2016-11-16 09:45:27 +01:00
|
|
|
#include <memory>
|
|
|
|
|
|
2016-10-17 18:22:54 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
2016-09-26 12:40:09 +02:00
|
|
|
class QProcess;
|
2016-10-17 18:22:54 +02:00
|
|
|
QT_END_NAMESPACE
|
2016-09-26 12:40:09 +02:00
|
|
|
|
|
|
|
|
namespace Ios {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class IosDeviceType;
|
|
|
|
|
class SimulatorControlPrivate;
|
|
|
|
|
|
2016-11-04 17:39:39 +01:00
|
|
|
class SimulatorControl : public QObject
|
2016-09-26 12:40:09 +02:00
|
|
|
{
|
2016-11-04 17:39:39 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
struct ResponseData {
|
|
|
|
|
ResponseData(const QString & udid):
|
|
|
|
|
simUdid(udid) { }
|
|
|
|
|
|
|
|
|
|
QString simUdid;
|
|
|
|
|
bool success = false;
|
|
|
|
|
qint64 pID = -1;
|
|
|
|
|
QByteArray commandOutput = "";
|
|
|
|
|
// For response type APP_SPAWN, the processInstance represents the control process of the spwaned app
|
|
|
|
|
// For other response types its null.
|
|
|
|
|
std::shared_ptr<QProcess> processInstance;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit SimulatorControl(QObject* parent = nullptr);
|
|
|
|
|
~SimulatorControl();
|
2016-09-26 12:40:09 +02:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
static QList<IosDeviceType> availableSimulators();
|
|
|
|
|
static void updateAvailableSimulators();
|
|
|
|
|
static bool isSimulatorRunning(const QString &simUdid);
|
|
|
|
|
static QString bundleIdentifier(const Utils::FileName &bundlePath);
|
|
|
|
|
static QString bundleExecutable(const Utils::FileName &bundlePath);
|
2016-11-04 17:39:39 +01:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
QFuture<ResponseData> startSimulator(const QString &simUdid);
|
|
|
|
|
QFuture<ResponseData> installApp(const QString &simUdid, const Utils::FileName &bundlePath) const;
|
|
|
|
|
QFuture<ResponseData> spawnAppProcess(const QString &simUdid, const Utils::FileName &bundlePath,
|
|
|
|
|
bool waitForDebugger, const QStringList &extraArgs) const;
|
|
|
|
|
QFuture<ResponseData> launchApp(const QString &simUdid, const QString &bundleIdentifier,
|
|
|
|
|
qint64 spawnedPID = -1) const;
|
2016-09-26 12:40:09 +02:00
|
|
|
|
|
|
|
|
private:
|
2016-11-04 17:39:39 +01:00
|
|
|
SimulatorControlPrivate *d;
|
2016-09-26 12:40:09 +02:00
|
|
|
};
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Ios
|