aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/ios/simulatorcontrol.h
blob: a6ee6099b19506e3dd439ac06076ef67f7d20dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <utils/filepath.h>

#include <QObject>
#include <QFuture>
#include <QDebug>

#include <memory>

namespace Ios::Internal {

class SimulatorControlPrivate;

class SimulatorEntity
{
public:
    QString name;
    QString identifier;
    bool operator <(const SimulatorEntity &o) const
    {
        return name < o.name;
    }
};

class SimulatorInfo : public SimulatorEntity
{
public:
    QString toString() const;

    bool isBooted() const { return state == "Booted"; }
    bool isShuttingDown() const { return state == "Shutting Down"; }
    bool isShutdown() const { return state == "Shutdown"; }
    bool operator==(const SimulatorInfo &other) const;
    bool operator!=(const SimulatorInfo &other) const { return !(*this == other); }
    bool available;
    QString state;
    QString runtimeName;
};

class SimulatorControl
{
public:
    struct ResponseData {
        ResponseData(const QString &udid)
            : simUdid(udid)
        {}

        QString simUdid;
        qint64 inferiorPid{-1};
    };

    using Response = Utils::Result<ResponseData>;

    static QList<SimulatorInfo> availableSimulators();
    static QFuture<QList<SimulatorInfo>> updateAvailableSimulators(QObject *context);
    static bool isSimulatorRunning(const QString &simUdid);
    static QString bundleIdentifier(const Utils::FilePath &bundlePath);

    static QFuture<Response> startSimulator(const QString &simUdid);
    static QFuture<Response> installApp(const QString &simUdid, const Utils::FilePath &bundlePath);
    static QFuture<Response> launchApp(const QString &simUdid,
                                       const QString &bundleIdentifier,
                                       bool waitForDebugger,
                                       const QStringList &extraArgs,
                                       const QString &stdoutPath = {},
                                       const QString &stderrPath = {});
};

} // Ios::Internal

Q_DECLARE_METATYPE(Ios::Internal::SimulatorInfo)