1 #include <ostream> // xmlrpc-c devs have missed something :)
3 #include "tariff_helper.h"
5 void TARIFF_HELPER::GetTariffInfo(xmlrpc_c::value * info) const
7 std::map<std::string, xmlrpc_c::value> structVal;
9 structVal["result"] = xmlrpc_c::value_boolean(true);
10 structVal["name"] = xmlrpc_c::value_string(data.tariffConf.name);
11 structVal["fee"] = xmlrpc_c::value_double(data.tariffConf.fee);
12 structVal["freemb"] = xmlrpc_c::value_double(data.tariffConf.free);
13 structVal["passivecost"] = xmlrpc_c::value_double(data.tariffConf.passiveCost);
14 structVal["traffType"] = xmlrpc_c::value_int(data.tariffConf.traffType);
16 std::vector<xmlrpc_c::value> prices(DIR_NUM);
18 for (unsigned i = 0; i < DIR_NUM; ++i)
20 std::map<std::string, xmlrpc_c::value> dirPrice;
21 dirPrice["hday"] = xmlrpc_c::value_int(data.dirPrice[i].hDay);
22 dirPrice["mday"] = xmlrpc_c::value_int(data.dirPrice[i].mDay);
23 dirPrice["hnight"] = xmlrpc_c::value_int(data.dirPrice[i].hNight);
24 dirPrice["mnight"] = xmlrpc_c::value_int(data.dirPrice[i].mNight);
25 dirPrice["pricedaya"] = xmlrpc_c::value_double(data.dirPrice[i].priceDayA * 1024 * 1024);
26 dirPrice["pricedayb"] = xmlrpc_c::value_double(data.dirPrice[i].priceDayB * 1024 * 1024);
27 dirPrice["pricenighta"] = xmlrpc_c::value_double(data.dirPrice[i].priceNightA * 1024 * 1024);
28 dirPrice["pricenightb"] = xmlrpc_c::value_double(data.dirPrice[i].priceNightB * 1024 * 1024);
29 dirPrice["threshold"] = xmlrpc_c::value_int(data.dirPrice[i].threshold);
30 dirPrice["singleprice"] = xmlrpc_c::value_boolean(data.dirPrice[i].singlePrice);
31 dirPrice["nodiscount"] = xmlrpc_c::value_boolean(data.dirPrice[i].noDiscount);
32 prices[i] = xmlrpc_c::value_struct(dirPrice);
35 structVal["dirprices"] = xmlrpc_c::value_array(prices);
37 *info = xmlrpc_c::value_struct(structVal);
40 bool TARIFF_HELPER::SetTariffInfo(const xmlrpc_c::value & info)
42 std::map<std::string, xmlrpc_c::value> structVal(
43 static_cast<std::map<std::string, xmlrpc_c::value> >(xmlrpc_c::value_struct(info))
46 std::map<std::string, xmlrpc_c::value>::iterator it;
48 if ((it = structVal.find("fee")) != structVal.end())
50 data.tariffConf.fee = xmlrpc_c::value_double(it->second);
53 if ((it = structVal.find("freemb")) != structVal.end())
55 data.tariffConf.free = xmlrpc_c::value_double(it->second);
58 if ((it = structVal.find("passivecost")) != structVal.end())
60 data.tariffConf.passiveCost = xmlrpc_c::value_double(it->second);
63 if ((it = structVal.find("traffType")) != structVal.end())
65 data.tariffConf.traffType = xmlrpc_c::value_int(it->second);
68 if ((it = structVal.find("dirprices")) != structVal.end())
70 std::vector<xmlrpc_c::value> prices(
71 xmlrpc_c::value_array(it->second).vectorValueValue()
74 for (unsigned i = 0; i < DIR_NUM; ++i)
76 std::map<std::string, xmlrpc_c::value> dirPrice(
77 static_cast<std::map<std::string, xmlrpc_c::value> >(xmlrpc_c::value_struct(prices[i]))
79 data.dirPrice[i].mDay = xmlrpc_c::value_int(dirPrice["mday"]);
80 data.dirPrice[i].hDay = xmlrpc_c::value_int(dirPrice["hday"]);
81 data.dirPrice[i].mNight = xmlrpc_c::value_int(dirPrice["mnight"]);
82 data.dirPrice[i].hNight = xmlrpc_c::value_int(dirPrice["hnight"]);
83 data.dirPrice[i].priceDayA = xmlrpc_c::value_double(dirPrice["pricedaya"]) / 1024 / 1024;
84 data.dirPrice[i].priceDayB = xmlrpc_c::value_double(dirPrice["pricedayb"]) / 1024 / 1024;
85 data.dirPrice[i].priceNightA = xmlrpc_c::value_double(dirPrice["pricenighta"]) / 1024 / 1024;
86 data.dirPrice[i].priceNightB = xmlrpc_c::value_double(dirPrice["pricenightb"]) / 1024 / 1024;
87 data.dirPrice[i].threshold = xmlrpc_c::value_int(dirPrice["threshold"]);
88 data.dirPrice[i].singlePrice = xmlrpc_c::value_boolean(dirPrice["singleprice"]);
89 data.dirPrice[i].noDiscount = xmlrpc_c::value_boolean(dirPrice["nodiscount"]);