summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.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/projectexplorer/devicesupport/desktopprocesssignaloperation.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/projectexplorer/devicesupport/desktopprocesssignaloperation.h')
-rw-r--r--src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.h b/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.h
new file mode 100644
index 0000000000..b6d61f220b
--- /dev/null
+++ b/src/plugins/projectexplorer/devicesupport/desktopprocesssignaloperation.h
@@ -0,0 +1,66 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** 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 WINDOWSPROCESSSIGNALOPERATION_H
+#define WINDOWSPROCESSSIGNALOPERATION_H
+
+#include "idevice.h"
+
+#include <projectexplorer/projectexplorer_export.h>
+
+namespace ProjectExplorer {
+
+class PROJECTEXPLORER_EXPORT DesktopProcessSignalOperation : public DeviceProcessSignalOperation
+{
+ Q_OBJECT
+public:
+ enum SpecialInterrupt { NoSpecialInterrupt, Win32Interrupt, Win64Interrupt };
+
+ ~DesktopProcessSignalOperation() {}
+ void killProcess(int pid);
+ void killProcess(const QString &filePath);
+ void interruptProcess(int pid);
+ void interruptProcess(const QString &filePath);
+ void interruptProcess(int pid, SpecialInterrupt specialInterrupt);
+ void interruptProcess(const QString &filePath, SpecialInterrupt specialInterrupt);
+
+private:
+ void killProcessSilently(int pid);
+ void interruptProcessSilently(int pid, SpecialInterrupt = NoSpecialInterrupt);
+
+ void appendMsgCannotKill(int pid, const QString &why);
+ void appendMsgCannotInterrupt(int pid, const QString &why);
+
+protected:
+ explicit DesktopProcessSignalOperation() {}
+
+ friend class DesktopDevice;
+};
+
+} // namespace ProjectExplorer
+#endif // WINDOWSPROCESSSIGNALOPERATION_H