59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
#ifndef NYMEACONNECTION_H
|
|
#define NYMEACONNECTION_H
|
|
|
|
#include <QObject>
|
|
#include <QHash>
|
|
#include <QSslError>
|
|
#include <QAbstractSocket>
|
|
#include <QUrl>
|
|
|
|
class NymeaTransportInterface;
|
|
|
|
class NymeaConnection : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(bool connected READ connected NOTIFY connectedChanged)
|
|
Q_PROPERTY(QString url READ url NOTIFY connectedChanged)
|
|
Q_PROPERTY(QString hostAddress READ hostAddress NOTIFY connectedChanged)
|
|
Q_PROPERTY(QString bluetoothAddress READ bluetoothAddress NOTIFY connectedChanged)
|
|
|
|
public:
|
|
explicit NymeaConnection(QObject *parent = nullptr);
|
|
|
|
void registerTransport(NymeaTransportInterface *transport);
|
|
|
|
Q_INVOKABLE bool connect(const QString &url);
|
|
Q_INVOKABLE void disconnect();
|
|
Q_INVOKABLE void acceptCertificate(const QString &url, const QByteArray &fingerprint);
|
|
Q_INVOKABLE bool isTrusted(const QString &url);
|
|
|
|
bool connected();
|
|
|
|
QString url() const;
|
|
QString hostAddress() const;
|
|
QString bluetoothAddress() const;
|
|
|
|
void sendData(const QByteArray &data);
|
|
|
|
signals:
|
|
void verifyConnectionCertificate(const QString &url, const QStringList &issuerInfo, const QByteArray &fingerprint);
|
|
void connectedChanged(bool connected);
|
|
void connectionError(const QString &error);
|
|
void dataAvailable(const QByteArray &data);
|
|
|
|
private slots:
|
|
void onSslErrors(const QList<QSslError> &errors);
|
|
void onError(QAbstractSocket::SocketError error);
|
|
void onConnected();
|
|
void onDisconnected();
|
|
|
|
private:
|
|
|
|
private:
|
|
QHash<QString, NymeaTransportInterface*> m_transports;
|
|
NymeaTransportInterface *m_currentTransport = nullptr;
|
|
QUrl m_currentUrl;
|
|
};
|
|
|
|
#endif // NYMEACONNECTION_H
|