X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/stargazer/plugins/other/ping/ping.h diff --git a/stargazer/plugins/other/ping/ping.h b/stargazer/plugins/other/ping/ping.h new file mode 100644 index 00000000..877d887a --- /dev/null +++ b/stargazer/plugins/other/ping/ping.h @@ -0,0 +1,148 @@ + /* + $Revision: 1.16 $ + $Date: 2009/06/23 11:32:28 $ + $Author: faust $ + */ + +#ifndef PING_H +#define PING_H + +#include "stg/plugin.h" +#include "stg/module_settings.h" +#include "stg/notifer.h" +#include "stg/user_ips.h" +#include "stg/pinger.h" +#include "stg/users.h" +#include "stg/logger.h" + +#include +#include +#include + +#include + +extern "C" PLUGIN * GetPlugin(); + +class PING; +class USER; +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) {} + void Notify(const uint32_t & oldIP, const uint32_t & newIP); + USER_PTR GetUser() const { return user; } + +private: + CHG_CURRIP_NOTIFIER_PING & operator=(const CHG_CURRIP_NOTIFIER_PING &); + + USER_PTR user; + const PING & ping; +}; +//----------------------------------------------------------------------------- +class CHG_IPS_NOTIFIER_PING: public PROPERTY_NOTIFIER_BASE { +public: + CHG_IPS_NOTIFIER_PING(const PING & p, USER_PTR u) + : user(u), ping(p) {} + void Notify(const USER_IPS & oldIPS, const USER_IPS & newIPS); + USER_PTR GetUser() const { return user; } + +private: + CHG_IPS_NOTIFIER_PING & operator=(const CHG_IPS_NOTIFIER_PING &); + + USER_PTR user; + const PING & ping; +}; +//----------------------------------------------------------------------------- +class ADD_USER_NONIFIER_PING: public NOTIFIER_BASE { +public: + explicit ADD_USER_NONIFIER_PING(PING & p) : ping(p) {} + void Notify(const USER_PTR & 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 NOTIFIER_BASE { +public: + explicit DEL_USER_NONIFIER_PING(PING & p) : ping(p) {} + void Notify(const USER_PTR & 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) {} + const std::string & GetStrError() const { return errorStr; } + int ParseSettings(const MODULE_SETTINGS & s); + int GetPingDelay() const { return pingDelay; } +private: + int pingDelay; + mutable std::string errorStr; +}; +//----------------------------------------------------------------------------- +class PING : public PLUGIN { +friend class CHG_CURRIP_NOTIFIER_PING; +friend class CHG_IPS_NOTIFIER_PING; +public: + PING(); + virtual ~PING(); + + void SetUsers(USERS * u) { users = u; } + void SetSettings(const MODULE_SETTINGS & s) { settings = s; } + int ParseSettings(); + + int Start(); + int Stop(); + int Reload(const MODULE_SETTINGS & /*ms*/) { return 0; } + bool IsRunning(); + + const std::string & GetStrError() const { return errorStr; } + 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: + explicit PING(const PING & rvalue); + PING & operator=(const PING & rvalue); + + void GetUsers(); + void SetUserNotifiers(USER_PTR u); + void UnSetUserNotifiers(USER_PTR u); + static void * Run(void * d); + + mutable std::string errorStr; + PING_SETTINGS pingSettings; + MODULE_SETTINGS settings; + USERS * users; + std::list usersList; + + pthread_t thread; + pthread_mutex_t mutex; + bool nonstop; + bool isRunning; + mutable STG_PINGER pinger; + + std::list ChgCurrIPNotifierList; + std::list ChgIPNotifierList; + + ADD_USER_NONIFIER_PING onAddUserNotifier; + DEL_USER_NONIFIER_PING onDelUserNotifier; + + PLUGIN_LOGGER logger; +}; +//----------------------------------------------------------------------------- + +#endif