X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0907aa4037b12b6b88ee24495d4577a064d4f8db..ee1709cd231588fe672d0bd2546ef69ee87ff88c:/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 9986be39..68d79794 100644 --- a/projects/stargazer/plugins/other/ping/ping.h +++ b/projects/stargazer/plugins/other/ping/ping.h @@ -3,6 +3,7 @@ #include "stg/plugin.h" #include "stg/module_settings.h" #include "stg/notifer.h" +#include "stg/subscriptions.h" #include "stg/user_ips.h" #include "stg/pinger.h" #include "stg/users.h" @@ -10,10 +11,13 @@ #include #include +#include +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wshadow" +#include +#pragma GCC diagnostic pop #include -#include - class PING; namespace STG @@ -28,7 +32,7 @@ class CHG_CURRIP_NOTIFIER_PING: public STG::PropertyNotifierBase { public: CHG_CURRIP_NOTIFIER_PING(const PING & p, UserPtr u) : user(u), ping(p) {} - void Notify(const uint32_t & oldIP, const uint32_t & newIP); + void notify(const uint32_t & oldIP, const uint32_t & newIP) override; UserPtr GetUser() const { return user; } private: @@ -42,7 +46,7 @@ class CHG_IPS_NOTIFIER_PING: public STG::PropertyNotifierBase { public: CHG_IPS_NOTIFIER_PING(const PING & p, UserPtr u) : user(u), ping(p) {} - void Notify(const STG::UserIPs & oldIPS, const STG::UserIPs & newIPS); + void notify(const STG::UserIPs & oldIPS, const STG::UserIPs & newIPS) override; UserPtr GetUser() const { return user; } private: @@ -52,30 +56,6 @@ private: const PING & ping; }; //----------------------------------------------------------------------------- -class ADD_USER_NONIFIER_PING: public STG::NotifierBase { -public: - explicit ADD_USER_NONIFIER_PING(PING & p) : ping(p) {} - void Notify(const UserPtr & user); - -private: - ADD_USER_NONIFIER_PING(const ADD_USER_NONIFIER_PING &); - ADD_USER_NONIFIER_PING & operator=(const ADD_USER_NONIFIER_PING &); - - PING & ping; -}; -//----------------------------------------------------------------------------- -class DEL_USER_NONIFIER_PING: public STG::NotifierBase { -public: - explicit DEL_USER_NONIFIER_PING(PING & p) : ping(p) {} - void Notify(const UserPtr & user); - -private: - DEL_USER_NONIFIER_PING(const DEL_USER_NONIFIER_PING &); - DEL_USER_NONIFIER_PING & operator=(const DEL_USER_NONIFIER_PING &); - - PING & ping; -}; -//----------------------------------------------------------------------------- class PING_SETTINGS { public: PING_SETTINGS() : pingDelay(0) {} @@ -92,7 +72,6 @@ friend class CHG_CURRIP_NOTIFIER_PING; friend class CHG_IPS_NOTIFIER_PING; public: PING(); - ~PING() override; void SetUsers(STG::Users * u) override { users = u; } void SetSettings(const STG::ModuleSettings & s) override { settings = s; } @@ -118,7 +97,7 @@ private: void GetUsers(); void SetUserNotifiers(UserPtr u); void UnSetUserNotifiers(UserPtr u); - static void * Run(void * d); + void Run(std::stop_token token); mutable std::string errorStr; PING_SETTINGS pingSettings; @@ -126,17 +105,16 @@ private: STG::Users * users; std::list usersList; - pthread_t thread; - pthread_mutex_t mutex; - bool nonstop; + std::jthread m_thread; + std::mutex m_mutex; bool isRunning; mutable STG_PINGER pinger; std::list ChgCurrIPNotifierList; std::list ChgIPNotifierList; - ADD_USER_NONIFIER_PING onAddUserNotifier; - DEL_USER_NONIFIER_PING onDelUserNotifier; + STG::ScopedConnection m_onAddUserConn; + STG::ScopedConnection m_onDelUserConn; STG::PluginLogger logger; };