X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e5499c61083684b28bcbc6950aae66cbf0938703..e9ae1f101b5418c0ba2e6c9d86b23c12f0140982:/stargazer/plugins/configuration/sgconfig/parser_tariffs.cpp diff --git a/stargazer/plugins/configuration/sgconfig/parser_tariffs.cpp b/stargazer/plugins/configuration/sgconfig/parser_tariffs.cpp index ae22cf04..8f8e8db5 100644 --- a/stargazer/plugins/configuration/sgconfig/parser_tariffs.cpp +++ b/stargazer/plugins/configuration/sgconfig/parser_tariffs.cpp @@ -23,7 +23,7 @@ #include "stg/tariffs.h" #include "stg/users.h" -#include "stg/resetable.h" +#include "stg/optional.h" #include // snprintf #include @@ -57,7 +57,7 @@ std::string AOS2String(const A & array, size_t size, const F C::* field, F multi } template -bool str2res(const std::string& source, RESETABLE& dest, T divisor) +bool str2res(const std::string& source, STG::Optional& dest, T divisor) { T value = 0; if (str2x(source, value)) @@ -67,7 +67,7 @@ bool str2res(const std::string& source, RESETABLE& dest, T divisor) } template -bool String2AOS(const std::string & source, A & array, size_t size, RESETABLE C::* field, F divisor) +bool String2AOS(const std::string & source, A & array, size_t size, STG::Optional C::* field, F divisor) { size_t index = 0; std::string::size_type from = 0; @@ -90,7 +90,7 @@ void GET_TARIFFS::CreateAnswer() { m_answer = ""; - std::vector dataList; + std::vector dataList; m_tariffs.GetTariffsData(&dataList); auto it = dataList.begin(); for (; it != dataList.end(); ++it) @@ -102,19 +102,19 @@ void GET_TARIFFS::CreateAnswer() std::to_string(it->dirPrice[i].hDay) + ":" + std::to_string(it->dirPrice[i].mDay) + "-" + std::to_string(it->dirPrice[i].hNight) + ":" + std::to_string(it->dirPrice[i].mNight) + "\"/>"; - m_answer += "dirPrice, DIR_NUM, &DIRPRICE_DATA::priceDayA, pt_mega) + "\"/>" + - "dirPrice, DIR_NUM, &DIRPRICE_DATA::priceDayB, pt_mega) + "\"/>" + - "dirPrice, DIR_NUM, &DIRPRICE_DATA::priceNightA, pt_mega) + "\"/>" + - "dirPrice, DIR_NUM, &DIRPRICE_DATA::priceNightB, pt_mega) + "\"/>" + - "dirPrice, DIR_NUM, &DIRPRICE_DATA::threshold, 1) + "\"/>" + - "dirPrice, DIR_NUM, &DIRPRICE_DATA::singlePrice, 1) + "\"/>" + - "dirPrice, DIR_NUM, &DIRPRICE_DATA::noDiscount, 1) + "\"/>" + + m_answer += "dirPrice, DIR_NUM, &DirPriceData::priceDayA, pt_mega) + "\"/>" + + "dirPrice, DIR_NUM, &DirPriceData::priceDayB, pt_mega) + "\"/>" + + "dirPrice, DIR_NUM, &DirPriceData::priceNightA, pt_mega) + "\"/>" + + "dirPrice, DIR_NUM, &DirPriceData::priceNightB, pt_mega) + "\"/>" + + "dirPrice, DIR_NUM, &DirPriceData::threshold, 1) + "\"/>" + + "dirPrice, DIR_NUM, &DirPriceData::singlePrice, 1) + "\"/>" + + "dirPrice, DIR_NUM, &DirPriceData::noDiscount, 1) + "\"/>" + "tariffConf.fee) + "\"/>" + "tariffConf.passiveCost) + "\"/>" + "tariffConf.free) + "\"/>" + - "tariffConf.traffType) + "\"/>" + - "tariffConf.period) + "\"/>" + - "tariffConf.changePolicy) + "\"/>" + + "tariffConf.traffType) + "\"/>" + + "tariffConf.period) + "\"/>" + + "tariffConf.changePolicy) + "\"/>" + "tariffConf.changePolicyTimeout) + "\"/>" + ""; } @@ -172,7 +172,7 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) { if (strcasecmp(el, m_tag.c_str()) == 0) { - const TARIFF * tariff = m_tariffs.FindByName(attr[1]); + const auto tariff = m_tariffs.FindByName(attr[1]); if (tariff != NULL) td = tariff->GetTariffData(); else @@ -184,7 +184,7 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) { if (strcasecmp(el, "PriceDayA") == 0) { - if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DIRPRICE_DATA_RES::priceDayA, pt_mega)) + if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DirPriceDataOpt::priceDayA, pt_mega)) return -1; // TODO: log it else return 0; @@ -192,7 +192,7 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) if (strcasecmp(el, "PriceDayB") == 0) { - if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DIRPRICE_DATA_RES::priceDayB, pt_mega)) + if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DirPriceDataOpt::priceDayB, pt_mega)) return -1; // TODO: log it else return 0; @@ -200,7 +200,7 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) if (strcasecmp(el, "PriceNightA") == 0) { - if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DIRPRICE_DATA_RES::priceNightA, pt_mega)) + if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DirPriceDataOpt::priceNightA, pt_mega)) return -1; // TODO: log it else return 0; @@ -208,7 +208,7 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) if (strcasecmp(el, "PriceNightB") == 0) { - if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DIRPRICE_DATA_RES::priceNightB, pt_mega)) + if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DirPriceDataOpt::priceNightB, pt_mega)) return -1; // TODO: log it else return 0; @@ -216,7 +216,7 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) if (strcasecmp(el, "Threshold") == 0) { - if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DIRPRICE_DATA_RES::threshold, 1)) + if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DirPriceDataOpt::threshold, 1)) return -1; // TODO: log it else return 0; @@ -224,7 +224,7 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) if (strcasecmp(el, "SinglePrice") == 0) { - if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DIRPRICE_DATA_RES::singlePrice, 1)) + if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DirPriceDataOpt::singlePrice, 1)) return -1; // TODO: log it else return 0; @@ -232,7 +232,7 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) if (strcasecmp(el, "NoDiscount") == 0) { - if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DIRPRICE_DATA_RES::noDiscount, 1)) + if (!String2AOS(attr[1], td.dirPrice, DIR_NUM, &DirPriceDataOpt::noDiscount, 1)) return -1; // TODO: log it else return 0; @@ -285,19 +285,19 @@ int CHG_TARIFF::Start(void *, const char * el, const char ** attr) if (strcasecmp(el, "TraffType") == 0) { - td.tariffConf.traffType = TARIFF::StringToTraffType(attr[1]); + td.tariffConf.traffType = Tariff::parseTraffType(attr[1]); return 0; } if (strcasecmp(el, "Period") == 0) { - td.tariffConf.period = TARIFF::StringToPeriod(attr[1]); + td.tariffConf.period = Tariff::parsePeriod(attr[1]); return 0; } if (strcasecmp(el, "ChangePolicy") == 0) { - td.tariffConf.changePolicy = TARIFF::StringToChangePolicy(attr[1]); + td.tariffConf.changePolicy = Tariff::parseChangePolicy(attr[1]); return 0; } @@ -316,7 +316,7 @@ void CHG_TARIFF::CreateAnswer() { if (!td.tariffConf.name.data().empty()) { - TARIFF_DATA tariffData = td.GetData(); + auto tariffData = td.get({}); if (m_tariffs.Chg(tariffData, &m_currAdmin) == 0) m_answer = "<" + m_tag + " Result=\"ok\"/>"; else