interface_mqtt.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  1. #ifdef ENABLE_MQTT
  2. #include "interface_mqtt.h"
  3. #include "esp_log.h"
  4. #if DEBUG_DETAIL_ON
  5. #include "esp_timer.h"
  6. #endif
  7. #include "connect_wlan.h"
  8. #include "mqtt_client.h"
  9. #include "ClassLogFile.h"
  10. #include "MainFlowControl.h"
  11. #include "cJSON.h"
  12. #include "../../include/defines.h"
  13. #if DEBUG_DETAIL_ON
  14. #include "esp_timer.h"
  15. #endif
  16. static const char *TAG = "MQTT IF";
  17. std::map<std::string, std::function<void()>>* connectFunktionMap = NULL;
  18. std::map<std::string, std::function<bool(std::string, char*, int)>>* subscribeFunktionMap = NULL;
  19. int failedOnRound = -1;
  20. int MQTTReconnectCnt = 0;
  21. esp_mqtt_event_id_t esp_mqtt_ID = MQTT_EVENT_ANY;
  22. // ESP_EVENT_ANY_ID
  23. bool mqtt_enabled = false;
  24. bool mqtt_configOK = false;
  25. bool mqtt_initialized = false;
  26. bool mqtt_connected = false;
  27. esp_mqtt_client_handle_t client = NULL;
  28. std::string uri, client_id, lwt_topic, lwt_connected, lwt_disconnected, user, password, maintopic, domoticz_in_topic;
  29. std::string caCert, clientCert, clientKey;
  30. int keepalive;
  31. bool SetRetainFlag;
  32. void (*callbackOnConnected)(std::string, bool) = NULL;
  33. bool MQTTPublish(std::string _key, std::string _content, int qos, bool retained_flag)
  34. {
  35. if (!mqtt_enabled) { // MQTT sevice not started / configured (MQTT_Init not called before)
  36. return false;
  37. }
  38. if (failedOnRound == getCountFlowRounds()) { // we already failed in this round, do not retry until the next round
  39. return true; // Fail quietly
  40. }
  41. #ifdef DEBUG_DETAIL_ON
  42. LogFile.WriteHeapInfo("MQTT Publish");
  43. #endif
  44. MQTT_Init(); // Re-Init client if not initialized yet/anymore
  45. if (mqtt_initialized && mqtt_connected) {
  46. #ifdef DEBUG_DETAIL_ON
  47. long long int starttime = esp_timer_get_time();
  48. #endif
  49. int msg_id = esp_mqtt_client_publish(client, _key.c_str(), _content.c_str(), 0, qos, retained_flag);
  50. #ifdef DEBUG_DETAIL_ON
  51. ESP_LOGD(TAG, "Publish msg_id %d in %lld ms", msg_id, (esp_timer_get_time() - starttime)/1000);
  52. #endif
  53. if (msg_id == -1) {
  54. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Failed to publish topic '" + _key + "', re-trying...");
  55. #ifdef DEBUG_DETAIL_ON
  56. starttime = esp_timer_get_time();
  57. #endif
  58. msg_id = esp_mqtt_client_publish(client, _key.c_str(), _content.c_str(), 0, qos, retained_flag);
  59. #ifdef DEBUG_DETAIL_ON
  60. ESP_LOGD(TAG, "Publish msg_id %d in %lld ms", msg_id, (esp_timer_get_time() - starttime)/1000);
  61. #endif
  62. if (msg_id == -1) {
  63. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Failed to publish topic '" + _key + "', skipping all MQTT publishings in this round!");
  64. failedOnRound = getCountFlowRounds();
  65. return false;
  66. }
  67. }
  68. if (_content.length() > 80) { // Truncate message if too long
  69. _content.resize(80);
  70. _content.append("..");
  71. }
  72. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Published topic: " + _key + ", content: " + _content + " (msg_id=" + std::to_string(msg_id) + ")");
  73. return true;
  74. }
  75. else {
  76. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Publish skipped. Client not initalized or not connected. (topic: " + _key + ")");
  77. return false;
  78. }
  79. }
  80. static esp_err_t mqtt_event_handler_cb(esp_mqtt_event_handle_t event) {
  81. std::string topic = "";
  82. switch (event->event_id) {
  83. case MQTT_EVENT_BEFORE_CONNECT:
  84. mqtt_initialized = true;
  85. break;
  86. case MQTT_EVENT_CONNECTED:
  87. MQTTReconnectCnt = 0;
  88. mqtt_initialized = true;
  89. mqtt_connected = true;
  90. MQTTconnected();
  91. break;
  92. case MQTT_EVENT_DISCONNECTED:
  93. mqtt_connected = false;
  94. MQTTReconnectCnt++;
  95. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Disconnected, trying to reconnect");
  96. if (MQTTReconnectCnt >= 5) {
  97. MQTTReconnectCnt = 0;
  98. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Disconnected, multiple reconnect attempts failed, still retrying...");
  99. }
  100. break;
  101. case MQTT_EVENT_SUBSCRIBED:
  102. ESP_LOGD(TAG, "MQTT_EVENT_SUBSCRIBED, msg_id=%d", event->msg_id);
  103. break;
  104. case MQTT_EVENT_UNSUBSCRIBED:
  105. ESP_LOGD(TAG, "MQTT_EVENT_UNSUBSCRIBED, msg_id=%d", event->msg_id);
  106. break;
  107. case MQTT_EVENT_PUBLISHED:
  108. ESP_LOGD(TAG, "MQTT_EVENT_PUBLISHED, msg_id=%d", event->msg_id);
  109. break;
  110. case MQTT_EVENT_DATA:
  111. ESP_LOGD(TAG, "MQTT_EVENT_DATA");
  112. ESP_LOGD(TAG, "TOPIC=%.*s", event->topic_len, event->topic);
  113. ESP_LOGD(TAG, "DATA=%.*s", event->data_len, event->data);
  114. topic.assign(event->topic, event->topic_len);
  115. if (subscribeFunktionMap != NULL) {
  116. if (subscribeFunktionMap->find(topic) != subscribeFunktionMap->end()) {
  117. ESP_LOGD(TAG, "call subcribe function for topic %s", topic.c_str());
  118. (*subscribeFunktionMap)[topic](topic, event->data, event->data_len);
  119. }
  120. } else {
  121. ESP_LOGW(TAG, "no handler available\r\n");
  122. }
  123. break;
  124. case MQTT_EVENT_ERROR:
  125. // http://docs.oasis-open.org/mqtt/mqtt/v3.1.1/os/mqtt-v3.1.1-os.html#_Toc398718033 --> chapter 3.2.2.3
  126. // The server does not support the level of the MQTT protocol requested by the client
  127. // NOTE: Only protocol 3.1.1 is supported (refer to setting in sdkconfig)
  128. if (event->error_handle->connect_return_code == MQTT_CONNECTION_REFUSE_PROTOCOL) {
  129. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Connection refused, unacceptable protocol version (0x01)");
  130. }
  131. // The client identifier is correct UTF-8 but not allowed by the server
  132. // e.g. clientID empty (cannot be the case -> default set in firmware)
  133. else if (event->error_handle->connect_return_code == MQTT_CONNECTION_REFUSE_ID_REJECTED) {
  134. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Connection refused, identifier rejected (0x02)");
  135. }
  136. // The network connection has been made but the MQTT service is unavailable
  137. else if (event->error_handle->connect_return_code == MQTT_CONNECTION_REFUSE_SERVER_UNAVAILABLE) {
  138. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Connection refused, Server unavailable (0x03)");
  139. }
  140. // The data in the user name or password is malformed
  141. else if (event->error_handle->connect_return_code == MQTT_CONNECTION_REFUSE_BAD_USERNAME) {
  142. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Connection refused, malformed data in username or password (0x04)");
  143. }
  144. // The client is not authorized to connect
  145. else if (event->error_handle->connect_return_code == MQTT_CONNECTION_REFUSE_NOT_AUTHORIZED) {
  146. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Connection refused, not authorized. Check username/password (0x05)");
  147. }
  148. else {
  149. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Other event id:" + event->error_handle->connect_return_code);
  150. ESP_LOGE(TAG, "Other event id:%d", event->error_handle->connect_return_code);
  151. }
  152. #ifdef DEBUG_DETAIL_ON
  153. ESP_LOGD(TAG, "MQTT_EVENT_ERROR - esp_mqtt_error_codes:");
  154. ESP_LOGD(TAG, "error_type:%d", event->error_handle->error_type);
  155. ESP_LOGD(TAG, "connect_return_code:%d", event->error_handle->connect_return_code);
  156. ESP_LOGD(TAG, "esp_transport_sock_errno:%d", event->error_handle->esp_transport_sock_errno);
  157. ESP_LOGD(TAG, "esp_tls_last_esp_err:%d", event->error_handle->esp_tls_last_esp_err);
  158. ESP_LOGD(TAG, "esp_tls_stack_err:%d", event->error_handle->esp_tls_stack_err);
  159. ESP_LOGD(TAG, "esp_tls_cert_verify_flags:%d", event->error_handle->esp_tls_cert_verify_flags);
  160. #endif
  161. break;
  162. default:
  163. ESP_LOGD(TAG, "Other event id:%d", event->event_id);
  164. break;
  165. }
  166. return ESP_OK;
  167. }
  168. static void mqtt_event_handler(void *handler_args, esp_event_base_t base, int32_t event_id, void *event_data) {
  169. ESP_LOGD(TAG, "Event dispatched from event loop base=%s, event_id=%d", base, (int)event_id);
  170. mqtt_event_handler_cb((esp_mqtt_event_handle_t) event_data);
  171. }
  172. bool MQTT_Configure(std::string _mqttURI, std::string _clientid, std::string _user, std::string _password,
  173. std::string _maintopic, std::string _domoticz_in_topic, std::string _lwt, std::string _lwt_connected, std::string _lwt_disconnected,
  174. std::string _cacertfilename, std::string _clientcertfilename, std::string _clientkeyfilename,
  175. int _keepalive, bool _SetRetainFlag, void *_callbackOnConnected) {
  176. if ((_mqttURI.length() == 0) || (_maintopic.length() == 0) || (_clientid.length() == 0))
  177. {
  178. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Init aborted! Config error (URI, MainTopic or ClientID missing)");
  179. return false;
  180. }
  181. uri = _mqttURI;
  182. client_id = _clientid;
  183. lwt_topic = _maintopic + "/" + _lwt;
  184. lwt_connected = _lwt_connected;
  185. lwt_disconnected = _lwt_disconnected;
  186. keepalive = _keepalive;
  187. SetRetainFlag = _SetRetainFlag;
  188. maintopic = _maintopic;
  189. domoticz_in_topic = _domoticz_in_topic;
  190. callbackOnConnected = ( void (*)(std::string, bool) )(_callbackOnConnected);
  191. if (_clientcertfilename.length() && _clientkeyfilename.length()){
  192. std::ifstream cert_ifs(_clientcertfilename);
  193. std::string cert_content((std::istreambuf_iterator<char>(cert_ifs)), (std::istreambuf_iterator<char>()));
  194. clientCert = cert_content;
  195. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "using clientCert: " + _clientcertfilename);
  196. std::ifstream key_ifs(_clientkeyfilename);
  197. std::string key_content((std::istreambuf_iterator<char>(key_ifs)), (std::istreambuf_iterator<char>()));
  198. clientKey = key_content;
  199. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "using clientKey: " + _clientkeyfilename);
  200. }
  201. if (_cacertfilename.length() ){
  202. std::ifstream ifs(_cacertfilename);
  203. std::string content((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
  204. caCert = content;
  205. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "using caCert: " + _cacertfilename);
  206. }
  207. if (_user.length() && _password.length()){
  208. user = _user;
  209. password = _password;
  210. }
  211. #ifdef __HIDE_PASSWORD
  212. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "URI: " + uri + ", clientname: " + client_id + ", user: " + user + ", password: XXXXXXXX, maintopic: "
  213. + maintopic + ", last-will-topic: " + lwt_topic + ", keepAlive: " + std::to_string(keepalive) + ", RetainFlag: " + std::to_string(SetRetainFlag));
  214. #else
  215. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "URI: " + uri + ", clientname: " + client_id + ", user: " + user + ", password: " + password + ", maintopic: "
  216. + maintopic + ", last-will-topic: " + lwt_topic + ", keepAlive: " + std::to_string(keepalive) + ", RetainFlag: " + std::to_string(SetRetainFlag));
  217. #endif
  218. mqtt_configOK = true;
  219. return true;
  220. }
  221. int MQTT_Init() {
  222. if (mqtt_initialized) {
  223. return 0;
  224. }
  225. if (mqtt_configOK) {
  226. mqtt_enabled = true;
  227. } else {
  228. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Init called, but client is not yet configured.");
  229. return 0;
  230. }
  231. if (!getWIFIisConnected()) {
  232. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Init called, but WIFI is not yet connected.");
  233. return 0;
  234. }
  235. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Init");
  236. MQTTdestroy_client(false);
  237. esp_mqtt_client_config_t mqtt_cfg = { };
  238. mqtt_cfg.broker.address.uri = uri.c_str();
  239. mqtt_cfg.credentials.client_id = client_id.c_str();
  240. mqtt_cfg.network.disable_auto_reconnect = false; // Reconnection routine active (Default: false)
  241. mqtt_cfg.network.reconnect_timeout_ms = 15000; // Try to reconnect to broker (Default: 10000ms)
  242. mqtt_cfg.network.timeout_ms = 20000; // Network Timeout (Default: 10000ms)
  243. mqtt_cfg.session.message_retransmit_timeout = 3000; // Time after message resent when broker not acknowledged (QoS1, QoS2)
  244. mqtt_cfg.session.last_will.topic = lwt_topic.c_str();
  245. mqtt_cfg.session.last_will.retain = 1;
  246. mqtt_cfg.session.last_will.msg = lwt_disconnected.c_str();
  247. mqtt_cfg.session.last_will.msg_len = (int)(lwt_disconnected.length());
  248. mqtt_cfg.session.keepalive = keepalive;
  249. mqtt_cfg.buffer.size = 1536; // size of MQTT send/receive buffer (Default: 1024)
  250. if (caCert.length()){
  251. mqtt_cfg.broker.verification.certificate = caCert.c_str();
  252. mqtt_cfg.broker.verification.certificate_len = caCert.length() + 1;
  253. mqtt_cfg.broker.verification.skip_cert_common_name_check = true;
  254. }
  255. if (clientCert.length() && clientKey.length()){
  256. mqtt_cfg.credentials.authentication.certificate = clientCert.c_str();
  257. mqtt_cfg.credentials.authentication.certificate_len = clientCert.length() + 1;
  258. mqtt_cfg.credentials.authentication.key = clientKey.c_str();
  259. mqtt_cfg.credentials.authentication.key_len = clientKey.length() + 1;
  260. }
  261. if (user.length() && password.length()){
  262. mqtt_cfg.credentials.username = user.c_str();
  263. mqtt_cfg.credentials.authentication.password = password.c_str();
  264. }
  265. #ifdef DEBUG_DETAIL_ON
  266. LogFile.WriteHeapInfo("MQTT Client Init");
  267. #endif
  268. client = esp_mqtt_client_init(&mqtt_cfg);
  269. if (client)
  270. {
  271. esp_err_t ret = esp_mqtt_client_register_event(client, esp_mqtt_ID, mqtt_event_handler, client);
  272. if (ret != ESP_OK)
  273. {
  274. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Could not register event (ret=" + std::to_string(ret) + ")!");
  275. mqtt_initialized = false;
  276. return -1;
  277. }
  278. #ifdef DEBUG_DETAIL_ON
  279. LogFile.WriteHeapInfo("MQTT Client Start");
  280. #endif
  281. ret = esp_mqtt_client_start(client);
  282. if (ret != ESP_OK)
  283. {
  284. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Client start failed (retval=" + std::to_string(ret) + ")!");
  285. mqtt_initialized = false;
  286. return -1;
  287. }
  288. else {
  289. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Client started, waiting for established connection...");
  290. mqtt_initialized = true;
  291. return 1;
  292. }
  293. }
  294. else
  295. {
  296. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Init failed, no handle created!");
  297. mqtt_initialized = false;
  298. return -1;
  299. }
  300. }
  301. void MQTTdestroy_client(bool _disable = false) {
  302. if (client) {
  303. if (mqtt_connected) {
  304. MQTTdestroySubscribeFunction();
  305. esp_mqtt_client_disconnect(client);
  306. mqtt_connected = false;
  307. }
  308. esp_mqtt_client_stop(client);
  309. esp_mqtt_client_destroy(client);
  310. client = NULL;
  311. mqtt_initialized = false;
  312. }
  313. if (_disable) // Disable MQTT service, avoid restart with MQTTPublish
  314. mqtt_configOK = false;
  315. }
  316. bool getMQTTisEnabled() {
  317. return mqtt_enabled;
  318. }
  319. bool getMQTTisConnected() {
  320. return mqtt_connected;
  321. }
  322. bool mqtt_handler_flow_start(std::string _topic, char* _data, int _data_len)
  323. {
  324. ESP_LOGD(TAG, "Handler called: topic %s, data %.*s", _topic.c_str(), _data_len, _data);
  325. MQTTCtrlFlowStart(_topic);
  326. return ESP_OK;
  327. }
  328. bool mqtt_handler_set_prevalue(std::string _topic, char* _data, int _data_len)
  329. {
  330. //ESP_LOGD(TAG, "Handler called: topic %s, data %.*s", _topic.c_str(), _data_len, _data);
  331. //example: {"numbersname": "main", "value": 12345.1234567}
  332. if (_data_len > 0) { // Check if data length > 0
  333. cJSON *jsonData = cJSON_Parse(_data);
  334. cJSON *numbersname = cJSON_GetObjectItemCaseSensitive(jsonData, "numbersname");
  335. cJSON *value = cJSON_GetObjectItemCaseSensitive(jsonData, "value");
  336. if (cJSON_IsString(numbersname) && (numbersname->valuestring != NULL)) { // Check if numbersname is valid
  337. if (cJSON_IsNumber(value)) { // Check if value is a number
  338. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "handler_set_prevalue called: numbersname: " + std::string(numbersname->valuestring) +
  339. ", value: " + std::to_string(value->valuedouble));
  340. if (flowctrl.UpdatePrevalue(std::to_string(value->valuedouble), std::string(numbersname->valuestring), true)) {
  341. cJSON_Delete(jsonData);
  342. return ESP_OK;
  343. }
  344. }
  345. else {
  346. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "handler_set_prevalue: value not a valid number (\"value\": 12345.12345)");
  347. }
  348. }
  349. else {
  350. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "handler_set_prevalue: numbersname not a valid string (\"numbersname\": \"main\")");
  351. }
  352. cJSON_Delete(jsonData);
  353. }
  354. else {
  355. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "handler_set_prevalue: handler called, but no data received");
  356. }
  357. return ESP_FAIL;
  358. }
  359. void MQTTconnected(){
  360. if (mqtt_connected) {
  361. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Connected to broker");
  362. if (connectFunktionMap != NULL) {
  363. for(std::map<std::string, std::function<void()>>::iterator it = connectFunktionMap->begin(); it != connectFunktionMap->end(); ++it) {
  364. it->second();
  365. ESP_LOGD(TAG, "call connect function %s", it->first.c_str());
  366. }
  367. }
  368. // Subcribe to topics
  369. // Note: Further subsriptions are handled in GPIO class
  370. //*****************************************
  371. std::function<bool(std::string topic, char* data, int data_len)> subHandler1 = mqtt_handler_flow_start;
  372. MQTTregisterSubscribeFunction(maintopic + "/ctrl/flow_start", subHandler1); // subcribe to maintopic/ctrl/flow_start
  373. std::function<bool(std::string topic, char* data, int data_len)> subHandler2 = mqtt_handler_set_prevalue;
  374. MQTTregisterSubscribeFunction(maintopic + "/ctrl/set_prevalue", subHandler2); // subcribe to maintopic/ctrl/set_prevalue
  375. if (subscribeFunktionMap != NULL) {
  376. for(std::map<std::string, std::function<bool(std::string, char*, int)>>::iterator it = subscribeFunktionMap->begin(); it != subscribeFunktionMap->end(); ++it) {
  377. int msg_id = esp_mqtt_client_subscribe(client, it->first.c_str(), 0);
  378. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "topic " + it->first + " subscribe successful, msg_id=" + std::to_string(msg_id));
  379. }
  380. }
  381. /* Send Static Topics and Homeassistant Discovery */
  382. if (callbackOnConnected) { // Call onConnected callback routine --> mqtt_server
  383. callbackOnConnected(maintopic, SetRetainFlag);
  384. }
  385. }
  386. }
  387. void MQTTregisterConnectFunction(std::string name, std::function<void()> func){
  388. ESP_LOGD(TAG, "MQTTregisteronnectFunction %s\r\n", name.c_str());
  389. if (connectFunktionMap == NULL) {
  390. connectFunktionMap = new std::map<std::string, std::function<void()>>();
  391. }
  392. if ((*connectFunktionMap)[name] != NULL) {
  393. ESP_LOGW(TAG, "connect function %s already registred", name.c_str());
  394. return;
  395. }
  396. (*connectFunktionMap)[name] = func;
  397. if (mqtt_connected) {
  398. func();
  399. }
  400. }
  401. void MQTTunregisterConnectFunction(std::string name){
  402. ESP_LOGD(TAG, "unregisterConnnectFunction %s\r\n", name.c_str());
  403. if ((connectFunktionMap != NULL) && (connectFunktionMap->find(name) != connectFunktionMap->end())) {
  404. connectFunktionMap->erase(name);
  405. }
  406. }
  407. void MQTTregisterSubscribeFunction(std::string topic, std::function<bool(std::string, char*, int)> func){
  408. ESP_LOGD(TAG, "registerSubscribeFunction %s", topic.c_str());
  409. if (subscribeFunktionMap == NULL) {
  410. subscribeFunktionMap = new std::map<std::string, std::function<bool(std::string, char*, int)>>();
  411. }
  412. if ((*subscribeFunktionMap)[topic] != NULL) {
  413. ESP_LOGW(TAG, "topic %s already registered for subscription", topic.c_str());
  414. return;
  415. }
  416. (*subscribeFunktionMap)[topic] = func;
  417. }
  418. void MQTTdestroySubscribeFunction(){
  419. if (subscribeFunktionMap != NULL) {
  420. if (mqtt_connected) {
  421. for(std::map<std::string, std::function<bool(std::string, char*, int)>>::iterator it = subscribeFunktionMap->begin(); it != subscribeFunktionMap->end(); ++it) {
  422. int msg_id = esp_mqtt_client_unsubscribe(client, it->first.c_str());
  423. ESP_LOGD(TAG, "topic %s unsubscribe successful, msg_id=%d", it->first.c_str(), msg_id);
  424. }
  425. }
  426. subscribeFunktionMap->clear();
  427. delete subscribeFunktionMap;
  428. subscribeFunktionMap = NULL;
  429. }
  430. }
  431. #endif //ENABLE_MQTT