interface_mqtt.cpp 22 KB

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