2020-05-16 23:49:34 +02:00
|
|
|
#ifdef HAS_MQTT
|
|
|
|
|
|
|
|
#include "mqttclient.h"
|
|
|
|
|
|
|
|
static const char TAG[] = __FILE__;
|
|
|
|
|
2020-05-17 23:07:38 +02:00
|
|
|
IPAddress mqtt_server_ip;
|
2020-05-16 23:49:34 +02:00
|
|
|
|
|
|
|
QueueHandle_t MQTTSendQueue;
|
|
|
|
TaskHandle_t mqttTask;
|
|
|
|
|
|
|
|
WiFiClient ipClient;
|
2020-05-17 23:07:38 +02:00
|
|
|
PubSubClient mqttClient(ipClient);
|
2020-05-16 23:49:34 +02:00
|
|
|
|
|
|
|
void WiFiEvent(WiFiEvent_t event) {
|
|
|
|
switch (event) {
|
|
|
|
case SYSTEM_EVENT_ETH_START:
|
2020-05-17 23:07:38 +02:00
|
|
|
ESP_LOGI(TAG, "Ethernet link layer started");
|
|
|
|
ETH.setHostname(MQTT_CLIENT);
|
2020-05-16 23:49:34 +02:00
|
|
|
break;
|
|
|
|
case SYSTEM_EVENT_ETH_CONNECTED:
|
2020-05-17 23:07:38 +02:00
|
|
|
ESP_LOGI(TAG, "Network link connected");
|
2020-05-16 23:49:34 +02:00
|
|
|
break;
|
|
|
|
case SYSTEM_EVENT_ETH_GOT_IP:
|
2020-05-17 23:07:38 +02:00
|
|
|
ESP_LOGI(TAG, "ETH MAC: %s", ETH.macAddress().c_str());
|
|
|
|
ESP_LOGI(TAG, "IPv4: %s", ETH.localIP().toString().c_str());
|
2020-05-16 23:49:34 +02:00
|
|
|
ESP_LOGI(TAG, "Link Speed %d Mbps %s", ETH.linkSpeed(),
|
|
|
|
ETH.fullDuplex() ? "full duplex" : "half duplex");
|
|
|
|
mqtt_connect(mqtt_server_ip, MQTT_PORT);
|
|
|
|
break;
|
|
|
|
case SYSTEM_EVENT_ETH_DISCONNECTED:
|
2020-05-17 23:07:38 +02:00
|
|
|
ESP_LOGI(TAG, "Network link disconnected");
|
2020-05-16 23:49:34 +02:00
|
|
|
break;
|
|
|
|
case SYSTEM_EVENT_ETH_STOP:
|
2020-05-17 23:07:38 +02:00
|
|
|
ESP_LOGI(TAG, "Ethernet link layer stopped");
|
2020-05-16 23:49:34 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 23:07:38 +02:00
|
|
|
int mqtt_connect(IPAddress mqtt_host, uint16_t mqtt_port) {
|
|
|
|
// resolve server
|
|
|
|
if (WiFi.hostByName(MQTT_SERVER, mqtt_server_ip)) {
|
|
|
|
ESP_LOGI(TAG, "Attempting to connect to %s [%s]", MQTT_SERVER,
|
|
|
|
mqtt_server_ip.toString().c_str());
|
|
|
|
} else {
|
|
|
|
ESP_LOGI(TAG, "Could not resolve %s", MQTT_SERVER);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-05-16 23:49:34 +02:00
|
|
|
// attempt to connect to MQTT server
|
2020-05-17 23:07:38 +02:00
|
|
|
if (ipClient.connect(mqtt_host, mqtt_port)) {
|
|
|
|
|
|
|
|
mqttClient.setServer(mqtt_server_ip, MQTT_PORT);
|
|
|
|
mqttClient.setCallback(mqtt_callback);
|
|
|
|
|
|
|
|
String clientId = "Paxcounter-";
|
|
|
|
clientId += String(random(0xffff), HEX);
|
|
|
|
|
|
|
|
if (mqttClient.connect(clientId.c_str())) {
|
|
|
|
ESP_LOGI(TAG, "MQTT server connected, subscribing...");
|
|
|
|
mqttClient.publish(MQTT_OUTTOPIC, "hello world");
|
|
|
|
mqttClient.subscribe(MQTT_INTOPIC);
|
|
|
|
ESP_LOGI(TAG, "MQTT topic subscribed");
|
2020-05-16 23:49:34 +02:00
|
|
|
} else {
|
|
|
|
ESP_LOGW(TAG, "MQTT server not responding, retrying later");
|
2020-05-17 23:07:38 +02:00
|
|
|
return -1;
|
2020-05-16 23:49:34 +02:00
|
|
|
}
|
2020-05-17 23:07:38 +02:00
|
|
|
} else {
|
2020-05-16 23:49:34 +02:00
|
|
|
ESP_LOGW(TAG, "MQTT server not connected, retrying later");
|
2020-05-17 23:07:38 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2020-05-16 23:49:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void mqtt_client_task(void *param) {
|
2020-05-17 23:07:38 +02:00
|
|
|
|
|
|
|
MessageBuffer_t msg;
|
|
|
|
char cPort[4], cMsg[PAYLOAD_BUFFER_SIZE + 1];
|
|
|
|
|
2020-05-16 23:49:34 +02:00
|
|
|
while (1) {
|
|
|
|
|
|
|
|
// fetch next or wait for payload to send from queue
|
|
|
|
if (xQueueReceive(MQTTSendQueue, &msg, portMAX_DELAY) != pdTRUE) {
|
|
|
|
ESP_LOGE(TAG, "Premature return from xQueueReceive() with no data!");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-05-17 23:07:38 +02:00
|
|
|
// send data to mqtt server
|
|
|
|
if (mqttClient.connected()) {
|
|
|
|
snprintf(cPort, sizeof(cPort), "Port_%d", msg.MessagePort);
|
2020-05-16 23:49:34 +02:00
|
|
|
snprintf(cMsg, sizeof(cMsg), "%s", msg.Message);
|
2020-05-17 23:07:38 +02:00
|
|
|
mqttClient.publish(cPort, cMsg);
|
|
|
|
mqttClient.loop();
|
2020-05-16 23:49:34 +02:00
|
|
|
ESP_LOGI(TAG, "%d byte(s) sent to MQTT", msg.MessageSize);
|
|
|
|
} else {
|
|
|
|
mqtt_enqueuedata(&msg); // re-enqueue the undelivered message
|
|
|
|
delay(10000);
|
|
|
|
// attempt to reconnect to MQTT server
|
|
|
|
mqtt_connect(mqtt_server_ip, MQTT_PORT);
|
|
|
|
}
|
2020-05-17 23:07:38 +02:00
|
|
|
} // while(1)
|
2020-05-16 23:49:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t mqtt_init(void) {
|
|
|
|
assert(SEND_QUEUE_SIZE);
|
|
|
|
MQTTSendQueue = xQueueCreate(SEND_QUEUE_SIZE, sizeof(MessageBuffer_t));
|
|
|
|
if (MQTTSendQueue == 0) {
|
|
|
|
ESP_LOGE(TAG, "Could not create MQTT send queue. Aborting.");
|
|
|
|
return ESP_FAIL;
|
|
|
|
}
|
|
|
|
ESP_LOGI(TAG, "MQTT send queue created, size %d Bytes",
|
|
|
|
SEND_QUEUE_SIZE * PAYLOAD_BUFFER_SIZE);
|
|
|
|
|
|
|
|
ESP_LOGI(TAG, "Starting MQTTloop...");
|
|
|
|
xTaskCreate(mqtt_client_task, "mqttloop", 4096, (void *)NULL, 2, &mqttTask);
|
|
|
|
|
2020-05-17 23:07:38 +02:00
|
|
|
WiFi.onEvent(WiFiEvent);
|
|
|
|
ETH.begin();
|
|
|
|
|
2020-05-16 23:49:34 +02:00
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mqtt_enqueuedata(MessageBuffer_t *message) {
|
|
|
|
// enqueue message in MQTT send queue
|
|
|
|
BaseType_t ret;
|
|
|
|
MessageBuffer_t DummyBuffer;
|
|
|
|
sendprio_t prio = message->MessagePrio;
|
|
|
|
|
|
|
|
switch (prio) {
|
|
|
|
case prio_high:
|
|
|
|
// clear space in queue if full, then fallthrough to normal
|
|
|
|
if (!uxQueueSpacesAvailable(MQTTSendQueue))
|
|
|
|
xQueueReceive(MQTTSendQueue, &DummyBuffer, (TickType_t)0);
|
|
|
|
case prio_normal:
|
|
|
|
ret = xQueueSendToFront(MQTTSendQueue, (void *)message, (TickType_t)0);
|
|
|
|
break;
|
|
|
|
case prio_low:
|
|
|
|
default:
|
|
|
|
ret = xQueueSendToBack(MQTTSendQueue, (void *)message, (TickType_t)0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ret != pdTRUE)
|
|
|
|
ESP_LOGW(TAG, "MQTT sendqueue is full");
|
|
|
|
}
|
|
|
|
|
|
|
|
void mqtt_queuereset(void) { xQueueReset(MQTTSendQueue); }
|
|
|
|
|
|
|
|
void mqtt_callback(char *topic, byte *payload, unsigned int length) {
|
2020-05-17 23:07:38 +02:00
|
|
|
if ((length >= 1) && (topic == MQTT_INTOPIC))
|
2020-05-16 23:49:34 +02:00
|
|
|
rcommand(payload, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAS_MQTT
|