kopia lustrzana https://github.com/meshtastic/firmware
141 wiersze
4.4 KiB
C++
141 wiersze
4.4 KiB
C++
#pragma once
|
|
|
|
#include "configuration.h"
|
|
|
|
#include "concurrency/OSThread.h"
|
|
#include "mesh/Channels.h"
|
|
#include "mesh/generated/meshtastic/mqtt.pb.h"
|
|
#if !defined(ARCH_NRF52) || NRF52_USE_JSON
|
|
#include "serialization/JSON.h"
|
|
#endif
|
|
#if HAS_WIFI
|
|
#include <WiFiClient.h>
|
|
#if __has_include(<WiFiClientSecure.h>)
|
|
#include <WiFiClientSecure.h>
|
|
#endif
|
|
#endif
|
|
#if HAS_ETHERNET
|
|
#include <EthernetClient.h>
|
|
#endif
|
|
|
|
#if HAS_NETWORKING
|
|
#include <PubSubClient.h>
|
|
#include <memory>
|
|
#endif
|
|
|
|
#define MAX_MQTT_QUEUE 16
|
|
|
|
/**
|
|
* Our wrapper/singleton for sending/receiving MQTT "udp" packets. This object isolates the MQTT protocol implementation from
|
|
* the two components that use it: MQTTPlugin and MQTTSimInterface.
|
|
*/
|
|
class MQTT : private concurrency::OSThread
|
|
{
|
|
public:
|
|
MQTT();
|
|
|
|
/**
|
|
* Publish a packet on the global MQTT server.
|
|
* @param mp_encrypted the encrypted packet to publish
|
|
* @param mp_decoded the decrypted packet to publish
|
|
* @param chIndex the index of the channel for this message
|
|
*
|
|
* Note: for messages we are forwarding on the mesh that we can't find the channel for (because we don't have the keys), we
|
|
* can not forward those messages to the cloud - because no way to find a global channel ID.
|
|
*/
|
|
void onSend(const meshtastic_MeshPacket &mp_encrypted, const meshtastic_MeshPacket &mp_decoded, ChannelIndex chIndex);
|
|
|
|
bool isConnectedDirectly();
|
|
|
|
bool publish(const char *topic, const char *payload, bool retained);
|
|
|
|
bool publish(const char *topic, const uint8_t *payload, size_t length, const bool retained);
|
|
|
|
void onClientProxyReceive(meshtastic_MqttClientProxyMessage msg);
|
|
|
|
bool isEnabled() { return this->enabled; };
|
|
|
|
void start() { setIntervalFromNow(0); };
|
|
|
|
bool isUsingDefaultServer() { return isConfiguredForDefaultServer; }
|
|
|
|
/// Validate the meshtastic_ModuleConfig_MQTTConfig.
|
|
static bool isValidConfig(const meshtastic_ModuleConfig_MQTTConfig &config) { return isValidConfig(config, nullptr); }
|
|
|
|
protected:
|
|
struct QueueEntry {
|
|
std::string topic;
|
|
std::basic_string<uint8_t> envBytes; // binary/pb_encode_to_bytes ServiceEnvelope
|
|
};
|
|
PointerQueue<QueueEntry> mqttQueue;
|
|
|
|
int reconnectCount = 0;
|
|
bool isConfiguredForDefaultServer = true;
|
|
|
|
virtual int32_t runOnce() override;
|
|
|
|
#ifndef PIO_UNIT_TESTING
|
|
private:
|
|
#endif
|
|
#if HAS_WIFI
|
|
using MQTTClient = WiFiClient;
|
|
#if __has_include(<WiFiClientSecure.h>)
|
|
using MQTTClientTLS = WiFiClientSecure;
|
|
#define MQTT_SUPPORTS_TLS 1
|
|
#endif
|
|
#elif HAS_ETHERNET
|
|
using MQTTClient = EthernetClient;
|
|
#else
|
|
using MQTTClient = void;
|
|
#endif
|
|
|
|
#if HAS_NETWORKING
|
|
std::unique_ptr<MQTTClient> mqttClient;
|
|
#if MQTT_SUPPORTS_TLS
|
|
MQTTClientTLS mqttClientTLS;
|
|
#endif
|
|
PubSubClient pubSub;
|
|
explicit MQTT(std::unique_ptr<MQTTClient> mqttClient);
|
|
#endif
|
|
|
|
std::string cryptTopic = "/2/e/"; // msh/2/e/CHANNELID/NODEID
|
|
std::string jsonTopic = "/2/json/"; // msh/2/json/CHANNELID/NODEID
|
|
std::string mapTopic = "/2/map/"; // For protobuf-encoded MapReport messages
|
|
|
|
// For map reporting (only applies when enabled)
|
|
const uint32_t default_map_position_precision = 14; // defaults to max. offset of ~1459m
|
|
const uint32_t default_map_publish_interval_secs = 60 * 15; // defaults to 15 minutes
|
|
uint32_t last_report_to_map = 0;
|
|
uint32_t map_position_precision = default_map_position_precision;
|
|
uint32_t map_publish_interval_msecs = default_map_publish_interval_secs * 1000;
|
|
|
|
/** Attempt to connect to server if necessary
|
|
*/
|
|
void reconnect();
|
|
|
|
/** Tell the server what subscriptions we want (based on channels.downlink_enabled)
|
|
*/
|
|
void sendSubscriptions();
|
|
|
|
/// Callback for direct mqtt subscription messages
|
|
static void mqttCallback(char *topic, byte *payload, unsigned int length);
|
|
|
|
static bool isValidConfig(const meshtastic_ModuleConfig_MQTTConfig &config, MQTTClient *client);
|
|
|
|
/// Called when a new publish arrives from the MQTT server
|
|
void onReceive(char *topic, byte *payload, size_t length);
|
|
|
|
void publishQueuedMessages();
|
|
|
|
void publishNodeInfo();
|
|
|
|
// Check if we should report unencrypted information about our node for consumption by a map
|
|
void perhapsReportToMap();
|
|
|
|
/// Return 0 if sleep is okay, veto sleep if we are connected to pubsub server
|
|
// int preflightSleepCb(void *unused = NULL) { return pubSub.connected() ? 1 : 0; }
|
|
};
|
|
|
|
void mqttInit();
|
|
|
|
extern MQTT *mqtt; |