2013-09-30 13:20:02 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2013-09-30 13:20:02 +02:00
|
|
|
**
|
|
|
|
|
** 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
|
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.
|
2013-09-30 13:20:02 +02: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.
|
2013-09-30 13:20:02 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2013-09-30 13:20:02 +02:00
|
|
|
|
|
|
|
|
#include <projectexplorer/devicesupport/idevice.h>
|
|
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class AndroidSignalOperation : public ProjectExplorer::DeviceProcessSignalOperation
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2022-03-31 09:18:23 +02:00
|
|
|
~AndroidSignalOperation() override;
|
2018-07-25 12:19:15 +02:00
|
|
|
void killProcess(qint64 pid) override;
|
|
|
|
|
void killProcess(const QString &filePath) override;
|
|
|
|
|
void interruptProcess(qint64 pid) override;
|
|
|
|
|
void interruptProcess(const QString &filePath) override;
|
2013-09-30 13:20:02 +02:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
explicit AndroidSignalOperation();
|
|
|
|
|
|
2016-06-26 22:52:59 +03:00
|
|
|
private:
|
2022-03-22 17:41:52 +01:00
|
|
|
enum State {
|
|
|
|
|
Idle,
|
|
|
|
|
RunAs,
|
|
|
|
|
Kill
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
using FinishHandler = std::function<void()>;
|
|
|
|
|
|
2022-04-05 17:57:04 +02:00
|
|
|
bool handleCrashMessage();
|
2021-08-20 09:05:03 +02:00
|
|
|
void adbFindRunAsFinished();
|
|
|
|
|
void adbKillFinished();
|
2013-09-30 13:20:02 +02:00
|
|
|
void handleTimeout();
|
|
|
|
|
|
2015-09-15 16:03:11 +02:00
|
|
|
void signalOperationViaADB(qint64 pid, int signal);
|
2022-03-22 17:41:52 +01:00
|
|
|
void startAdbProcess(State state, const Utils::CommandLine &commandLine, FinishHandler handler);
|
2013-09-30 13:20:02 +02:00
|
|
|
|
2021-08-20 09:05:03 +02:00
|
|
|
Utils::FilePath m_adbPath;
|
2022-03-22 17:41:52 +01:00
|
|
|
std::unique_ptr<Utils::QtcProcess> m_adbProcess;
|
2013-09-30 13:20:02 +02:00
|
|
|
QTimer *m_timeout;
|
|
|
|
|
|
2022-03-22 17:41:52 +01:00
|
|
|
State m_state = Idle;
|
2021-08-20 09:05:03 +02:00
|
|
|
qint64 m_pid = 0;
|
|
|
|
|
int m_signal = 0;
|
2013-09-30 13:20:02 +02:00
|
|
|
|
|
|
|
|
friend class AndroidDevice;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Android
|