]> git.stg.codes - stg.git/blob - include/stg/tariff.h
Ticket 37. The enum CHANGE_POLICY added in the struct TARIFF_DATA.
[stg.git] / include / stg / tariff.h
1 /*
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.
6  *
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.
11  *
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
15  */
16
17 /*
18  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
19  */
20
21 #ifndef TARIFF_H
22 #define TARIFF_H
23
24 #include "os_int.h"
25
26 #include <string>
27 #include <cstring>
28 #include <ctime>
29 #include <istream>
30
31 struct TARIFF_DATA;
32
33 class TARIFF {
34 public:
35     enum CHANGE_POLICY { ALLOW = 0, TO_CHEAP, TO_EXPENSIVE, DENY };
36
37     enum PERIOD { DAY = 0, MONTH };
38
39     enum TRAFF_TYPE { TRAFF_UP = 0, TRAFF_DOWN, TRAFF_UP_DOWN, TRAFF_MAX };
40
41     static std::string PeriodToString(PERIOD period);
42     static PERIOD StringToPeriod(const std::string& value);
43
44     static std::string TraffTypeToString(TRAFF_TYPE type);
45     static TRAFF_TYPE StringToTraffType(const std::string& value);
46     static TRAFF_TYPE IntToTraffType(int value);
47
48     virtual ~TARIFF() {}
49     virtual double  GetPriceWithTraffType(uint64_t up,
50                                           uint64_t down,
51                                           int dir,
52                                           time_t t) const = 0;
53     virtual double  GetFreeMb() const = 0;
54     virtual double  GetPassiveCost() const = 0;
55     virtual double  GetFee() const = 0;
56     virtual double  GetFree() const = 0;
57     virtual PERIOD  GetPeriod() const = 0;
58
59     virtual const   std::string & GetName() const = 0;
60     virtual void    SetName(const std::string & name) = 0;
61
62     virtual int     GetTraffType() const = 0;
63     virtual int64_t GetTraffByType(uint64_t up, uint64_t down) const = 0;
64     virtual int     GetThreshold(int dir) const = 0;
65     virtual const TARIFF_DATA & GetTariffData() const = 0;
66 };
67
68 inline
69 std::string TARIFF::PeriodToString(TARIFF::PERIOD period)
70 {
71 switch (period)
72     {
73     case DAY: return "day";
74     case MONTH: return "month";
75     }
76 return "month"; // Classic behaviour.
77 }
78
79 inline
80 TARIFF::PERIOD TARIFF::StringToPeriod(const std::string& value)
81 {
82 if (strcasecmp(value.c_str(), "day") == 0)
83     return DAY;
84 return MONTH; // Classic behaviour.
85 }
86
87 inline
88 std::string TARIFF::TraffTypeToString(TARIFF::TRAFF_TYPE type)
89 {
90 switch (type)
91     {
92     case TRAFF_UP: return "up";
93     case TRAFF_DOWN: return "down";
94     case TRAFF_UP_DOWN: return "up+down";
95     case TRAFF_MAX: return "max";
96     }
97 return "up+down";
98 }
99
100 inline
101 TARIFF::TRAFF_TYPE TARIFF::StringToTraffType(const std::string& value)
102 {
103 if (strcasecmp(value.c_str(), "up") == 0)
104     return TRAFF_UP;
105 if (strcasecmp(value.c_str(), "down") == 0)
106     return TRAFF_DOWN;
107 if (strcasecmp(value.c_str(), "up+down") == 0)
108     return TRAFF_UP_DOWN;
109 if (strcasecmp(value.c_str(), "max") == 0)
110     return TRAFF_MAX;
111 return TRAFF_UP_DOWN;
112 }
113
114 inline
115 std::istream & operator>>(std::istream & stream, TARIFF::TRAFF_TYPE & traffType)
116 {
117     unsigned val;
118     stream >> val;
119     traffType = static_cast<TARIFF::TRAFF_TYPE>(val);
120     return stream;
121 }
122
123 inline
124 TARIFF::TRAFF_TYPE TARIFF::IntToTraffType(int value)
125 {
126     if (value < 0 || value > TRAFF_MAX)
127         return TRAFF_UP_DOWN;
128     return static_cast<TRAFF_TYPE>(value);
129 }
130
131 #endif