/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* * Date: 07.11.2007 */ /* * Author : Boris Mikhailenko */ /* $Revision: 1.9 $ $Date: 2010/10/07 17:53:39 $ $Author: faust $ */ #ifndef TARIFF_H #define TARIFF_H #include #include #include #include "os_int.h" #include "tariff_conf.h" #define TARIFF_DAY 0 #define TARIFF_NIGHT 1 class TARIFF { public: TARIFF() : tariffData() {}; TARIFF(const std::string & name) : tariffData(name) {}; TARIFF(const TARIFF_DATA & td) : tariffData(td) {}; TARIFF(const TARIFF & t) : tariffData(t.tariffData) {}; ~TARIFF() {}; double GetPriceWithTraffType(uint64_t up, uint64_t down, int dir, time_t t) const; double GetFreeMb() const { return tariffData.tariffConf.free; }; double GetPassiveCost() const { return tariffData.tariffConf.passiveCost; }; double GetFee() const { return tariffData.tariffConf.fee; }; double GetFree() const { return tariffData.tariffConf.free; }; void PrintTariff() const; const std::string & GetName() const { return tariffData.tariffConf.name; }; void SetName(const std::string & name) { tariffData.tariffConf.name = name; }; int GetTraffType() const { return tariffData.tariffConf.traffType; }; int64_t GetTraffByType(uint64_t up, uint64_t down) const; int GetThreshold(int dir) const; void GetTariffData(TARIFF_DATA * td) const; TARIFF & operator=(const TARIFF_DATA & td); TARIFF & operator=(const TARIFF & t); bool operator==(const TARIFF & rhs) const { return GetName() == rhs.GetName(); }; bool operator!=(const TARIFF & rhs) const { return GetName() != rhs.GetName(); }; private: TARIFF_DATA tariffData; double GetPriceWithoutFreeMb(int dir, int mb, time_t t) const; int Interval(int dir, time_t t) const; }; //----------------------------------------------------------------------------- #endif