2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2018 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2018-03-17 09:31:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <qmldebug/qmldebugcommandlinearguments.h>
|
|
|
|
|
|
2022-10-24 23:44:24 +02:00
|
|
|
#include <utils/environment.h>
|
2022-07-27 12:38:07 +02:00
|
|
|
#include <utils/port.h>
|
|
|
|
|
|
2018-03-17 09:31:56 +02:00
|
|
|
#include <QFuture>
|
|
|
|
|
|
2022-10-24 23:44:24 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QProcess;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2022-11-28 16:47:15 +01:00
|
|
|
namespace Utils { class FilePath; }
|
2022-10-24 23:44:24 +02:00
|
|
|
namespace ProjectExplorer { class RunWorker; }
|
|
|
|
|
|
2018-03-17 09:31:56 +02:00
|
|
|
namespace Android {
|
2018-05-07 17:13:52 +02:00
|
|
|
|
|
|
|
|
class AndroidDeviceInfo;
|
|
|
|
|
|
2018-03-17 09:31:56 +02:00
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
const int MIN_SOCKET_HANDSHAKE_PORT = 20001;
|
|
|
|
|
|
2018-05-09 12:20:54 +02:00
|
|
|
class AndroidRunnerWorker : public QObject
|
2018-03-17 09:31:56 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2018-05-15 12:50:41 +02:00
|
|
|
AndroidRunnerWorker(ProjectExplorer::RunWorker *runner, const QString &packageName);
|
2018-05-09 12:20:54 +02:00
|
|
|
~AndroidRunnerWorker() override;
|
2018-08-07 11:12:45 +02:00
|
|
|
|
2021-10-28 18:28:49 +03:00
|
|
|
bool runAdb(const QStringList &args, QString *stdOut = nullptr, QString *stdErr = nullptr,
|
|
|
|
|
const QByteArray &writeData = {});
|
2018-03-17 09:31:56 +02:00
|
|
|
void adbKill(qint64 pid);
|
|
|
|
|
QStringList selector() const;
|
|
|
|
|
void forceStop();
|
|
|
|
|
void logcatReadStandardError();
|
|
|
|
|
void logcatReadStandardOutput();
|
|
|
|
|
void logcatProcess(const QByteArray &text, QByteArray &buffer, bool onlyError);
|
2018-05-07 17:13:52 +02:00
|
|
|
void setAndroidDeviceInfo(const AndroidDeviceInfo &info);
|
2018-05-09 12:20:54 +02:00
|
|
|
void setIsPreNougat(bool isPreNougat) { m_isPreNougat = isPreNougat; }
|
2018-05-15 09:52:09 +02:00
|
|
|
void setIntentName(const QString &intentName) { m_intentName = intentName; }
|
2018-03-17 09:31:56 +02:00
|
|
|
|
2018-05-09 12:20:54 +02:00
|
|
|
void asyncStart();
|
|
|
|
|
void asyncStop();
|
|
|
|
|
void handleJdbWaiting();
|
|
|
|
|
void handleJdbSettled();
|
2018-03-17 09:31:56 +02:00
|
|
|
|
2020-06-30 16:06:10 +03:00
|
|
|
void removeForwardPort(const QString &port);
|
|
|
|
|
|
2018-03-17 09:31:56 +02:00
|
|
|
signals:
|
2020-04-15 04:33:06 +02:00
|
|
|
void remoteProcessStarted(Utils::Port debugServerPort, const QUrl &qmlServer, qint64 pid);
|
2018-03-17 09:31:56 +02:00
|
|
|
void remoteProcessFinished(const QString &errString = QString());
|
|
|
|
|
|
|
|
|
|
void remoteOutput(const QString &output);
|
|
|
|
|
void remoteErrorOutput(const QString &output);
|
|
|
|
|
|
2018-12-20 18:40:34 +01:00
|
|
|
private:
|
2018-05-09 12:20:54 +02:00
|
|
|
void asyncStartHelper();
|
2020-04-15 09:01:38 +02:00
|
|
|
bool startDebuggerServer(const QString &packageDir, const QString &debugServerFile, QString *errorStr = nullptr);
|
2018-12-20 18:40:34 +01:00
|
|
|
bool deviceFileExists(const QString &filePath);
|
|
|
|
|
bool packageFileExists(const QString& filePath);
|
2020-04-15 09:01:38 +02:00
|
|
|
bool uploadDebugServer(const QString &debugServerFileName);
|
2020-10-11 16:40:11 +03:00
|
|
|
void asyncStartLogcat();
|
2018-05-09 12:20:54 +02:00
|
|
|
|
2018-03-17 09:31:56 +02:00
|
|
|
enum class JDBState {
|
|
|
|
|
Idle,
|
|
|
|
|
Waiting,
|
|
|
|
|
Settled
|
|
|
|
|
};
|
2018-05-09 12:20:54 +02:00
|
|
|
void onProcessIdChanged(qint64 pid);
|
2018-05-08 11:54:32 +02:00
|
|
|
using Deleter = void (*)(QProcess *);
|
2018-03-17 09:31:56 +02:00
|
|
|
|
|
|
|
|
// Create the processes and timer in the worker thread, for correct thread affinity
|
2018-05-09 12:20:54 +02:00
|
|
|
bool m_isPreNougat = false;
|
2018-05-15 12:50:41 +02:00
|
|
|
QString m_packageName;
|
2018-05-15 09:52:09 +02:00
|
|
|
QString m_intentName;
|
2018-05-15 12:11:54 +02:00
|
|
|
QStringList m_beforeStartAdbCommands;
|
|
|
|
|
QStringList m_afterFinishAdbCommands;
|
2018-05-15 10:08:16 +02:00
|
|
|
QStringList m_amStartExtraArgs;
|
2018-03-17 09:31:56 +02:00
|
|
|
qint64 m_processPID = -1;
|
2018-05-08 11:54:32 +02:00
|
|
|
std::unique_ptr<QProcess, Deleter> m_adbLogcatProcess;
|
|
|
|
|
std::unique_ptr<QProcess, Deleter> m_psIsAlive;
|
2018-03-17 09:31:56 +02:00
|
|
|
QByteArray m_stdoutBuffer;
|
|
|
|
|
QByteArray m_stderrBuffer;
|
|
|
|
|
QFuture<qint64> m_pidFinder;
|
|
|
|
|
bool m_useCppDebugger = false;
|
2020-04-15 05:17:27 +02:00
|
|
|
bool m_useLldb = false; // FIXME: Un-implemented currently.
|
2018-03-17 09:31:56 +02:00
|
|
|
QmlDebug::QmlDebugServicesPreset m_qmlDebugServices;
|
2020-04-15 04:33:06 +02:00
|
|
|
Utils::Port m_localDebugServerPort; // Local end of forwarded debug socket.
|
2018-03-17 09:31:56 +02:00
|
|
|
QUrl m_qmlServer;
|
|
|
|
|
JDBState m_jdbState = JDBState::Idle;
|
|
|
|
|
Utils::Port m_localJdbServerPort;
|
2020-04-15 04:33:06 +02:00
|
|
|
std::unique_ptr<QProcess, Deleter> m_debugServerProcess; // gdbserver or lldb-server
|
2018-05-08 11:54:32 +02:00
|
|
|
std::unique_ptr<QProcess, Deleter> m_jdbProcess;
|
2018-05-07 17:13:52 +02:00
|
|
|
QString m_deviceSerialNumber;
|
|
|
|
|
int m_apiLevel = -1;
|
2018-05-07 18:06:30 +02:00
|
|
|
QString m_extraAppParams;
|
|
|
|
|
Utils::Environment m_extraEnvVars;
|
2022-11-28 16:47:15 +01:00
|
|
|
Utils::FilePath m_debugServerPath; // On build device, typically as part of ndk
|
2018-12-03 11:25:49 +02:00
|
|
|
bool m_useAppParamsForQmlDebugger = false;
|
2018-03-17 09:31:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Android
|