]> git.stg.codes - stg.git/blob - projects/sgconf/tariffs.cpp
Ticket. ChangePolicyToString() function added.
[stg.git] / projects / sgconf / tariffs.cpp
1 #include "tariffs.h"
2
3 #include "api_action.h"
4 #include "options.h"
5 #include "config.h"
6 #include "utils.h"
7
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"
13
14 #include <iostream>
15 #include <algorithm>
16 #include <sstream>
17 #include <string>
18 #include <map>
19 #include <cassert>
20
21 namespace
22 {
23
24 std::string Indent(size_t level, bool dash = false)
25 {
26 if (level == 0)
27     return "";
28 return dash ? std::string(level * 4 - 2, ' ') + "- " : std::string(level * 4, ' ');
29 }
30
31 std::string ChangePolicyToString(TARIFF::CHANGE_POLICY changePolicy)
32 {
33 switch (changePolicy)
34     {
35     case ALLOW: return "allow";
36     case TO_CHEAP: return "to_cheap";
37     case TO_EXPENSIVE: return "to_expensive";
38     case DENY: return "deny";
39     }
40 return "unknown";
41 }
42
43 std::string PeriodToString(TARIFF::PERIOD period)
44 {
45 switch (period)
46     {
47     case TARIFF::DAY:
48         return "daily";
49     case TARIFF::MONTH:
50         return "monthly";
51     }
52 return "unknown";
53 }
54
55 std::string TraffTypeToString(TARIFF::TRAFF_TYPE traffType)
56 {
57 switch (traffType)
58     {
59     case TARIFF::TRAFF_UP:
60         return "upload";
61     case TARIFF::TRAFF_DOWN:
62         return "download";
63     case TARIFF::TRAFF_UP_DOWN:
64         return "upload + download";
65     case TARIFF::TRAFF_MAX:
66         return "max(upload, download)";
67     }
68 return "unknown";
69 }
70
71 void ConvPeriod(const std::string & value, RESETABLE<TARIFF::PERIOD> & res)
72 {
73 std::string lowered = ToLower(value);
74 if (lowered == "daily")
75     res = TARIFF::DAY;
76 else if (lowered == "monthly")
77     res = TARIFF::MONTH;
78 else
79     throw SGCONF::ACTION::ERROR("Period should be 'daily' or 'monthly'. Got: '" + value + "'");
80 }
81
82 void ConvTraffType(const std::string & value, RESETABLE<TARIFF::TRAFF_TYPE> & res)
83 {
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;
94 else
95     throw SGCONF::ACTION::ERROR("Traff type should be 'upload', 'download', 'upload + download' or 'max'. Got: '" + value + "'");
96 }
97
98 DIRPRICE_DATA_RES ConvTimeSpan(const std::string & value)
99 {
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) + "'");
122 return res;
123 }
124
125 void Splice(std::vector<DIRPRICE_DATA_RES> & lhs, const std::vector<DIRPRICE_DATA_RES> & rhs)
126 {
127 for (size_t i = 0; i < lhs.size() && i < rhs.size(); ++i)
128     lhs[i].Splice(rhs[i]);
129 }
130
131 void ConvTimes(std::string value, std::vector<DIRPRICE_DATA_RES> & res)
132 {
133 value.erase(std::remove(value.begin(), value.end(), ' '), value.end());
134 Splice(res, Split<std::vector<DIRPRICE_DATA_RES> >(value, ',', ConvTimeSpan));
135 }
136
137 struct ConvPrice : public std::unary_function<std::string, DIRPRICE_DATA_RES>
138 {
139     typedef RESETABLE<double> (DIRPRICE_DATA_RES::* MemPtr);
140     ConvPrice(MemPtr before, MemPtr after)
141         : m_before(before), m_after(after)
142     {}
143
144     DIRPRICE_DATA_RES operator()(const std::string & value)
145     {
146     DIRPRICE_DATA_RES res;
147     size_t slashPos = value.find_first_of('/');
148     if (slashPos == std::string::npos)
149         {
150         double price = 0;
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;
155         }
156     else
157         {
158         double price = 0;
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;
166         }
167     return res;
168     }
169
170     MemPtr m_before;
171     MemPtr m_after;
172 };
173
174 void ConvDayPrices(std::string value, std::vector<DIRPRICE_DATA_RES> & res)
175 {
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)));
178 }
179
180 void ConvNightPrices(std::string value, std::vector<DIRPRICE_DATA_RES> & res)
181 {
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)));
184 }
185
186 DIRPRICE_DATA_RES ConvThreshold(std::string value)
187 {
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;
193 return res;
194 }
195
196 void ConvThresholds(std::string value, std::vector<DIRPRICE_DATA_RES> & res)
197 {
198 value.erase(std::remove(value.begin(), value.end(), ' '), value.end());
199 Splice(res, Split<std::vector<DIRPRICE_DATA_RES> >(value, ',', ConvThreshold));
200 }
201
202 std::string TimeToString(int h, int m)
203 {
204 std::ostringstream stream;
205 stream << (h < 10 ? "0" : "") << h << ":"
206        << (m < 10 ? "0" : "") << m;
207 return stream.str();
208 }
209
210 void PrintDirPriceData(size_t dir, const DIRPRICE_DATA & data, size_t level)
211 {
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!
220 }
221
222 void PrintTariffConf(const TARIFF_CONF & conf, size_t level)
223 {
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 }
231
232 void PrintTariff(const STG::GET_TARIFF::INFO & info, size_t level = 0)
233 {
234 PrintTariffConf(info.tariffConf, level);
235 std::cout << Indent(level) << "dir prices:\n";
236 for (size_t i = 0; i < info.dirPrice.size(); ++i)
237     PrintDirPriceData(i, info.dirPrice[i], level + 1);
238 }
239
240 std::vector<SGCONF::API_ACTION::PARAM> GetTariffParams()
241 {
242 std::vector<SGCONF::API_ACTION::PARAM> params;
243 params.push_back(SGCONF::API_ACTION::PARAM("fee", "<fee>", "\t\ttariff fee"));
244 params.push_back(SGCONF::API_ACTION::PARAM("free", "<free mb>", "\tprepaid traffic"));
245 params.push_back(SGCONF::API_ACTION::PARAM("passive-cost", "<cost>", "\tpassive cost"));
246 params.push_back(SGCONF::API_ACTION::PARAM("traff-type", "<type>", "\ttraffic type (up, down, up+down, max)"));
247 params.push_back(SGCONF::API_ACTION::PARAM("period", "<period>", "\ttarification period (daily, monthly)"));
248 params.push_back(SGCONF::API_ACTION::PARAM("times", "<hh:mm-hh:mm, ...>", "coma-separated day time-spans for each direction"));
249 params.push_back(SGCONF::API_ACTION::PARAM("day-prices", "<price/price, ...>", "coma-separated day prices for each direction"));
250 params.push_back(SGCONF::API_ACTION::PARAM("night-prices", "<price/price, ...>", "coma-separated night prices for each direction"));
251 params.push_back(SGCONF::API_ACTION::PARAM("thresholds", "<threshold, ...>", "coma-separated thresholds for each direction"));
252 return params;
253 }
254
255 void SimpleCallback(bool result,
256                     const std::string & reason,
257                     void * /*data*/)
258 {
259 if (!result)
260     {
261     std::cerr << "Operation failed. Reason: '" << reason << "'." << std::endl;
262     return;
263     }
264 std::cout << "Success.\n";
265 }
266
267 void GetTariffsCallback(bool result,
268                         const std::string & reason,
269                         const std::vector<STG::GET_TARIFF::INFO> & info,
270                         void * /*data*/)
271 {
272 if (!result)
273     {
274     std::cerr << "Failed to get tariff list. Reason: '" << reason << "'." << std::endl;
275     return;
276     }
277 std::cout << "Tariffs:\n";
278 for (size_t i = 0; i < info.size(); ++i)
279     PrintTariff(info[i], 1);
280 }
281
282 void GetTariffCallback(bool result,
283                        const std::string & reason,
284                        const std::vector<STG::GET_TARIFF::INFO> & info,
285                        void * data)
286 {
287 assert(data != NULL && "Expecting pointer to std::string with the tariff's name.");
288 const std::string & name = *static_cast<const std::string *>(data);
289 if (!result)
290     {
291     std::cerr << "Failed to get tariff. Reason: '" << reason << "'." << std::endl;
292     return;
293     }
294 for (size_t i = 0; i < info.size(); ++i)
295     if (info[i].tariffConf.name == name)
296         PrintTariff(info[i]);
297 }
298
299 bool GetTariffsFunction(const SGCONF::CONFIG & config,
300                         const std::string & /*arg*/,
301                         const std::map<std::string, std::string> & /*options*/)
302 {
303 STG::SERVCONF proto(config.server.data(),
304                     config.port.data(),
305                     config.localAddress.data(),
306                     config.localPort.data(),
307                     config.userName.data(),
308                     config.userPass.data());
309 return proto.GetTariffs(GetTariffsCallback, NULL) == STG::st_ok;
310 }
311
312 bool GetTariffFunction(const SGCONF::CONFIG & config,
313                        const std::string & arg,
314                        const std::map<std::string, std::string> & /*options*/)
315 {
316 STG::SERVCONF proto(config.server.data(),
317                     config.port.data(),
318                     config.localAddress.data(),
319                     config.localPort.data(),
320                     config.userName.data(),
321                     config.userPass.data());
322 // STG currently doesn't support <GetTariff name="..."/>.
323 // So get a list of tariffs and filter it. 'data' param holds a pointer to 'name'.
324 std::string name(arg);
325 return proto.GetTariffs(GetTariffCallback, &name) == STG::st_ok;
326 }
327
328 bool DelTariffFunction(const SGCONF::CONFIG & config,
329                        const std::string & arg,
330                        const std::map<std::string, std::string> & /*options*/)
331 {
332 STG::SERVCONF proto(config.server.data(),
333                     config.port.data(),
334                     config.localAddress.data(),
335                     config.localPort.data(),
336                     config.userName.data(),
337                     config.userPass.data());
338 return proto.DelTariff(arg, SimpleCallback, NULL) == STG::st_ok;
339 }
340
341 bool AddTariffFunction(const SGCONF::CONFIG & config,
342                        const std::string & arg,
343                        const std::map<std::string, std::string> & options)
344 {
345 TARIFF_DATA_RES conf;
346 conf.tariffConf.name = arg;
347 SGCONF::MaybeSet(options, "fee", conf.tariffConf.fee);
348 SGCONF::MaybeSet(options, "free", conf.tariffConf.free);
349 SGCONF::MaybeSet(options, "passive-cost", conf.tariffConf.passiveCost);
350 SGCONF::MaybeSet(options, "traff-type", conf.tariffConf.traffType, ConvTraffType);
351 SGCONF::MaybeSet(options, "period", conf.tariffConf.period, ConvPeriod);
352 SGCONF::MaybeSet(options, "times", conf.dirPrice, ConvTimes);
353 SGCONF::MaybeSet(options, "day-prices", conf.dirPrice, ConvDayPrices);
354 SGCONF::MaybeSet(options, "night-prices", conf.dirPrice, ConvNightPrices);
355 SGCONF::MaybeSet(options, "thresholds", conf.dirPrice, ConvThresholds);
356 for (size_t i = 0; i < conf.dirPrice.size(); ++i)
357     {
358     if (!conf.dirPrice[i].priceDayA.empty() &&
359         !conf.dirPrice[i].priceNightA.empty() &&
360         !conf.dirPrice[i].priceDayB.empty() &&
361         !conf.dirPrice[i].priceNightB.empty())
362         conf.dirPrice[i].singlePrice = conf.dirPrice[i].priceDayA.data() == conf.dirPrice[i].priceNightA.data() &&
363                                        conf.dirPrice[i].priceDayB.data() == conf.dirPrice[i].priceNightB.data();
364     }
365 STG::SERVCONF proto(config.server.data(),
366                     config.port.data(),
367                     config.localAddress.data(),
368                     config.localPort.data(),
369                     config.userName.data(),
370                     config.userPass.data());
371 return proto.AddTariff(arg, conf, SimpleCallback, NULL) == STG::st_ok;
372 }
373
374 bool ChgTariffFunction(const SGCONF::CONFIG & config,
375                        const std::string & arg,
376                        const std::map<std::string, std::string> & options)
377 {
378 TARIFF_DATA_RES conf;
379 conf.tariffConf.name = arg;
380 SGCONF::MaybeSet(options, "fee", conf.tariffConf.fee);
381 SGCONF::MaybeSet(options, "free", conf.tariffConf.free);
382 SGCONF::MaybeSet(options, "passive-cost", conf.tariffConf.passiveCost);
383 SGCONF::MaybeSet(options, "traff-type", conf.tariffConf.traffType, ConvTraffType);
384 SGCONF::MaybeSet(options, "period", conf.tariffConf.period, ConvPeriod);
385 SGCONF::MaybeSet(options, "times", conf.dirPrice, ConvTimes);
386 SGCONF::MaybeSet(options, "day-prices", conf.dirPrice, ConvDayPrices);
387 SGCONF::MaybeSet(options, "night-prices", conf.dirPrice, ConvNightPrices);
388 SGCONF::MaybeSet(options, "thresholds", conf.dirPrice, ConvThresholds);
389 for (size_t i = 0; i < conf.dirPrice.size(); ++i)
390     {
391     if (!conf.dirPrice[i].priceDayA.empty() &&
392         !conf.dirPrice[i].priceNightA.empty() &&
393         !conf.dirPrice[i].priceDayB.empty() &&
394         !conf.dirPrice[i].priceNightB.empty())
395         conf.dirPrice[i].singlePrice = conf.dirPrice[i].priceDayA.data() == conf.dirPrice[i].priceNightA.data() &&
396                                        conf.dirPrice[i].priceDayB.data() == conf.dirPrice[i].priceNightB.data();
397     }
398 STG::SERVCONF proto(config.server.data(),
399                     config.port.data(),
400                     config.localAddress.data(),
401                     config.localPort.data(),
402                     config.userName.data(),
403                     config.userPass.data());
404 return proto.ChgTariff(conf, SimpleCallback, NULL) == STG::st_ok;
405 }
406
407 } // namespace anonymous
408
409 void SGCONF::AppendTariffsOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks)
410 {
411 std::vector<API_ACTION::PARAM> params(GetTariffParams());
412 blocks.Add("Tariff management options")
413       .Add("get-tariffs", SGCONF::MakeAPIAction(commands, GetTariffsFunction), "\tget tariff list")
414       .Add("get-tariff", SGCONF::MakeAPIAction(commands, "<name>", GetTariffFunction), "get tariff")
415       .Add("add-tariff", SGCONF::MakeAPIAction(commands, "<name>", params, AddTariffFunction), "add tariff")
416       .Add("del-tariff", SGCONF::MakeAPIAction(commands, "<name>", DelTariffFunction), "delete tariff")
417       .Add("chg-tariff", SGCONF::MakeAPIAction(commands, "<name>", params, ChgTariffFunction), "change tariff");
418 }