2021-04-27 09:56:16 +02:00
|
|
|
#ifndef _DccMQTT_h_
|
|
|
|
#define _DccMQTT_h_
|
2021-04-27 11:44:09 +02:00
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
#if __has_include("config.h")
|
|
|
|
#include "config.h"
|
2021-04-27 11:44:09 +02:00
|
|
|
#else
|
2021-05-01 12:38:27 +02:00
|
|
|
#warning config.h not found. Using defaults from config.example.h
|
|
|
|
#include "config.example.h"
|
2021-04-27 11:44:09 +02:00
|
|
|
#endif
|
2021-05-01 12:38:27 +02:00
|
|
|
#include "defines.h"
|
2021-04-27 11:44:09 +02:00
|
|
|
|
2021-04-27 09:56:16 +02:00
|
|
|
#include <PubSubClient.h>
|
|
|
|
#include <DCCEXParser.h>
|
|
|
|
#include <Queue.h>
|
2021-04-27 11:44:09 +02:00
|
|
|
#include <Ethernet.h>
|
2021-05-01 12:38:27 +02:00
|
|
|
#include <Dns.h>
|
2021-04-27 09:56:16 +02:00
|
|
|
|
2021-04-27 10:58:12 +02:00
|
|
|
#define MAXPAYLOAD 64
|
2021-05-01 12:38:27 +02:00
|
|
|
#define MAXDOMAINLENGTH 32
|
2021-04-27 09:56:16 +02:00
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
#define MAXTBUF 50 //!< max length of the buffer for building the topic name ;to be checked
|
|
|
|
#define MAXTMSG 120 //!< max length of the messages for a topic ;to be checked PROGMEM ?
|
|
|
|
#define MAXTSTR 30 //!< max length of a topic string
|
|
|
|
#define MAXCONNECTID 40
|
|
|
|
#define CLIENTIDSIZE 6
|
|
|
|
#define MAXRECONNECT 5
|
|
|
|
|
|
|
|
// Define Broker configurations; Values are provided in the following order
|
|
|
|
// MQTT_BROKER_PORT 9883
|
2021-04-27 17:01:03 +02:00
|
|
|
// MQTT_BROKER_DOMAIN "dcclms.modelrailroad.ovh"
|
|
|
|
// MQTT_BROKER_ADDRESS 51, 210, 151, 143
|
|
|
|
// MQTT_BROKER_USER "dcccs"
|
|
|
|
// MQTT_BROKER_PASSWD "dcccs$3020"
|
|
|
|
// MQTT_BROKER_CLIENTID_PREFIX "dcc$lms-"
|
2021-05-01 12:38:27 +02:00
|
|
|
struct MQTTBroker
|
|
|
|
{
|
2021-04-27 17:01:03 +02:00
|
|
|
int port;
|
2021-05-01 12:38:27 +02:00
|
|
|
IPAddress ip;
|
|
|
|
const FSH *domain = nullptr;
|
|
|
|
const FSH *user = nullptr;
|
|
|
|
const FSH *pwd = nullptr;
|
|
|
|
const FSH *prefix = nullptr;
|
|
|
|
byte cType; // connection type to identify valid params
|
|
|
|
|
|
|
|
IPAddress resovleBroker(const FSH *d){
|
|
|
|
DNSClient dns;
|
|
|
|
IPAddress bip;
|
|
|
|
|
|
|
|
char domain[MAXDOMAINLENGTH];
|
|
|
|
strcpy_P(domain, (const char *)d);
|
|
|
|
|
|
|
|
dns.begin(Ethernet.dnsServerIP());
|
|
|
|
if (dns.getHostByName(domain, bip) == 1)
|
|
|
|
{
|
|
|
|
DIAG(F("MQTT Broker/ %s = %d.%d.%d.%d"), domain, bip[0], bip[1],bip[2],bip[3]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DIAG(F("MQTT Dns lookup for %s failed"), domain);
|
|
|
|
}
|
|
|
|
return bip;
|
|
|
|
}
|
2021-04-27 17:01:03 +02:00
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
MQTTBroker(int p, IPAddress i, const FSH *d) : port(p), ip(i), domain(d), cType(1) {};
|
|
|
|
MQTTBroker(int p, IPAddress i, const FSH *d, const FSH *uid, const FSH *pass) : port(p), ip(i), domain(d), user(uid), pwd(pass), cType(2){};
|
|
|
|
MQTTBroker(int p, IPAddress i, const FSH *d, const FSH *uid, const FSH *pass, const FSH *pfix) : port(p), ip(i), domain(d), user(uid), pwd(pass), prefix(pfix), cType(3){};
|
|
|
|
MQTTBroker(int p, const FSH *d, const FSH *uid, const FSH *pass, const FSH *pfix) : port(p), domain(d), user(uid), pwd(pass), prefix(pfix), cType(4)
|
|
|
|
{
|
|
|
|
ip = resovleBroker(d);
|
|
|
|
};
|
|
|
|
MQTTBroker(int p, const FSH *d, const FSH *uid, const FSH *pass) : port(p), domain(d), user(uid), pwd(pass), cType(5)
|
|
|
|
{
|
|
|
|
ip = resovleBroker(d);
|
|
|
|
};
|
|
|
|
MQTTBroker(int p, const FSH *d) : port(p), domain(d), cType(6)
|
|
|
|
{
|
|
|
|
ip = resovleBroker(d);
|
|
|
|
};
|
2021-04-27 17:01:03 +02:00
|
|
|
};
|
2021-05-01 12:38:27 +02:00
|
|
|
|
|
|
|
struct DccMQTTMsg
|
|
|
|
{
|
2021-04-27 10:58:12 +02:00
|
|
|
char payload[MAXPAYLOAD];
|
2021-04-27 09:56:16 +02:00
|
|
|
};
|
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
enum DccMQTTState
|
|
|
|
{
|
|
|
|
INIT,
|
|
|
|
CONFIGURED, // server/client objects set
|
|
|
|
CONNECTED // mqtt broker is connected
|
2021-04-27 14:20:49 +02:00
|
|
|
};
|
2021-04-27 10:58:12 +02:00
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
class DccMQTT
|
2021-04-27 09:56:16 +02:00
|
|
|
{
|
|
|
|
private:
|
2021-04-27 10:58:12 +02:00
|
|
|
static DccMQTT singleton;
|
|
|
|
DccMQTT() = default;
|
2021-05-01 12:38:27 +02:00
|
|
|
DccMQTT(const DccMQTT &); // non construction-copyable
|
|
|
|
DccMQTT &operator=(const DccMQTT &); // non copyable
|
2021-04-27 10:58:12 +02:00
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
void setup(const FSH *id, MQTTBroker *broker);
|
|
|
|
void connect(); // (re)connects to the broker
|
|
|
|
boolean subscribe();
|
2021-04-27 09:56:16 +02:00
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
EthernetClient ethClient; // TCP Client object for the MQ Connection
|
|
|
|
IPAddress server; // MQTT server object
|
|
|
|
PubSubClient mqttClient; // PubSub Endpoint for data exchange
|
|
|
|
MQTTBroker *broker; // Broker configuration object as set in config.h
|
|
|
|
|
|
|
|
Queue<DccMQTTMsg> in;
|
2021-04-27 10:58:12 +02:00
|
|
|
Queue<DccMQTTMsg> out;
|
2021-04-27 09:56:16 +02:00
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
char clientID[(CLIENTIDSIZE*2)+1];
|
|
|
|
|
2021-04-27 14:20:49 +02:00
|
|
|
DccMQTTState mqState = INIT;
|
|
|
|
|
2021-04-27 09:56:16 +02:00
|
|
|
public:
|
2021-05-01 12:38:27 +02:00
|
|
|
static DccMQTT *get() noexcept
|
|
|
|
{
|
2021-04-27 10:58:12 +02:00
|
|
|
return &singleton;
|
|
|
|
}
|
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
bool isConfigured() { return mqState == CONFIGURED; };
|
|
|
|
bool isConnected() { return mqState == CONNECTED; };
|
|
|
|
void setState(DccMQTTState s) { mqState = s; };
|
2021-04-27 14:20:49 +02:00
|
|
|
|
2021-05-01 12:38:27 +02:00
|
|
|
void setup(); // called at setup in the main ino file
|
2021-04-27 10:58:12 +02:00
|
|
|
void loop();
|
|
|
|
|
|
|
|
~DccMQTT() = default;
|
2021-04-27 09:56:16 +02:00
|
|
|
};
|
|
|
|
|
2021-04-27 10:58:12 +02:00
|
|
|
// /**
|
|
|
|
// * @brief MQTT broker configuration done in config.h
|
|
|
|
// */
|
|
|
|
|
|
|
|
// // Class for setting up the MQTT connection / topics / queues for processing commands and sendig back results
|
|
|
|
|
|
|
|
// #define MAXDEVICEID 20 // maximum length of the unique id / device id
|
|
|
|
// #define MAXTOPICS 8 // command L,T,S,A plus response plus admin for inital handshake
|
|
|
|
// #define TCMDROOT "command/" // root of command topics
|
|
|
|
// #define TCMRESROOT "result/" // root of the result topic
|
|
|
|
// #define ADMROOT "admin/" // root of the admin topic where whe can do hanshakes for the inital setup
|
|
|
|
// ; // esp for sec reasons i.e. making sure we are talking to the right device and
|
|
|
|
// ; // not some one elses
|
|
|
|
// #define TELEMETRYROOT "telemetry/" // telemetry topic
|
|
|
|
// #define DIAGROOT "diag/" // diagnostics
|
|
|
|
// #define JRMIROOT "jrmi/"
|
|
|
|
|
|
|
|
// #define NOOFDCCTOPICS 11
|
|
|
|
// enum DccTopics {
|
2021-05-01 12:38:27 +02:00
|
|
|
// CMD_L, // L is Loco or Layout(power on/off)
|
2021-04-27 10:58:12 +02:00
|
|
|
// CMD_T,
|
|
|
|
// CMD_S,
|
|
|
|
// CMD_A,
|
|
|
|
// RESULT,
|
|
|
|
// ADMIN,
|
|
|
|
// TELEMETRY,
|
|
|
|
// DIAGNOSTIC,
|
|
|
|
// JRMI,
|
|
|
|
// INVALID_T
|
|
|
|
// };
|
|
|
|
|
|
|
|
// /**
|
|
|
|
// * @brief List of keywords used in the command protocol
|
2021-05-01 12:38:27 +02:00
|
|
|
// *
|
2021-04-27 10:58:12 +02:00
|
|
|
// */
|
|
|
|
// #define MAX_KEYWORD_LENGTH 11
|
|
|
|
// PROGMEM const char _kRead[] = {"read"};
|
|
|
|
// PROGMEM const char _kWrite[] = {"write"};
|
|
|
|
// PROGMEM const char _kPower[] = {"power"};
|
|
|
|
// PROGMEM const char _kThrottle[] = {"throttle"};
|
|
|
|
// PROGMEM const char _kFunction[] = {"function"};
|
|
|
|
// PROGMEM const char _kCv[] = {"cv"};
|
|
|
|
// PROGMEM const char _kSpeed[] = {"speed"};
|
|
|
|
// PROGMEM const char _kLocomotive[] = {"locomotive"};
|
|
|
|
// PROGMEM const char _kValue[] = {"value"};
|
|
|
|
// PROGMEM const char _kDirection[] = {"direction"};
|
|
|
|
// PROGMEM const char _kState[] = {"state"};
|
|
|
|
// PROGMEM const char _kFn[] = {"fn"};
|
|
|
|
// PROGMEM const char _kTrack[] = {"track"};
|
|
|
|
// PROGMEM const char _kBit[] = {"bit"};
|
|
|
|
|
|
|
|
// /**
|
2021-05-01 12:38:27 +02:00
|
|
|
// * @brief The ingoin and outgoing queues can hold 20 messages each; this should be bigger than the number
|
|
|
|
// * of statically allocated pool items whose pointers are getting pushed into the queues.
|
|
|
|
// *
|
2021-04-27 10:58:12 +02:00
|
|
|
// */
|
2021-05-01 12:38:27 +02:00
|
|
|
// #define MAXQUEUE 20 // MAX message queue length
|
2021-04-27 10:58:12 +02:00
|
|
|
|
|
|
|
// class DccMQTT
|
|
|
|
// {
|
|
|
|
// private:
|
|
|
|
|
|
|
|
// static char *deviceID; // Unique Device Identifier; based on the chip
|
|
|
|
// static Queue<int> inComming; // incomming messages queue; the queue only contains indexes to the message pool
|
|
|
|
// static Queue<int> outGoing; // outgoing messages queue; the queue only contains indexes to the message pool
|
|
|
|
|
|
|
|
// public:
|
2021-05-01 12:38:27 +02:00
|
|
|
// static char **topics; // list of pub/sub topics
|
|
|
|
// static PubSubClient *mqClient;
|
2021-04-27 10:58:12 +02:00
|
|
|
|
|
|
|
// static void setup(DCCEXParser p); // main entry to get things going
|
2021-05-01 12:38:27 +02:00
|
|
|
// static void loop(); // recieveing commands / processing commands / publish results
|
2021-04-27 10:58:12 +02:00
|
|
|
// static bool connected(); // true if the MQ client is connected
|
|
|
|
|
|
|
|
// static char *getDeviceID();
|
|
|
|
// static void setDeviceID();
|
|
|
|
// static void subscribe(); // subscribes to all relevant topics
|
2021-05-01 12:38:27 +02:00
|
|
|
// static void subscribeT(char *topic);// subscribe to a particular topic for other than the std ones in subscribe (e.g. telemetry)
|
|
|
|
// static void publish(); // publishes a JSON message constructed from the outgoing queue (cid and result)
|
|
|
|
// static void printTopics(); // prints the list of subscribed topics - debug use
|
2021-04-27 10:58:12 +02:00
|
|
|
// static bool inIsEmpty(); // test if the incomming queue is empty
|
|
|
|
// static bool outIsEmpty(); // test if the outgoing queue is empty
|
|
|
|
// static void pushIn(uint8_t midx); // push a command struct into the incomming queue for processing
|
2021-05-01 12:38:27 +02:00
|
|
|
// static void pushOut(uint8_t midx); // push a command struct into the incomming queue for processing
|
|
|
|
// static uint8_t popOut(); // pop a command struct with the result to be published
|
2021-04-27 10:58:12 +02:00
|
|
|
// static uint8_t popIn(); // pop a command struct from the in comming queue for processing
|
2021-05-01 12:38:27 +02:00
|
|
|
|
|
|
|
// static void pub_free_memory(int fm);
|
2021-04-27 10:58:12 +02:00
|
|
|
|
|
|
|
// DccMQTT();
|
|
|
|
// ~DccMQTT();
|
|
|
|
// };
|
|
|
|
|
2021-04-27 09:56:16 +02:00
|
|
|
#endif
|