forked from tbnobody/OpenDTU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MqttSubscribeParser.cpp
171 lines (157 loc) · 5.25 KB
/
MqttSubscribeParser.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
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (C) 2022 Thomas Basler and others
*/
#include "MqttSubscribeParser.h"
void MqttSubscribeParser::register_callback(const std::string& topic, uint8_t qos, const espMqttClientTypes::OnMessageCallback& cb)
{
cb_filter_t cbf;
cbf.topic = topic;
cbf.qos = qos;
cbf.cb = cb;
_callbacks.push_back(cbf);
}
void MqttSubscribeParser::unregister_callback(const std::string& topic)
{
for (auto it = _callbacks.begin(); it != _callbacks.end();) {
if ((*it).topic == topic) {
it = _callbacks.erase(it);
} else {
++it;
}
}
}
void MqttSubscribeParser::handle_message(const espMqttClientTypes::MessageProperties& properties, const char* topic, const uint8_t* payload, size_t len, size_t index, size_t total)
{
bool result = false;
for (const auto& cb : _callbacks) {
if (mosquitto_topic_matches_sub(cb.topic.c_str(), topic, &result) == MOSQ_ERR_SUCCESS) {
if (result) {
cb.cb(properties, topic, payload, len, index, total);
}
}
}
}
std::vector<cb_filter_t> MqttSubscribeParser::get_callbacks()
{
return _callbacks;
}
/* Does a topic match a subscription? */
int MqttSubscribeParser::mosquitto_topic_matches_sub(const char* sub, const char* topic, bool* result)
{
size_t spos;
if (!result)
return MOSQ_ERR_INVAL;
*result = false;
if (!sub || !topic || sub[0] == 0 || topic[0] == 0) {
return MOSQ_ERR_INVAL;
}
if ((sub[0] == '$' && topic[0] != '$')
|| (topic[0] == '$' && sub[0] != '$')) {
return MOSQ_ERR_SUCCESS;
}
spos = 0;
while (sub[0] != 0) {
if (topic[0] == '+' || topic[0] == '#') {
return MOSQ_ERR_INVAL;
}
if (sub[0] != topic[0] || topic[0] == 0) { /* Check for wildcard matches */
if (sub[0] == '+') {
/* Check for bad "+foo" or "a/+foo" subscription */
if (spos > 0 && sub[-1] != '/') {
return MOSQ_ERR_INVAL;
}
/* Check for bad "foo+" or "foo+/a" subscription */
if (sub[1] != 0 && sub[1] != '/') {
return MOSQ_ERR_INVAL;
}
spos++;
sub++;
while (topic[0] != 0 && topic[0] != '/') {
if (topic[0] == '+' || topic[0] == '#') {
return MOSQ_ERR_INVAL;
}
topic++;
}
if (topic[0] == 0 && sub[0] == 0) {
*result = true;
return MOSQ_ERR_SUCCESS;
}
} else if (sub[0] == '#') {
/* Check for bad "foo#" subscription */
if (spos > 0 && sub[-1] != '/') {
return MOSQ_ERR_INVAL;
}
/* Check for # not the final character of the sub, e.g. "#foo" */
if (sub[1] != 0) {
return MOSQ_ERR_INVAL;
} else {
while (topic[0] != 0) {
if (topic[0] == '+' || topic[0] == '#') {
return MOSQ_ERR_INVAL;
}
topic++;
}
*result = true;
return MOSQ_ERR_SUCCESS;
}
} else {
/* Check for e.g. foo/bar matching foo/+/# */
if (topic[0] == 0
&& spos > 0
&& sub[-1] == '+'
&& sub[0] == '/'
&& sub[1] == '#') {
*result = true;
return MOSQ_ERR_SUCCESS;
}
/* There is no match at this point, but is the sub invalid? */
while (sub[0] != 0) {
if (sub[0] == '#' && sub[1] != 0) {
return MOSQ_ERR_INVAL;
}
spos++;
sub++;
}
/* Valid input, but no match */
return MOSQ_ERR_SUCCESS;
}
} else {
/* sub[spos] == topic[tpos] */
if (topic[1] == 0) {
/* Check for e.g. foo matching foo/# */
if (sub[1] == '/'
&& sub[2] == '#'
&& sub[3] == 0) {
*result = true;
return MOSQ_ERR_SUCCESS;
}
}
spos++;
sub++;
topic++;
if (sub[0] == 0 && topic[0] == 0) {
*result = true;
return MOSQ_ERR_SUCCESS;
} else if (topic[0] == 0 && sub[0] == '+' && sub[1] == 0) {
if (spos > 0 && sub[-1] != '/') {
return MOSQ_ERR_INVAL;
}
spos++;
sub++;
*result = true;
return MOSQ_ERR_SUCCESS;
}
}
}
if ((topic[0] != 0 || sub[0] != 0)) {
*result = false;
}
while (topic[0] != 0) {
if (topic[0] == '+' || topic[0] == '#') {
return MOSQ_ERR_INVAL;
}
topic++;
}
return MOSQ_ERR_SUCCESS;
}