2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2014-02-10 14:16:55 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 BlackBerry Limited. All rights reserved.
|
|
|
|
|
** Contact: BlackBerry (qt@blackberry.com), KDAB (info@kdab.com)
|
2014-02-10 14:16:55 +01:00
|
|
|
**
|
|
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2014-02-10 14:16:55 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** 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.
|
2014-02-10 14:16:55 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2014-02-10 14:16:55 +01:00
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/deployablefile.h>
|
|
|
|
|
#include <projectexplorer/devicesupport/idevice.h>
|
|
|
|
|
|
|
|
|
|
namespace QSsh {
|
|
|
|
|
class SshRemoteProcessRunner;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace RemoteLinux {
|
|
|
|
|
class GenericDirectUploadService;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace Qnx {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
2014-05-27 12:46:24 +02:00
|
|
|
class QnxDeployQtLibrariesDialog;
|
2014-02-10 14:16:55 +01:00
|
|
|
}
|
|
|
|
|
|
2014-05-27 12:46:24 +02:00
|
|
|
class QnxDeployQtLibrariesDialog : public QDialog
|
2014-02-10 14:16:55 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
enum State {
|
|
|
|
|
Inactive,
|
|
|
|
|
CheckingRemoteDirectory,
|
|
|
|
|
RemovingRemoteDirectory,
|
|
|
|
|
Uploading
|
|
|
|
|
};
|
|
|
|
|
|
2014-05-27 12:46:24 +02:00
|
|
|
explicit QnxDeployQtLibrariesDialog(const ProjectExplorer::IDevice::ConstPtr &device,
|
2015-04-24 10:31:27 +02:00
|
|
|
QWidget *parent = 0);
|
2014-05-27 12:46:24 +02:00
|
|
|
~QnxDeployQtLibrariesDialog();
|
2014-02-10 14:16:55 +01:00
|
|
|
|
|
|
|
|
int execAndDeploy(int qtVersionId, const QString &remoteDirectory);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void deployLibraries();
|
|
|
|
|
void updateProgress(const QString &progressMessage);
|
|
|
|
|
void handleUploadFinished();
|
|
|
|
|
|
|
|
|
|
void handleRemoteProcessError();
|
|
|
|
|
void handleRemoteProcessCompleted();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QList<ProjectExplorer::DeployableFile> gatherFiles();
|
|
|
|
|
QList<ProjectExplorer::DeployableFile> gatherFiles(const QString &dirPath,
|
2014-12-04 11:45:06 -02:00
|
|
|
const QString &baseDir = QString(),
|
|
|
|
|
const QStringList &nameFilters = QStringList());
|
2014-02-10 14:16:55 +01:00
|
|
|
|
|
|
|
|
QString fullRemoteDirectory() const;
|
|
|
|
|
void checkRemoteDirectoryExistance();
|
|
|
|
|
void removeRemoteDirectory();
|
|
|
|
|
void startUpload();
|
|
|
|
|
|
2014-05-27 12:46:24 +02:00
|
|
|
Ui::QnxDeployQtLibrariesDialog *m_ui;
|
2014-02-10 14:16:55 +01:00
|
|
|
|
|
|
|
|
QSsh::SshRemoteProcessRunner *m_processRunner;
|
|
|
|
|
RemoteLinux::GenericDirectUploadService *m_uploadService;
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::IDevice::ConstPtr m_device;
|
|
|
|
|
|
|
|
|
|
int m_progressCount;
|
|
|
|
|
|
|
|
|
|
State m_state;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qnx
|