ESP32_ChinaDieselHeater_Con.../src/Afterburner/src/Utility/Moderator.h

146 lines
3.7 KiB
C
Raw Normal View History

/*
* This file is part of the "bluetoothheater" distribution
* (https://gitlab.com/mrjones.id.au/bluetoothheater)
*
* Copyright (C) 2018 Ray Jones <ray@mrjones.id.au>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
#ifndef __BTC_MODERATOR_H__
#define __BTC_MODERATOR_H__
#include <map>
#include "../Libraries/ArduinoJson/ArduinoJson.h"
#include "../RTC/Timers.h"
#include "DebugPort.h"
#include "BTC_GPIO.h"
class CTimerModerator {
sTimer Memory[14];
enum eType { eStart, eStop, eDays, eRpt, eTemp};
const char* _getName(eType type);
int _shouldSend(int channel, const sTimer& toSend);
public:
CTimerModerator();
bool addJson(int channel, const sTimer& toSend, JsonObject& root);
void reset();
void reset(int channel);
};
class CStringModerator {
std::map<const char*, std::string> Memory;
public:
const char* shouldSend(const char* name, const char* value);
bool addJson(const char* name, const char* value, JsonObject& root);
void reset();
void reset(const char* name);
};
template <class T>
class TModerator {
std::map<const char*, T> Memory;
public:
bool shouldSend(const char* name, T value);
bool addJson(const char* name, T value, JsonObject& root);
void reset();
void reset(const char* name);
};
template<class T>
bool TModerator<T>::shouldSend(const char* name, T value)
{
bool retval = true;
auto it = Memory.find(name);
if(it != Memory.end()) {
retval = it->second != value;
it->second = value;
}
else {
Memory[name] = value;
}
return retval;
}
template<class T>
bool TModerator<T>::addJson(const char* name, T value, JsonObject& root)
{
bool retval = shouldSend(name, value);
if(retval)
root.set(name, value);
return retval;
}
template<class T>
void TModerator<T>::reset()
{
for(auto it = Memory.begin(); it != Memory.end(); ++it) {
it->second = it->second+100;
}
}
template<class T>
void TModerator<T>::reset(const char* name)
{
auto it = Memory.find(name);
if(it != Memory.end()) {
DebugPort.printf("Resetting moderator: \"%s\"", name);
it->second = it->second+100;
}
}
class CModerator {
TModerator<int> iModerator;
TModerator<float> fModerator;
TModerator<unsigned char> ucModerator;
CStringModerator szModerator;
public:
// integer values
bool addJson(const char* name, int value, JsonObject& root) {
return iModerator.addJson(name, value, root);
};
// float values
bool addJson(const char* name, float value, JsonObject& root) {
return fModerator.addJson(name, value, root);
};
// unsigned char values
bool addJson(const char* name, unsigned char value, JsonObject& root) {
return ucModerator.addJson(name, value, root);
};
// const char* values
bool addJson(const char* name, const char* value, JsonObject& root) {
return szModerator.addJson(name, value, root);
};
// force changes on all held values
void reset() {
iModerator.reset();
fModerator.reset();
ucModerator.reset();
szModerator.reset();
};
void reset(const char* name) {
iModerator.reset(name);
fModerator.reset(name);
ucModerator.reset(name);
szModerator.reset(name);
};
};
#endif // __BTC_MODERATOR_H__