2019-05-16 11:15:16 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include "NVCore.h"
|
|
|
|
#include "DebugPort.h"
|
2019-05-17 06:08:35 +00:00
|
|
|
#include <functional>
|
2019-07-22 20:15:18 +00:00
|
|
|
#include <string.h>
|
2019-05-16 11:15:16 +00:00
|
|
|
|
2019-06-06 01:32:43 +00:00
|
|
|
#define INBOUNDS(TST, MIN, MAX) (((TST) >= (MIN)) && ((TST) <= (MAX)))
|
|
|
|
|
2019-05-16 11:15:16 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
CESP32_NVStorage::validatedLoad(const char* key, char* val, int maxlen, const char* defVal)
|
|
|
|
{
|
|
|
|
char probe[128];
|
|
|
|
bool retval = true;
|
|
|
|
strcpy(probe, "TestPresence");
|
|
|
|
int len = preferences.getString(key, probe, 127);
|
|
|
|
if(len == 0 || strcmp(probe, "TestPresence") == 0) {
|
|
|
|
preferences.putString(key, defVal);
|
|
|
|
DebugPort.printf("CESP32HeaterStorage::validatedLoad<char*> default installed %s=%s", key, defVal);
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
preferences.getString(key, val, maxlen);
|
|
|
|
val[maxlen] = 0; // ensure null terminated
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-07-22 20:15:18 +00:00
|
|
|
CESP32_NVStorage::validatedLoad(const char* key, uint8_t& val, uint8_t defVal, std::function<bool(uint8_t, uint8_t, uint8_t)> validator, uint8_t min, uint8_t max, uint8_t mask)
|
2019-05-16 11:15:16 +00:00
|
|
|
{
|
|
|
|
val = preferences.getUChar(key, defVal);
|
|
|
|
if(!validator(val & mask, min, max)) {
|
|
|
|
|
|
|
|
DebugPort.printf("CESP32HeaterStorage::validatedLoad<uint8_t> invalid read %s=%d", key, val);
|
|
|
|
DebugPort.printf(" validator(%d,%d) reset to %d\r\n", min, max, defVal);
|
|
|
|
|
|
|
|
val = defVal;
|
|
|
|
preferences.putUChar(key, val);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-07-22 20:15:18 +00:00
|
|
|
CESP32_NVStorage::validatedLoad(const char* key, int8_t& val, int8_t defVal, std::function<bool(int8_t, int8_t, int8_t)> validator, int8_t min, int8_t max)
|
2019-05-16 11:15:16 +00:00
|
|
|
{
|
|
|
|
val = preferences.getChar(key, defVal);
|
|
|
|
if(!validator(val, min, max)) {
|
|
|
|
|
|
|
|
DebugPort.printf("CESP32HeaterStorage::validatedLoad<int8_t> invalid read %s=%d", key, val);
|
|
|
|
DebugPort.printf(" validator(%d,%d) reset to %d\r\n", min, max, defVal);
|
|
|
|
|
|
|
|
val = defVal;
|
|
|
|
preferences.putChar(key, val);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-07-22 20:15:18 +00:00
|
|
|
CESP32_NVStorage::validatedLoad(const char* key, uint16_t& val, uint16_t defVal, std::function<bool(uint16_t, uint16_t, uint16_t)> validator, uint16_t min, uint16_t max)
|
2019-05-16 11:15:16 +00:00
|
|
|
{
|
|
|
|
val = preferences.getUShort(key, defVal);
|
|
|
|
if(!validator(val, min, max)) {
|
|
|
|
|
|
|
|
DebugPort.printf("CESP32HeaterStorage::validatedLoad<uint16_t> invalid read %s=%d", key, val);
|
|
|
|
DebugPort.printf(" validator(%d,%d) reset to %d\r\n", min, max, defVal);
|
|
|
|
|
|
|
|
val = defVal;
|
|
|
|
preferences.putUShort(key, val);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2019-06-06 01:32:43 +00:00
|
|
|
CESP32_NVStorage::validatedLoad(const char* key, long& val, long defVal, long min, long max)
|
2019-05-16 11:15:16 +00:00
|
|
|
{
|
|
|
|
val = preferences.getLong(key, defVal);
|
2019-06-06 01:32:43 +00:00
|
|
|
if(!INBOUNDS(val, min, max)) {
|
2019-05-16 11:15:16 +00:00
|
|
|
|
|
|
|
DebugPort.printf("CESP32HeaterStorage::validatedLoad<long> invalid read %s=%ld", key, val);
|
|
|
|
DebugPort.printf(" validator(%ld,%ld) reset to %ld\r\n", min, max, defVal);
|
|
|
|
|
|
|
|
val = defVal;
|
|
|
|
preferences.putLong(key, val);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-06 01:32:43 +00:00
|
|
|
bool
|
|
|
|
CESP32_NVStorage::validatedLoad(const char* key, float& val, float defVal, float min, float max)
|
|
|
|
{
|
|
|
|
val = preferences.getFloat(key, defVal);
|
|
|
|
if(!INBOUNDS(val, min, max)) {
|
|
|
|
|
|
|
|
DebugPort.printf("CESP32HeaterStorage::validatedLoad<float> invalid read %s=%f", key, val);
|
|
|
|
DebugPort.printf(" validator(%f,%f) reset to %f\r\n", min, max, defVal);
|
|
|
|
|
|
|
|
val = defVal;
|
|
|
|
preferences.putFloat(key, val);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-07-18 12:28:40 +00:00
|
|
|
bool finBounds(float test, float minLim, float maxLim)
|
|
|
|
{
|
|
|
|
return INBOUNDS(test, minLim, maxLim);
|
|
|
|
}
|
|
|
|
|
2019-05-16 11:15:16 +00:00
|
|
|
bool u8inBounds(uint8_t test, uint8_t minLim, uint8_t maxLim)
|
|
|
|
{
|
2019-06-15 23:09:29 +00:00
|
|
|
return INBOUNDS(test, minLim, maxLim);
|
2019-05-16 11:15:16 +00:00
|
|
|
}
|
|
|
|
|
2019-07-22 20:15:18 +00:00
|
|
|
bool u8inBoundsOrZero(uint8_t test, uint8_t minLim, uint8_t maxLim)
|
|
|
|
{
|
|
|
|
return INBOUNDS(test, minLim, maxLim) || (test == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-16 11:15:16 +00:00
|
|
|
bool s8inBounds(int8_t test, int8_t minLim, int8_t maxLim)
|
|
|
|
{
|
2019-06-15 23:09:29 +00:00
|
|
|
return INBOUNDS(test, minLim, maxLim);
|
2019-05-16 11:15:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool u8Match2(uint8_t test, uint8_t test1, uint8_t test2)
|
|
|
|
{
|
|
|
|
return (test == test1) || (test == test2);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool u16inBounds(uint16_t test, uint16_t minLim, uint16_t maxLim)
|
|
|
|
{
|
2019-06-15 23:09:29 +00:00
|
|
|
return INBOUNDS(test, minLim, maxLim);
|
2019-05-16 11:15:16 +00:00
|
|
|
}
|
|
|
|
|