summaryrefslogtreecommitdiff
path: root/src/plugins/qnx/qnxdeviceprocesssignaloperation.h
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@digia.com>2013-09-16 15:30:30 +0200
committerDavid Schulz <david.schulz@digia.com>2013-09-20 10:48:47 +0200
commita06af356318bb8ed7a402bc5e5beee3b268df521 (patch)
treeb936265f13596f406a2bf9eb7c0aa16dfad6813e /src/plugins/qnx/qnxdeviceprocesssignaloperation.h
parentca15d0aa95fec76ce41c72ed747894969c978986 (diff)
downloadqt-creator-a06af356318bb8ed7a402bc5e5beee3b268df521.tar.gz
ProjectExplorer: Introduce DeviceProcessSignalOperation.
Every device can now return a DeviceProcessSignalOperation, which allows to kill or interrupt processes running on the device. Change-Id: Idaa04ebc767e09ca167fa033ed93860b9b81479e Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: David Kaspar <dkaspar@blackberry.com> Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/qnx/qnxdeviceprocesssignaloperation.h')
-rw-r--r--src/plugins/qnx/qnxdeviceprocesssignaloperation.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/plugins/qnx/qnxdeviceprocesssignaloperation.h b/src/plugins/qnx/qnxdeviceprocesssignaloperation.h
new file mode 100644
index 0000000000..a3e86c8ad2
--- /dev/null
+++ b/src/plugins/qnx/qnxdeviceprocesssignaloperation.h
@@ -0,0 +1,69 @@
+/**************************************************************************
+**
+** Copyright (C) 2011 - 2013 Research In Motion
+**
+** Contact: Research In Motion (blackberry-qt@qnx.com)
+** Contact: KDAB (info@kdab.com)
+**
+** 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
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#ifndef QNXDEVICEPROCESSSIGNALOPERATION_H
+#define QNXDEVICEPROCESSSIGNALOPERATION_H
+
+#include <remotelinux/remotelinuxsignaloperation.h>
+
+namespace Qnx {
+namespace Internal {
+
+class QnxDeviceProcessSignalOperation : public RemoteLinux::RemoteLinuxSignalOperation
+{
+ Q_OBJECT
+protected:
+ explicit QnxDeviceProcessSignalOperation(const QSsh::SshConnectionParameters sshParameters);
+
+private:
+ QString killProcessByNameCommandLine(const QString &filePath) const;
+ QString interruptProcessByNameCommandLine(const QString &filePath) const;
+
+ friend class QnxDeviceConfiguration;
+};
+
+class BlackBerryDeviceProcessSignalOperation : public RemoteLinux::RemoteLinuxSignalOperation
+{
+ Q_OBJECT
+protected:
+ explicit BlackBerryDeviceProcessSignalOperation(const QSsh::SshConnectionParameters sshParameters);
+
+private:
+ QString killProcessByNameCommandLine(const QString &filePath) const;
+ QString interruptProcessByNameCommandLine(const QString &filePath) const;
+
+ friend class BlackBerryDeviceConfiguration;
+};
+
+} // namespace Internal
+} // namespace Qnx
+
+#endif // QNXDEVICEPROCESSSIGNALOPERATION_H