forked from qt-creator/qt-creator
Change-Id: I017e020c8b2a53d6f4a2422a0a0856044e768247 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: hjk <hjk@qt.io>
91 lines
3.0 KiB
C++
91 lines
3.0 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
** 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.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "androidconfigurations.h"
|
|
|
|
#include <projectexplorer/runcontrol.h>
|
|
#include <qmldebug/qmldebugcommandlinearguments.h>
|
|
#include <qmldebug/qmloutputparser.h>
|
|
|
|
#include <QObject>
|
|
#include <QTcpSocket>
|
|
#include <QThread>
|
|
#include <QTimer>
|
|
|
|
namespace Android {
|
|
namespace Internal {
|
|
|
|
class AndroidRunnerWorker;
|
|
|
|
class AndroidRunner : public ProjectExplorer::RunWorker
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AndroidRunner(ProjectExplorer::RunControl *runControl,
|
|
const QString &intentName = QString());
|
|
~AndroidRunner() override;
|
|
|
|
Utils::Port debugServerPort() const { return m_debugServerPort; } // GDB or LLDB
|
|
QUrl qmlServer() const { return m_qmlServer; }
|
|
Utils::ProcessHandle pid() const { return m_pid; }
|
|
|
|
void start() override;
|
|
void stop() override;
|
|
|
|
signals:
|
|
void asyncStart();
|
|
void asyncStop();
|
|
void qmlServerReady(const QUrl &serverUrl);
|
|
void androidDeviceInfoChanged(const Android::AndroidDeviceInfo &deviceInfo);
|
|
void avdDetected();
|
|
|
|
private:
|
|
void qmlServerPortReady(Utils::Port port);
|
|
void remoteOutput(const QString &output);
|
|
void remoteErrorOutput(const QString &output);
|
|
void gotRemoteOutput(const QString &output);
|
|
void handleRemoteProcessStarted(Utils::Port debugServerPort, const QUrl &qmlServer, qint64 pid);
|
|
void handleRemoteProcessFinished(const QString &errString = QString());
|
|
void checkAVD();
|
|
void launchAVD();
|
|
|
|
QString m_packageName;
|
|
QString m_launchedAVDName;
|
|
QThread m_thread;
|
|
QTimer m_checkAVDTimer;
|
|
QScopedPointer<AndroidRunnerWorker> m_worker;
|
|
QPointer<ProjectExplorer::Target> m_target;
|
|
Utils::Port m_debugServerPort;
|
|
QUrl m_qmlServer;
|
|
Utils::ProcessHandle m_pid;
|
|
QmlDebug::QmlOutputParser m_outputParser;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Android
|