3 #include "api_action.h"
8 #include "stg/servconf.h"
9 #include "stg/servconf_types.h"
10 #include "stg/tariff_conf.h"
11 #include "stg/common.h"
12 #include "stg/os_int.h"
24 std::string Indent(size_t level, bool dash = false)
28 return dash ? std::string(level * 4 - 2, ' ') + "- " : std::string(level * 4, ' ');
31 std::string ChangePolicyToString(TARIFF::CHANGE_POLICY changePolicy)
35 case ALLOW: return "allow";
36 case TO_CHEAP: return "to_cheap";
37 case TO_EXPENSIVE: return "to_expensive";
38 case DENY: return "deny";
43 std::string PeriodToString(TARIFF::PERIOD period)
55 std::string TraffTypeToString(TARIFF::TRAFF_TYPE traffType)
59 case TARIFF::TRAFF_UP:
61 case TARIFF::TRAFF_DOWN:
63 case TARIFF::TRAFF_UP_DOWN:
64 return "upload + download";
65 case TARIFF::TRAFF_MAX:
66 return "max(upload, download)";
71 void ConvPeriod(const std::string & value, RESETABLE<TARIFF::PERIOD> & res)
73 std::string lowered = ToLower(value);
74 if (lowered == "daily")
76 else if (lowered == "monthly")
79 throw SGCONF::ACTION::ERROR("Period should be 'daily' or 'monthly'. Got: '" + value + "'");
82 void ConvTraffType(const std::string & value, RESETABLE<TARIFF::TRAFF_TYPE> & res)
84 std::string lowered = ToLower(value);
85 lowered.erase(std::remove(lowered.begin(), lowered.end(), ' '), lowered.end());
86 if (lowered == "upload")
87 res = TARIFF::TRAFF_UP;
88 else if (lowered == "download")
89 res = TARIFF::TRAFF_DOWN;
90 else if (lowered == "upload+download")
91 res = TARIFF::TRAFF_UP_DOWN;
92 else if (lowered.substr(0, 3) == "max")
93 res = TARIFF::TRAFF_MAX;
95 throw SGCONF::ACTION::ERROR("Traff type should be 'upload', 'download', 'upload + download' or 'max'. Got: '" + value + "'");
98 DIRPRICE_DATA_RES ConvTimeSpan(const std::string & value)
100 size_t dashPos = value.find_first_of('-');
101 if (dashPos == std::string::npos)
102 throw SGCONF::ACTION::ERROR("Time span should be in format 'hh:mm-hh:mm'. Got: '" + value + "'");
103 size_t fromColon = value.find_first_of(':');
104 if (fromColon == std::string::npos || fromColon > dashPos)
105 throw SGCONF::ACTION::ERROR("Time span should be in format 'hh:mm-hh:mm'. Got: '" + value + "'");
106 size_t toColon = value.find_first_of(':', dashPos);
107 if (toColon == std::string::npos)
108 throw SGCONF::ACTION::ERROR("Time span should be in format 'hh:mm-hh:mm'. Got: '" + value + "'");
109 DIRPRICE_DATA_RES res;
110 res.hDay = FromString<int>(value.substr(0, fromColon));
111 if (res.hDay.data() < 0 || res.hDay.data() > 23)
112 throw SGCONF::ACTION::ERROR("Invalid 'from' hours. Got: '" + value.substr(0, fromColon) + "'");
113 res.mDay = FromString<int>(value.substr(fromColon + 1, dashPos - fromColon - 1));
114 if (res.mDay.data() < 0 || res.mDay.data() > 59)
115 throw SGCONF::ACTION::ERROR("Invalid 'from' minutes. Got: '" + value.substr(fromColon + 1, dashPos - fromColon - 1) + "'");
116 res.hNight = FromString<int>(value.substr(dashPos + 1, toColon - dashPos - 1));
117 if (res.hNight.data() < 0 || res.hNight.data() > 23)
118 throw SGCONF::ACTION::ERROR("Invalid 'to' hours. Got: '" + value.substr(dashPos + 1, toColon - dashPos - 1) + "'");
119 res.mNight = FromString<int>(value.substr(toColon + 1, value.length() - toColon));
120 if (res.mNight.data() < 0 || res.mNight.data() > 59)
121 throw SGCONF::ACTION::ERROR("Invalid 'to' minutes. Got: '" + value.substr(toColon + 1, value.length() - toColon) + "'");
125 void Splice(std::vector<DIRPRICE_DATA_RES> & lhs, const std::vector<DIRPRICE_DATA_RES> & rhs)
127 for (size_t i = 0; i < lhs.size() && i < rhs.size(); ++i)
128 lhs[i].Splice(rhs[i]);
131 void ConvTimes(std::string value, std::vector<DIRPRICE_DATA_RES> & res)
133 value.erase(std::remove(value.begin(), value.end(), ' '), value.end());
134 Splice(res, Split<std::vector<DIRPRICE_DATA_RES> >(value, ',', ConvTimeSpan));
137 struct ConvPrice : public std::unary_function<std::string, DIRPRICE_DATA_RES>
139 typedef RESETABLE<double> (DIRPRICE_DATA_RES::* MemPtr);
140 ConvPrice(MemPtr before, MemPtr after)
141 : m_before(before), m_after(after)
144 DIRPRICE_DATA_RES operator()(const std::string & value)
146 DIRPRICE_DATA_RES res;
147 size_t slashPos = value.find_first_of('/');
148 if (slashPos == std::string::npos)
151 if (str2x(value, price) < 0)
152 throw SGCONF::ACTION::ERROR("Price should be a floating point number. Got: '" + value + "'");
153 (res.*m_before) = (res.*m_after) = price;
154 res.noDiscount = true;
159 if (str2x(value.substr(0, slashPos), price) < 0)
160 throw SGCONF::ACTION::ERROR("Price should be a floating point number. Got: '" + value.substr(0, slashPos) + "'");
161 (res.*m_before) = price;
162 if (str2x(value.substr(slashPos + 1, value.length() - slashPos), price) < 0)
163 throw SGCONF::ACTION::ERROR("Price should be a floating point number. Got: '" + value.substr(slashPos + 1, value.length() - slashPos) + "'");
164 (res.*m_after) = price;
165 res.noDiscount = false;
174 void ConvDayPrices(std::string value, std::vector<DIRPRICE_DATA_RES> & res)
176 value.erase(std::remove(value.begin(), value.end(), ' '), value.end());
177 Splice(res, Split<std::vector<DIRPRICE_DATA_RES> >(value, ',', ConvPrice(&DIRPRICE_DATA_RES::priceDayA, &DIRPRICE_DATA_RES::priceDayB)));
180 void ConvNightPrices(std::string value, std::vector<DIRPRICE_DATA_RES> & res)
182 value.erase(std::remove(value.begin(), value.end(), ' '), value.end());
183 Splice(res, Split<std::vector<DIRPRICE_DATA_RES> >(value, ',', ConvPrice(&DIRPRICE_DATA_RES::priceNightA, &DIRPRICE_DATA_RES::priceNightB)));
186 DIRPRICE_DATA_RES ConvThreshold(std::string value)
188 DIRPRICE_DATA_RES res;
189 double threshold = 0;
190 if (str2x(value, threshold) < 0)
191 throw SGCONF::ACTION::ERROR("Threshold should be a floating point value. Got: '" + value + "'");
192 res.threshold = threshold;
196 void ConvThresholds(std::string value, std::vector<DIRPRICE_DATA_RES> & res)
198 value.erase(std::remove(value.begin(), value.end(), ' '), value.end());
199 Splice(res, Split<std::vector<DIRPRICE_DATA_RES> >(value, ',', ConvThreshold));
202 std::string TimeToString(int h, int m)
204 std::ostringstream stream;
205 stream << (h < 10 ? "0" : "") << h << ":"
206 << (m < 10 ? "0" : "") << m;
210 void PrintDirPriceData(size_t dir, const DIRPRICE_DATA & data, size_t level)
212 std::string night = TimeToString(data.hNight, data.mNight);
213 std::string day = TimeToString(data.hDay, data.mDay);
214 std::cout << Indent(level, true) << "dir: " << dir << "\n"
215 << Indent(level) << "'" << night << "' - '" << day << "': " << data.priceDayA << "/" << data.priceDayB << "\n"
216 << Indent(level) << "'" << day << "' - '" << night << "': " << data.priceNightA << "/" << data.priceNightB << "\n"
217 << Indent(level) << "threshold: " << data.threshold << "\n"
218 << Indent(level) << "single price: " << (data.singlePrice ? "yes" : "no") << "\n"
219 << Indent(level) << "discount: " << (data.noDiscount ? "no" : "yes") << "\n"; // Attention!
222 void PrintTariffConf(const TARIFF_CONF & conf, size_t level)
224 std::cout << Indent(level, true) << "name: " << conf.name << "\n"
225 << Indent(level) << "fee: " << conf.fee << "\n"
226 << Indent(level) << "free mb: " << conf.free << "\n"
227 << Indent(level) << "passive cost: " << conf.passiveCost << "\n"
228 << Indent(level) << "traff type: " << TraffTypeToString(conf.traffType) << "\n"
229 << Indent(level) << "period: " << PeriodToString(conf.period) << "\n"
230 << Indent(level) << "change policy: " << CyangePolicyToString(conf.changePolicy) << "\n";
233 void PrintTariff(const STG::GET_TARIFF::INFO & info, size_t level = 0)
235 PrintTariffConf(info.tariffConf, level);
236 std::cout << Indent(level) << "dir prices:\n";
237 for (size_t i = 0; i < info.dirPrice.size(); ++i)
238 PrintDirPriceData(i, info.dirPrice[i], level + 1);
241 std::vector<SGCONF::API_ACTION::PARAM> GetTariffParams()
243 std::vector<SGCONF::API_ACTION::PARAM> params;
244 params.push_back(SGCONF::API_ACTION::PARAM("fee", "<fee>", "\t\ttariff fee"));
245 params.push_back(SGCONF::API_ACTION::PARAM("free", "<free mb>", "\tprepaid traffic"));
246 params.push_back(SGCONF::API_ACTION::PARAM("passive-cost", "<cost>", "\tpassive cost"));
247 params.push_back(SGCONF::API_ACTION::PARAM("traff-type", "<type>", "\ttraffic type (up, down, up+down, max)"));
248 params.push_back(SGCONF::API_ACTION::PARAM("period", "<period>", "\ttarification period (daily, monthly)"));
249 params.push_back(SGCONF::API_ACTION::PARAM("change-policy", "<change-policy>", "\ttarification change-policy (allow, to_cheap, to_expensive, deny)"));
250 params.push_back(SGCONF::API_ACTION::PARAM("times", "<hh:mm-hh:mm, ...>", "coma-separated day time-spans for each direction"));
251 params.push_back(SGCONF::API_ACTION::PARAM("day-prices", "<price/price, ...>", "coma-separated day prices for each direction"));
252 params.push_back(SGCONF::API_ACTION::PARAM("night-prices", "<price/price, ...>", "coma-separated night prices for each direction"));
253 params.push_back(SGCONF::API_ACTION::PARAM("thresholds", "<threshold, ...>", "coma-separated thresholds for each direction"));
257 void SimpleCallback(bool result,
258 const std::string & reason,
263 std::cerr << "Operation failed. Reason: '" << reason << "'." << std::endl;
266 std::cout << "Success.\n";
269 void GetTariffsCallback(bool result,
270 const std::string & reason,
271 const std::vector<STG::GET_TARIFF::INFO> & info,
276 std::cerr << "Failed to get tariff list. Reason: '" << reason << "'." << std::endl;
279 std::cout << "Tariffs:\n";
280 for (size_t i = 0; i < info.size(); ++i)
281 PrintTariff(info[i], 1);
284 void GetTariffCallback(bool result,
285 const std::string & reason,
286 const std::vector<STG::GET_TARIFF::INFO> & info,
289 assert(data != NULL && "Expecting pointer to std::string with the tariff's name.");
290 const std::string & name = *static_cast<const std::string *>(data);
293 std::cerr << "Failed to get tariff. Reason: '" << reason << "'." << std::endl;
296 for (size_t i = 0; i < info.size(); ++i)
297 if (info[i].tariffConf.name == name)
298 PrintTariff(info[i]);
301 bool GetTariffsFunction(const SGCONF::CONFIG & config,
302 const std::string & /*arg*/,
303 const std::map<std::string, std::string> & /*options*/)
305 STG::SERVCONF proto(config.server.data(),
307 config.localAddress.data(),
308 config.localPort.data(),
309 config.userName.data(),
310 config.userPass.data());
311 return proto.GetTariffs(GetTariffsCallback, NULL) == STG::st_ok;
314 bool GetTariffFunction(const SGCONF::CONFIG & config,
315 const std::string & arg,
316 const std::map<std::string, std::string> & /*options*/)
318 STG::SERVCONF proto(config.server.data(),
320 config.localAddress.data(),
321 config.localPort.data(),
322 config.userName.data(),
323 config.userPass.data());
324 // STG currently doesn't support <GetTariff name="..."/>.
325 // So get a list of tariffs and filter it. 'data' param holds a pointer to 'name'.
326 std::string name(arg);
327 return proto.GetTariffs(GetTariffCallback, &name) == STG::st_ok;
330 bool DelTariffFunction(const SGCONF::CONFIG & config,
331 const std::string & arg,
332 const std::map<std::string, std::string> & /*options*/)
334 STG::SERVCONF proto(config.server.data(),
336 config.localAddress.data(),
337 config.localPort.data(),
338 config.userName.data(),
339 config.userPass.data());
340 return proto.DelTariff(arg, SimpleCallback, NULL) == STG::st_ok;
343 bool AddTariffFunction(const SGCONF::CONFIG & config,
344 const std::string & arg,
345 const std::map<std::string, std::string> & options)
347 TARIFF_DATA_RES conf;
348 conf.tariffConf.name = arg;
349 SGCONF::MaybeSet(options, "fee", conf.tariffConf.fee);
350 SGCONF::MaybeSet(options, "free", conf.tariffConf.free);
351 SGCONF::MaybeSet(options, "passive-cost", conf.tariffConf.passiveCost);
352 SGCONF::MaybeSet(options, "traff-type", conf.tariffConf.traffType, ConvTraffType);
353 SGCONF::MaybeSet(options, "period", conf.tariffConf.period, ConvPeriod);
354 SGCONF::MaybeSet(options, "change-policy", conf.tariffConf.changePolicy, ConvChangePolicy);
355 SGCONF::MaybeSet(options, "times", conf.dirPrice, ConvTimes);
356 SGCONF::MaybeSet(options, "day-prices", conf.dirPrice, ConvDayPrices);
357 SGCONF::MaybeSet(options, "night-prices", conf.dirPrice, ConvNightPrices);
358 SGCONF::MaybeSet(options, "thresholds", conf.dirPrice, ConvThresholds);
359 for (size_t i = 0; i < conf.dirPrice.size(); ++i)
361 if (!conf.dirPrice[i].priceDayA.empty() &&
362 !conf.dirPrice[i].priceNightA.empty() &&
363 !conf.dirPrice[i].priceDayB.empty() &&
364 !conf.dirPrice[i].priceNightB.empty())
365 conf.dirPrice[i].singlePrice = conf.dirPrice[i].priceDayA.data() == conf.dirPrice[i].priceNightA.data() &&
366 conf.dirPrice[i].priceDayB.data() == conf.dirPrice[i].priceNightB.data();
368 STG::SERVCONF proto(config.server.data(),
370 config.localAddress.data(),
371 config.localPort.data(),
372 config.userName.data(),
373 config.userPass.data());
374 return proto.AddTariff(arg, conf, SimpleCallback, NULL) == STG::st_ok;
377 bool ChgTariffFunction(const SGCONF::CONFIG & config,
378 const std::string & arg,
379 const std::map<std::string, std::string> & options)
381 TARIFF_DATA_RES conf;
382 conf.tariffConf.name = arg;
383 SGCONF::MaybeSet(options, "fee", conf.tariffConf.fee);
384 SGCONF::MaybeSet(options, "free", conf.tariffConf.free);
385 SGCONF::MaybeSet(options, "passive-cost", conf.tariffConf.passiveCost);
386 SGCONF::MaybeSet(options, "traff-type", conf.tariffConf.traffType, ConvTraffType);
387 SGCONF::MaybeSet(options, "period", conf.tariffConf.period, ConvPeriod);
388 SGCONF::MaybeSet(options, "change-policy", conf.tariffConf.changePolicy, ConvChangePolicy);
389 SGCONF::MaybeSet(options, "times", conf.dirPrice, ConvTimes);
390 SGCONF::MaybeSet(options, "day-prices", conf.dirPrice, ConvDayPrices);
391 SGCONF::MaybeSet(options, "night-prices", conf.dirPrice, ConvNightPrices);
392 SGCONF::MaybeSet(options, "thresholds", conf.dirPrice, ConvThresholds);
393 for (size_t i = 0; i < conf.dirPrice.size(); ++i)
395 if (!conf.dirPrice[i].priceDayA.empty() &&
396 !conf.dirPrice[i].priceNightA.empty() &&
397 !conf.dirPrice[i].priceDayB.empty() &&
398 !conf.dirPrice[i].priceNightB.empty())
399 conf.dirPrice[i].singlePrice = conf.dirPrice[i].priceDayA.data() == conf.dirPrice[i].priceNightA.data() &&
400 conf.dirPrice[i].priceDayB.data() == conf.dirPrice[i].priceNightB.data();
402 STG::SERVCONF proto(config.server.data(),
404 config.localAddress.data(),
405 config.localPort.data(),
406 config.userName.data(),
407 config.userPass.data());
408 return proto.ChgTariff(conf, SimpleCallback, NULL) == STG::st_ok;
411 } // namespace anonymous
413 void SGCONF::AppendTariffsOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks)
415 std::vector<API_ACTION::PARAM> params(GetTariffParams());
416 blocks.Add("Tariff management options")
417 .Add("get-tariffs", SGCONF::MakeAPIAction(commands, GetTariffsFunction), "\tget tariff list")
418 .Add("get-tariff", SGCONF::MakeAPIAction(commands, "<name>", GetTariffFunction), "get tariff")
419 .Add("add-tariff", SGCONF::MakeAPIAction(commands, "<name>", params, AddTariffFunction), "add tariff")
420 .Add("del-tariff", SGCONF::MakeAPIAction(commands, "<name>", DelTariffFunction), "delete tariff")
421 .Add("chg-tariff", SGCONF::MakeAPIAction(commands, "<name>", params, ChgTariffFunction), "change tariff");