syncthingtray/widgets/misc/syncthingkiller.h
Martchus 4c6315b450 Terminate Syncthing gracefully via REST-API on non-UNIX platforms (2)
A follow up to 0faacaa7c8 to cover the stop button within the launcher
and terminating Syncthing on shutdown/exit. To find the relevant connection
the connection settings are searched for a local URL where the port matches
the port from the Syncthing process log.
2021-07-15 02:38:26 +02:00

50 lines
1.1 KiB
C++

#ifndef SYNCTHINGWIDGETS_SYNCTHINGKILLER_H
#define SYNCTHINGWIDGETS_SYNCTHINGKILLER_H
#include "../global.h"
#include <QObject>
#include <vector>
namespace Data {
class SyncthingConnection;
class SyncthingProcess;
} // namespace Data
namespace QtGui {
struct ProcessWithConnection {
explicit ProcessWithConnection(Data::SyncthingProcess *process, Data::SyncthingConnection *connection = nullptr);
Data::SyncthingProcess *const process;
Data::SyncthingConnection *const connection;
};
inline ProcessWithConnection::ProcessWithConnection(Data::SyncthingProcess *process, Data::SyncthingConnection *connection)
: process(process)
, connection(connection)
{
}
class SYNCTHINGWIDGETS_EXPORT SyncthingKiller : public QObject {
Q_OBJECT
public:
explicit SyncthingKiller(std::vector<ProcessWithConnection> &&processes);
Q_SIGNALS:
void ignored();
public Q_SLOTS:
void waitForFinished();
private Q_SLOTS:
void confirmKill() const;
private:
std::vector<ProcessWithConnection> m_processes;
};
} // namespace QtGui
#endif // SYNCTHINGWIDGETS_SYNCTHINGKILLER_H