2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
#include "androidrunner.h"
|
|
|
|
|
|
2018-05-04 16:01:13 +02:00
|
|
|
#include "androidconstants.h"
|
2013-09-17 18:24:57 +02:00
|
|
|
#include "androiddeployqtstep.h"
|
2012-04-18 20:30:57 +03:00
|
|
|
#include "androidconfigurations.h"
|
|
|
|
|
#include "androidrunconfiguration.h"
|
2012-04-24 15:49:09 +02:00
|
|
|
#include "androidmanager.h"
|
2017-04-03 11:11:17 +02:00
|
|
|
#include "androidavdmanager.h"
|
2018-03-17 09:31:56 +02:00
|
|
|
#include "androidrunnerworker.h"
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2018-07-05 08:13:08 +02:00
|
|
|
#include <QHostAddress>
|
2017-06-14 14:59:23 +02:00
|
|
|
#include <coreplugin/messagemanager.h>
|
2016-06-08 16:57:32 +02:00
|
|
|
#include <projectexplorer/projectexplorer.h>
|
|
|
|
|
#include <projectexplorer/projectexplorersettings.h>
|
2018-05-04 16:01:13 +02:00
|
|
|
#include <projectexplorer/runconfigurationaspects.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2017-09-29 12:41:53 +02:00
|
|
|
#include <utils/url.h>
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2018-06-18 11:49:14 +02:00
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
|
|
|
|
|
namespace {
|
2018-10-12 09:33:30 +03:00
|
|
|
Q_LOGGING_CATEGORY(androidRunnerLog, "qtc.android.run.androidrunner", QtWarningMsg)
|
2018-06-18 11:49:14 +02:00
|
|
|
}
|
|
|
|
|
|
2016-06-08 16:57:32 +02:00
|
|
|
using namespace ProjectExplorer;
|
2017-05-19 14:40:49 +02:00
|
|
|
using namespace Utils;
|
2016-06-08 16:57:32 +02:00
|
|
|
|
2014-09-18 18:29:35 +02:00
|
|
|
/*
|
|
|
|
|
This uses explicit handshakes between the application and the
|
2014-11-18 15:14:40 +01:00
|
|
|
gdbserver start and the host side by using the gdbserver socket.
|
|
|
|
|
|
|
|
|
|
For the handshake there are two mechanisms. Only the first method works
|
|
|
|
|
on Android 5.x devices and is chosen as default option. The second
|
|
|
|
|
method can be enabled by setting the QTC_ANDROID_USE_FILE_HANDSHAKE
|
|
|
|
|
environment variable before starting Qt Creator.
|
|
|
|
|
|
|
|
|
|
1.) This method uses a TCP server on the Android device which starts
|
|
|
|
|
listening for incoming connections. The socket is forwarded by adb
|
|
|
|
|
and creator connects to it. This is the only method that works
|
|
|
|
|
on Android 5.x devices.
|
|
|
|
|
|
|
|
|
|
2.) This method uses two files ("ping" file in the application dir,
|
|
|
|
|
"pong" file in /data/local/tmp/qt).
|
2014-09-18 18:29:35 +02:00
|
|
|
|
|
|
|
|
The sequence is as follows:
|
|
|
|
|
|
|
|
|
|
host: adb forward debugsocket :5039
|
|
|
|
|
|
|
|
|
|
host: adb shell rm pong file
|
|
|
|
|
host: adb shell am start
|
|
|
|
|
host: loop until ping file appears
|
|
|
|
|
|
|
|
|
|
app start up: launch gdbserver --multi +debug-socket
|
|
|
|
|
app start up: loop until debug socket appear
|
|
|
|
|
|
|
|
|
|
gdbserver: normal start up including opening debug-socket,
|
|
|
|
|
not yet attached to any process
|
|
|
|
|
|
2014-11-18 15:14:40 +01:00
|
|
|
app start up: 1.) set up ping connection or 2.) touch ping file
|
|
|
|
|
app start up: 1.) accept() or 2.) loop until pong file appears
|
2014-09-18 18:29:35 +02:00
|
|
|
|
|
|
|
|
host: start gdb
|
|
|
|
|
host: gdb: set up binary, breakpoints, path etc
|
|
|
|
|
host: gdb: target extended-remote :5039
|
|
|
|
|
|
|
|
|
|
gdbserver: accepts connection from gdb
|
|
|
|
|
|
|
|
|
|
host: gdb: attach <application-pid>
|
|
|
|
|
|
|
|
|
|
gdbserver: attaches to the application
|
|
|
|
|
and stops it
|
|
|
|
|
|
|
|
|
|
app start up: stopped now (it is still waiting for
|
|
|
|
|
the pong anyway)
|
|
|
|
|
|
|
|
|
|
host: gdb: continue
|
|
|
|
|
|
|
|
|
|
gdbserver: resumes application
|
|
|
|
|
|
|
|
|
|
app start up: resumed (still waiting for the pong)
|
|
|
|
|
|
2014-11-18 15:14:40 +01:00
|
|
|
host: 1) write "ok" to ping pong connection or 2.) write pong file
|
2014-09-18 18:29:35 +02:00
|
|
|
|
|
|
|
|
app start up: java code continues now, the process
|
|
|
|
|
is already fully under control
|
|
|
|
|
of gdbserver. Breakpoints are set etc,
|
|
|
|
|
we are before main.
|
|
|
|
|
app start up: native code launches
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2012-04-18 20:30:57 +03:00
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2018-08-02 11:00:06 +02:00
|
|
|
AndroidRunner::AndroidRunner(RunControl *runControl, const QString &intentName)
|
Avoid some visible uses of RunControl::runConfiguration()
For a long time, probably from the very beginning, a RunControl
was meant to hold (a copy of) data needed for its operation, that was
valid at the time of its construction, to be resilient in cases
where RunConfiguration setting were changed while the RunControl
was running, or to properly re-run with the original settings.
Unfortunately, the task was repetitive, as RunConfiguration
classes had no generic access to properties / "aspects"
and there was was the runConfiguration() accessor (probably
for mostly unrelated reasons in the output pane handling) which
made the idea of just casting that to the original runConfiguration
and access the data directly there appealing, with all the
expected consequences.
This patch here partially addresses the issue by copying some
more of the related data at RunControl construction time and
adjust the using code, avoiding most uses of the runConfiguration()
accessor in a mostly mechanical matter.
Complete removal appears possible, but will be less mechanical
in "difficult" plugins like ios, so this is left for later.
The new accessors in RunControl are very much ad-hoc, leaving
room for improvement, e.g. by consolidating the access to the
run config settings aspects with the other runconfig aspects
or similar. For now the goal is to remove the runConfiguration()
accessor, and to as much as possible fixed data after RunControl
setup is finished.
Next step would be to officially allow construction of RunControls
without a specific RunConfiguration by setting the necessary
data independently, removing the need for the various workarounds
that are currently used for the purpose of faking (parts of) the
effect of the non-existing RunConfiguration or refusing to operate
at all, even if it would be possible.
Change-Id: If8e5596da8422c70e90f97270389adbe6d0b46f2
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
2019-03-11 15:42:43 +01:00
|
|
|
: RunWorker(runControl), m_target(runControl->target())
|
2016-08-05 15:40:33 +02:00
|
|
|
{
|
2018-08-21 08:28:27 +02:00
|
|
|
setId("AndroidRunner");
|
2016-08-05 15:40:33 +02:00
|
|
|
static const int metaTypes[] = {
|
|
|
|
|
qRegisterMetaType<QVector<QStringList> >("QVector<QStringList>"),
|
2018-05-18 14:37:11 +02:00
|
|
|
qRegisterMetaType<Utils::Port>("Utils::Port"),
|
|
|
|
|
qRegisterMetaType<AndroidDeviceInfo>("Android::AndroidDeviceInfo")
|
2016-08-05 15:40:33 +02:00
|
|
|
};
|
2019-07-23 10:58:00 +02:00
|
|
|
Q_UNUSED(metaTypes)
|
2016-08-05 15:40:33 +02:00
|
|
|
|
|
|
|
|
m_checkAVDTimer.setInterval(2000);
|
|
|
|
|
connect(&m_checkAVDTimer, &QTimer::timeout, this, &AndroidRunner::checkAVD);
|
|
|
|
|
|
2018-05-15 09:52:09 +02:00
|
|
|
QString intent = intentName.isEmpty() ? AndroidManager::intentName(m_target) : intentName;
|
2018-05-15 12:50:41 +02:00
|
|
|
m_packageName = intent.left(intent.indexOf('/'));
|
2018-06-18 11:49:14 +02:00
|
|
|
qCDebug(androidRunnerLog) << "Intent name:" << intent << "Package name" << m_packageName;
|
2018-01-30 18:28:23 +01:00
|
|
|
|
2018-05-07 17:13:52 +02:00
|
|
|
const int apiLevel = AndroidManager::deviceApiLevel(m_target);
|
2018-06-18 11:49:14 +02:00
|
|
|
qCDebug(androidRunnerLog) << "Device API:" << apiLevel;
|
|
|
|
|
|
2018-05-15 12:50:41 +02:00
|
|
|
m_worker.reset(new AndroidRunnerWorker(this, m_packageName));
|
2018-05-15 09:52:09 +02:00
|
|
|
m_worker->setIntentName(intent);
|
2018-05-09 12:20:54 +02:00
|
|
|
m_worker->setIsPreNougat(apiLevel <= 23);
|
2018-05-07 18:06:30 +02:00
|
|
|
|
2016-08-05 15:40:33 +02:00
|
|
|
m_worker->moveToThread(&m_thread);
|
|
|
|
|
|
2018-05-09 12:20:54 +02:00
|
|
|
connect(this, &AndroidRunner::asyncStart, m_worker.data(), &AndroidRunnerWorker::asyncStart);
|
|
|
|
|
connect(this, &AndroidRunner::asyncStop, m_worker.data(), &AndroidRunnerWorker::asyncStop);
|
2018-05-07 17:13:52 +02:00
|
|
|
connect(this, &AndroidRunner::androidDeviceInfoChanged,
|
2018-05-09 12:20:54 +02:00
|
|
|
m_worker.data(), &AndroidRunnerWorker::setAndroidDeviceInfo);
|
|
|
|
|
connect(m_worker.data(), &AndroidRunnerWorker::remoteProcessStarted,
|
2017-05-19 14:40:49 +02:00
|
|
|
this, &AndroidRunner::handleRemoteProcessStarted);
|
2018-05-09 12:20:54 +02:00
|
|
|
connect(m_worker.data(), &AndroidRunnerWorker::remoteProcessFinished,
|
2017-05-19 14:40:49 +02:00
|
|
|
this, &AndroidRunner::handleRemoteProcessFinished);
|
2018-05-09 12:20:54 +02:00
|
|
|
connect(m_worker.data(), &AndroidRunnerWorker::remoteOutput,
|
2016-08-05 15:40:33 +02:00
|
|
|
this, &AndroidRunner::remoteOutput);
|
2018-05-09 12:20:54 +02:00
|
|
|
connect(m_worker.data(), &AndroidRunnerWorker::remoteErrorOutput,
|
2016-08-05 15:40:33 +02:00
|
|
|
this, &AndroidRunner::remoteErrorOutput);
|
|
|
|
|
|
2017-06-14 14:59:23 +02:00
|
|
|
connect(&m_outputParser, &QmlDebug::QmlOutputParser::waitingForConnectionOnPort,
|
|
|
|
|
this, &AndroidRunner::qmlServerPortReady);
|
|
|
|
|
|
2016-08-05 15:40:33 +02:00
|
|
|
m_thread.start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AndroidRunner::~AndroidRunner()
|
|
|
|
|
{
|
|
|
|
|
m_thread.quit();
|
|
|
|
|
m_thread.wait();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidRunner::start()
|
|
|
|
|
{
|
|
|
|
|
if (!ProjectExplorerPlugin::projectExplorerSettings().deployBeforeRun) {
|
2018-06-18 11:49:14 +02:00
|
|
|
qCDebug(androidRunnerLog) << "Run without deployment";
|
2016-08-05 15:40:33 +02:00
|
|
|
launchAVD();
|
|
|
|
|
if (!m_launchedAVDName.isEmpty()) {
|
|
|
|
|
m_checkAVDTimer.start();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-08 14:57:09 +02:00
|
|
|
emit asyncStart();
|
2016-08-05 15:40:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidRunner::stop()
|
|
|
|
|
{
|
|
|
|
|
if (m_checkAVDTimer.isActive()) {
|
|
|
|
|
m_checkAVDTimer.stop();
|
2018-05-15 12:50:41 +02:00
|
|
|
appendMessage("\n\n" + tr("\"%1\" terminated.").arg(m_packageName),
|
2017-05-19 14:40:49 +02:00
|
|
|
Utils::DebugFormat);
|
2016-08-05 15:40:33 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-08 14:57:09 +02:00
|
|
|
emit asyncStop();
|
2016-08-05 15:40:33 +02:00
|
|
|
}
|
|
|
|
|
|
2017-06-14 14:59:23 +02:00
|
|
|
void AndroidRunner::qmlServerPortReady(Port port)
|
|
|
|
|
{
|
|
|
|
|
// FIXME: Note that the passed is nonsense, as the port is on the
|
|
|
|
|
// device side. It only happens to work since we redirect
|
|
|
|
|
// host port n to target port n via adb.
|
|
|
|
|
QUrl serverUrl;
|
2018-07-05 08:13:08 +02:00
|
|
|
serverUrl.setHost(QHostAddress(QHostAddress::LocalHost).toString());
|
2017-06-14 14:59:23 +02:00
|
|
|
serverUrl.setPort(port.number());
|
2017-10-13 10:02:41 +02:00
|
|
|
serverUrl.setScheme(urlTcpScheme());
|
2018-07-17 13:58:50 +02:00
|
|
|
qCDebug(androidRunnerLog) << "Qml Server port ready"<< serverUrl;
|
2017-06-14 14:59:23 +02:00
|
|
|
emit qmlServerReady(serverUrl);
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-19 14:40:49 +02:00
|
|
|
void AndroidRunner::remoteOutput(const QString &output)
|
|
|
|
|
{
|
2017-06-14 14:59:23 +02:00
|
|
|
Core::MessageManager::write("LOGCAT: " + output, Core::MessageManager::Silent);
|
2017-05-19 14:40:49 +02:00
|
|
|
appendMessage(output, Utils::StdOutFormatSameLine);
|
2017-06-14 14:59:23 +02:00
|
|
|
m_outputParser.processOutput(output);
|
2017-05-19 14:40:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidRunner::remoteErrorOutput(const QString &output)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2017-06-14 14:59:23 +02:00
|
|
|
Core::MessageManager::write("LOGCAT: " + output, Core::MessageManager::Silent);
|
2017-05-19 14:40:49 +02:00
|
|
|
appendMessage(output, Utils::StdErrFormatSameLine);
|
2017-06-14 14:59:23 +02:00
|
|
|
m_outputParser.processOutput(output);
|
2017-05-19 14:40:49 +02:00
|
|
|
}
|
|
|
|
|
|
2017-08-18 12:23:42 +02:00
|
|
|
void AndroidRunner::handleRemoteProcessStarted(Utils::Port gdbServerPort,
|
2019-12-02 13:56:56 +02:00
|
|
|
const QUrl &qmlServer, qint64 pid)
|
2017-05-19 14:40:49 +02:00
|
|
|
{
|
|
|
|
|
m_pid = ProcessHandle(pid);
|
|
|
|
|
m_gdbServerPort = gdbServerPort;
|
2017-08-18 12:23:42 +02:00
|
|
|
m_qmlServer = qmlServer;
|
2017-05-19 14:40:49 +02:00
|
|
|
reportStarted();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidRunner::handleRemoteProcessFinished(const QString &errString)
|
|
|
|
|
{
|
|
|
|
|
appendMessage(errString, Utils::DebugFormat);
|
2017-06-14 14:59:23 +02:00
|
|
|
if (runControl()->isRunning())
|
|
|
|
|
runControl()->initiateStop();
|
2017-05-19 14:40:49 +02:00
|
|
|
reportStopped();
|
2016-01-29 14:05:00 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-05 15:40:33 +02:00
|
|
|
void AndroidRunner::launchAVD()
|
|
|
|
|
{
|
2017-11-25 13:57:44 +03:00
|
|
|
if (!m_target || !m_target->project())
|
2017-05-19 14:40:49 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
int deviceAPILevel = AndroidManager::minimumSDK(m_target);
|
2019-08-26 14:19:07 +03:00
|
|
|
QStringList androidAbis = AndroidManager::applicationAbis(m_target);
|
2016-08-05 15:40:33 +02:00
|
|
|
|
|
|
|
|
// Get AVD info.
|
|
|
|
|
AndroidDeviceInfo info = AndroidConfigurations::showDeviceDialog(
|
2019-08-26 14:19:07 +03:00
|
|
|
m_target->project(), deviceAPILevel, androidAbis);
|
2017-05-19 14:40:49 +02:00
|
|
|
AndroidManager::setDeviceSerialNumber(m_target, info.serialNumber);
|
2018-05-07 17:13:52 +02:00
|
|
|
emit androidDeviceInfoChanged(info);
|
2016-08-05 15:40:33 +02:00
|
|
|
if (info.isValid()) {
|
2017-04-03 11:11:17 +02:00
|
|
|
AndroidAvdManager avdManager;
|
2018-05-18 15:16:25 +02:00
|
|
|
if (!info.avdname.isEmpty() && avdManager.findAvd(info.avdname).isEmpty()) {
|
2017-04-03 11:11:17 +02:00
|
|
|
bool launched = avdManager.startAvdAsync(info.avdname);
|
2016-08-05 15:40:33 +02:00
|
|
|
m_launchedAVDName = launched ? info.avdname:"";
|
|
|
|
|
} else {
|
|
|
|
|
m_launchedAVDName.clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AndroidRunner::checkAVD()
|
|
|
|
|
{
|
|
|
|
|
const AndroidConfig &config = AndroidConfigurations::currentConfig();
|
2017-04-03 11:11:17 +02:00
|
|
|
AndroidAvdManager avdManager(config);
|
|
|
|
|
QString serialNumber = avdManager.findAvd(m_launchedAVDName);
|
2016-08-05 15:40:33 +02:00
|
|
|
if (!serialNumber.isEmpty())
|
|
|
|
|
return; // try again on next timer hit
|
|
|
|
|
|
2017-04-03 11:11:17 +02:00
|
|
|
if (avdManager.isAvdBooted(serialNumber)) {
|
2016-08-05 15:40:33 +02:00
|
|
|
m_checkAVDTimer.stop();
|
2017-05-19 14:40:49 +02:00
|
|
|
AndroidManager::setDeviceSerialNumber(m_target, serialNumber);
|
2017-06-08 14:57:09 +02:00
|
|
|
emit asyncStart();
|
2016-08-05 15:40:33 +02:00
|
|
|
} else if (!config.isConnected(serialNumber)) {
|
|
|
|
|
// device was disconnected
|
|
|
|
|
m_checkAVDTimer.stop();
|
|
|
|
|
}
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2013-10-16 11:02:37 +02:00
|
|
|
} // namespace Android
|