X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/1147628fd6aa3e78322a596880c1d46f8e6468df..44378b3654976b893daa96f44cea9fcb62092209:/projects/stargazer/plugins/other/smux/smux.h diff --git a/projects/stargazer/plugins/other/smux/smux.h b/projects/stargazer/plugins/other/smux/smux.h index 1b1ee96e..45f16ea6 100644 --- a/projects/stargazer/plugins/other/smux/smux.h +++ b/projects/stargazer/plugins/other/smux/smux.h @@ -13,6 +13,7 @@ #include "stg/os_int.h" #include "stg/plugin.h" #include "stg/module_settings.h" +#include "stg/notifer.h" #include "sensors.h" #include "tables.h" @@ -65,9 +66,27 @@ private: USER_PTR userPtr; }; //----------------------------------------------------------------------------- -class ADD_DEL_USER_NOTIFIER : public NOTIFIER_BASE { +class ADD_DEL_TARIFF_NOTIFIER : public NOTIFIER_BASE { public: - ADD_DEL_USER_NOTIFIER(SMUX & s) : smux(s) {} + ADD_DEL_TARIFF_NOTIFIER(SMUX & s) : smux(s) {} + void Notify(const TARIFF_DATA &); + +private: + SMUX & smux; +}; +//----------------------------------------------------------------------------- +class ADD_USER_NOTIFIER : public NOTIFIER_BASE { +public: + ADD_USER_NOTIFIER(SMUX & s) : smux(s) {} + void Notify(const USER_PTR &); + +private: + SMUX & smux; +}; +//----------------------------------------------------------------------------- +class DEL_USER_NOTIFIER : public NOTIFIER_BASE { +public: + DEL_USER_NOTIFIER(SMUX & s) : smux(s) {} void Notify(const USER_PTR &); private: @@ -100,6 +119,9 @@ public: bool UpdateTables(); + void SetNotifier(USER_PTR userPtr); + void UnsetNotifier(USER_PTR userPtr); + private: static void * Runner(void * d); void Run(); @@ -143,10 +165,32 @@ private: Tables tables; std::list notifiers; - ADD_DEL_USER_NOTIFIER addDelNotifier; + ADD_USER_NOTIFIER addUserNotifier; + DEL_USER_NOTIFIER delUserNotifier; + ADD_DEL_TARIFF_NOTIFIER addDelTariffNotifier; }; //----------------------------------------------------------------------------- +inline +void ADD_DEL_TARIFF_NOTIFIER::Notify(const TARIFF_DATA &) +{ +smux.UpdateTables(); +} + +inline +void ADD_USER_NOTIFIER::Notify(const USER_PTR & userPtr) +{ +smux.SetNotifier(userPtr); +smux.UpdateTables(); +} + +inline +void DEL_USER_NOTIFIER::Notify(const USER_PTR & userPtr) +{ +smux.UnsetNotifier(userPtr); +smux.UpdateTables(); +} + extern "C" PLUGIN * GetPlugin(); #endif