X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ede91934442fd804d7b818971a44e3ad795cb01f..46b0747592074017ff0ea4b33d4a7194235886e5:/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 deleted file mode 100644 index 8db5efc6..00000000 --- a/projects/stargazer/plugins/other/ping/ping.h +++ /dev/null @@ -1,146 +0,0 @@ - /* - $Revision: 1.16 $ - $Date: 2009/06/23 11:32:28 $ - $Author: faust $ - */ - -#ifndef PING_H -#define PING_H - -#include - -#include -#include - -#include "os_int.h" -#include "plugin.h" -#include "module_settings.h" -#include "notifer.h" -#include "user_ips.h" -#include "pinger.h" -#include "users.h" - -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: - 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: - USER_PTR user; - const PING & ping; -}; -//----------------------------------------------------------------------------- -class ADD_USER_NONIFIER_PING: public NOTIFIER_BASE { -public: - ADD_USER_NONIFIER_PING(PING & p) : ping(p) {} - virtual ~ADD_USER_NONIFIER_PING() {} - void Notify(const USER_PTR & user); - -private: - PING & ping; -}; -//----------------------------------------------------------------------------- -class DEL_USER_NONIFIER_PING: public NOTIFIER_BASE { -public: - DEL_USER_NONIFIER_PING(PING & p) : ping(p) {} - virtual ~DEL_USER_NONIFIER_PING() {} - void Notify(const USER_PTR & user); - -private: - PING & ping; -}; -//----------------------------------------------------------------------------- -class PING_SETTINGS { -public: - PING_SETTINGS(); - virtual ~PING_SETTINGS() {} - const std::string & GetStrError() const { return errorStr; } - int ParseSettings(const MODULE_SETTINGS & s); - int GetPingDelay() const { return pingDelay; } -private: - int ParseIntInRange(const std::string & str, int min, int max, int * val); - - 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); - void SetTariffs(TARIFFS *) {} - void SetAdmins(ADMINS *) {} - void SetTraffcounter(TRAFFCOUNTER *) {} - void SetStore(STORE *) {} - void SetStgSettings(const SETTINGS *) {} - void SetSettings(const MODULE_SETTINGS & s); - int ParseSettings(); - - int Start(); - int Stop(); - int Reload() { return 0; } - bool IsRunning(); - - const std::string & GetStrError() const; - const std::string GetVersion() const; - uint16_t GetStartPosition() const; - uint16_t GetStopPosition() const; - - void AddUser(USER_PTR u); - void DelUser(USER_PTR u); - -private: - 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; - - /* - ÍÙ ÄÏÌÖÎÙ ÐÅÒÅÐÒÏ×ÅÒÉÔØ ×ÏÚÍÏÖÎÏÓÔØ ÐÉÎÇÏ×ÁÎÉÑ ÀÚÅÒÁ ÐÒÉ ÉÚÍÅÎÅÎÉÉ - ÓÌÅÄÕÀÝÉÈ ÅÇÏ ÐÁÒÁÍÅÔÒÏ×: - - currIP - - ips - */ - 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; -}; -//----------------------------------------------------------------------------- - -#endif