2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
35 enum PERIOD { DAY = 0, MONTH };
37 enum TRAFF_TYPE { TRAFF_UP = 0, TRAFF_DOWN, TRAFF_UP_DOWN, TRAFF_MAX };
39 static std::string PeriodToString(PERIOD period);
40 static PERIOD StringToPeriod(const std::string& value);
42 static std::string TraffTypeToString(TRAFF_TYPE type);
43 static TRAFF_TYPE StringToTraffType(const std::string& value);
44 static TRAFF_TYPE IntToTraffType(int value);
47 virtual double GetPriceWithTraffType(uint64_t up,
51 virtual double GetFreeMb() const = 0;
52 virtual double GetPassiveCost() const = 0;
53 virtual double GetFee() const = 0;
54 virtual double GetFree() const = 0;
55 virtual PERIOD GetPeriod() const = 0;
57 virtual const std::string & GetName() const = 0;
58 virtual void SetName(const std::string & name) = 0;
60 virtual int GetTraffType() const = 0;
61 virtual int64_t GetTraffByType(uint64_t up, uint64_t down) const = 0;
62 virtual int GetThreshold(int dir) const = 0;
63 virtual const TARIFF_DATA & GetTariffData() const = 0;
67 std::string TARIFF::PeriodToString(TARIFF::PERIOD period)
71 case DAY: return "day";
72 case MONTH: return "month";
74 return "month"; // Classic behaviour.
78 TARIFF::PERIOD TARIFF::StringToPeriod(const std::string& value)
80 if (strcasecmp(value.c_str(), "day") == 0)
82 return MONTH; // Classic behaviour.
86 std::string TARIFF::TraffTypeToString(TARIFF::TRAFF_TYPE type)
90 case TRAFF_UP: return "up";
91 case TRAFF_DOWN: return "down";
92 case TRAFF_UP_DOWN: return "up+down";
93 case TRAFF_MAX: return "max";
99 TARIFF::TRAFF_TYPE TARIFF::StringToTraffType(const std::string& value)
101 if (strcasecmp(value.c_str(), "up") == 0)
103 if (strcasecmp(value.c_str(), "down") == 0)
105 if (strcasecmp(value.c_str(), "up+down") == 0)
106 return TRAFF_UP_DOWN;
107 if (strcasecmp(value.c_str(), "max") == 0)
109 return TRAFF_UP_DOWN;
113 std::istream & operator>>(std::istream & stream, TARIFF::TRAFF_TYPE & traffType)
117 traffType = static_cast<TARIFF::TRAFF_TYPE>(val);
122 TARIFF::TRAFF_TYPE TARIFF::IntToTraffType(int value)
124 if (value < 0 || value > TRAFF_MAX)
125 return TRAFF_UP_DOWN;
126 return static_cast<TRAFF_TYPE>(value);