-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathqmqtt_client.cpp
296 lines (255 loc) · 6.56 KB
/
qmqtt_client.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/*
* qmqtt_client.cpp - qmqtt client
*
* Copyright (c) 2013 Ery Lee <ery.lee at gmail dot com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of mqttc nor the names of its contributors may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#include "qmqtt_client.h"
#include "qmqtt_client_p.h"
namespace QMQTT {
Client::Client(const QString & host, quint32 port, QObject * parent /* =0 */)
:pd_ptr(new ClientPrivate(this))
{
pd_func()->init(host, port, parent);
}
Client::~Client()
{
//?
}
/*----------------------------------------------------------------
* Get/Set Property
----------------------------------------------------------------*/
QString Client::host() const
{
return pd_func()->host;
}
void Client::setHost(const QString & host)
{
pd_func()->host = host;
}
quint32 Client::port() const
{
return pd_func()->port;
}
void Client::setPort(quint32 port)
{
pd_func()->port = port;
}
QString Client::clientId() const
{
return pd_func()->clientId;
}
void Client::setClientId(const QString &clientId)
{
pd_func()->clientId = clientId;
}
QString Client::username() const
{
return pd_func()->username;
}
void Client::setUsername(const QString & username)
{
pd_func()->username = username;
}
QString Client::password() const
{
return pd_func()->password;
}
void Client::setPassword(const QString & password)
{
pd_func()->password = password;
}
int Client::keepalive()
{
return pd_func()->keepalive;
}
void Client::setKeepAlive(int keepalive)
{
pd_func()->keepalive = keepalive;
}
bool Client::cleansess()
{
return pd_func()->cleansess;
}
void Client::setCleansess(bool cleansess)
{
pd_func()->cleansess = cleansess;
}
bool Client::autoReconnect() const
{
return pd_func()->network->autoReconnect();
}
void Client::setAutoReconnect(bool value)
{
pd_func()->network->setAutoReconnect(value);
}
Will *Client::will()
{
return pd_func()->will;
}
void Client::setWill(Will *will)
{
pd_func()->will = will;
}
State Client::state() const
{
return pd_func()->state;
}
bool Client::isConnected()
{
return pd_func()->network->isConnected();
}
/*----------------------------------------------------------------
* MQTT Command
----------------------------------------------------------------*/
void Client::connect()
{
pd_func()->sockConnect();
}
void Client::onConnected()
{
qDebug("Sock Connected....");
pd_func()->sendConnect();
pd_func()->startKeepalive();
emit connected();
}
quint16 Client::publish(Message &message)
{
quint16 msgid = pd_func()->sendPublish(message);
emit published(message);
return msgid;
}
void Client::puback(quint8 type, quint16 msgid)
{
pd_func()->sendPuback(type, msgid);
emit pubacked(type, msgid);
}
quint16 Client::subscribe(const QString &topic, quint8 qos)
{
quint16 msgid = pd_func()->sendSubscribe(topic, qos);
emit subscribed(topic);
return msgid;
}
void Client::unsubscribe(const QString &topic)
{
pd_func()->sendUnsubscribe(topic);
emit unsubscribed(topic);
}
void Client::ping()
{
pd_func()->sendPing();
}
void Client::disconnect()
{
pd_func()->disconnect();
}
void Client::onDisconnected()
{
pd_func()->stopKeepalive();
emit disconnected();
}
//---------------------------------------------
//---------------------------------------------
void Client::onReceived(Frame &frame)
{
quint8 qos = 0;
bool retain, dup;
QString topic;
quint16 mid = 0;
quint8 header = frame.header();
quint8 type = GETTYPE(header);
Message message;
qDebug("handleFrame: type=%d", type);
switch(type) {
case CONNACK:
//skip reserved
frame.readChar();
handleConnack(frame.readChar());
break;
case PUBLISH:
qos = GETQOS(header);;
retain = GETRETAIN(header);
dup = GETDUP(header);
topic = frame.readString();
if( qos > MQTT_QOS0) {
mid = frame.readInt();
}
message.setId(mid);
message.setTopic(topic);
message.setPayload(frame.data());
message.setQos(qos);
message.setRetain(retain);
message.setDup(dup);
handlePublish(message);
break;
case PUBACK:
case PUBREC:
case PUBREL:
case PUBCOMP:
mid = frame.readInt();
handlePuback(type, mid);
break;
case SUBACK:
mid = frame.readInt();
qos = frame.readChar();
emit subacked(mid, qos);
break;
case UNSUBACK:
emit unsubacked(mid);
break;
case PINGRESP:
emit pong();
break;
default:
break;
}
}
void Client::handleConnack(quint8 ack)
{
qDebug("connack: %d", ack);
emit connacked(ack);
}
void Client::handlePublish(Message & message)
{
if(message.qos() == MQTT_QOS1) {
pd_func()->sendPuback(PUBACK, message.id());
} else if(message.qos() == MQTT_QOS2) {
pd_func()->sendPuback(PUBREC, message.id());
}
emit received(message);
}
void Client::handlePuback(quint8 type, quint16 msgid)
{
if(type == PUBREC) {
pd_func()->sendPuback(PUBREL, msgid);
} else if (type == PUBREL) {
pd_func()->sendPuback(PUBCOMP, msgid);
}
emit pubacked(type, msgid);
}
} // namespace QMQTT