#include <string>
#include <cstring>
#include <ctime>
+#include <istream>
struct TARIFF_DATA;
public:
enum PERIOD { DAY = 0, MONTH };
+ enum TRAFF_TYPE { TRAFF_UP = 0, TRAFF_DOWN, TRAFF_UP_DOWN, TRAFF_MAX };
+
static std::string PeriodToString(PERIOD period);
static PERIOD StringToPeriod(const std::string& value);
+ static std::string TraffTypeToString(TRAFF_TYPE type);
+ static TRAFF_TYPE StringToTraffType(const std::string& value);
+
virtual ~TARIFF() {}
virtual double GetPriceWithTraffType(uint64_t up,
uint64_t down,
return MONTH; // Classic behaviour.
}
+inline
+std::string TARIFF::TraffTypeToString(TARIFF::TRAFF_TYPE type)
+{
+switch (type)
+ {
+ case TRAFF_UP: return "up";
+ case TRAFF_DOWN: return "down";
+ case TRAFF_UP_DOWN: return "up+down";
+ case TRAFF_MAX: return "max";
+ }
+return "up+down";
+}
+
+inline
+TARIFF::TRAFF_TYPE TARIFF::StringToTraffType(const std::string& value)
+{
+if (strcasecmp(value.c_str(), "up") == 0)
+ return TRAFF_UP;
+if (strcasecmp(value.c_str(), "down") == 0)
+ return TRAFF_DOWN;
+if (strcasecmp(value.c_str(), "up+down") == 0)
+ return TRAFF_UP_DOWN;
+if (strcasecmp(value.c_str(), "max") == 0)
+ return TRAFF_MAX;
+return TRAFF_UP_DOWN;
+}
+
+inline
+std::istream & operator>>(std::istream & stream, TARIFF::TRAFF_TYPE & traffType)
+{
+ unsigned val;
+ stream >> val;
+ traffType = static_cast<TARIFF::TRAFF_TYPE>(val);
+ return stream;
+}
+
#endif
#include <string>
#include <vector>
-//-----------------------------------------------------------------------------
-enum
-{
- TRAFF_UP = 0,
- TRAFF_DOWN,
- TRAFF_UP_DOWN,
- TRAFF_MAX
-};
//-----------------------------------------------------------------------------
struct DIRPRICE_DATA
{
//-----------------------------------------------------------------------------
struct TARIFF_CONF
{
- double fee;
- double free;
- int traffType;
- double passiveCost;
- std::string name;
- TARIFF::PERIOD period;
+ double fee;
+ double free;
+ TARIFF::TRAFF_TYPE traffType;
+ double passiveCost;
+ std::string name;
+ TARIFF::PERIOD period;
TARIFF_CONF()
: fee(0),
free(0),
- traffType(TRAFF_UP_DOWN),
+ traffType(TARIFF::TRAFF_UP_DOWN),
passiveCost(0),
name(),
period(TARIFF::MONTH)
TARIFF_CONF(const std::string & n)
: fee(0),
free(0),
- traffType(TRAFF_UP_DOWN),
+ traffType(TARIFF::TRAFF_UP_DOWN),
passiveCost(0),
name(n),
period(TARIFF::MONTH)
return tc;
}
- RESETABLE<double> fee;
- RESETABLE<double> free;
- RESETABLE<int> traffType;
- RESETABLE<double> passiveCost;
- RESETABLE<std::string> name;
- RESETABLE<TARIFF::PERIOD> period;
+ RESETABLE<double> fee;
+ RESETABLE<double> free;
+ RESETABLE<TARIFF::TRAFF_TYPE> traffType;
+ RESETABLE<double> passiveCost;
+ RESETABLE<std::string> name;
+ RESETABLE<TARIFF::PERIOD> period;
};
//-----------------------------------------------------------------------------
struct TARIFF_DATA