-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmqtt-service.h
186 lines (166 loc) · 6.49 KB
/
mqtt-service.h
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
/*
* Copyright (c) 2014, Stephen Robinson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
* 3. Neither the name of the copyright holder 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 HOLDER 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.
*
*/
#ifndef MQTT_SERVICE_H_
#define MQTT_SERVICE_H_
#include <stdio.h>
#include "uip.h"
#include "mqtt-msg.h"
#define MQTT_FLAG_CONNECTED 1
#define MQTT_FLAG_READY 2
#define MQTT_FLAG_EXIT 4
#define MQTT_EVENT_TYPE_NONE 0
#define MQTT_EVENT_TYPE_CONNECTED 1
#define MQTT_EVENT_TYPE_DISCONNECTED 2
#define MQTT_EVENT_TYPE_SUBSCRIBED 3
#define MQTT_EVENT_TYPE_UNSUBSCRIBED 4
#define MQTT_EVENT_TYPE_PUBLISH 5
#define MQTT_EVENT_TYPE_PUBLISHED 6
#define MQTT_EVENT_TYPE_EXITED 7
#define MQTT_EVENT_TYPE_PUBLISH_CONTINUATION 8
typedef struct mqtt_event_data_t
{
uint8_t type;
const char* topic;
const char* data;
uint16_t topic_length;
uint16_t data_length;
uint16_t data_offset;
} mqtt_event_data_t;
extern int mqtt_flags;
extern process_event_t mqtt_event;
// Must be called before any other function is called.
//
// Initialises the MQTT client library and associates the
// provided buffers with it. The buffer memory must remain
// valid throughout the use of the API.
void mqtt_init(uint8_t* in_buffer, int in_buffer_length,
uint8_t* out_buffer, int out_buffer_length);
// Starts an asynchronous connect to the server specified by
// the address and port. If auto_reconnect is non-zero then
// the it will keep trying to connect indefinitely and if the
// connection drops it will attempt to reconnect.
// The info structure provides other connection details
// such as username/password, will topic/message, etc.
// The memory pointed to by info must remain valid
// throughout the use of the API.
//
// The calling process will receive an mqtt_event of type
// MQTT_EVENT_CONNECTED when the operation is complete.
// Or an event of type MQTT_EVENT_DISCONNECTED if the
// connect attempt fails.
int mqtt_connect(uip_ip6addr_t* address, uint16_t port,
int auto_reconnect, mqtt_connect_info_t* info);
// Starts an asynchronous disconnect from the server.
// The calling process will receive a mqtt_event of type
// MQTT_EVENT_TYPE_EXITED when the operation is complete.
int mqtt_disconnect();
// Starts an asynchronous subscribe to the specified topic
// The calling process will receive a mqtt_event of type
// MQTT_EVENT_TYPE_SUBSCRIBE when the servers reply has
// been received.
int mqtt_subscribe(const char* topic);
// Starts an asynchronous unsubscribe of the specified topic.
// The calling process will receive a mqtt_event of type
// MQTT_EVENT_TYPE_UNSUBSCRIBED when the server's reply
// has been received.
int mqtt_unsubscribe(const char* topic);
// Same as mqtt_publish() but the data doesn't have to be
// NULL terminated as a length is supplied instead.
int mqtt_publish_with_length(const char* topic, const char* data, int data_length, int qos, int retain);
// Starts an asynchronous publish of the specified data to
// the specified topic.
// The calling process will receive a mqtt_event of type
// MQTT_EVENT_TYPE_PUBLISHED when the operation is complete
static inline int mqtt_publish(const char* topic, const char* data, int qos, int retain)
{
return mqtt_publish_with_length(topic, data, data != NULL ? strlen(data) : 0, qos, retain);
}
static inline int mqtt_connected()
{
return (mqtt_flags & MQTT_FLAG_CONNECTED);
}
static inline int mqtt_ready()
{
return (mqtt_flags & MQTT_FLAG_READY);
}
static inline int mqtt_event_is_connected(void* data)
{
return ((mqtt_event_data_t*)data)->type == MQTT_EVENT_TYPE_CONNECTED;
}
static inline int mqtt_event_is_disconnected(void* data)
{
return ((mqtt_event_data_t*)data)->type == MQTT_EVENT_TYPE_DISCONNECTED;
}
static inline int mqtt_event_is_subscribed(void* data)
{
return ((mqtt_event_data_t*)data)->type == MQTT_EVENT_TYPE_SUBSCRIBED;
}
static inline int mqtt_event_is_unsubscribed(void* data)
{
return ((mqtt_event_data_t*)data)->type == MQTT_EVENT_TYPE_UNSUBSCRIBED;
}
static inline int mqtt_event_is_publish(void* data)
{
return ((mqtt_event_data_t*)data)->type == MQTT_EVENT_TYPE_PUBLISH;
}
static inline int mqtt_event_is_published(void* data)
{
return ((mqtt_event_data_t*)data)->type == MQTT_EVENT_TYPE_PUBLISHED;
}
static inline int mqtt_event_is_exited(void* data)
{
return ((mqtt_event_data_t*)data)->type == MQTT_EVENT_TYPE_EXITED;
}
static inline int mqtt_event_is_publish_continuation(void* data)
{
return ((mqtt_event_data_t*)data)->type == MQTT_EVENT_TYPE_PUBLISH_CONTINUATION;
}
static inline const char* mqtt_event_get_topic(void* data)
{
return ((mqtt_event_data_t*)data)->topic;
}
static inline uint16_t mqtt_event_get_topic_length(void* data)
{
return ((mqtt_event_data_t*)data)->topic_length;
}
static inline const char* mqtt_event_get_data(void* data)
{
return ((mqtt_event_data_t*)data)->data;
}
static inline uint16_t mqtt_event_get_data_length(void* data)
{
return ((mqtt_event_data_t*)data)->data_length;
}
static inline uint16_t mqtt_event_get_data_offset(void* data)
{
return ((mqtt_event_data_t*)data)->data_offset;
}
#endif