summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/packageuploader.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-07-20 10:57:51 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2011-07-20 10:59:05 +0200
commita6cc06415e53ed379810c94e5faab93a6dffd5a2 (patch)
treebbaa12a4cef2783524630ebf0428aee3a1fa2ac9 /src/plugins/remotelinux/packageuploader.h
parentb7786925109fb99a291c0b71083b3ae711b44427 (diff)
downloadqt-creator-a6cc06415e53ed379810c94e5faab93a6dffd5a2.tar.gz
RemoteLinux: Rename MaemoPackageUploader.
There is no Maemo dependency in this class. Also use better assertions. Change-Id: I28f055e35f17ed41535fd76a45fe1a06b9567953 Reviewed-on: http://codereview.qt.nokia.com/1868 Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/packageuploader.h')
-rw-r--r--src/plugins/remotelinux/packageuploader.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/packageuploader.h b/src/plugins/remotelinux/packageuploader.h
new file mode 100644
index 0000000000..22c26e86dd
--- /dev/null
+++ b/src/plugins/remotelinux/packageuploader.h
@@ -0,0 +1,88 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (info@qt.nokia.com)
+**
+**
+** GNU Lesser General Public License Usage
+**
+** 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, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** Other Usage
+**
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at info@qt.nokia.com.
+**
+**************************************************************************/
+
+#ifndef PACKAGEUPLOADER_H
+#define PACKAGEUPLOADER_H
+
+#include <QtCore/QObject>
+#include <QtCore/QSharedPointer>
+#include <QtCore/QString>
+
+#include <utils/ssh/sftpdefs.h>
+
+namespace Utils {
+class SftpChannel;
+class SshConnection;
+}
+
+namespace RemoteLinux {
+namespace Internal {
+
+class PackageUploader : public QObject
+{
+ Q_OBJECT
+public:
+ explicit PackageUploader(QObject *parent = 0);
+ ~PackageUploader();
+
+ // Connection has to be established already.
+ void uploadPackage(const QSharedPointer<Utils::SshConnection> &connection,
+ const QString &localFilePath, const QString &remoteFilePath);
+ void cancelUpload();
+
+signals:
+ void progress(const QString &message);
+ void uploadFinished(const QString &errorMsg = QString());
+
+private slots:
+ void handleConnectionFailure();
+ void handleSftpChannelInitialized();
+ void handleSftpChannelInitializationFailed(const QString &error);
+ void handleSftpJobFinished(Utils::SftpJobId job, const QString &error);
+
+private:
+ enum State { InitializingSftp, Uploading, Inactive };
+
+ void cleanup();
+ void setState(State newState);
+
+ State m_state;
+ QSharedPointer<Utils::SshConnection> m_connection;
+ QSharedPointer<Utils::SftpChannel> m_uploader;
+ QString m_localFilePath;
+ QString m_remoteFilePath;
+};
+
+} // namespace Internal
+} // namespace RemoteLinux
+
+#endif // PACKAGEUPLOADER_H