blob: 2a6e3ddb6cf1a119398a1bbca08c3b4645eb742b (
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
|
// 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 <projectexplorer/devicesupport/idevice.h>
#include <QObject>
#include <QTimer>
namespace Android {
namespace Internal {
class AndroidSignalOperation : public ProjectExplorer::DeviceProcessSignalOperation
{
public:
~AndroidSignalOperation() override;
void killProcess(qint64 pid) override;
void killProcess(const QString &filePath) override;
void interruptProcess(qint64 pid) override;
void interruptProcess(const QString &filePath) override;
protected:
explicit AndroidSignalOperation();
private:
enum State {
Idle,
RunAs,
Kill
};
using FinishHandler = std::function<void()>;
bool handleCrashMessage();
void adbFindRunAsFinished();
void adbKillFinished();
void handleTimeout();
void signalOperationViaADB(qint64 pid, int signal);
void startAdbProcess(State state, const Utils::CommandLine &commandLine, FinishHandler handler);
Utils::FilePath m_adbPath;
std::unique_ptr<Utils::Process> m_adbProcess;
QTimer *m_timeout;
State m_state = Idle;
qint64 m_pid = 0;
int m_signal = 0;
friend class AndroidDevice;
};
} // namespace Internal
} // namespace Android
|