WebSockets MQTT Subscription▲
WebSockets MQTT Subscription shows how to design a custom QIODevice to combine a web socket connection with QMqttClient.
Creating a Custom QIODevice▲
The new custom device, WebSocketIODevice, has to be a subclass of QIODevice:
class
WebSocketIODevice : public
QIODevice
{
Q_OBJECT
public
:
WebSocketIODevice(QObject *
parent =
nullptr
);
bool
isSequential() const
override
;
qint64 bytesAvailable() const
override
;
bool
open(OpenMode mode) override
;
void
close() override
;
qint64 readData(char
*
data, qint64 maxlen) override
;
qint64 writeData(const
char
*
data, qint64 len) override
;
void
setUrl(const
QUrl &
amp;url);
void
setProtocol(const
QByteArray &
amp;data);
Q_SIGNALS
:
void
socketConnected();
public
slots:
void
handleBinaryMessage(const
QByteArray &
amp;msg);
void
onSocketConnected();
private
:
QByteArray m_protocol;
QByteArray m_buffer;
QWebSocket m_socket;
QUrl m_url;
}
;
Designing a Class to Manage the Connection and Subscription▲
WebSocketIODevice will be a private member of the ClientSubscription class alongside the QMqttClient and the QMqttSubscription:
private
:
QMqttClient m_client;
QMqttSubscription *
m_subscription;
QUrl m_url;
QString m_topic;
WebSocketIODevice m_device;
int
m_version;
Subscribing to and Receiving Messages▲
The main logic is implemented in the connectAndSubscribe() method of the ClientSubscription class. You need to verify that the web socket has successfully connected before you can initialize an MQTT connection over it. After the MQTT connection has been established, the QMqttClient can subscribe to the topic. If the subscription is successful, the QMqttSubscription can be used to receive messages from the subscribed topic that will be handled by the handleMessage() method of the ClientSubscription class.
void
ClientSubscription::
connectAndSubscribe()
{
qCDebug(lcWebSocketMqtt) &
lt;&
lt; "Connecting to broker at "
&
lt;&
lt; m_url;
m_device.setUrl(m_url);
m_device.setProtocol(m_version ==
3
? "mqttv3.1"
: "mqtt"
);
connect(&
amp;m_device, &
amp;WebSocketIODevice::
socketConnected, this
, [this
]() {
qCDebug(lcWebSocketMqtt) &
lt;&
lt; "WebSocket connected, initializing MQTT connection."
;
m_client.setProtocolVersion(m_version ==
3
? QMqttClient::
MQTT_3_1 : QMqttClient::
MQTT_3_1_1);
m_client.setTransport(&
amp;m_device, QMqttClient::
IODevice);
connect(&
amp;m_client, &
amp;QMqttClient::
connected, this
, [this
]() {
qCDebug(lcWebSocketMqtt) &
lt;&
lt; "MQTT connection established"
;
m_subscription =
m_client.subscribe(m_topic);
if
(!
m_subscription) {
qDebug() &
lt;&
lt; "Failed to subscribe to "
&
lt;&
lt; m_topic;
emit errorOccured();
}
connect(m_subscription, &
amp;QMqttSubscription::
stateChanged,
[](QMqttSubscript