|
@ -10,23 +10,23 @@ Copyright (C) 2017-2018 by Xose Pérez <xose dot perez at gmail dot com> |
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
std::vector<void (*)(const char *, unsigned char, const char *)> _broker_callbacks; |
|
|
|
|
|
|
|
|
std::vector<void (*)(const unsigned char, const char *, unsigned char, const char *)> _broker_callbacks; |
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
void brokerRegister(void (*callback)(const char *, unsigned char, const char *)) { |
|
|
|
|
|
|
|
|
void brokerRegister(void (*callback)(const unsigned char, const char *, unsigned char, const char *)) { |
|
|
_broker_callbacks.push_back(callback); |
|
|
_broker_callbacks.push_back(callback); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void brokerPublish(const char * topic, unsigned char id, const char * message) { |
|
|
|
|
|
|
|
|
void brokerPublish(const unsigned char type, const char * topic, unsigned char id, const char * message) { |
|
|
//DEBUG_MSG_P(PSTR("[BROKER] Message %s[%u] => %s\n"), topic, id, message);
|
|
|
//DEBUG_MSG_P(PSTR("[BROKER] Message %s[%u] => %s\n"), topic, id, message);
|
|
|
for (unsigned char i=0; i<_broker_callbacks.size(); i++) { |
|
|
for (unsigned char i=0; i<_broker_callbacks.size(); i++) { |
|
|
(_broker_callbacks[i])(topic, id, message); |
|
|
|
|
|
|
|
|
(_broker_callbacks[i])(type, topic, id, message); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void brokerPublish(const char * topic, const char * message) { |
|
|
|
|
|
brokerPublish(topic, 0, message); |
|
|
|
|
|
|
|
|
void brokerPublish(const unsigned char type, const char * topic, const char * message) { |
|
|
|
|
|
brokerPublish(type, topic, 0, message); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#endif // BROKER_SUPPORT
|
|
|
#endif // BROKER_SUPPORT
|