X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/641204dfbdb9fc870cdd2e7f9e3169a44693e7bf..87550f881db0f6583709f7797becb3eef7d5f254:/projects/stargazer/plugins/configuration/sgconfig/stgconfig.cpp?ds=sidebyside diff --git a/projects/stargazer/plugins/configuration/sgconfig/stgconfig.cpp b/projects/stargazer/plugins/configuration/sgconfig/stgconfig.cpp index 8ba4b0ff..600f7d80 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/stgconfig.cpp +++ b/projects/stargazer/plugins/configuration/sgconfig/stgconfig.cpp @@ -2,35 +2,18 @@ #include #include -#include "stgconfig.h" -#include "../../../tariffs.h" -#include "../../../admins.h" -#include "../../../users.h" - -class STGCONFIG_CREATOR -{ -private: - STG_CONFIG * stgconfig; +#include -public: - STGCONFIG_CREATOR() - : stgconfig(new STG_CONFIG()) - { - }; - ~STGCONFIG_CREATOR() - { - delete stgconfig; - }; +#include "stg/tariffs.h" +#include "stg/admins.h" +#include "stg/users.h" +#include "stg/plugin_creator.h" +#include "stgconfig.h" - STG_CONFIG * GetPlugin() - { - return stgconfig; - }; -}; //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- -STGCONFIG_CREATOR stgc; +PLUGIN_CREATOR stgc; //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- @@ -39,26 +22,11 @@ STG_CONFIG_SETTINGS::STG_CONFIG_SETTINGS() { } //----------------------------------------------------------------------------- -const string& STG_CONFIG_SETTINGS::GetStrError() const +const std::string & STG_CONFIG_SETTINGS::GetStrError() const { return errorStr; } //----------------------------------------------------------------------------- -int STG_CONFIG_SETTINGS::ParseIntInRange(const string & str, int min, int max, int * val) -{ -if (str2x(str.c_str(), *val)) - { - errorStr = "Incorrect value \'" + str + "\'."; - return -1; - } -if (*val < min || *val > max) - { - errorStr = "Value \'" + str + "\' out of range."; - return -1; - } -return 0; -} -//----------------------------------------------------------------------------- int STG_CONFIG_SETTINGS::ParseSettings(const MODULE_SETTINGS & s) { int p; @@ -66,7 +34,7 @@ PARAM_VALUE pv; vector::const_iterator pvi; /////////////////////////// pv.param = "Port"; -pvi = find(s.moduleParams.begin(), s.moduleParams.end(), pv); +pvi = std::find(s.moduleParams.begin(), s.moduleParams.end(), pv); if (pvi == s.moduleParams.end()) { errorStr = "Parameter \'Port\' not found."; @@ -84,29 +52,34 @@ port = p; return 0; } //----------------------------------------------------------------------------- -uint16_t STG_CONFIG_SETTINGS::GetPort() +uint16_t STG_CONFIG_SETTINGS::GetPort() const { return port; } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- -BASE_PLUGIN * GetPlugin() +PLUGIN * GetPlugin() { return stgc.GetPlugin(); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- -const string STG_CONFIG::GetVersion() const +const std::string STG_CONFIG::GetVersion() const { return "Stg configurator v.0.08"; } //----------------------------------------------------------------------------- STG_CONFIG::STG_CONFIG() + : nonstop(false), + isRunning(false), + users(NULL), + admins(NULL), + tariffs(NULL), + store(NULL), + stgSettings(NULL) { -isRunning = false; -nonstop = false; } //----------------------------------------------------------------------------- void STG_CONFIG::SetUsers(USERS * u) @@ -124,7 +97,7 @@ void STG_CONFIG::SetAdmins(ADMINS * a) admins = a; } //----------------------------------------------------------------------------- -void STG_CONFIG::SetStore(BASE_STORE * s) +void STG_CONFIG::SetStore(STORE * s) { store = s; } @@ -147,7 +120,7 @@ if (ret) return ret; } //----------------------------------------------------------------------------- -const string & STG_CONFIG::GetStrError() const +const std::string & STG_CONFIG::GetStrError() const { return errorStr; }