aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/devicesupport/filetransferinterface.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-05-20 17:53:20 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-05-30 10:10:33 +0000
commit7d848364ffe9b920bbe0c62ed04c15a22f398eee (patch)
tree46cdd7725e9f4e1d2a5f7a6b55b53b2c4d931daa /src/plugins/projectexplorer/devicesupport/filetransferinterface.h
parent48e2f79e8b65994e787ebc24b540ad7485ec1ff5 (diff)
Move FileTransfer into ProjectExplorer plugin
Make it ready for providing implementations for other devices. Change-Id: I14eaf167a7b2c1189f4d23f2e9f556204295b9b3 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/devicesupport/filetransferinterface.h')
-rw-r--r--src/plugins/projectexplorer/devicesupport/filetransferinterface.h93
1 files changed, 93 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/devicesupport/filetransferinterface.h b/src/plugins/projectexplorer/devicesupport/filetransferinterface.h
new file mode 100644
index 0000000000..530f2868c7
--- /dev/null
+++ b/src/plugins/projectexplorer/devicesupport/filetransferinterface.h
@@ -0,0 +1,93 @@
+/****************************************************************************
+**
+** Copyright (C) 2022 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** 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 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.
+**
+** 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.
+**
+****************************************************************************/
+
+#pragma once
+
+#include "../projectexplorer_export.h"
+
+#include <utils/filepath.h>
+
+namespace Utils { class ProcessResultData; }
+
+namespace ProjectExplorer {
+
+enum class FileTransferDirection {
+ Invalid,
+ Upload,
+ Download
+};
+
+enum class FileTransferMethod {
+ Sftp,
+ Rsync,
+ Default = Sftp
+};
+
+class PROJECTEXPLORER_EXPORT FileToTransfer
+{
+public:
+ Utils::FilePath m_source;
+ Utils::FilePath m_target;
+
+ FileTransferDirection direction() const;
+};
+
+using FilesToTransfer = QList<FileToTransfer>;
+
+class PROJECTEXPLORER_EXPORT FileTransferSetupData
+{
+public:
+ FilesToTransfer m_files; // When empty, do test instead of a real transfer
+ FileTransferMethod m_method = FileTransferMethod::Default;
+ QString m_rsyncFlags = defaultRsyncFlags();
+
+ static QString defaultRsyncFlags();
+};
+
+class PROJECTEXPLORER_EXPORT FileTransferInterface : public QObject
+{
+ Q_OBJECT
+
+signals:
+ void progress(const QString &progressMessage);
+ void done(const Utils::ProcessResultData &resultData);
+
+protected:
+ FileTransferInterface(const FileTransferSetupData &setupData)
+ : m_setup(setupData) {}
+
+ void startFailed(const QString &errorString);
+
+ const FileTransferSetupData m_setup;
+
+private:
+ FileTransferInterface() = delete;
+
+ virtual void start() = 0;
+
+ friend class FileTransferPrivate;
+};
+
+} // namespace ProjectExplorer