X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/d8845c7819caac09b95c4cdf1e8d48cc1cb1b7a6..1cd2b12bd4e4d86f6cd099240795f3ebeb3852b3:/projects/stargazer/tariffs_impl.h diff --git a/projects/stargazer/tariffs_impl.h b/projects/stargazer/tariffs_impl.h index 55cc49b3..31d22b59 100644 --- a/projects/stargazer/tariffs_impl.h +++ b/projects/stargazer/tariffs_impl.h @@ -22,8 +22,7 @@ * Author : Boris Mikhailenko */ -#ifndef TARIFFS_IMPL_H -#define TARIFFS_IMPL_H +#pragma once #include "stg/tariff.h" #include "stg/tariffs.h" @@ -31,55 +30,42 @@ #include "tariff_impl.h" #include -#include +#include #include +#include -#include +namespace STG +{ -#define TARIFF_DAY 0 -#define TARIFF_NIGHT 1 +struct Store; +class Logger; +struct Admin; -class STORE; -class STG_LOGGER; -class ADMIN; +class TariffsImpl : public Tariffs { + public: + using Data = std::vector; -class TARIFFS_IMPL : public TARIFFS { -public: - typedef std::list Tariffs; + explicit TariffsImpl(Store * store); - 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); + int ReadTariffs () override; + const Tariff * FindByName(const std::string & name) const override; + const Tariff * GetNoTariff() const override { return &noTariff; } + size_t Count() const override; + int Del(const std::string & name, const Admin * admin) override; + int Add(const std::string & name, const Admin * admin) override; + int Chg(const TariffData & td, const Admin * admin) override; - void AddNotifierAdd(NOTIFIER_BASE * notifier); - void DelNotifierAdd(NOTIFIER_BASE * notifier); + void GetTariffsData(std::vector * tdl) const override; - void AddNotifierDel(NOTIFIER_BASE * notifier); - void DelNotifierDel(NOTIFIER_BASE * notifier); + const std::string & GetStrError() const override { return strError; } - 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; + private: + Data tariffs; + Store* store; + Logger& WriteServLog; + mutable std::mutex m_mutex; + std::string strError; + TariffImpl noTariff; }; -#endif +}