RaspberrPi project source code
Guo Wenxue
2024-12-29 e30a4c8103e221201e5bfc1e3f9b19e7a86f68d4
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
/********************************************************************************
 *      Copyright:  (C) 2021 LingYun IoT System Studio
 *                  All rights reserved.
 *
 *       Filename:  mqtt.h
 *    Description:  This head file is MQTT subscriber and publisher thread code
 *
 *        Version:  1.0.0(20/04/21)
 *         Author:  Guo Wenxue <guowenxue@gmail.com>
 *      ChangeLog:  1, Release initial version on "20/04/21 15:46:42"
 *
 ********************************************************************************/
 
#include <string.h>
#include <math.h>
#include <cjson/cJSON.h>
#include <mosquitto.h>
#include <errno.h>
 
#include "util_proc.h"
#include "logger.h"
#include "hal.h"
#include "conf.h"
 
 
/*+-------------------------------------------+
 *|                                           |
 *|    MQTT publisher thread worker code      |
 *|                                           |
 *+-------------------------------------------+*/
 
 
void pub_connect_callback(struct mosquitto *mosq, void *userdata, int result)
{
    iotd_ctx_t             *ctx = (iotd_ctx_t *)userdata;
    mqtt_ctx_t             *mqtt_ctx;
    hal_ctx_t              *hal_ctx;
    int                     rv = 0;
    char                    msg[128];
    float                   temp = 0.0; /* temperature */
    float                   rh = 0.0;   /* relative humidity */
    int                     retain = 0;
 
    mqtt_ctx = &ctx->mqtt_ctx;
    hal_ctx = &ctx->hal_ctx;
 
 
    if( result )
    {
        log_error("Publisher connect to broker server[%s:%d] failed, rv=%d\n", mqtt_ctx->host, mqtt_ctx->port, result);
        return ;
    }
    log_info("Publisher connect to broker server[%s:%d] successfully\n", mqtt_ctx->host, mqtt_ctx->port);
 
 
    if( hal_ctx->ds18b20_enable )
    {
        memset(msg, 0, sizeof(msg));
 
        if( ds18b20_get_temperature(&temp) < 0 )
            snprintf(msg, sizeof(msg), "{ \"id\":%s, \"temp\":\"error\" }", mqtt_ctx->id);
        else
            snprintf(msg, sizeof(msg), "{ \"id\":%s, \"temp\":\"%.2f\" }", mqtt_ctx->id, temp);
 
        rv = mosquitto_publish(mosq, NULL, mqtt_ctx->pubTopic, strlen(msg), msg, mqtt_ctx->pubQos, retain);
        if( rv )
        {
            log_error("Publisher broadcast message '%s' failure: %d\n", msg, rv);
        }
        else
        {
            log_info("Publisher broadcast message '%s' ok\n", msg);
        }
    }
 
    if( hal_ctx->sht2x_enable )
    {
        memset(msg, 0, sizeof(msg));
 
        if( sht2x_get_temp_humidity(&temp, &rh) < 0 )
            snprintf(msg, sizeof(msg), "{ \"id\":%s, \"temp\":\"error\", \"RH\":\"error\" }", mqtt_ctx->id);
        else
            snprintf(msg, sizeof(msg), "{ \"id\":%s, \"temp\":\"%.2f\", \"RH\":\"%.2f\" }", mqtt_ctx->id, temp, rh);
 
        rv = mosquitto_publish(mosq, NULL, mqtt_ctx->pubTopic, strlen(msg), msg, mqtt_ctx->pubQos, retain);
        if( rv )
        {
            log_error("Publisher broadcast message '%s' failure: %d\n", msg, rv);
        }
        else
        {
            log_info("Publisher broadcast message '%s' ok\n", msg);
        }
    }
 
 
    log_info("Publisher broadcast over and disconnect broker now\n", mqtt_ctx->host, mqtt_ctx->port);
    mosquitto_disconnect(mosq);
 
    return ;
}
 
 
void *mqtt_pub_worker(void *args)
{
    struct mosquitto       *mosq;
    bool                    session = true;
 
    iotd_ctx_t             *ctx = (iotd_ctx_t *)args;
    mqtt_ctx_t             *mqtt_ctx;
 
    if( !ctx )
    {
        log_error("Invalid input arguments\n");
        return NULL;
    }
 
    mqtt_ctx = &ctx->mqtt_ctx;
 
 
    mosq = mosquitto_new(NULL, session, ctx);
    if( !mosq )
    {
        log_error("mosquitto_new failure\n");
        return NULL;
    }
 
    /* set connnect to broker username and password  */
    if( strlen(mqtt_ctx->uid)> 0  && strlen(mqtt_ctx->pwd)> 0 )
        mosquitto_username_pw_set(mosq, mqtt_ctx->uid, mqtt_ctx->pwd);
 
    /* set callback functions */
    mosquitto_connect_callback_set(mosq, pub_connect_callback);
 
    while( !g_signal.stop )
    {
        /* connect to MQTT broker  */
        if( mosquitto_connect(mosq, mqtt_ctx->host, mqtt_ctx->port, mqtt_ctx->keepalive) )
        {
            log_error("Publisher connect to broker[%s:%d] failure: %s\n", mqtt_ctx->host, mqtt_ctx->port, strerror(errno));
            msleep(1000);
            continue;
        }
 
        /* -1: use default timeout 1000ms  1: unused */
        mosquitto_loop_forever(mosq, -1, 1);
 
        /* Publisher broadcast sensors data message interval time, unit seconds */
        sleep( mqtt_ctx->interval );
    }
 
    mosquitto_destroy(mosq);
    return NULL;
}
 
