interface_mqtt.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  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;
  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. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Publish msg_id " + std::to_string(msg_id) + " in " + std::to_string((esp_timer_get_time() - starttime)/1000) + " ms");
  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. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Publish msg_id " + std::to_string(msg_id) + " in " + std::to_string((esp_timer_get_time() - starttime)/1000) + " ms");
  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. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "MQTT_EVENT_SUBSCRIBED, msg_id=" + std::to_string(event->msg_id));
  103. break;
  104. case MQTT_EVENT_UNSUBSCRIBED:
  105. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "MQTT_EVENT_UNSUBSCRIBED, msg_id=" + std::to_string(event->msg_id));
  106. break;
  107. case MQTT_EVENT_PUBLISHED:
  108. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "MQTT_EVENT_PUBLISHED, msg_id=" + std::to_string(event->msg_id));
  109. break;
  110. case MQTT_EVENT_DATA:
  111. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "MQTT_EVENT_DATA");
  112. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "TOPIC=" + std:.string(event->topic));
  113. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "DATA=" + std:.string(event->data));
  114. topic.assign(event->topic, event->topic_len);
  115. if (subscribeFunktionMap != NULL) {
  116. if (subscribeFunktionMap->find(topic) != subscribeFunktionMap->end()) {
  117. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "call subcribe function for topic " + topic);
  118. (*subscribeFunktionMap)[topic](topic, event->data, event->data_len);
  119. }
  120. } else {
  121. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "no handler available!");
  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: " + std::to_string(event->error_handle->connect_return_code));
  150. }
  151. #ifdef DEBUG_DETAIL_ON
  152. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "MQTT_EVENT_ERROR - esp_mqtt_error_codes:");
  153. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "error_type: " + std::to_string(event->error_handle->error_type));
  154. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "connect_return_code: " + std::to_string(event->error_handle->connect_return_code));
  155. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "esp_transport_sock_errno: " + std::to_string(event->error_handle->esp_transport_sock_errno));
  156. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "esp_tls_last_esp_err: " + std::to_string(event->error_handle->esp_tls_last_esp_err));
  157. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "esp_tls_stack_err: " + std::to_string(event->error_handle->esp_tls_stack_err));
  158. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "esp_tls_cert_verify_flags: " + std::to_string(event->error_handle->esp_tls_cert_verify_flags));
  159. #endif
  160. break;
  161. default:
  162. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Other event id: " + std::to_string(event->event_id));
  163. break;
  164. }
  165. return ESP_OK;
  166. }
  167. static void mqtt_event_handler(void *handler_args, esp_event_base_t base, int32_t event_id, void *event_data) {
  168. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Event dispatched from event loop base=" + std:.string(base) + ", event_id=" + std::to_string(event_id));
  169. mqtt_event_handler_cb((esp_mqtt_event_handle_t) event_data);
  170. }
  171. bool MQTT_Configure(std::string _mqttURI, std::string _clientid, std::string _user, std::string _password,
  172. std::string _maintopic, std::string _lwt, std::string _lwt_connected, std::string _lwt_disconnected,
  173. std::string _cacertfilename, std::string _clientcertfilename, std::string _clientkeyfilename,
  174. int _keepalive, bool _SetRetainFlag, void *_callbackOnConnected) {
  175. if ((_mqttURI.length() == 0) || (_maintopic.length() == 0) || (_clientid.length() == 0))
  176. {
  177. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Init aborted! Config error (URI, MainTopic or ClientID missing)");
  178. return false;
  179. }
  180. uri = _mqttURI;
  181. client_id = _clientid;
  182. lwt_topic = _maintopic + "/" + _lwt;
  183. lwt_connected = _lwt_connected;
  184. lwt_disconnected = _lwt_disconnected;
  185. keepalive = _keepalive;
  186. SetRetainFlag = _SetRetainFlag;
  187. maintopic = _maintopic;
  188. callbackOnConnected = ( void (*)(std::string, bool) )(_callbackOnConnected);
  189. if (_clientcertfilename.length() && _clientkeyfilename.length()){
  190. std::ifstream cert_ifs(_clientcertfilename);
  191. std::string cert_content((std::istreambuf_iterator<char>(cert_ifs)), (std::istreambuf_iterator<char>()));
  192. clientCert = cert_content;
  193. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "using clientCert: " + _clientcertfilename);
  194. std::ifstream key_ifs(_clientkeyfilename);
  195. std::string key_content((std::istreambuf_iterator<char>(key_ifs)), (std::istreambuf_iterator<char>()));
  196. clientKey = key_content;
  197. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "using clientKey: " + _clientkeyfilename);
  198. }
  199. if (_cacertfilename.length() ){
  200. std::ifstream ifs(_cacertfilename);
  201. std::string content((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
  202. caCert = content;
  203. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "using caCert: " + _cacertfilename);
  204. }
  205. if (_user.length() && _password.length()){
  206. user = _user;
  207. password = _password;
  208. }
  209. #ifdef __HIDE_PASSWORD
  210. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "URI: " + uri + ", clientname: " + client_id + ", user: " + user + ", password: XXXXXXXX, maintopic: "
  211. + maintopic + ", last-will-topic: " + lwt_topic + ", keepAlive: " + std::to_string(keepalive) + ", RetainFlag: " + std::to_string(SetRetainFlag));
  212. #else
  213. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "URI: " + uri + ", clientname: " + client_id + ", user: " + user + ", password: " + password + ", maintopic: "
  214. + maintopic + ", last-will-topic: " + lwt_topic + ", keepAlive: " + std::to_string(keepalive) + ", RetainFlag: " + std::to_string(SetRetainFlag));
  215. #endif
  216. mqtt_configOK = true;
  217. return true;
  218. }
  219. int MQTT_Init() {
  220. if (mqtt_initialized) {
  221. return 0;
  222. }
  223. if (mqtt_configOK) {
  224. mqtt_enabled = true;
  225. } else {
  226. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Init called, but client is not yet configured.");
  227. return 0;
  228. }
  229. if (!getWIFIisConnected()) {
  230. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Init called, but WIFI is not yet connected.");
  231. return 0;
  232. }
  233. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Init");
  234. MQTTdestroy_client(false);
  235. esp_mqtt_client_config_t mqtt_cfg = { };
  236. mqtt_cfg.broker.address.uri = uri.c_str();
  237. mqtt_cfg.credentials.client_id = client_id.c_str();
  238. mqtt_cfg.network.disable_auto_reconnect = false; // Reconnection routine active (Default: false)
  239. mqtt_cfg.network.reconnect_timeout_ms = 15000; // Try to reconnect to broker (Default: 10000ms)
  240. mqtt_cfg.network.timeout_ms = 20000; // Network Timeout (Default: 10000ms)
  241. mqtt_cfg.session.message_retransmit_timeout = 3000; // Time after message resent when broker not acknowledged (QoS1, QoS2)
  242. mqtt_cfg.session.last_will.topic = lwt_topic.c_str();
  243. mqtt_cfg.session.last_will.retain = 1;
  244. mqtt_cfg.session.last_will.msg = lwt_disconnected.c_str();
  245. mqtt_cfg.session.last_will.msg_len = (int)(lwt_disconnected.length());
  246. mqtt_cfg.session.keepalive = keepalive;
  247. mqtt_cfg.buffer.size = 1536; // size of MQTT send/receive buffer (Default: 1024)
  248. if (caCert.length()){
  249. mqtt_cfg.broker.verification.certificate = caCert.c_str();
  250. mqtt_cfg.broker.verification.certificate_len = caCert.length() + 1;
  251. mqtt_cfg.broker.verification.skip_cert_common_name_check = true;
  252. }
  253. if (clientCert.length() && clientKey.length()){
  254. mqtt_cfg.credentials.authentication.certificate = clientCert.c_str();
  255. mqtt_cfg.credentials.authentication.certificate_len = clientCert.length() + 1;
  256. mqtt_cfg.credentials.authentication.key = clientKey.c_str();
  257. mqtt_cfg.credentials.authentication.key_len = clientKey.length() + 1;
  258. }
  259. if (user.length() && password.length()){
  260. mqtt_cfg.credentials.username = user.c_str();
  261. mqtt_cfg.credentials.authentication.password = password.c_str();
  262. }
  263. #ifdef DEBUG_DETAIL_ON
  264. LogFile.WriteHeapInfo("MQTT Client Init");
  265. #endif
  266. client = esp_mqtt_client_init(&mqtt_cfg);
  267. if (client)
  268. {
  269. esp_err_t ret = esp_mqtt_client_register_event(client, esp_mqtt_ID, mqtt_event_handler, client);
  270. if (ret != ESP_OK)
  271. {
  272. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Could not register event (ret=" + std::to_string(ret) + ")!");
  273. mqtt_initialized = false;
  274. return -1;
  275. }
  276. #ifdef DEBUG_DETAIL_ON
  277. LogFile.WriteHeapInfo("MQTT Client Start");
  278. #endif
  279. ret = esp_mqtt_client_start(client);
  280. if (ret != ESP_OK)
  281. {
  282. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Client start failed (retval=" + std::to_string(ret) + ")!");
  283. mqtt_initialized = false;
  284. return -1;
  285. }
  286. else {
  287. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Client started, waiting for established connection...");
  288. mqtt_initialized = true;
  289. return 1;
  290. }
  291. }
  292. else
  293. {
  294. LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Init failed, no handle created!");
  295. mqtt_initialized = false;
  296. return -1;
  297. }
  298. }
  299. void MQTTdestroy_client(bool _disable = false) {
  300. if (client) {
  301. if (mqtt_connected) {
  302. MQTTdestroySubscribeFunction();
  303. esp_mqtt_client_disconnect(client);
  304. mqtt_connected = false;
  305. }
  306. esp_mqtt_client_stop(client);
  307. esp_mqtt_client_destroy(client);
  308. client = NULL;
  309. mqtt_initialized = false;
  310. }
  311. if (_disable) // Disable MQTT service, avoid restart with MQTTPublish
  312. mqtt_configOK = false;
  313. }
  314. bool getMQTTisEnabled() {
  315. return mqtt_enabled;
  316. }
  317. bool getMQTTisConnected() {
  318. return mqtt_connected;
  319. }
  320. bool mqtt_handler_flow_start(std::string _topic, char* _data, int _data_len)
  321. {
  322. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Handler called: topic='" + _topic + "', data='" + _data +"'");
  323. if (_data_len > 0) {
  324. MQTTCtrlFlowStart(_topic);
  325. }
  326. else {
  327. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "handler_flow_start: handler called, but no data");
  328. }
  329. return ESP_OK;
  330. }
  331. bool mqtt_handler_set_prevalue(std::string _topic, char* _data, int _data_len)
  332. {
  333. //LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "Handler called: topic='" + _topic + "', data='" + _data +"'");
  334. //example: {"numbersname": "main", "value": 12345.1234567}
  335. if (_data_len > 0) { // Check if data length > 0
  336. cJSON *jsonData = cJSON_Parse(_data);
  337. cJSON *numbersname = cJSON_GetObjectItemCaseSensitive(jsonData, "numbersname");
  338. cJSON *value = cJSON_GetObjectItemCaseSensitive(jsonData, "value");
  339. if (cJSON_IsString(numbersname) && (numbersname->valuestring != NULL)) { // Check if numbersname is valid
  340. if (cJSON_IsNumber(value)) { // Check if value is a number
  341. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "handler_set_prevalue called: numbersname: " + std::string(numbersname->valuestring) +
  342. ", value: " + std::to_string(value->valuedouble));
  343. if (flowctrl.UpdatePrevalue(std::to_string(value->valuedouble), std::string(numbersname->valuestring), true)) {
  344. cJSON_Delete(jsonData);
  345. return ESP_OK;
  346. }
  347. }
  348. else {
  349. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "handler_set_prevalue: value not a valid number (\"value\": 12345.12345)");
  350. }
  351. }
  352. else {
  353. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "handler_set_prevalue: numbersname not a valid string (\"numbersname\": \"main\")");
  354. }
  355. cJSON_Delete(jsonData);
  356. }
  357. else {
  358. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "handler_set_prevalue: handler called, but no data received");
  359. }
  360. return ESP_FAIL;
  361. }
  362. void MQTTconnected(){
  363. if (mqtt_connected) {
  364. LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Connected to broker");
  365. if (connectFunktionMap != NULL) {
  366. for(std::map<std::string, std::function<void()>>::iterator it = connectFunktionMap->begin(); it != connectFunktionMap->end(); ++it) {
  367. it->second();
  368. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "call connect function '" + it->first + "'");
  369. }
  370. }
  371. // Subcribe to topics
  372. // Note: Further subsriptions are handled in GPIO class
  373. //*****************************************
  374. std::function<bool(std::string topic, char* data, int data_len)> subHandler1 = mqtt_handler_flow_start;
  375. MQTTregisterSubscribeFunction(maintopic + "/ctrl/flow_start", subHandler1); // subcribe to maintopic/ctrl/flow_start
  376. std::function<bool(std::string topic, char* data, int data_len)> subHandler2 = mqtt_handler_set_prevalue;
  377. MQTTregisterSubscribeFunction(maintopic + "/ctrl/set_prevalue", subHandler2); // subcribe to maintopic/ctrl/set_prevalue
  378. if (subscribeFunktionMap != NULL) {
  379. for(std::map<std::string, std::function<bool(std::string, char*, int)>>::iterator it = subscribeFunktionMap->begin(); it != subscribeFunktionMap->end(); ++it) {
  380. int msg_id = esp_mqtt_client_subscribe(client, it->first.c_str(), 0);
  381. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "topic " + it->first + " subscribe successful, msg_id=" + std::to_string(msg_id));
  382. }
  383. }
  384. /* Send Static Topics and Homeassistant Discovery */
  385. if (callbackOnConnected) { // Call onConnected callback routine --> mqtt_server
  386. callbackOnConnected(maintopic, SetRetainFlag);
  387. }
  388. }
  389. }
  390. void MQTTregisterConnectFunction(std::string name, std::function<void()> func){
  391. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "MQTTregisteronnectFunction " + name);
  392. if (connectFunktionMap == NULL) {
  393. connectFunktionMap = new std::map<std::string, std::function<void()>>();
  394. }
  395. if ((*connectFunktionMap)[name] != NULL) {
  396. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "connect function '" + name + "' already registred!");
  397. return;
  398. }
  399. (*connectFunktionMap)[name] = func;
  400. if (mqtt_connected) {
  401. func();
  402. }
  403. }
  404. void MQTTunregisterConnectFunction(std::string name){
  405. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "unregisterConnnectFunction '" + name + "'");
  406. if ((connectFunktionMap != NULL) && (connectFunktionMap->find(name) != connectFunktionMap->end())) {
  407. connectFunktionMap->erase(name);
  408. }
  409. }
  410. void MQTTregisterSubscribeFunction(std::string topic, std::function<bool(std::string, char*, int)> func){
  411. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "registerSubscribeFunction '" + topic + "'");
  412. if (subscribeFunktionMap == NULL) {
  413. subscribeFunktionMap = new std::map<std::string, std::function<bool(std::string, char*, int)>>();
  414. }
  415. if ((*subscribeFunktionMap)[topic] != NULL) {
  416. LogFile.WriteToFile(ESP_LOG_WARN, TAG, "topic '" + topic + "' already registered for subscription!");
  417. return;
  418. }
  419. (*subscribeFunktionMap)[topic] = func;
  420. }
  421. void MQTTdestroySubscribeFunction(){
  422. if (subscribeFunktionMap != NULL) {
  423. if (mqtt_connected) {
  424. for(std::map<std::string, std::function<bool(std::string, char*, int)>>::iterator it = subscribeFunktionMap->begin(); it != subscribeFunktionMap->end(); ++it) {
  425. int msg_id = esp_mqtt_client_unsubscribe(client, it->first.c_str());
  426. LogFile.WriteToFile(ESP_LOG_DEBUG, TAG, "topic '" + it->first + "' unsubscribe successful, msg_id=" + std::to_string(msg_id));
  427. }
  428. }
  429. subscribeFunktionMap->clear();
  430. delete subscribeFunktionMap;
  431. subscribeFunktionMap = NULL;
  432. }
  433. }
  434. #endif //ENABLE_MQTT