| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045 |
- #include "ClassFlowPostProcessing.h"
- #include "Helper.h"
- #include "ClassFlowMakeImage.h"
- #include "ClassLogFile.h"
- #include <iomanip>
- #include <sstream>
- #include <time.h>
- #include "time_sntp.h"
- #include "esp_log.h"
- static const char* TAG = "class_flow_postproc";
- //#define SERIAL_DEBUG // testing debug on serial enabled
- #define PREVALUE_TIME_FORMAT_OUTPUT "%Y-%m-%dT%H:%M:%S"
- #define PREVALUE_TIME_FORMAT_INPUT "%d-%d-%dT%d:%d:%d"
- std::string ClassFlowPostProcessing::GetJSON(std::string _id, std::string _mac, std::string _lineend)
- {
- std::string json="{" + _lineend;
- for (int i = 0; i < NUMBERS.size(); ++i)
- {
- json += "\"" + NUMBERS[i]->name + "\":" + _lineend;
- json += " {" + _lineend;
- if (_id.length() > 0)
- json += " \"ID\": \"" + _id + "\"," + _lineend;
- if (_mac.length() > 0)
- json += " \"MAC\": \"" + _mac + "\"," + _lineend;
- if (NUMBERS[i]->ReturnValue.length() > 0)
- json += " \"value\": \"" + NUMBERS[i]->ReturnValue + "\"," + _lineend;
- else
- json += " \"value\": \"\"," + _lineend;
- json += " \"raw\": \"" + NUMBERS[i]->ReturnRawValue + "\"," + _lineend;
- json += " \"pre\": \"" + NUMBERS[i]->ReturnPreValue + "\"," + _lineend;
- json += " \"error\": \"" + NUMBERS[i]->ErrorMessageText + "\"," + _lineend;
- if (NUMBERS[i]->ReturnRateValue.length() > 0)
- json += " \"rate\": " + NUMBERS[i]->ReturnRateValue + "," + _lineend;
- else
- json += " \"rate\": \"\"," + _lineend;
- json += " \"timestamp\": \"" + NUMBERS[i]->timeStamp + "\"" + _lineend;
- if ((i+1) < NUMBERS.size())
- json += " }," + _lineend;
- else
- json += " }" + _lineend;
- }
- json += "}";
- return json;
- }
- string ClassFlowPostProcessing::GetPreValue(std::string _number)
- {
- std::string result;
- int index = -1;
- if (_number == "")
- _number = "default";
- for (int i = 0; i < NUMBERS.size(); ++i)
- if (NUMBERS[i]->name == _number)
- index = i;
- result = RundeOutput(NUMBERS[index]->PreValue, NUMBERS[index]->Nachkomma);
- return result;
- }
- void ClassFlowPostProcessing::SetPreValue(double zw, string _numbers, bool _extern)
- {
- ESP_LOGD(TAG, "SetPrevalue: %f, %s", zw, _numbers.c_str());
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- // ESP_LOGD(TAG, "Number %d, %s", j, NUMBERS[j]->name.c_str());
- if (NUMBERS[j]->name == _numbers)
- {
- NUMBERS[j]->PreValue = zw;
- NUMBERS[j]->ReturnPreValue = RundeOutput(zw, NUMBERS[j]->Nachkomma);
- NUMBERS[j]->PreValueOkay = true;
- if (_extern)
- {
- time(&(NUMBERS[j]->lastvalue));
- localtime(&(NUMBERS[j]->lastvalue));
- }
- // ESP_LOGD(TAG, "Found %d! - set to %f", j, NUMBERS[j]->PreValue);
- }
- }
- UpdatePreValueINI = true;
- SavePreValue();
- }
- bool ClassFlowPostProcessing::LoadPreValue(void)
- {
- std::vector<string> zerlegt;
- FILE* pFile;
- char zw[1024];
- string zwtime, zwvalue, name;
- bool _done = false;
- UpdatePreValueINI = false; // Konvertierung ins neue Format
- pFile = fopen(FilePreValue.c_str(), "r");
- if (pFile == NULL)
- return false;
- fgets(zw, 1024, pFile);
- ESP_LOGD(TAG, "Read line Prevalue.ini: %s", zw);
- zwtime = trim(std::string(zw));
- if (zwtime.length() == 0)
- return false;
- zerlegt = HelperZerlegeZeile(zwtime, "\t");
- if (zerlegt.size() > 1) // neues Format
- {
- while ((zerlegt.size() > 1) && !_done)
- {
- name = trim(zerlegt[0]);
- zwtime = trim(zerlegt[1]);
- zwvalue = trim(zerlegt[2]);
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- if (NUMBERS[j]->name == name)
- {
- NUMBERS[j]->PreValue = stod(zwvalue.c_str());
- NUMBERS[j]->ReturnPreValue = RundeOutput(NUMBERS[j]->PreValue, NUMBERS[j]->Nachkomma + 1); // SIcherheitshalber 1 Stelle mehr, da ggf. Exgtended Resolution an ist (wird erst beim ersten Durchlauf gesetzt)
- time_t tStart;
- int yy, month, dd, hh, mm, ss;
- struct tm whenStart;
- sscanf(zwtime.c_str(), PREVALUE_TIME_FORMAT_INPUT, &yy, &month, &dd, &hh, &mm, &ss);
- whenStart.tm_year = yy - 1900;
- whenStart.tm_mon = month - 1;
- whenStart.tm_mday = dd;
- whenStart.tm_hour = hh;
- whenStart.tm_min = mm;
- whenStart.tm_sec = ss;
- whenStart.tm_isdst = -1;
- NUMBERS[j]->lastvalue = mktime(&whenStart);
- time(&tStart);
- localtime(&tStart);
- double difference = difftime(tStart, NUMBERS[j]->lastvalue);
- difference /= 60;
- if (difference > PreValueAgeStartup)
- NUMBERS[j]->PreValueOkay = false;
- else
- NUMBERS[j]->PreValueOkay = true;
- }
- }
- if (!fgets(zw, 1024, pFile))
- _done = true;
- else
- {
- ESP_LOGD(TAG, "Read line Prevalue.ini: %s", zw);
- zerlegt = HelperZerlegeZeile(trim(std::string(zw)), "\t");
- if (zerlegt.size() > 1)
- {
- name = trim(zerlegt[0]);
- zwtime = trim(zerlegt[1]);
- zwvalue = trim(zerlegt[2]);
- }
- }
- }
- fclose(pFile);
- }
- else // altes Format
- {
- fgets(zw, 1024, pFile);
- fclose(pFile);
- ESP_LOGD(TAG, "%s", zw);
- zwvalue = trim(std::string(zw));
- NUMBERS[0]->PreValue = stod(zwvalue.c_str());
- time_t tStart;
- int yy, month, dd, hh, mm, ss;
- struct tm whenStart;
- sscanf(zwtime.c_str(), PREVALUE_TIME_FORMAT_INPUT, &yy, &month, &dd, &hh, &mm, &ss);
- whenStart.tm_year = yy - 1900;
- whenStart.tm_mon = month - 1;
- whenStart.tm_mday = dd;
- whenStart.tm_hour = hh;
- whenStart.tm_min = mm;
- whenStart.tm_sec = ss;
- whenStart.tm_isdst = -1;
- ESP_LOGD(TAG, "TIME: %d, %d, %d, %d, %d, %d", whenStart.tm_year, whenStart.tm_mon, whenStart.tm_wday, whenStart.tm_hour, whenStart.tm_min, whenStart.tm_sec);
- NUMBERS[0]->lastvalue = mktime(&whenStart);
- time(&tStart);
- localtime(&tStart);
- double difference = difftime(tStart, NUMBERS[0]->lastvalue);
- difference /= 60;
- if (difference > PreValueAgeStartup)
- return false;
- NUMBERS[0]->Value = NUMBERS[0]->PreValue;
- NUMBERS[0]->ReturnValue = to_string(NUMBERS[0]->Value);
- if (NUMBERS[0]->digit_roi || NUMBERS[0]->analog_roi)
- {
- NUMBERS[0]->ReturnValue = RundeOutput(NUMBERS[0]->Value, NUMBERS[0]->Nachkomma);
- }
- UpdatePreValueINI = true; // Konvertierung ins neue Format
- SavePreValue();
- }
- return true;
- }
- void ClassFlowPostProcessing::SavePreValue()
- {
- FILE* pFile;
- string _zw;
- if (!UpdatePreValueINI) // PreValues unverändert --> File muss nicht neu geschrieben werden
- return;
- pFile = fopen(FilePreValue.c_str(), "w");
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- char buffer[80];
- struct tm* timeinfo = localtime(&NUMBERS[j]->lastvalue);
- strftime(buffer, 80, PREVALUE_TIME_FORMAT_OUTPUT, timeinfo);
- NUMBERS[j]->timeStamp = std::string(buffer);
- // ESP_LOGD(TAG, "SaverPreValue %d, Value: %f, Nachkomma %d", j, NUMBERS[j]->PreValue, NUMBERS[j]->Nachkomma);
- _zw = NUMBERS[j]->name + "\t" + NUMBERS[j]->timeStamp + "\t" + RundeOutput(NUMBERS[j]->PreValue, NUMBERS[j]->Nachkomma) + "\n";
- ESP_LOGD(TAG, "Write PreValue Zeile: %s", _zw.c_str());
- if (pFile) {
- fputs(_zw.c_str(), pFile);
- }
- }
- UpdatePreValueINI = false;
- fclose(pFile);
- }
- ClassFlowPostProcessing::ClassFlowPostProcessing(std::vector<ClassFlow*>* lfc, ClassFlowCNNGeneral *_analog, ClassFlowCNNGeneral *_digit)
- {
- PreValueUse = false;
- PreValueAgeStartup = 30;
- ErrorMessage = false;
- ListFlowControll = NULL;
- FilePreValue = FormatFileName("/sdcard/config/prevalue.ini");
- ListFlowControll = lfc;
- flowMakeImage = NULL;
- UpdatePreValueINI = false;
- IgnoreLeadingNaN = false;
- flowAnalog = _analog;
- flowDigit = _digit;
- for (int i = 0; i < ListFlowControll->size(); ++i)
- {
- if (((*ListFlowControll)[i])->name().compare("ClassFlowMakeImage") == 0)
- {
- flowMakeImage = (ClassFlowMakeImage*) (*ListFlowControll)[i];
- }
- }
- }
- void ClassFlowPostProcessing::handleDecimalExtendedResolution(string _decsep, string _value)
- {
- string _digit, _decpos;
- int _pospunkt = _decsep.find_first_of(".");
- // ESP_LOGD(TAG, "Name: %s, Pospunkt: %d", _decsep.c_str(), _pospunkt);
- if (_pospunkt > -1)
- _digit = _decsep.substr(0, _pospunkt);
- else
- _digit = "default";
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- bool _zwdc = false;
- if (toUpper(_value) == "TRUE")
- _zwdc = true;
-
- if (_digit == "default") // erstmal auf default setzen (falls sonst nichts gesetzt)
- {
- NUMBERS[j]->isExtendedResolution = _zwdc;
- }
- if (NUMBERS[j]->name == _digit)
- {
- NUMBERS[j]->isExtendedResolution = _zwdc;
- }
- }
- }
- void ClassFlowPostProcessing::handleDecimalSeparator(string _decsep, string _value)
- {
- string _digit, _decpos;
- int _pospunkt = _decsep.find_first_of(".");
- // ESP_LOGD(TAG, "Name: %s, Pospunkt: %d", _decsep.c_str(), _pospunkt);
- if (_pospunkt > -1)
- _digit = _decsep.substr(0, _pospunkt);
- else
- _digit = "default";
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- int _zwdc = 0;
- // try
- {
- _zwdc = stoi(_value);
- }
- /* catch(const std::exception& e)
- {
- ESP_LOGD(TAG, "ERROR - Decimalshift is not a number: %s", _value.c_str());
- }
- */
- if (_digit == "default") // erstmal auf default setzen (falls sonst nichts gesetzt)
- {
- NUMBERS[j]->DecimalShift = _zwdc;
- NUMBERS[j]->DecimalShiftInitial = _zwdc;
- }
- if (NUMBERS[j]->name == _digit)
- {
- NUMBERS[j]->DecimalShift = _zwdc;
- NUMBERS[j]->DecimalShiftInitial = _zwdc;
- }
- NUMBERS[j]->Nachkomma = NUMBERS[j]->AnzahlAnalog - NUMBERS[j]->DecimalShift;
- }
- }
- void ClassFlowPostProcessing::handleAnalogDigitalTransitionStart(string _decsep, string _value)
- {
- string _digit, _decpos;
- int _pospunkt = _decsep.find_first_of(".");
- // ESP_LOGD(TAG, "Name: %s, Pospunkt: %d", _decsep.c_str(), _pospunkt);
- if (_pospunkt > -1)
- _digit = _decsep.substr(0, _pospunkt);
- else
- _digit = "default";
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- float _zwdc = 9.2;
- {
- _zwdc = stof(_value);
- }
- if (_digit == "default" || NUMBERS[j]->name == _digit) // erstmal auf default setzen (falls sonst nichts gesetzt)
- {
- NUMBERS[j]->AnalogDigitalTransitionStart = _zwdc;
- }
- }
- }
- void ClassFlowPostProcessing::handleMaxRateType(string _decsep, string _value)
- {
- string _digit, _decpos;
- int _pospunkt = _decsep.find_first_of(".");
- // ESP_LOGD(TAG, "Name: %s, Pospunkt: %d", _decsep.c_str(), _pospunkt);
- if (_pospunkt > -1)
- _digit = _decsep.substr(0, _pospunkt);
- else
- _digit = "default";
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- t_RateType _rt = AbsoluteChange;
- if (toUpper(_value) == "RATECHANGE")
- _rt = RateChange;
- if (_digit == "default") // erstmal auf default setzen (falls sonst nichts gesetzt)
- {
- NUMBERS[j]->RateType = _rt;
- }
- if (NUMBERS[j]->name == _digit)
- {
- NUMBERS[j]->RateType = _rt;
- }
- }
- }
- void ClassFlowPostProcessing::handleMaxRateValue(string _decsep, string _value)
- {
- string _digit, _decpos;
- int _pospunkt = _decsep.find_first_of(".");
- // ESP_LOGD(TAG, "Name: %s, Pospunkt: %d", _decsep.c_str(), _pospunkt);
- if (_pospunkt > -1)
- _digit = _decsep.substr(0, _pospunkt);
- else
- _digit = "default";
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- float _zwdc = 1;
- // try
- {
- _zwdc = stof(_value);
- }
- /* catch(const std::exception& e)
- {
- ESP_LOGD(TAG, "ERROR - MaxRateValue is not a number: %s", _value.c_str());
- }
- */
- if (_digit == "default") // erstmal auf default setzen (falls sonst nichts gesetzt)
- {
- NUMBERS[j]->useMaxRateValue = true;
- NUMBERS[j]->MaxRateValue = _zwdc;
- }
- if (NUMBERS[j]->name == _digit)
- {
- NUMBERS[j]->useMaxRateValue = true;
- NUMBERS[j]->MaxRateValue = _zwdc;
- }
- }
- }
- bool ClassFlowPostProcessing::ReadParameter(FILE* pfile, string& aktparamgraph)
- {
- std::vector<string> zerlegt;
- int _n;
- aktparamgraph = trim(aktparamgraph);
- if (aktparamgraph.size() == 0)
- if (!this->GetNextParagraph(pfile, aktparamgraph))
- return false;
- if (aktparamgraph.compare("[PostProcessing]") != 0) // Paragraph passt nich zu MakeImage
- return false;
- InitNUMBERS();
- while (this->getNextLine(pfile, &aktparamgraph) && !this->isNewParagraph(aktparamgraph))
- {
- zerlegt = this->ZerlegeZeile(aktparamgraph);
- std::string _param = GetParameterName(zerlegt[0]);
- if ((toUpper(_param) == "EXTENDEDRESOLUTION") && (zerlegt.size() > 1))
- {
- handleDecimalExtendedResolution(zerlegt[0], zerlegt[1]);
- }
- if ((toUpper(_param) == "DECIMALSHIFT") && (zerlegt.size() > 1))
- {
- handleDecimalSeparator(zerlegt[0], zerlegt[1]);
- }
- if ((toUpper(_param) == "ANALOGDIGITALTRANSITIONSTART") && (zerlegt.size() > 1))
- {
- handleAnalogDigitalTransitionStart(zerlegt[0], zerlegt[1]);
- }
- if ((toUpper(_param) == "MAXRATEVALUE") && (zerlegt.size() > 1))
- {
- handleMaxRateValue(zerlegt[0], zerlegt[1]);
- }
- if ((toUpper(_param) == "MAXRATETYPE") && (zerlegt.size() > 1))
- {
- handleMaxRateType(zerlegt[0], zerlegt[1]);
- }
- if ((toUpper(_param) == "PREVALUEUSE") && (zerlegt.size() > 1))
- {
- if (toUpper(zerlegt[1]) == "TRUE")
- {
- PreValueUse = true;
- }
- }
- if ((toUpper(_param) == "CHECKDIGITINCREASECONSISTENCY") && (zerlegt.size() > 1))
- {
- if (toUpper(zerlegt[1]) == "TRUE")
- for (_n = 0; _n < NUMBERS.size(); ++_n)
- NUMBERS[_n]->checkDigitIncreaseConsistency = true;
- }
- if ((toUpper(_param) == "ALLOWNEGATIVERATES") && (zerlegt.size() > 1))
- {
- if (toUpper(zerlegt[1]) == "TRUE")
- for (_n = 0; _n < NUMBERS.size(); ++_n)
- NUMBERS[_n]->AllowNegativeRates = true;
- }
- if ((toUpper(_param) == "ERRORMESSAGE") && (zerlegt.size() > 1))
- {
- if (toUpper(zerlegt[1]) == "TRUE")
- ErrorMessage = true;
- }
- if ((toUpper(_param) == "IGNORELEADINGNAN") && (zerlegt.size() > 1))
- {
- if (toUpper(zerlegt[1]) == "TRUE")
- IgnoreLeadingNaN = true;
- }
-
- if ((toUpper(_param) == "PREVALUEAGESTARTUP") && (zerlegt.size() > 1))
- {
- PreValueAgeStartup = std::stoi(zerlegt[1]);
- }
- }
- if (PreValueUse) {
- LoadPreValue();
- }
- return true;
- }
- void ClassFlowPostProcessing::InitNUMBERS()
- {
- int anzDIGIT = 0;
- int anzANALOG = 0;
- std::vector<std::string> name_numbers;
- if (flowDigit)
- {
- anzDIGIT = flowDigit->getAnzahlGENERAL();
- flowDigit->UpdateNameNumbers(&name_numbers);
- }
- if (flowAnalog)
- {
- anzANALOG = flowAnalog->getAnzahlGENERAL();
- flowAnalog->UpdateNameNumbers(&name_numbers);
- }
- ESP_LOGD(TAG, "Anzahl NUMBERS: %d - DIGITS: %d, ANALOG: %d", name_numbers.size(), anzDIGIT, anzANALOG);
- for (int _num = 0; _num < name_numbers.size(); ++_num)
- {
- NumberPost *_number = new NumberPost;
- _number->name = name_numbers[_num];
-
- _number->digit_roi = NULL;
- if (flowDigit)
- _number->digit_roi = flowDigit->FindGENERAL(name_numbers[_num]);
-
- if (_number->digit_roi)
- _number->AnzahlDigital = _number->digit_roi->ROI.size();
- else
- _number->AnzahlDigital = 0;
- _number->analog_roi = NULL;
- if (flowAnalog)
- _number->analog_roi = flowAnalog->FindGENERAL(name_numbers[_num]);
- if (_number->analog_roi)
- _number->AnzahlAnalog = _number->analog_roi->ROI.size();
- else
- _number->AnzahlAnalog = 0;
- _number->ReturnRawValue = ""; // Rohwert (mit N & führenden 0)
- _number->ReturnValue = ""; // korrigierter Rückgabewert, ggf. mit Fehlermeldung
- _number->ErrorMessageText = ""; // Fehlermeldung bei Consistency Check
- _number->ReturnPreValue = "";
- _number->PreValueOkay = false;
- _number->AllowNegativeRates = false;
- _number->MaxRateValue = 0.1;
- _number->RateType = AbsoluteChange;
- _number->useMaxRateValue = false;
- _number->checkDigitIncreaseConsistency = false;
- _number->DecimalShift = 0;
- _number->DecimalShiftInitial = 0;
- _number->isExtendedResolution = false;
- _number->AnalogDigitalTransitionStart=9.2;
- _number->FlowRateAct = 0; // m3 / min
- _number->PreValue = 0; // letzter Wert, der gut ausgelesen wurde
- _number->Value = 0; // letzer ausgelesener Wert, inkl. Korrekturen
- _number->ReturnRawValue = ""; // Rohwert (mit N & führenden 0)
- _number->ReturnValue = ""; // korrigierter Rückgabewert, ggf. mit Fehlermeldung
- _number->ErrorMessageText = ""; // Fehlermeldung bei Consistency Check
- _number->Nachkomma = _number->AnzahlAnalog;
- NUMBERS.push_back(_number);
- }
- for (int i = 0; i < NUMBERS.size(); ++i) {
- ESP_LOGD(TAG, "Number %s, Anz DIG: %d, Anz ANA %d", NUMBERS[i]->name.c_str(), NUMBERS[i]->AnzahlDigital, NUMBERS[i]->AnzahlAnalog);
- }
- }
- string ClassFlowPostProcessing::ShiftDecimal(string in, int _decShift){
- if (_decShift == 0){
- return in;
- }
- int _pos_dec_org, _pos_dec_neu;
- _pos_dec_org = findDelimiterPos(in, ".");
- if (_pos_dec_org == std::string::npos) {
- _pos_dec_org = in.length();
- }
- else
- {
- in = in.erase(_pos_dec_org, 1);
- }
-
- _pos_dec_neu = _pos_dec_org + _decShift;
- if (_pos_dec_neu <= 0) { // Komma ist vor der ersten Ziffer
- for (int i = 0; i > _pos_dec_neu; --i){
- in = in.insert(0, "0");
- }
- in = "0." + in;
- return in;
- }
- if (_pos_dec_neu > in.length()){ // Komma soll hinter String (123 --> 1230)
- for (int i = in.length(); i < _pos_dec_neu; ++i){
- in = in.insert(in.length(), "0");
- }
- return in;
- }
- string zw;
- zw = in.substr(0, _pos_dec_neu);
- zw = zw + ".";
- zw = zw + in.substr(_pos_dec_neu, in.length() - _pos_dec_neu);
- return zw;
- }
- bool ClassFlowPostProcessing::doFlow(string zwtime)
- {
- string result = "";
- string digit = "";
- string analog = "";
- string zwvalue;
- string zw;
- time_t imagetime = 0;
- string rohwert;
- // Update Nachkomma, da sich beim Wechsel von CNNType Auto --> xyz auch die Nachkommastellen ändern können:
- imagetime = flowMakeImage->getTimeImageTaken();
- if (imagetime == 0)
- time(&imagetime);
- struct tm* timeinfo;
- timeinfo = localtime(&imagetime);
- char strftime_buf[64];
- strftime(strftime_buf, sizeof(strftime_buf), "%Y-%m-%dT%H:%M:%S", timeinfo);
- zwtime = std::string(strftime_buf);
- ESP_LOGD(TAG, "Anzahl NUMBERS: %d", NUMBERS.size());
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- NUMBERS[j]->ReturnRawValue = "";
- NUMBERS[j]->ReturnRateValue = "";
- NUMBERS[j]->ReturnValue = "";
- NUMBERS[j]->ErrorMessageText = "";
- NUMBERS[j]->Value = -1;
- UpdateNachkommaDecimalShift();
- int previous_value = -1;
- if (NUMBERS[j]->analog_roi)
- {
- NUMBERS[j]->ReturnRawValue = flowAnalog->getReadout(j, NUMBERS[j]->isExtendedResolution);
- if (NUMBERS[j]->ReturnRawValue.length() > 0)
- {
- char zw = NUMBERS[j]->ReturnRawValue[0];
- if (zw >= 48 && zw <=57)
- previous_value = zw - 48;
- }
- }
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After analog->getReadout: ReturnRaw %s", NUMBERS[j]->ReturnRawValue.c_str());
- #endif
- if (NUMBERS[j]->digit_roi && NUMBERS[j]->analog_roi)
- NUMBERS[j]->ReturnRawValue = "." + NUMBERS[j]->ReturnRawValue;
- if (NUMBERS[j]->digit_roi)
- {
- if (NUMBERS[j]->analog_roi)
- NUMBERS[j]->ReturnRawValue = flowDigit->getReadout(j, false, previous_value, NUMBERS[j]->analog_roi->ROI[0]->result_float, NUMBERS[j]->AnalogDigitalTransitionStart) + NUMBERS[j]->ReturnRawValue;
- else
- NUMBERS[j]->ReturnRawValue = flowDigit->getReadout(j, NUMBERS[j]->isExtendedResolution, previous_value); // Extended Resolution nur falls es keine analogen Ziffern gibt
- }
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After digital->getReadout: ReturnRaw %s", NUMBERS[j]->ReturnRawValue.c_str());
- #endif
- NUMBERS[j]->ReturnRawValue = ShiftDecimal(NUMBERS[j]->ReturnRawValue, NUMBERS[j]->DecimalShift);
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After ShiftDecimal: ReturnRaw %s", NUMBERS[j]->ReturnRawValue.c_str());
- #endif
- if (IgnoreLeadingNaN)
- while ((NUMBERS[j]->ReturnRawValue.length() > 1) && (NUMBERS[j]->ReturnRawValue[0] == 'N'))
- NUMBERS[j]->ReturnRawValue.erase(0, 1);
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After IgnoreLeadingNaN: ReturnRaw %s", NUMBERS[j]->ReturnRawValue.c_str());
- #endif
- NUMBERS[j]->ReturnValue = NUMBERS[j]->ReturnRawValue;
- if (findDelimiterPos(NUMBERS[j]->ReturnValue, "N") != std::string::npos)
- {
- if (PreValueUse && NUMBERS[j]->PreValueOkay)
- {
- NUMBERS[j]->ReturnValue = ErsetzteN(NUMBERS[j]->ReturnValue, NUMBERS[j]->PreValue);
- }
- else
- {
- WriteDataLog(j);
- continue; // es gibt keinen Zahl, da noch ein N vorhanden ist.
- }
- }
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After findDelimiterPos: ReturnValue %s", NUMBERS[j]->ReturnRawValue.c_str());
- #endif
- // Lösche führende Nullen (außer es ist nur noch einen 0)
- while ((NUMBERS[j]->ReturnValue.length() > 1) && (NUMBERS[j]->ReturnValue[0] == '0'))
- NUMBERS[j]->ReturnValue.erase(0, 1);
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After removeLeadingZeros: ReturnValue %s", NUMBERS[j]->ReturnRawValue.c_str());
- #endif
- NUMBERS[j]->Value = std::stod(NUMBERS[j]->ReturnValue);
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After setting the Value: Value %f and as double is %f", NUMBERS[j]->Value, std::stod(NUMBERS[j]->ReturnValue));
- #endif
- if (NUMBERS[j]->checkDigitIncreaseConsistency)
- {
- if (flowDigit)
- {
- if (flowDigit->getCNNType() != Digital)
- ESP_LOGD(TAG, "checkDigitIncreaseConsistency = true - ignored due to wrong CNN-Type (not Digital Classification)");
- else
- NUMBERS[j]->Value = checkDigitConsistency(NUMBERS[j]->Value, NUMBERS[j]->DecimalShift, NUMBERS[j]->analog_roi != NULL, NUMBERS[j]->PreValue);
- }
- else
- {
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "checkDigitIncreaseConsistency = true - no digital numbers defined!");
- #endif
- }
- }
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After checkDigitIncreaseConsistency: Value %f", NUMBERS[j]->Value);
- #endif
-
- if (!NUMBERS[j]->AllowNegativeRates)
- {
- if ((NUMBERS[j]->Value < NUMBERS[j]->PreValue))
- {
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "Neg: value=%f, preValue=%f, preToll%f", NUMBERS[j]->Value, NUMBERS[j]->PreValue,
- NUMBERS[j]->PreValue-(2/pow(10, NUMBERS[j]->Nachkomma))
- ) ;
- #endif
- // Bei isExtendedResolution Ungenauigkeit von 0.2 mit einrechnen.
- if (NUMBERS[j]->Value >= (NUMBERS[j]->PreValue-(2/pow(10, NUMBERS[j]->Nachkomma))) && NUMBERS[j]->isExtendedResolution) {
- NUMBERS[j]->Value = NUMBERS[j]->PreValue;
- NUMBERS[j]->ReturnValue = to_string(NUMBERS[j]->PreValue);
- } else {
- NUMBERS[j]->ErrorMessageText = NUMBERS[j]->ErrorMessageText + "Neg. Rate - Read: " + zwvalue + " - Raw: " + NUMBERS[j]->ReturnRawValue + " - Pre: " + RundeOutput(NUMBERS[j]->PreValue, NUMBERS[j]->Nachkomma) + " ";
- NUMBERS[j]->Value = NUMBERS[j]->PreValue;
- NUMBERS[j]->ReturnValue = "";
- WriteDataLog(j);
- continue;
- }
-
- }
- }
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After AllowNegativeRates: Value %f", NUMBERS[j]->Value);
- #endif
- double difference = difftime(imagetime, NUMBERS[j]->lastvalue); // in Sekunden
- difference /= 60;
- NUMBERS[j]->FlowRateAct = (NUMBERS[j]->Value - NUMBERS[j]->PreValue) / difference;
- NUMBERS[j]->ReturnRateValue = to_string(NUMBERS[j]->FlowRateAct);
- if (NUMBERS[j]->useMaxRateValue && PreValueUse && NUMBERS[j]->PreValueOkay)
- {
- double _ratedifference;
- if (NUMBERS[j]->RateType == RateChange)
- _ratedifference = NUMBERS[j]->FlowRateAct;
- else
- _ratedifference = (NUMBERS[j]->Value - NUMBERS[j]->PreValue);
- if (abs(_ratedifference) > abs(NUMBERS[j]->MaxRateValue))
- {
- NUMBERS[j]->ErrorMessageText = NUMBERS[j]->ErrorMessageText + "Rate too high - Read: " + RundeOutput(NUMBERS[j]->Value, NUMBERS[j]->Nachkomma) + " - Pre: " + RundeOutput(NUMBERS[j]->PreValue, NUMBERS[j]->Nachkomma);
- NUMBERS[j]->Value = NUMBERS[j]->PreValue;
- NUMBERS[j]->ReturnValue = "";
- NUMBERS[j]->ReturnRateValue = "";
- WriteDataLog(j);
- continue;
- }
- }
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "After MaxRateCheck: Value %f", NUMBERS[j]->Value);
- #endif
- NUMBERS[j]->ReturnChangeAbsolute = RundeOutput(NUMBERS[j]->Value - NUMBERS[j]->PreValue, NUMBERS[j]->Nachkomma);
- NUMBERS[j]->lastvalue = imagetime;
- NUMBERS[j]->PreValue = NUMBERS[j]->Value;
- NUMBERS[j]->PreValueOkay = true;
- NUMBERS[j]->ReturnValue = RundeOutput(NUMBERS[j]->Value, NUMBERS[j]->Nachkomma);
- NUMBERS[j]->ReturnPreValue = RundeOutput(NUMBERS[j]->PreValue, NUMBERS[j]->Nachkomma);
- NUMBERS[j]->ErrorMessageText = "no error";
- UpdatePreValueINI = true;
- string _zw = "PostProcessing - Raw: " + NUMBERS[j]->ReturnRawValue + " Value: " + NUMBERS[j]->ReturnValue + " Error: " + NUMBERS[j]->ErrorMessageText;
- ESP_LOGD(TAG, "%s", zw.c_str());
- LogFile.WriteToFile(_zw);
- WriteDataLog(j);
- }
- SavePreValue();
- return true;
- }
- void ClassFlowPostProcessing::WriteDataLog(int _analog)
- {
- string analog = "";
- string digital = "";
- if (flowAnalog)
- analog = flowAnalog->getReadoutRawString(_analog);
- if (flowDigit)
- digital = flowDigit->getReadoutRawString(_analog);
- // LogFile.WriteToFile(analog);
- LogFile.WriteToData(NUMBERS[_analog]->ReturnRawValue, NUMBERS[_analog]->ReturnValue, NUMBERS[_analog]->ReturnPreValue, NUMBERS[_analog]->ErrorMessageText, digital, analog);
- ESP_LOGD(TAG, "WriteDataLog: %s, %s, %s, %s, %s", NUMBERS[_analog]->ReturnRawValue.c_str(), NUMBERS[_analog]->ReturnValue.c_str(), NUMBERS[_analog]->ErrorMessageText.c_str(), digital.c_str(), analog.c_str());
- }
- void ClassFlowPostProcessing::UpdateNachkommaDecimalShift()
- {
- for (int j = 0; j < NUMBERS.size(); ++j)
- {
- if (NUMBERS[j]->digit_roi && !NUMBERS[j]->analog_roi) // es gibt nur digitale ziffern
- {
- // ESP_LOGD(TAG, "Nurdigital");
- NUMBERS[j]->DecimalShift = NUMBERS[j]->DecimalShiftInitial;
- if (NUMBERS[j]->isExtendedResolution && flowDigit->isExtendedResolution()) // extended resolution ist an und soll auch bei dieser Ziffer verwendet werden
- NUMBERS[j]->DecimalShift = NUMBERS[j]->DecimalShift-1;
- NUMBERS[j]->Nachkomma = -NUMBERS[j]->DecimalShift;
- }
- if (!NUMBERS[j]->digit_roi && NUMBERS[j]->analog_roi) // es gibt nur analoge ziffern
- {
- // ESP_LOGD(TAG, "Nur analog");
- NUMBERS[j]->DecimalShift = NUMBERS[j]->DecimalShiftInitial;
- if (NUMBERS[j]->isExtendedResolution && flowAnalog->isExtendedResolution()) // extended resolution ist an und soll auch bei dieser Ziffer verwendet werden
- NUMBERS[j]->DecimalShift = NUMBERS[j]->DecimalShift-1;
- NUMBERS[j]->Nachkomma = -NUMBERS[j]->DecimalShift;
- }
- if (NUMBERS[j]->digit_roi && NUMBERS[j]->analog_roi) // digital + analog
- {
- // ESP_LOGD(TAG, "Nur digital + analog");
- NUMBERS[j]->DecimalShift = NUMBERS[j]->DecimalShiftInitial;
- NUMBERS[j]->Nachkomma = NUMBERS[j]->analog_roi->ROI.size() - NUMBERS[j]->DecimalShift;
- if (NUMBERS[j]->isExtendedResolution && flowAnalog->isExtendedResolution()) // extended resolution ist an und soll auch bei dieser Ziffer verwendet werden
- NUMBERS[j]->Nachkomma = NUMBERS[j]->Nachkomma+1;
- }
- ESP_LOGD(TAG, "UpdateNachkommaDecShift NUMBER%i: Nachkomma %i, DecShift %i", j, NUMBERS[j]->Nachkomma,NUMBERS[j]->DecimalShift);
- }
- }
- string ClassFlowPostProcessing::getReadout(int _number)
- {
- return NUMBERS[_number]->ReturnValue;
- }
- string ClassFlowPostProcessing::getReadoutParam(bool _rawValue, bool _noerror, int _number)
- {
- if (_rawValue)
- return NUMBERS[_number]->ReturnRawValue;
- if (_noerror)
- return NUMBERS[_number]->ReturnValue;
- return NUMBERS[_number]->ReturnValue;
- }
- string ClassFlowPostProcessing::RundeOutput(double _in, int _anzNachkomma){
- std::stringstream stream;
- int _zw = _in;
- // ESP_LOGD(TAG, "AnzNachkomma: %d", _anzNachkomma);
- if (_anzNachkomma < 0) {
- _anzNachkomma = 0;
- }
- if (_anzNachkomma > 0)
- {
- stream << std::fixed << std::setprecision(_anzNachkomma) << _in;
- return stream.str();
- }
- else
- {
- stream << _zw;
- }
- return stream.str();
- }
- string ClassFlowPostProcessing::ErsetzteN(string input, double _prevalue)
- {
- int posN, posPunkt;
- int pot, ziffer;
- float zw;
- posN = findDelimiterPos(input, "N");
- posPunkt = findDelimiterPos(input, ".");
- if (posPunkt == std::string::npos){
- posPunkt = input.length();
- }
- while (posN != std::string::npos)
- {
- if (posN < posPunkt) {
- pot = posPunkt - posN - 1;
- }
- else {
- pot = posPunkt - posN;
- }
- zw =_prevalue / pow(10, pot);
- ziffer = ((int) zw) % 10;
- input[posN] = ziffer + 48;
- posN = findDelimiterPos(input, "N");
- }
- return input;
- }
- float ClassFlowPostProcessing::checkDigitConsistency(double input, int _decilamshift, bool _isanalog, double _preValue){
- int aktdigit, olddigit;
- int aktdigit_before, olddigit_before;
- int pot, pot_max;
- float zw;
- bool no_nulldurchgang = false;
- pot = _decilamshift;
- if (!_isanalog) // falls es keine analogwerte gibt, kann die letzte nicht bewertet werden
- {
- pot++;
- }
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "checkDigitConsistency: pot=%d, decimalshift=%d", pot, _decilamshift);
- #endif
- pot_max = ((int) log10(input)) + 1;
- while (pot <= pot_max)
- {
- zw = input / pow(10, pot-1);
- aktdigit_before = ((int) zw) % 10;
- zw = _preValue / pow(10, pot-1);
- olddigit_before = ((int) zw) % 10;
- zw = input / pow(10, pot);
- aktdigit = ((int) zw) % 10;
- zw = _preValue / pow(10, pot);
- olddigit = ((int) zw) % 10;
- no_nulldurchgang = (olddigit_before <= aktdigit_before);
- if (no_nulldurchgang)
- {
- if (aktdigit != olddigit)
- {
- input = input + ((float) (olddigit - aktdigit)) * pow(10, pot); // Neue Digit wird durch alte Digit ersetzt;
- }
- }
- else
- {
- if (aktdigit == olddigit) // trotz Nulldurchgang wurde Stelle nicht hochgezählt --> addiere 1
- {
- input = input + ((float) (1)) * pow(10, pot); // addiere 1 an der Stelle
- }
- }
- #ifdef SERIAL_DEBUG
- ESP_LOGD(TAG, "checkDigitConsistency: input=%f", input);
- #endif
- pot++;
- }
- return input;
- }
- string ClassFlowPostProcessing::getReadoutRate(int _number)
- {
- return std::to_string(NUMBERS[_number]->FlowRateAct);
- }
- string ClassFlowPostProcessing::getReadoutTimeStamp(int _number)
- {
- return NUMBERS[_number]->timeStamp;
- }
- string ClassFlowPostProcessing::getReadoutError(int _number)
- {
- return NUMBERS[_number]->ErrorMessageText;
- }
|