-
Notifications
You must be signed in to change notification settings - Fork 1
/
mqtt_123.c
440 lines (370 loc) · 9.33 KB
/
mqtt_123.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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
/***************************************************************************
* Copyright (C) 2017 - 2020, Lanka Hsu, <lankahsu@gmail.com>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
#include <signal.h>
#include <getopt.h>
#include "utilx9.h"
#define USE_UV
#define USE_MQTT_DEMO
#define TAG "mqtt_123"
// ** app **
static int is_quit = 0;
char mqtt_cert_path[LEN_OF_DIRNAME] = "/work/IoT/mqtt/common";
#ifdef USE_UV
#define USE_ASYNC_CREATE
#define USE_TIMER_CREATE
static uv_loop_t *uv_loop = NULL;
uv_async_t uv_async_fd;
uv_timer_t uv_timer_1sec_fd;
#endif
char iface_dev[LEN_OF_NAME_DEV] = "eth0";
char iface_mac[LEN_OF_MAC]= "9C65F9361C00";
#ifdef USE_MQTT_DEMO
static void mqtt123_connect_cb(struct mosquitto *mosq, void *userdata, int result)
{
MQTTSession_t *session = (MQTTSession_t *)userdata;
DBG_IF_LN("(%s:%d, result: %d)", session->hostname, session->port, result);
}
static void mqtt123_disconnect_cb(struct mosquitto *mosq, void *userdata, int result)
{
MQTTSession_t *session = (MQTTSession_t *)userdata;
DBG_IF_LN("(%s:%d, result: %d)", session->hostname, session->port, result);
}
static void mqtt123_root_subscribe_cb(struct mosquitto *mosq, void *userdata, const struct mosquitto_message *message)
{
MQTTSession_t *session = (MQTTSession_t *)userdata;
DBG_IF_LN("(%s:%d, topic: %s, [%d]%s)", session->hostname, session->port, message->topic, message->payloadlen, (char*) message->payload);
}
static MQTTSession_t mqtt123_session =
{
.hostname = "192.168.50.9",
.port = 1883,
.keepalive = 60,
//.topic = "9C65F9361C00/#",
.topic_root = MQTT_TOPIC_SUB_ROOT_MASK,
.topic_id = MQTT_TOPIC_ID_USER,
.clean_session = true,
.user=JVAL_C_USERNAME_BROADCAST,
.pass="guest",
.tls_version = "tlsv1.2",
.certificate_file = "/work/IoT/mqtt/common/mqtt_beex.crt",
.privatekey_file = "/work/IoT/mqtt/common/mqtt_beex.key",
.ca_file = "/work/IoT/mqtt/common/mqtt.ca",
.isconnect = 0,
.log_cb = NULL,
.connect_cb = mqtt123_connect_cb,
.disconnect_cb = mqtt123_disconnect_cb,
.root_subscribe_cb = mqtt123_root_subscribe_cb,
};
MQTTX_t mqtt123_data =
{
.name = "mqtt123_data",
.isfree = 0,
.isinit = 0,
.dbg_more = DBG_LVL_MAX,
.session = &mqtt123_session,
};
static void mqtt123_init(MQTTX_t *mqtt_req)
{
MQTTSession_t *session = mqtt_session_get(mqtt_req);
if (session->topic_id == MQTT_TOPIC_ID_USER)
{
SAFE_SPRINTF_EX(session->topic_root, MQTT_TOPIC_SUB_ROOT_MASK, session->user, "/");
}
else
{
SAFE_SPRINTF_EX(session->topic_root, MQTT_TOPIC_SUB_ROOT_MASK, "", "");
}
mqtt_thread_init(mqtt_req);
}
#endif
static int app_quit(void)
{
return is_quit;
}
#ifdef USE_UV
#ifdef USE_TIMER_CREATE
void timer_1sec_loop(uv_timer_t *handle)
{
int count = 0;
count ++;
//DBG_TR_LN("(count: %d)", count);
//SAFE_UV_ASYNC(&uv_async_fd);
time_t now_t = time((time_t *)NULL);
struct tm *now_tm = localtime(&now_t);
DBG_DB_LN("(%02d:%02d:%02d)", now_tm->tm_hour, now_tm->tm_min, now_tm->tm_sec);
if (app_quit()==1)
{
//SAFE_UV_TIMER_STOP(handle);
SAFE_UV_TIMER_CLOSE(handle, NULL);
DBG_WN_LN("%s (%s)", DBG_TXT_BYE_BYE, TAG);
}
else if (mqtt_session_isconnect(&mqtt123_data))
{
char topic[LEN_OF_TOPIC] = "";
char c_uuid[LEN_OF_UUID]="CCC3F3BB";
int nodeid = 2;
int epid = 0;
int issueid = JKEY_ISSUEID_MOTION;
if (mqtt123_session.topic_id == MQTT_TOPIC_ID_USER)
{
SAFE_SPRINTF_EX(topic, MQTT_TOPIC_SUB_ROOT_MASK_METHODID_MACID_NODEID_EPID_ISSUEID, mqtt123_session.user, "/", JVAL_METHODID_EVENT, iface_mac, c_uuid, nodeid, epid, issueid);
}
else
{
SAFE_SPRINTF_EX(topic, MQTT_TOPIC_SUB_ROOT_MASK_METHODID_MACID_NODEID_EPID_ISSUEID, "", "", JVAL_METHODID_EVENT, iface_mac, c_uuid, nodeid, epid, issueid);
}
//mqtt_publish(mqtt123_data.session, "0/0/9C65F9361C00/CCC3F3BB/2/0/0001000C", "{\"name\":\"Motion Sensor\",\"val\":\"idle\"}");
//mqtt_qpub_add(mqtt123_data.session, "0/0/9C65F9361C00/CCC3F3BB/2/0/0001000C", "{\"name\":\"Motion Sensor\",\"val\":\"idle\"}", NULL);
mqtt_qpub_add(mqtt123_data.session, topic, "{\"name\":\"Motion Sensor\",\"val\":\"idle\"}", NULL);
}
}
#endif
void app_stop_uv(uv_async_t *handle, int force)
{
static int is_free = 0;
if ((is_free==0) && (app_quit()==1))
{
is_free = 1;
if (uv_loop)
{
#ifdef USE_TIMER_CREATE
SAFE_UV_TIMER_CLOSE(&uv_timer_1sec_fd, NULL);
#endif
if (handle)
{
SAFE_UV_CLOSE(handle, NULL);
}
if (force)
{
SAFE_UV_LOOP_CLOSE(uv_loop);
}
}
}
}
#ifdef USE_ASYNC_CREATE
void async_loop(uv_async_t *handle)
{
DBG_IF_LN(DBG_TXT_ENTER);
app_stop_uv(handle, 0);
}
#endif
#endif
static void app_set_quit(int mode)
{
is_quit = mode;
}
static void app_stop(void)
{
if (app_quit()==0)
{
app_set_quit(1);
#ifdef USE_MQTT_DEMO
{
mqtt_thread_stop(&mqtt123_data);
mqtt_thread_close(&mqtt123_data);
}
#endif
#ifdef USE_UV
#ifdef USE_ASYNC_CREATE
SAFE_UV_ASYNC(&uv_async_fd);
#else
#error "Please use USE_ASYNC_CREATE !!!"
app_stop_uv(NULL, 1);
#endif
#endif
DBG_WN_LN("%s (%s)", DBG_TXT_BYE_BYE, TAG);
}
}
static void app_loop(void)
{
#ifdef USE_MQTT_DEMO
{
if ( SAFE_STRLEN(mqtt_cert_path) > 0 )
{
SAFE_SPRINTF(mqtt123_session.certificate_file, "%s/mqtt_beex.crt", mqtt_cert_path);
SAFE_SPRINTF(mqtt123_session.privatekey_file, "%s/mqtt_beex.key", mqtt_cert_path);
SAFE_SPRINTF(mqtt123_session.ca_file, "%s/mqtt.ca", mqtt_cert_path);
}
mqtt123_init(&mqtt123_data);
}
#endif
#ifdef USE_UV
{
SAFE_UV_LOOP_INIT(uv_loop);
#ifdef USE_ASYNC_CREATE
SAFE_UV_ASYNC_INIT(uv_loop, &uv_async_fd, async_loop);
#endif
#ifdef USE_TIMER_CREATE
SAFE_UV_TIMER_INIT(uv_loop, &uv_timer_1sec_fd);
SAFE_UV_TIMER_START(&uv_timer_1sec_fd, timer_1sec_loop, 1000, 1000); // 1st: 1, 2nd: 1+1, 3rd: 1+1+1, 4th: 1+1+1+1 .....
#endif
SAFE_UV_LOOP_RUN(uv_loop);
SAFE_UV_LOOP_CLOSE(uv_loop);
}
#else
while (app_quit()==0)
{
sleep(1);
}
#endif
goto exit_loop;
exit_loop:
app_stop();
}
static int app_init(void)
{
int ret = 0;
return ret;
}
static void app_exit(void)
{
app_stop();
}
static void app_signal_handler(int signum)
{
DBG_ER_LN("(signum: %d)", signum);
switch (signum)
{
case SIGINT:
case SIGTERM:
case SIGHUP:
app_stop();
break;
case SIGPIPE:
break;
case SIGUSR1:
break;
case SIGUSR2:
dbg_lvl_round();
DBG_ER_LN("dbg_lvl_get(): %d", dbg_lvl_get());
DBG_ER_LN("(Version: %s)", version_show());
break;
}
}
static void app_signal_register(void)
{
signal(SIGINT, app_signal_handler);
signal(SIGTERM, app_signal_handler);
signal(SIGHUP, app_signal_handler);
signal(SIGUSR1, app_signal_handler);
signal(SIGUSR2, app_signal_handler);
signal(SIGPIPE, SIG_IGN);
}
int option_index = 0;
const char* short_options = "d:f:p:i:u:w:c:h";
static struct option long_options[] =
{
{ "debug", required_argument, NULL, 'd' },
{ "host", required_argument, NULL, 'f' },
{ "port", required_argument, NULL, 'p' },
{ "iface", required_argument, NULL, 'i' },
{ "user", required_argument, NULL, 'u' },
{ "pass", required_argument, NULL, 'w' },
{ "certpath", required_argument, NULL, 'c' },
{ "help", no_argument, NULL, 'h' },
{ 0, 0, 0, 0 }
};
static void app_showusage(int exit_code)
{
printf("Usage: %s\n"
" -d, --debug debug level\n"
" -f, --host hostname\n"
" -p, --port port\n"
" -i, --iface iface\n"
" -u, --user user\n"
" -w, --pass pass\n"
" -c, --certpath certpath\n"
" -h, --help\n", TAG);
printf("Version: %s\n", version_show());
printf("Example:\n"
" %s -d 2 -f 192.168.50.9 -p 1883\n", TAG);
exit(exit_code);
}
static void app_ParseArguments(int argc, char **argv)
{
int opt;
MQTTSession_t *session = mqtt_session_get(&mqtt123_data);
while ((opt = getopt_long(argc, argv, short_options, long_options, &option_index)) != -1)
{
switch (opt)
{
case 'f':
#ifdef USE_MQTT_DEMO
if (optarg)
{
SAFE_SPRINTF_EX(session->hostname, "%s", optarg);
}
#endif
break;
case 'p':
#ifdef USE_MQTT_DEMO
if (optarg)
{
session->port = atoi(optarg);
}
#endif
break;
case 'i':
if (optarg)
{
SAFE_SPRINTF_EX(iface_dev, "%s", optarg);
}
break;
case 'd':
if (optarg)
{
dbg_lvl_set(atoi(optarg));
}
break;
case 'u':
#ifdef USE_MQTT_DEMO
if (optarg)
{
SAFE_SPRINTF_EX(session->user, "%s", optarg);
}
#endif
break;
case 'w':
#ifdef USE_MQTT_DEMO
if (optarg)
{
SAFE_SPRINTF_EX(session->pass, "%s", optarg);
}
#endif
break;
case 'c':
SAFE_SPRINTF_EX(mqtt_cert_path, "%s", optarg);
break;
default:
app_showusage(-1);
break;
}
}
}
// ./mqtt_123
int main(int argc, char *argv[])
{
app_ParseArguments(argc, argv);
app_signal_register();
atexit(app_exit);
SAFE_STDOUT_NONE();
if (app_init() == -1)
{
return -1;
}
app_loop();
DBG_WN_LN(DBG_TXT_BYE_BYE);
return 0;
}