aboutsummaryrefslogtreecommitdiff
path: root/platformio/common/libs/mqtt/homekit/mqtt/mqtt.h
blob: 9e0c2bed5c1f6a5b7d6cace7209d1bb53f6c3d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef HOMEKIT_LIB_MQTT_H
#define HOMEKIT_LIB_MQTT_H

#include <vector>
#include <map>
#include <cstdint>
#include <espMqttClient.h>
#include <Ticker.h>
#include "./module.h"

namespace homekit::mqtt {
    
extern const uint8_t MQTT_CA_FINGERPRINT[];
extern const char MQTT_SERVER[];
extern const uint16_t MQTT_PORT;
extern const char MQTT_USERNAME[];
extern const char MQTT_PASSWORD[];
extern const char MQTT_CLIENT_ID[];
extern const char MQTT_SECRET[CONFIG_NODE_SECRET_SIZE+1];

class MqttModule;

class Mqtt {
private:
    String nodeId;
    WiFiClientSecure httpsSecureClient;
    espMqttClientSecure client;
    Ticker reconnectTimer;
    std::vector<MqttModule*> modules;
    std::map<String, MqttModule*> moduleSubscriptions;
    bool connected;

    uint16_t subscribe(const String& topic, uint8_t qos = 0);

public:
    Mqtt();
    void connect();
    void disconnect();
    void reconnect();
    void loop();
    void addModule(MqttModule* module);
    void subscribeModule(String& topic, MqttModule* module, uint8_t qos = 0);
    uint16_t publish(const String& topic, uint8_t* payload, size_t length);
};

}

#endif //HOMEKIT_LIB_MQTT_H