X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/89a688a2876a7922dc2824769b91cab8bba00c4b..afcbfd1a09e22ff4839ba5db42047c96f355506c:/projects/stargazer/plugins/other/ping/ping.h diff --git a/projects/stargazer/plugins/other/ping/ping.h b/projects/stargazer/plugins/other/ping/ping.h index d25f6388..34bbbc52 100644 --- a/projects/stargazer/plugins/other/ping/ping.h +++ b/projects/stargazer/plugins/other/ping/ping.h @@ -7,11 +7,6 @@ #ifndef PING_H #define PING_H -#include - -#include -#include - #include "stg/os_int.h" #include "stg/plugin.h" #include "stg/module_settings.h" @@ -19,6 +14,12 @@ #include "stg/user_ips.h" #include "stg/pinger.h" #include "stg/users.h" +#include "stg/logger.h" + +#include +#include + +#include extern "C" PLUGIN * GetPlugin(); @@ -28,10 +29,11 @@ class SETTINGS; //-----------------------------------------------------------------------------*/ class CHG_CURRIP_NOTIFIER_PING: public PROPERTY_NOTIFIER_BASE { public: - CHG_CURRIP_NOTIFIER_PING(const PING & p, USER_PTR u) : user(u), ping(p) {} + CHG_CURRIP_NOTIFIER_PING(const PING & p, USER_PTR u) + : PROPERTY_NOTIFIER_BASE(), user(u), ping(p) {} CHG_CURRIP_NOTIFIER_PING(const CHG_CURRIP_NOTIFIER_PING & rvalue) - : user(rvalue.user), ping(rvalue.ping) - {} + : PROPERTY_NOTIFIER_BASE(), + user(rvalue.user), ping(rvalue.ping) {} void Notify(const uint32_t & oldIP, const uint32_t & newIP); USER_PTR GetUser() const { return user; } @@ -44,10 +46,11 @@ private: //----------------------------------------------------------------------------- class CHG_IPS_NOTIFIER_PING: public PROPERTY_NOTIFIER_BASE { public: - CHG_IPS_NOTIFIER_PING(const PING & p, USER_PTR u) : user(u), ping(p) {} + CHG_IPS_NOTIFIER_PING(const PING & p, USER_PTR u) + : PROPERTY_NOTIFIER_BASE(), user(u), ping(p) {} CHG_IPS_NOTIFIER_PING(const CHG_IPS_NOTIFIER_PING & rvalue) - : user(rvalue.user), ping(rvalue.ping) - {} + : PROPERTY_NOTIFIER_BASE(), + user(rvalue.user), ping(rvalue.ping) {} void Notify(const USER_IPS & oldIPS, const USER_IPS & newIPS); USER_PTR GetUser() const { return user; } @@ -60,7 +63,7 @@ private: //----------------------------------------------------------------------------- class ADD_USER_NONIFIER_PING: public NOTIFIER_BASE { public: - ADD_USER_NONIFIER_PING(PING & p) : ping(p) {} + explicit ADD_USER_NONIFIER_PING(PING & p) : NOTIFIER_BASE(), ping(p) {} virtual ~ADD_USER_NONIFIER_PING() {} void Notify(const USER_PTR & user); @@ -73,7 +76,7 @@ private: //----------------------------------------------------------------------------- class DEL_USER_NONIFIER_PING: public NOTIFIER_BASE { public: - DEL_USER_NONIFIER_PING(PING & p) : ping(p) {} + explicit DEL_USER_NONIFIER_PING(PING & p) : NOTIFIER_BASE(), ping(p) {} virtual ~DEL_USER_NONIFIER_PING() {} void Notify(const USER_PTR & user); @@ -109,19 +112,19 @@ public: int Start(); int Stop(); - int Reload() { return 0; } + int Reload(const MODULE_SETTINGS & /*ms*/) { return 0; } bool IsRunning(); const std::string & GetStrError() const { return errorStr; } - const std::string GetVersion() const { return "Pinger v.1.01"; } - uint16_t GetStartPosition() const { return 100; } - uint16_t GetStopPosition() const { return 100; } + std::string GetVersion() const { return "Pinger v.1.01"; } + uint16_t GetStartPosition() const { return 10; } + uint16_t GetStopPosition() const { return 10; } void AddUser(USER_PTR u); void DelUser(USER_PTR u); private: - PING(const PING & rvalue); + explicit PING(const PING & rvalue); PING & operator=(const PING & rvalue); void GetUsers(); @@ -146,6 +149,8 @@ private: ADD_USER_NONIFIER_PING onAddUserNotifier; DEL_USER_NONIFIER_PING onDelUserNotifier; + + PLUGIN_LOGGER logger; }; //-----------------------------------------------------------------------------