forked from tobyjaffey/mqtt-http-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mqtt.c
301 lines (250 loc) · 8.2 KB
/
mqtt.c
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
296
297
298
299
300
/*
* Copyright (c) 2012, Toby Jaffey <toby@sensemote.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <common/common.h>
#include <common/logging.h>
#include <ev.h>
#include <mosquitto.h>
#include "mqtthttpd.h"
#include "evhelper.h"
#include "mqtt.h"
#include "webapi.h"
extern server_context_t g_srvctx;
#if LIBMOSQUITTO_VERSION_NUMBER <= 1000000
#define MOSQ_MID_T uint16_t
#else
#define MOSQ_MID_T int
#endif
static void mqtt_timeout_cb(struct ev_loop *loop, struct ev_io *w, int revents)
{
ev_timer_helper_t *watcher = (ev_timer_helper_t *)w;
mqtt_context_t *mqttctx = (mqtt_context_t *)watcher->userdata;
if (EV_TIMEOUT & revents)
{
if (mqttctx->connected)
{
if (MOSQ_ERR_SUCCESS != mosquitto_loop_misc(mqttctx->mosq))
{
LOG_ERROR("mosquitto_loop_misc fail");
mqtt_disconnect(mqttctx);
}
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
if (mosquitto_want_write(mqttctx->mosq))
#endif
ev_io_start(g_srvctx.loop, &mqttctx->write_watcher.io);
}
}
}
static void mqtt_ev_cb(struct ev_loop *loop, ev_io *w, int revents)
{
ev_io_helper_t *watcher = (ev_io_helper_t *)w;
mqtt_context_t *mqttctx = (mqtt_context_t *)watcher->userdata;
if (EV_READ & revents)
{
if (MOSQ_ERR_SUCCESS != mosquitto_loop_read(mqttctx->mosq
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
, 1
#endif
))
{
LOG_ERROR("read fail");
mqtt_disconnect(mqttctx);
}
}
if (EV_WRITE & revents)
{
if (MOSQ_ERR_SUCCESS != mosquitto_loop_write(mqttctx->mosq
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
, 1
#endif
))
{
LOG_ERROR("write fail");
mqtt_disconnect(mqttctx);
}
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
if (!mosquitto_want_write(mqttctx->mosq))
#endif
ev_io_stop(g_srvctx.loop, &mqttctx->write_watcher.io);
}
}
static void mosq_connect_cb(
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
struct mosquitto *mosq,
#endif
void *userdata, int rc)
{
mqtt_context_t *mqttctx = (mqtt_context_t *)userdata;
if (rc != 0)
LOG_ERROR("mqtt connect failure %d", rc);
else
{
LOG_INFO("MQTT connected");
mqttctx->connected = true;
}
}
static void mosq_message_cb(
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
struct mosquitto *mosq,
#endif
void *userdata, const struct mosquitto_message *msg)
{
if (msg->payloadlen)
{
LOG_INFO("rx %s %s", msg->topic, msg->payload);
webapi_message_cb(msg->mid, msg->topic, (char *)msg->payload);
}
else
{
LOG_INFO("%s (null)", msg->topic);
webapi_message_cb(msg->mid, msg->topic, "");
}
}
static void mosq_unsubscribe_cb(
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
struct mosquitto *mosq,
#endif
void *userdata, MOSQ_MID_T mid)
{
LOG_INFO("unsub OK mid=%d", mid);
}
static void mosq_subscribe_cb(
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
struct mosquitto *mosq,
void *userdata, MOSQ_MID_T mid, int qos_count, const int *granted_qos)
#else
void *userdata, MOSQ_MID_T mid, int qos_count, const uint8_t *granted_qos)
#endif
{
LOG_INFO("sub OK mid=%d", mid);
webapi_subscribe_cb(mid);
}
static void mosq_publish_cb(
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
struct mosquitto *mosq,
#endif
void *userdata, MOSQ_MID_T mid)
{
LOG_INFO("pub OK mid=%d", mid);
webapi_publish_cb(mid);
}
int mqtt_init(struct ev_loop *loop, mqtt_context_t *mqttctx)
{
if (MOSQ_ERR_SUCCESS != mosquitto_lib_init())
return -1;
mqttctx->connected = false;
return 0;
}
int mqtt_connect(mqtt_context_t *mqttctx, const char *name, const char *host, uint16_t port) // FIXME, blocks
{
ev_io *w;
ev_timer *t;
if (NULL != mqttctx->mosq)
mosquitto_destroy(mqttctx->mosq);
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
if (NULL == (mqttctx->mosq = mosquitto_new(name, true, (void *)mqttctx)))
#else
if (NULL == (mqttctx->mosq = mosquitto_new(name, (void *)mqttctx)))
#endif
{
LOG_ERROR("mqtt context creation failed");
return 1;
}
mosquitto_connect_callback_set(mqttctx->mosq, mosq_connect_cb);
mosquitto_message_callback_set(mqttctx->mosq, mosq_message_cb);
mosquitto_subscribe_callback_set(mqttctx->mosq, mosq_subscribe_cb);
mosquitto_unsubscribe_callback_set(mqttctx->mosq, mosq_unsubscribe_cb);
mosquitto_publish_callback_set(mqttctx->mosq, mosq_publish_cb);
if (0 != strcmp(host, g_srvctx.mqtt_name))
strncpy(g_srvctx.mqtt_name, name, sizeof(g_srvctx.mqtt_name));
if (0 != strcmp(host, g_srvctx.mqtt_server))
strncpy(g_srvctx.mqtt_server, host, sizeof(g_srvctx.mqtt_server));
g_srvctx.mqtt_port = port;
#if LIBMOSQUITTO_VERSION_NUMBER <= 1000000
if (0 != mosquitto_connect(mqttctx->mosq, g_srvctx.mqtt_server, g_srvctx.mqtt_port, 10, true)) // FIXME, this should be async, with below in cb
#else
if (0 != mosquitto_connect(mqttctx->mosq, g_srvctx.mqtt_server, g_srvctx.mqtt_port, 10)) // FIXME, this should be async, with below in cb
#endif
{
LOG_INFO("mqtt connect failed");
return 1;
}
w = &mqttctx->read_watcher.io;
mqttctx->read_watcher.userdata = (void *)mqttctx;
ev_io_init(w, mqtt_ev_cb, mosquitto_socket(mqttctx->mosq), EV_READ);
ev_io_start(g_srvctx.loop, w);
w = &mqttctx->write_watcher.io;
mqttctx->write_watcher.userdata = (void *)mqttctx;
ev_io_init(w, mqtt_ev_cb, mosquitto_socket(mqttctx->mosq), EV_WRITE);
t = &mqttctx->timer.timer;
mqttctx->timer.userdata = (void *)mqttctx;
ev_timer_init(t, (void *)mqtt_timeout_cb, 0, 0.1);
ev_timer_start(g_srvctx.loop, t);
return 0;
}
int mqtt_disconnect(mqtt_context_t *mqttctx)
{
LOG_INFO("mqtt_disconnect");
mosquitto_disconnect(mqttctx->mosq);
ev_io_stop(g_srvctx.loop, &mqttctx->write_watcher.io);
ev_io_stop(g_srvctx.loop, &mqttctx->read_watcher.io);
ev_timer_stop(g_srvctx.loop, &mqttctx->timer.timer);
mqttctx->connected = false;
webapi_mqtt_failall_cb(); // fail any connections waiting on a pub response
LOG_CRITICAL("mqtt connection broken"); // FIXME, we should restart
return 0;
}
int mqtt_publish(mqtt_context_t *mqttctx, const char *topic, const char *msg, int qos, int *mid)
{
int rc;
MOSQ_MID_T m;
rc = mosquitto_publish(mqttctx->mosq, &m, topic, strlen(msg), (const uint8_t *)msg, qos, true);
LOG_DEBUG("mqtt_publish topic=%s msg=%s rc=%d", topic, msg, rc);
if (NULL != mid)
*mid = m;
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
if (mosquitto_want_write(mqttctx->mosq))
#endif
ev_io_start(g_srvctx.loop, &mqttctx->write_watcher.io);
return rc;
}
int mqtt_subscribe(mqtt_context_t *mqttctx, const char *topic, int qos, int *mid)
{
int rc;
MOSQ_MID_T m;
rc = mosquitto_subscribe(mqttctx->mosq, &m, topic, qos);
LOG_DEBUG("mqtt_subscribe topic=%s rc=%d", topic, rc);
if (NULL != mid)
*mid = m;
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
if (mosquitto_want_write(mqttctx->mosq))
#endif
ev_io_start(g_srvctx.loop, &mqttctx->write_watcher.io);
return rc;
}
int mqtt_unsubscribe(mqtt_context_t *mqttctx, const char *topic, int *mid)
{
int rc;
MOSQ_MID_T m;
rc = mosquitto_unsubscribe(mqttctx->mosq, &m, topic);
LOG_DEBUG("mqtt_unsubscribe topic=%s rc=%d", topic, rc);
if (NULL != mid)
*mid = m;
#if LIBMOSQUITTO_VERSION_NUMBER > 1000000
if (mosquitto_want_write(mqttctx->mosq))
#endif
ev_io_start(g_srvctx.loop, &mqttctx->write_watcher.io);
return rc;
}