mirror of
https://github.com/adafruit/Adafruit_MQTT_Library.git
synced 2025-04-21 14:45:59 +03:00
Merge pull request #215 from brentru/fix-processUntil
Fix subscription packet callbacks not executing within processPacketsUntil()
This commit is contained in:
commit
1e33ece844
@ -222,6 +222,32 @@ int8_t Adafruit_MQTT::connect(const char *user, const char *pass) {
|
|||||||
return connect();
|
return connect();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Adafruit_MQTT::processSubscriptionPacket(Adafruit_MQTT_Subscribe *sub) {
|
||||||
|
if (sub->callback_uint32t != NULL) {
|
||||||
|
// execute callback in integer mode
|
||||||
|
uint32_t data = 0;
|
||||||
|
data = atoi((char *)sub->lastread);
|
||||||
|
sub->callback_uint32t(data);
|
||||||
|
} else if (sub->callback_double != NULL) {
|
||||||
|
// execute callback in doublefloat mode
|
||||||
|
double data = 0;
|
||||||
|
data = atof((char *)sub->lastread);
|
||||||
|
sub->callback_double(data);
|
||||||
|
} else if (sub->callback_buffer != NULL) {
|
||||||
|
// execute callback in buffer mode
|
||||||
|
sub->callback_buffer((char *)sub->lastread, sub->datalen);
|
||||||
|
} else if (sub->callback_io != NULL) {
|
||||||
|
// execute callback in io mode
|
||||||
|
((sub->io_mqtt)->*(sub->callback_io))((char *)sub->lastread, sub->datalen);
|
||||||
|
} else {
|
||||||
|
DEBUG_PRINTLN(
|
||||||
|
"ERROR: Subscription packet did not have an associated callback");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// mark subscription message as "read""
|
||||||
|
sub->new_message = false;
|
||||||
|
}
|
||||||
|
|
||||||
uint16_t Adafruit_MQTT::processPacketsUntil(uint8_t *buffer,
|
uint16_t Adafruit_MQTT::processPacketsUntil(uint8_t *buffer,
|
||||||
uint8_t waitforpackettype,
|
uint8_t waitforpackettype,
|
||||||
uint16_t timeout) {
|
uint16_t timeout) {
|
||||||
@ -239,7 +265,9 @@ uint16_t Adafruit_MQTT::processPacketsUntil(uint8_t *buffer,
|
|||||||
return len;
|
return len;
|
||||||
} else {
|
} else {
|
||||||
if (packetType == MQTT_CTRL_PUBLISH) {
|
if (packetType == MQTT_CTRL_PUBLISH) {
|
||||||
handleSubscriptionPacket(len);
|
Adafruit_MQTT_Subscribe *sub = handleSubscriptionPacket(len);
|
||||||
|
if (sub)
|
||||||
|
processSubscriptionPacket(sub);
|
||||||
} else {
|
} else {
|
||||||
ERROR_PRINTLN(F("Dropped a packet"));
|
ERROR_PRINTLN(F("Dropped a packet"));
|
||||||
}
|
}
|
||||||
@ -478,27 +506,8 @@ void Adafruit_MQTT::processPackets(int16_t timeout) {
|
|||||||
|
|
||||||
while (elapsed < (uint32_t)timeout) {
|
while (elapsed < (uint32_t)timeout) {
|
||||||
Adafruit_MQTT_Subscribe *sub = readSubscription(timeout - elapsed);
|
Adafruit_MQTT_Subscribe *sub = readSubscription(timeout - elapsed);
|
||||||
if (sub) {
|
if (sub)
|
||||||
if (sub->callback_uint32t != NULL) {
|
processSubscriptionPacket(sub);
|
||||||
// huh lets do the callback in integer mode
|
|
||||||
uint32_t data = 0;
|
|
||||||
data = atoi((char *)sub->lastread);
|
|
||||||
sub->callback_uint32t(data);
|
|
||||||
} else if (sub->callback_double != NULL) {
|
|
||||||
// huh lets do the callback in doublefloat mode
|
|
||||||
double data = 0;
|
|
||||||
data = atof((char *)sub->lastread);
|
|
||||||
sub->callback_double(data);
|
|
||||||
} else if (sub->callback_buffer != NULL) {
|
|
||||||
// huh lets do the callback in buffer mode
|
|
||||||
sub->callback_buffer((char *)sub->lastread, sub->datalen);
|
|
||||||
} else if (sub->callback_io != NULL) {
|
|
||||||
// huh lets do the callback in io mode
|
|
||||||
((sub->io_mqtt)->*(sub->callback_io))((char *)sub->lastread,
|
|
||||||
sub->datalen);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// keep track over elapsed time
|
// keep track over elapsed time
|
||||||
endtime = millis();
|
endtime = millis();
|
||||||
if (endtime < starttime) {
|
if (endtime < starttime) {
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#define ADAFRUIT_MQTT_VERSION_PATCH 0
|
#define ADAFRUIT_MQTT_VERSION_PATCH 0
|
||||||
|
|
||||||
// Uncomment/comment to turn on/off debug output messages.
|
// Uncomment/comment to turn on/off debug output messages.
|
||||||
//#define MQTT_DEBUG
|
// #define MQTT_DEBUG
|
||||||
// Uncomment/comment to turn on/off error output messages.
|
// Uncomment/comment to turn on/off error output messages.
|
||||||
#define MQTT_ERROR
|
#define MQTT_ERROR
|
||||||
|
|
||||||
@ -209,10 +209,12 @@ public:
|
|||||||
// messages!
|
// messages!
|
||||||
Adafruit_MQTT_Subscribe *readSubscription(int16_t timeout = 0);
|
Adafruit_MQTT_Subscribe *readSubscription(int16_t timeout = 0);
|
||||||
|
|
||||||
// Handle any data coming in for subscriptions and fires them off to the
|
// Handle any data coming in for subscriptions
|
||||||
// appropriate callback
|
|
||||||
Adafruit_MQTT_Subscribe *handleSubscriptionPacket(uint16_t len);
|
Adafruit_MQTT_Subscribe *handleSubscriptionPacket(uint16_t len);
|
||||||
|
|
||||||
|
// Execute a subscription packet's associated callback and mark as "read"
|
||||||
|
void processSubscriptionPacket(Adafruit_MQTT_Subscribe *sub);
|
||||||
|
|
||||||
void processPackets(int16_t timeout);
|
void processPackets(int16_t timeout);
|
||||||
|
|
||||||
// Ping the server to ensure the connection is still alive.
|
// Ping the server to ensure the connection is still alive.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name=Adafruit MQTT Library
|
name=Adafruit MQTT Library
|
||||||
version=2.4.3
|
version=2.5.0
|
||||||
author=Adafruit
|
author=Adafruit
|
||||||
maintainer=Adafruit <info@adafruit.com>
|
maintainer=Adafruit <info@adafruit.com>
|
||||||
sentence=MQTT library that supports the FONA, ESP8266, ESP32, Yun, and generic Arduino Client hardware.
|
sentence=MQTT library that supports the FONA, ESP8266, ESP32, Yun, and generic Arduino Client hardware.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user