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
22 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
27 $Date: 2010/10/07 17:53:39 $
39 #include "stg/tariff.h"
40 #include "stg/os_int.h"
41 #include "stg/tariff_conf.h"
44 #define TARIFF_NIGHT 1
46 class TARIFF_IMPL : public TARIFF {
52 TARIFF_IMPL(const std::string & name)
56 TARIFF_IMPL(const TARIFF_DATA & td)
60 TARIFF_IMPL(const TARIFF_IMPL & t)
62 tariffData(t.tariffData)
64 virtual ~TARIFF_IMPL() {}
66 double GetPriceWithTraffType(uint64_t up,
70 double GetFreeMb() const { return tariffData.tariffConf.free; }
71 double GetPassiveCost() const { return tariffData.tariffConf.passiveCost; }
72 double GetFee() const { return tariffData.tariffConf.fee; }
73 double GetFree() const { return tariffData.tariffConf.free; }
77 const std::string & GetName() const { return tariffData.tariffConf.name; }
78 void SetName(const std::string & name) { tariffData.tariffConf.name = name; }
80 int GetTraffType() const { return tariffData.tariffConf.traffType; }
81 int64_t GetTraffByType(uint64_t up, uint64_t down) const;
82 int GetThreshold(int dir) const;
83 const TARIFF_DATA & GetTariffData() const { return tariffData; }
85 TARIFF_IMPL & operator=(const TARIFF_DATA & td);
86 TARIFF_IMPL & operator=(const TARIFF_IMPL & t);
87 bool operator==(const TARIFF_IMPL & rhs) const { return GetName() == rhs.GetName(); }
88 bool operator!=(const TARIFF_IMPL & rhs) const { return GetName() != rhs.GetName(); }
91 TARIFF_DATA tariffData;
93 double GetPriceWithoutFreeMb(int dir, int64_t mb, time_t t) const;
94 int Interval(int dir, time_t t) const;