mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-13 23:17:09 +00:00
108 lines
2.6 KiB
C++
108 lines
2.6 KiB
C++
#pragma once
|
|
|
|
#include "nvcomputer.h"
|
|
#include "nvpairingmanager.h"
|
|
|
|
#include <qmdnsengine/server.h>
|
|
#include <qmdnsengine/cache.h>
|
|
#include <qmdnsengine/browser.h>
|
|
#include <qmdnsengine/service.h>
|
|
#include <qmdnsengine/resolver.h>
|
|
|
|
#include <QThread>
|
|
#include <QReadWriteLock>
|
|
#include <QSettings>
|
|
#include <QRunnable>
|
|
|
|
class MdnsPendingComputer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MdnsPendingComputer(QMdnsEngine::Server* server,
|
|
QMdnsEngine::Cache* cache,
|
|
const QMdnsEngine::Service& service)
|
|
: m_Hostname(service.hostname()),
|
|
m_Resolver(server, m_Hostname, cache)
|
|
{
|
|
connect(&m_Resolver, SIGNAL(resolved(QHostAddress)),
|
|
this, SLOT(handleResolved(QHostAddress)));
|
|
}
|
|
|
|
QString hostname()
|
|
{
|
|
return m_Hostname;
|
|
}
|
|
|
|
private slots:
|
|
void handleResolved(const QHostAddress& address)
|
|
{
|
|
if (address.protocol() == QAbstractSocket::IPv4Protocol) {
|
|
m_Resolver.disconnect();
|
|
emit resolvedv4(this, address);
|
|
}
|
|
}
|
|
|
|
signals:
|
|
void resolvedv4(MdnsPendingComputer*, const QHostAddress&);
|
|
|
|
private:
|
|
QByteArray m_Hostname;
|
|
QMdnsEngine::Resolver m_Resolver;
|
|
};
|
|
|
|
class ComputerManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class DeferredHostDeletionTask;
|
|
friend class PendingAddTask;
|
|
|
|
public:
|
|
explicit ComputerManager(QObject *parent = nullptr);
|
|
|
|
virtual ~ComputerManager();
|
|
|
|
Q_INVOKABLE void startPolling();
|
|
|
|
Q_INVOKABLE void stopPollingAsync();
|
|
|
|
Q_INVOKABLE void addNewHost(QString address, bool mdns);
|
|
|
|
void pairHost(NvComputer* computer, QString pin);
|
|
|
|
void quitRunningApp(NvComputer* computer);
|
|
|
|
QVector<NvComputer*> getComputers();
|
|
|
|
// computer is deleted inside this call
|
|
void deleteHost(NvComputer* computer);
|
|
|
|
signals:
|
|
void computerStateChanged(NvComputer* computer);
|
|
|
|
void pairingCompleted(NvComputer* computer, QString error);
|
|
|
|
void computerAddCompleted(QVariant success);
|
|
|
|
void quitAppCompleted(QVariant error);
|
|
|
|
private slots:
|
|
void handleComputerStateChanged(NvComputer* computer);
|
|
|
|
void handleMdnsServiceResolved(MdnsPendingComputer* computer, const QHostAddress& address);
|
|
|
|
private:
|
|
void saveHosts();
|
|
|
|
void startPollingComputer(NvComputer* computer);
|
|
|
|
int m_PollingRef;
|
|
QReadWriteLock m_Lock;
|
|
QMap<QString, NvComputer*> m_KnownHosts;
|
|
QMap<QString, QThread*> m_PollThreads;
|
|
QMdnsEngine::Server m_MdnsServer;
|
|
QMdnsEngine::Browser* m_MdnsBrowser;
|
|
QMdnsEngine::Cache m_MdnsCache;
|
|
QVector<MdnsPendingComputer*> m_PendingResolution;
|
|
};
|