X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/641204dfbdb9fc870cdd2e7f9e3169a44693e7bf..0907aa4037b12b6b88ee24495d4577a064d4f8db:/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 ed08e2bc..e734227c 100644 --- a/projects/stargazer/plugins/other/rscript/rscript.h +++ b/projects/stargazer/plugins/other/rscript/rscript.h @@ -19,181 +19,221 @@ * Author : Maxim Mamontov */ -/* - $Revision: 1.16 $ - $Date: 2010/09/10 06:43:59 $ - $Author: faust $ -*/ +#pragma once -#ifndef RSCRIPT_H -#define RSCRIPT_H +#include "stg/plugin.h" +#include "stg/module_settings.h" +#include "stg/notifer.h" +#include "stg/user.h" +#include "stg/blowfish.h" +#include "stg/rs_packets.h" +#include "stg/logger.h" -#include +#include "nrmap_parser.h" -#include #include +#include #include #include #include +#include -#include "base_store.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 "nrmap_parser.h" - -extern "C" BASE_PLUGIN * GetPlugin(); +#include -#define RS_DEBUG (1) +namespace STG +{ +struct Settings; +struct Settings; +} -#define MAX_SHORT_PCKT (3) +namespace RS +{ class REMOTE_SCRIPT; +class UpdateRouter; +class DisconnectUser; + +using UserPtr = STG::User*; + //----------------------------------------------------------------------------- -class RS_ADD_USER_NONIFIER: public NOTIFIER_BASE -{ +class ADD_USER_NONIFIER: public STG::NotifierBase { public: - RS_ADD_USER_NONIFIER() {}; - virtual ~RS_ADD_USER_NONIFIER() {}; - - void SetRemoteScript(REMOTE_SCRIPT * a) { rs = a; } - void Notify(const user_iter & user); + explicit ADD_USER_NONIFIER(REMOTE_SCRIPT & r) + : rs(r) {} + void Notify(const UserPtr & user); private: - REMOTE_SCRIPT * rs; + 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 STG::NotifierBase { public: - RS_DEL_USER_NONIFIER() {}; - virtual ~RS_DEL_USER_NONIFIER() {}; + explicit DEL_USER_NONIFIER(REMOTE_SCRIPT & r) + : rs(r) {} + void Notify(const UserPtr & user); - void SetRemoteScript(REMOTE_SCRIPT * a) { rs = a; } - void Notify(const user_iter & user); +private: + DEL_USER_NONIFIER(const DEL_USER_NONIFIER & rhs); + DEL_USER_NONIFIER & operator=(const DEL_USER_NONIFIER); + + REMOTE_SCRIPT & rs; +}; +//----------------------------------------------------------------------------- +class IP_NOTIFIER: public STG::PropertyNotifierBase { +public: + IP_NOTIFIER(REMOTE_SCRIPT & r, UserPtr u) + : user(u), rs(r) { user->AddCurrIPAfterNotifier(this); } + IP_NOTIFIER(const IP_NOTIFIER & rhs) + : user(rhs.user), rs(rhs.rs) { user->AddCurrIPAfterNotifier(this); } + ~IP_NOTIFIER() { user->DelCurrIPAfterNotifier(this); } + + IP_NOTIFIER & operator=(const IP_NOTIFIER & rhs) + { + user->DelCurrIPAfterNotifier(this); + user = rhs.user; + user->AddCurrIPAfterNotifier(this); + return *this; + } + + void Notify(const uint32_t & oldValue, const uint32_t & newValue); + UserPtr GetUser() const { return user; } private: - REMOTE_SCRIPT * rs; + + UserPtr user; + REMOTE_SCRIPT & rs; }; //----------------------------------------------------------------------------- -template -class RS_CHG_AFTER_NOTIFIER: public PROPERTY_NOTIFIER_BASE -{ +class CONNECTED_NOTIFIER: public STG::PropertyNotifierBase { public: - void Notify(const varParamType & oldValue, const varParamType & newValue); - void SetUser(user_iter u) { user = u; } - user_iter GetUser() {return user; } - void SetRemoteScript(REMOTE_SCRIPT * a) { rs = a; } + CONNECTED_NOTIFIER(REMOTE_SCRIPT & r, UserPtr u) + : user(u), rs(r) { user->AddConnectedAfterNotifier(this); } + CONNECTED_NOTIFIER(const CONNECTED_NOTIFIER & rhs) + : user(rhs.user), rs(rhs.rs) { user->AddConnectedAfterNotifier(this); } + ~CONNECTED_NOTIFIER() { user->DelConnectedAfterNotifier(this); } + + CONNECTED_NOTIFIER & operator=(const CONNECTED_NOTIFIER & rhs) + { + user->DelConnectedAfterNotifier(this); + user = rhs.user; + user->AddConnectedAfterNotifier(this); + return *this; + } + + void Notify(const bool & oldValue, const bool & newValue); + UserPtr GetUser() const { return user; } private: - user_iter user; - REMOTE_SCRIPT * rs; + + UserPtr user; + REMOTE_SCRIPT & rs; }; //----------------------------------------------------------------------------- -struct RS_USER -{ - RS_USER(); - RS_USER(const std::vector & r, user_iter it); -time_t lastSentTime; -user_iter user; -std::vector routers; -int shortPacketsCount; +struct USER { + USER(const std::vector & r, UserPtr it) + : lastSentTime(0), + user(it), + routers(r), + shortPacketsCount(0), + ip(user->GetCurrIP()) + {} + + time_t lastSentTime; + UserPtr user; + std::vector routers; + int shortPacketsCount; + uint32_t ip; }; //----------------------------------------------------------------------------- -class RS_SETTINGS -{ +class SETTINGS { public: - RS_SETTINGS(); - virtual ~RS_SETTINGS() {}; - const std::string & GetStrError() const { return errorStr; }; - int ParseSettings(const MODULE_SETTINGS & s); - int GetSendPeriod() const { return sendPeriod; }; - int GetPort() const { return port; }; - const std::vector & GetSubnetsMap() const { return netRouters; }; - const std::vector & GetUserParams() const { return userParams; }; - const std::string & GetPassword() const { return password; }; - const std::string & GetMapFileName() const { return subnetFile; }; + SETTINGS(); + virtual ~SETTINGS() {} + const std::string & GetStrError() const { return errorStr; } + int ParseSettings(const STG::ModuleSettings & s); + int GetSendPeriod() const { return sendPeriod; } + uint16_t GetPort() const { return port; } + const std::vector & GetSubnetsMap() const { return netRouters; } + const std::vector & GetUserParams() const { return userParams; } + const std::string & GetPassword() const { return password; } + 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; + std::string errorStr; std::vector netRouters; - std::vector userParams; - string password; - string subnetFile; + std::vector userParams; + std::string password; + std::string subnetFile; }; //----------------------------------------------------------------------------- -class REMOTE_SCRIPT : public BASE_PLUGIN -{ +class REMOTE_SCRIPT : public STG::Plugin { public: REMOTE_SCRIPT(); - virtual ~REMOTE_SCRIPT(); + ~REMOTE_SCRIPT() override; - void SetUsers(USERS * u) { users = u; }; - void SetTariffs(TARIFFS *) {}; - void SetAdmins(ADMINS *) {}; - void SetTraffcounter(TRAFFCOUNTER *) {}; - void SetStore(BASE_STORE *) {}; - void SetStgSettings(const SETTINGS *) {}; - void SetSettings(const MODULE_SETTINGS & s) { settings = s; }; - int ParseSettings(); + void SetUsers(STG::Users * u) override { users = u; } + void SetSettings(const STG::ModuleSettings & s) override { settings = s; } + int ParseSettings() override; - int Start(); - int Stop(); - int Reload(); - bool IsRunning() { return isRunning; }; + int Start() override; + int Stop() override; + int Reload(const STG::ModuleSettings & ms) override; + bool IsRunning() override { return isRunning; } - 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; }; + const std::string & GetStrError() const override { return errorStr; } + std::string GetVersion() const override { return "Remote script v 0.3"; } + uint16_t GetStartPosition() const override { return 10; } + uint16_t GetStopPosition() const override { return 10; } - void DelUser(user_iter u) { UnSetUserNotifier(u); }; - void AddUser(user_iter u) { SetUserNotifier(u); }; + void DelUser(UserPtr u) { UnSetUserNotifiers(u); } + void AddUser(UserPtr u) { SetUserNotifiers(u); } - void ChangedIP(user_iter u, uint32_t oldIP, uint32_t newIP); + void AddRSU(UserPtr user); + void DelRSU(UserPtr user); 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(USER & rsu, bool forceDisconnect = false) const; + bool SendDirect(USER & rsu, uint32_t routerIP, bool forceDisconnect = false) const; + bool PreparePacket(char * buf, size_t bufSize, USER &rsu, bool forceDisconnect = false) const; void PeriodicSend(); std::vector IP2Routers(uint32_t ip); bool GetUsers(); - std::string GetUserParam(user_iter u, const std::string & paramName) const; - void SetUserNotifier(user_iter u); - void UnSetUserNotifier(user_iter u); + void SetUserNotifiers(UserPtr u); + void UnSetUserNotifiers(UserPtr u); - void InitEncrypt(BLOWFISH_CTX * ctx, const string & password) const; - void Encrypt(BLOWFISH_CTX * ctx, char * dst, const char * src, size_t len8) const; + void InitEncrypt(BLOWFISH_CTX * ctx, const std::string & password) const; + void Encrypt(BLOWFISH_CTX * ctx, void * dst, const void * src, size_t len8) const; mutable BLOWFISH_CTX ctx; - std::list > AfterChgIPNotifierList; - std::map authorizedUsers; + std::list ipNotifierList; + std::list connNotifierList; + std::map authorizedUsers; mutable std::string errorStr; - RS_SETTINGS rsSettings; - MODULE_SETTINGS settings; + SETTINGS rsSettings; + STG::ModuleSettings settings; int sendPeriod; int halfPeriod; bool nonstop; bool isRunning; - USERS * users; + STG::Users * users; std::vector netRouters; @@ -202,36 +242,36 @@ private: int sock; - RS_ADD_USER_NONIFIER onAddUserNotifier; - RS_DEL_USER_NONIFIER onDelUserNotifier; + ADD_USER_NONIFIER onAddUserNotifier; + DEL_USER_NONIFIER onDelUserNotifier; + + STG::PluginLogger 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) + explicit DisconnectUser(REMOTE_SCRIPT & rs) : rscript(rs) {} + void operator()(std::pair & p) { - rscript.Send(p.first, p.second, true); + rscript.Send(p.second, true); } private: REMOTE_SCRIPT & rscript; }; //----------------------------------------------------------------------------- -inline void RS_ADD_USER_NONIFIER::Notify(const user_iter & user) +inline void ADD_USER_NONIFIER::Notify(const UserPtr & user) { -printfd(__FILE__, "ADD_USER_NONIFIER\n"); -rs->AddUser(user); +rs.AddUser(user); } //----------------------------------------------------------------------------- -inline void RS_DEL_USER_NONIFIER::Notify(const user_iter & user) +inline void DEL_USER_NONIFIER::Notify(const UserPtr & user) { -printfd(__FILE__, "DEL_USER_NONIFIER\n"); -rs->DelUser(user); +rs.DelUser(user); } //----------------------------------------------------------------------------- -#endif +} // namespace RS