2014-01-22 21:58:53 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2014 Samoilenko Yuri <kinnalru@gmail.com>
|
2014-01-22 21:58:53 +00:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2014-01-22 21:58:53 +00:00
|
|
|
*/
|
|
|
|
|
2023-07-21 19:22:59 +01:00
|
|
|
#pragma once
|
2014-01-22 21:58:53 +00:00
|
|
|
|
|
|
|
#include <KJob>
|
|
|
|
#include <KProcess>
|
|
|
|
|
2015-07-25 12:45:19 +01:00
|
|
|
#include <QTimer>
|
|
|
|
|
2014-01-22 21:58:53 +00:00
|
|
|
#include "sftpplugin.h"
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class Mounter : public QObject
|
2014-01-22 21:58:53 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
explicit Mounter(SftpPlugin *sftp);
|
2016-06-20 08:05:02 +01:00
|
|
|
~Mounter() override;
|
2017-03-15 10:34:12 +00:00
|
|
|
|
2014-01-22 21:58:53 +00:00
|
|
|
bool wait();
|
2022-09-10 22:23:52 +01:00
|
|
|
bool isMounted() const
|
|
|
|
{
|
|
|
|
return m_started;
|
|
|
|
}
|
2023-08-24 17:14:59 +01:00
|
|
|
void onPacketReceived(const NetworkPacket &np);
|
2017-03-15 10:34:12 +00:00
|
|
|
|
2014-01-22 21:58:53 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
void mounted();
|
2015-03-09 05:12:55 +00:00
|
|
|
void unmounted();
|
2022-09-10 22:23:52 +01:00
|
|
|
void failed(const QString &message);
|
2017-03-15 10:34:12 +00:00
|
|
|
|
2014-01-22 21:58:53 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void onStarted();
|
|
|
|
void onError(QProcess::ProcessError error);
|
|
|
|
void onFinished(int exitCode, QProcess::ExitStatus exitStatus);
|
|
|
|
void onMountTimeout();
|
|
|
|
void start();
|
|
|
|
|
2015-10-18 01:31:17 +01:00
|
|
|
private:
|
2017-03-15 10:34:12 +00:00
|
|
|
void unmount(bool finished);
|
|
|
|
|
2014-01-22 21:58:53 +00:00
|
|
|
private:
|
2022-09-10 22:23:52 +01:00
|
|
|
SftpPlugin *m_sftp;
|
|
|
|
KProcess *m_proc;
|
2014-01-22 21:58:53 +00:00
|
|
|
QTimer m_connectTimer;
|
2015-06-21 20:32:18 +01:00
|
|
|
QString m_mountPoint;
|
2014-01-22 21:58:53 +00:00
|
|
|
bool m_started;
|
|
|
|
};
|