X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ede91934442fd804d7b818971a44e3ad795cb01f..abd575e7ae51fd1462c8d4fe0229ed81ce8a564d:/projects/stargazer/plugins/other/rscript/rscript.h diff --git a/projects/stargazer/plugins/other/rscript/rscript.h b/projects/stargazer/plugins/other/rscript/rscript.h index 7748144e..001d65e1 100644 --- a/projects/stargazer/plugins/other/rscript/rscript.h +++ b/projects/stargazer/plugins/other/rscript/rscript.h @@ -19,34 +19,26 @@ * Author : Maxim Mamontov */ -/* - $Revision: 1.16 $ - $Date: 2010/09/10 06:43:59 $ - $Author: faust $ -*/ - #ifndef RSCRIPT_H #define RSCRIPT_H #include -#include #include #include #include #include #include -#include "plugin.h" -#include "store.h" -#include "module_settings.h" -#include "os_int.h" -#include "notifer.h" -#include "user_ips.h" -#include "user.h" -#include "users.h" -#include "blowfish.h" -#include "rs_packets.h" +#include "stg/plugin.h" +#include "stg/module_settings.h" +#include "stg/os_int.h" +#include "stg/notifer.h" +#include "stg/user.h" +#include "stg/blowfish.h" +#include "stg/rs_packets.h" +#include "stg/logger.h" + #include "nrmap_parser.h" extern "C" PLUGIN * GetPlugin(); @@ -55,57 +47,97 @@ extern "C" PLUGIN * GetPlugin(); #define MAX_SHORT_PCKT (3) -class REMOTE_SCRIPT; class SETTINGS; +class USERS; + +namespace RS +{ + +class REMOTE_SCRIPT; +class UpdateRouter; +class DisconnectUser; + //----------------------------------------------------------------------------- -class RS_ADD_USER_NONIFIER: public NOTIFIER_BASE { +class ADD_USER_NONIFIER: public NOTIFIER_BASE { public: - RS_ADD_USER_NONIFIER(REMOTE_SCRIPT & r) : rs(r) {} - virtual ~RS_ADD_USER_NONIFIER() {} + ADD_USER_NONIFIER(REMOTE_SCRIPT & r) + : NOTIFIER_BASE(), rs(r) {} + virtual ~ADD_USER_NONIFIER() {} void Notify(const USER_PTR & user); private: + ADD_USER_NONIFIER(const ADD_USER_NONIFIER & rhs); + ADD_USER_NONIFIER & operator=(const ADD_USER_NONIFIER); + REMOTE_SCRIPT & rs; }; //----------------------------------------------------------------------------- -class RS_DEL_USER_NONIFIER: public NOTIFIER_BASE { +class DEL_USER_NONIFIER: public NOTIFIER_BASE { public: - RS_DEL_USER_NONIFIER(REMOTE_SCRIPT & r) : rs(r) {} - virtual ~RS_DEL_USER_NONIFIER() {} + DEL_USER_NONIFIER(REMOTE_SCRIPT & r) + : NOTIFIER_BASE(), rs(r) {} + virtual ~DEL_USER_NONIFIER() {} void Notify(const USER_PTR & user); private: + DEL_USER_NONIFIER(const DEL_USER_NONIFIER & rhs); + DEL_USER_NONIFIER & operator=(const DEL_USER_NONIFIER); + REMOTE_SCRIPT & rs; }; //----------------------------------------------------------------------------- -template -class RS_CHG_AFTER_NOTIFIER: public PROPERTY_NOTIFIER_BASE { +class IP_NOTIFIER: public PROPERTY_NOTIFIER_BASE { public: - RS_CHG_AFTER_NOTIFIER(REMOTE_SCRIPT & r, USER_PTR u) : user(u), rs(r) {} - void Notify(const varParamType & oldValue, const varParamType & newValue); - USER_PTR GetUser() {return user; } + IP_NOTIFIER(REMOTE_SCRIPT & r, USER_PTR u) + : PROPERTY_NOTIFIER_BASE(), user(u), rs(r) {} + IP_NOTIFIER(const IP_NOTIFIER & rhs) + : PROPERTY_NOTIFIER_BASE(), user(rhs.user), rs(rhs.rs) {} + void Notify(const uint32_t & oldValue, const uint32_t & newValue); + USER_PTR GetUser() { return user; } private: + IP_NOTIFIER & operator=(const IP_NOTIFIER & rhs); + USER_PTR user; REMOTE_SCRIPT & rs; }; //----------------------------------------------------------------------------- -struct RS_USER { -RS_USER(); -RS_USER(const std::vector & r, USER_PTR it); - -time_t lastSentTime; -USER_PTR user; -std::vector routers; -int shortPacketsCount; +class USER; +//----------------------------------------------------------------------------- +class CONNECTED_NOTIFIER: public PROPERTY_NOTIFIER_BASE { +public: + CONNECTED_NOTIFIER(REMOTE_SCRIPT & r, USER & u) + : PROPERTY_NOTIFIER_BASE(), user(u), rs(r) {} + CONNECTED_NOTIFIER(const CONNECTED_NOTIFIER & rhs) + : PROPERTY_NOTIFIER_BASE(), user(rhs.user), rs(rhs.rs) {} + void Notify(const bool & oldValue, const bool & newValue); + +private: + CONNECTED_NOTIFIER & operator=(const CONNECTED_NOTIFIER & rhs); + + USER & user; + REMOTE_SCRIPT & rs; +}; +//----------------------------------------------------------------------------- +struct USER { + USER(const std::vector & r, USER_PTR it, REMOTE_SCRIPT & rs); + USER(const USER & rhs); + ~USER(); + + time_t lastSentTime; + USER_PTR user; + std::vector routers; + int shortPacketsCount; + uint32_t ip; + CONNECTED_NOTIFIER notifier; }; //----------------------------------------------------------------------------- -class RS_SETTINGS { +class SETTINGS { public: - RS_SETTINGS(); - virtual ~RS_SETTINGS() {} + SETTINGS(); + virtual ~SETTINGS() {} const std::string & GetStrError() const { return errorStr; } - int ParseSettings(const MODULE_SETTINGS & s) + int ParseSettings(const MODULE_SETTINGS & s); int GetSendPeriod() const { return sendPeriod; } int GetPort() const { return port; } const std::vector & GetSubnetsMap() const { return netRouters; } @@ -114,7 +146,6 @@ public: const std::string & GetMapFileName() const { return subnetFile; } private: - int ParseIntInRange(const std::string & str, int min, int max, int * val); int sendPeriod; uint16_t port; string errorStr; @@ -130,11 +161,6 @@ public: virtual ~REMOTE_SCRIPT(); void SetUsers(USERS * u) { users = u; } - void SetTariffs(TARIFFS *) {} - void SetAdmins(ADMINS *) {} - void SetTraffcounter(TRAFFCOUNTER *) {} - void SetStore(STORE *) {} - void SetStgSettings(const SETTINGS *) {} void SetSettings(const MODULE_SETTINGS & s) { settings = s; } int ParseSettings(); @@ -145,8 +171,8 @@ public: const std::string & GetStrError() const { return errorStr; } const std::string GetVersion() const { return "Remote script v 0.3"; } - uint16_t GetStartPosition() const { return 20; } - uint16_t GetStopPosition() const { return 20; } + uint16_t GetStartPosition() const { return 10; } + uint16_t GetStopPosition() const { return 10; } void DelUser(USER_PTR u) { UnSetUserNotifier(u); } void AddUser(USER_PTR u) { SetUserNotifier(u); } @@ -154,13 +180,16 @@ public: void ChangedIP(USER_PTR u, uint32_t oldIP, uint32_t newIP); private: + REMOTE_SCRIPT(const REMOTE_SCRIPT & rhs); + REMOTE_SCRIPT & operator=(const REMOTE_SCRIPT & rhs); + static void * Run(void *); bool PrepareNet(); bool FinalizeNet(); - bool Send(uint32_t ip, RS_USER & rsu, bool forceDisconnect = false) const; - bool SendDirect(uint32_t ip, RS_USER & rsu, uint32_t routerIP, bool forceDisconnect = false) const; - bool PreparePacket(char * buf, size_t bufSize, uint32_t ip, RS_USER &rsu, bool forceDisconnect = false) const; + bool Send(uint32_t ip, USER & rsu, bool forceDisconnect = false) const; + bool SendDirect(uint32_t ip, USER & rsu, uint32_t routerIP, bool forceDisconnect = false) const; + bool PreparePacket(char * buf, size_t bufSize, uint32_t ip, USER &rsu, bool forceDisconnect = false) const; void PeriodicSend(); std::vector IP2Routers(uint32_t ip); @@ -175,11 +204,11 @@ private: mutable BLOWFISH_CTX ctx; - std::list > afterChgIPNotifierList; - std::map authorizedUsers; + std::list ipNotifierList; + std::map authorizedUsers; mutable std::string errorStr; - RS_SETTINGS rsSettings; + SETTINGS rsSettings; MODULE_SETTINGS settings; int sendPeriod; int halfPeriod; @@ -196,17 +225,20 @@ private: int sock; - RS_ADD_USER_NONIFIER onAddUserNotifier; - RS_DEL_USER_NONIFIER onDelUserNotifier; + ADD_USER_NONIFIER onAddUserNotifier; + DEL_USER_NONIFIER onDelUserNotifier; + + PLUGIN_LOGGER logger; - friend class UpdateRouter; - friend class DisconnectUser; + friend class RS::UpdateRouter; + friend class RS::DisconnectUser; + friend class RS::CONNECTED_NOTIFIER; }; //----------------------------------------------------------------------------- -class DisconnectUser : public std::unary_function &, void> { +class DisconnectUser : public std::unary_function &, void> { public: DisconnectUser(REMOTE_SCRIPT & rs) : rscript(rs) {} - void operator()(std::pair & p) + void operator()(std::pair & p) { rscript.Send(p.first, p.second, true); } @@ -214,17 +246,17 @@ class DisconnectUser : public std::unary_function