/*+-------------------------------------------+
 *|                                           |
 *|    MQTT Subscriber thread worker code     |
 *|                                           |
 *+-------------------------------------------+*/
 
void sub_connect_callback(struct mosquitto *mosq, void *userdata, int result)
{
    iotd_ctx_t             *ctx = (iotd_ctx_t *)userdata;
 
    if( result )
    {
        log_error("Subscriber connect to broker server failed, rv=%d\n", result);
        return ;
    }
 
    log_info("Subscriber connect to broker server[%s:%d] successfully\n", ctx->mqtt_ctx.host, ctx->mqtt_ctx.port);
 
    log_info("Subscriber subTopic '%s' with Qos[%d]\n", ctx->mqtt_ctx.subTopic, ctx->mqtt_ctx.subQos);
    mosquitto_subscribe(mosq, NULL, ctx->mqtt_ctx.subTopic, ctx->mqtt_ctx.subQos);
}
 
void sub_disconnect_callback(struct mosquitto *mosq, void *userdata, int result)
{
    iotd_ctx_t             *ctx = (iotd_ctx_t *)userdata;
 
    log_warn("Subscriber disconnect to broker server[%s:%d], reason=%d\n",
            ctx->mqtt_ctx.host, ctx->mqtt_ctx.port, result);
}
 
void proc_json_items(cJSON *root)
{
    int                    i;
    char                  *value;
    cJSON                 *item;
 
    if( !root )
    {
        log_error("Invalid input arguments $root\n");
        return ;
    }
 
    for( i=0; i<cJSON_GetArraySize(root); i++ )
    {
        item = cJSON_GetArrayItem(root, i);
        if( !item )
            break;
 
        /* if item is cJSON_Object, then recursive call proc_json */
        if( cJSON_Object == item->type )
        {
            proc_json_items(item);
        }
        else if( cJSON_Array != item->type )
        {
            value = cJSON_Print(item);
 
            log_debug("JSON Parser key: %s value: %s\n", item->string, value);
            if( strstr(item->string, "light") || strstr(item->string, "led") || strstr(item->string, "relay"))
            {
                if( strstr(value, "on") || strstr(value, "off") )
                {
                    log_info("parser get turn '%s' %s from JSON string\n", item->string, value);
                    gpio_out(item->string, value);
                }
            }
 
            free(value); /* must free it, or it will result memory leak */
        }
    }
}
 
void sub_message_callback(struct mosquitto *mosq, void *userdata, const struct mosquitto_message *message)
{
    iotd_ctx_t             *ctx = (iotd_ctx_t *)userdata;
 
    cJSON                  *root = NULL;
    cJSON                  *item;
    char                   *value;
 
 
    if ( !message->payloadlen )
    {
        log_error("%s (null)\n", message->topic);
        return ;
    }
 
    log_debug("Subscriber receive message: '%s'\n", message->payload);
 
    root = cJSON_Parse(message->payload);
    if( !root )
    {
        log_error("cJSON_Parse parser failure: %s\n", cJSON_GetErrorPtr());
        return ;
    }
 
    /* check ID matched or not */
    item = cJSON_GetObjectItem(root, "id");
    if( !item )
    {
        log_error("cJSON_Parse get ID failure: %s\n", cJSON_GetErrorPtr());
        goto OUT;
    }
 
    value = cJSON_PrintUnformatted(item);
    if( strcasecmp(value, ctx->mqtt_ctx.id) )
    {
        log_warn("cJSON_Parse get ID not matchs [%s<->%s], drop this message!\n", value, ctx->mqtt_ctx.id);
        free(value);
        goto OUT;
    }
 
    free(value);
 
    /* proc JSON mesage */
    proc_json_items(root);
 
OUT:
    cJSON_Delete(root); /* must delete it, or it will result memory leak */
    return ;
}
 
 
void *mqtt_sub_worker(void *args)
{
    struct mosquitto       *mosq;
    bool                    session = true;
 
    iotd_ctx_t             *ctx = (iotd_ctx_t *)args;
    mqtt_ctx_t             *mqtt_ctx;
 
    if( !ctx )
    {
        log_error("Invalid input arguments\n");
        return NULL;
    }
 
    mqtt_ctx = &ctx->mqtt_ctx;
 
 
    mosq = mosquitto_new(NULL, session, ctx);
    if( !mosq )
    {
        log_error("mosquitto_new failure\n");
        return NULL;
    }
 
    /* set connnect to broker username and password  */
    if( strlen(mqtt_ctx->uid)> 0  && strlen(mqtt_ctx->pwd)> 0 )
        mosquitto_username_pw_set(mosq, mqtt_ctx->uid, mqtt_ctx->pwd);
 
    /* set callback functions */
    mosquitto_connect_callback_set(mosq, sub_connect_callback);
    mosquitto_disconnect_callback_set(mosq, sub_disconnect_callback);
    mosquitto_message_callback_set(mosq, sub_message_callback);
 
    while( !g_signal.stop )
    {
        /* connect to MQTT broker  */
        if( mosquitto_connect(mosq, mqtt_ctx->host, mqtt_ctx->port, mqtt_ctx->keepalive) )
        {
            log_error("Subscriber connect to broker[%s:%d] failure: %s\n", mqtt_ctx->host, mqtt_ctx->port, strerror(errno));
            msleep(1000);
            continue;
        }
 
        /* -1: use default timeout 1000ms  1: unused */
        mosquitto_loop_forever(mosq, -1, 1);
    }
 
    mosquitto_destroy(mosq);
    return NULL;
}