blob: c616d872d33791ede1f53bcd8d6e9383ad5551c5 (
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
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "remotelinux_export.h"
#include <projectexplorer/devicesupport/idevice.h>
#include <utils/processinterface.h>
namespace RemoteLinux {
class SshProcessInterfacePrivate;
class REMOTELINUX_EXPORT SshProcessInterface : public Utils::ProcessInterface
{
public:
explicit SshProcessInterface(const ProjectExplorer::IDevice::ConstPtr &device);
~SshProcessInterface();
protected:
void emitStarted(qint64 processId);
void killIfRunning();
qint64 processId() const;
Utils::ProcessResult runInShell(const Utils::CommandLine &command, const QByteArray &data = {});
virtual void handleSendControlSignal(Utils::ControlSignal controlSignal);
private:
void start() final;
qint64 write(const QByteArray &data) final;
void sendControlSignal(Utils::ControlSignal controlSignal) final;
friend class SshProcessInterfacePrivate;
SshProcessInterfacePrivate *d = nullptr;
};
} // namespace RemoteLinux
|