X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/stargazer/tariffs_impl.h diff --git a/stargazer/tariffs_impl.h b/stargazer/tariffs_impl.h new file mode 100644 index 00000000..55cc49b3 --- /dev/null +++ b/stargazer/tariffs_impl.h @@ -0,0 +1,85 @@ +/* + * 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 + */ + +#ifndef TARIFFS_IMPL_H +#define TARIFFS_IMPL_H + +#include "stg/tariff.h" +#include "stg/tariffs.h" +#include "stg/tariff_conf.h" +#include "tariff_impl.h" + +#include +#include +#include + +#include + +#define TARIFF_DAY 0 +#define TARIFF_NIGHT 1 + +class STORE; +class STG_LOGGER; +class ADMIN; + +class TARIFFS_IMPL : public TARIFFS { +public: + typedef std::list Tariffs; + + explicit TARIFFS_IMPL(STORE * store); + virtual ~TARIFFS_IMPL(); + int ReadTariffs (); + const TARIFF * FindByName(const std::string & name) const; + const TARIFF * GetNoTariff() const { return &noTariff; } + size_t Count() const; + int Del(const std::string & name, const ADMIN * admin); + int Add(const std::string & name, const ADMIN * admin); + int Chg(const TARIFF_DATA & td, const ADMIN * admin); + + void AddNotifierAdd(NOTIFIER_BASE * notifier); + void DelNotifierAdd(NOTIFIER_BASE * notifier); + + void AddNotifierDel(NOTIFIER_BASE * notifier); + void DelNotifierDel(NOTIFIER_BASE * notifier); + + void GetTariffsData(std::list * tdl) const; + + const std::string & GetStrError() const { return strError; } + +private: + TARIFFS_IMPL(const TARIFFS_IMPL & rvalue); + TARIFFS_IMPL & operator=(const TARIFFS_IMPL & rvalue); + + Tariffs tariffs; + STORE * store; + STG_LOGGER & WriteServLog; + mutable pthread_mutex_t mutex; + std::string strError; + TARIFF_IMPL noTariff; + + std::set*> onAddNotifiers; + std::set*> onDelNotifiers; +}; + +#endif