X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ede91934442fd804d7b818971a44e3ad795cb01f..80270bc96f3fd1d1f14b3ef539b73ad2eb0017de:/projects/stargazer/plugins/configuration/sgconfig2/stgconfig.h?ds=sidebyside diff --git a/projects/stargazer/plugins/configuration/sgconfig2/stgconfig.h b/projects/stargazer/plugins/configuration/sgconfig2/stgconfig.h deleted file mode 100644 index cf9d72b0..00000000 --- a/projects/stargazer/plugins/configuration/sgconfig2/stgconfig.h +++ /dev/null @@ -1,78 +0,0 @@ -#include - -#include -#include - -#include "plugin.h" -#include "store.h" -#include "configproto.h" - -using namespace std; - -extern "C" PLUGIN * GetPlugin(); - -class STG_CONFIG; - -//----------------------------------------------------------------------------- -class STG_CONFIG_SETTINGS { -public: - STG_CONFIG_SETTINGS(); - virtual ~STG_CONFIG_SETTINGS() {} - const string & GetStrError() const; - int ParseSettings(const MODULE_SETTINGS & s); - uint16_t GetPort(); -private: - int ParseIntInRange(const string & str, int min, int max, int * val); - string errorStr; - int port; -}; -//----------------------------------------------------------------------------- -class STG_CONFIG: public PLUGIN { -public: - STG_CONFIG(); - virtual ~STG_CONFIG() {} - - void SetUsers(USERS * u) { users = u; } - void SetTariffs(TARIFFS * t) { tariffs = t; } - void SetAdmins(ADMINS * a) { admins = a; } - void SetStore(STORE * s) { store = s; } - void SetTraffcounter(TRAFFCOUNTER *) {} - void SetStgSettings(const SETTINGS * s) { stgConfigSettings = s; } - void SetSettings(const MODULE_SETTINGS & s) { settings = s; } - int ParseSettings(); - - int Start(); - int Stop(); - int Reload() { return 0; } - bool IsRunning() { return running; } - - const string & GetStrError() const { return errorStr; } - string GetVersion() const; - uint16_t GetStartPosition() const; - uint16_t GetStopPosition() const; - -private: - static void * Run(void *); - void RealRun(); - bool PrepareNetwork(); - bool FinalizeNetwork(); - void AcceptConnection(); - - mutable string errorStr; - STG_CONFIG_SETTINGS stgConfigSettings; - pthread_t thread; - bool running; - bool stopped; - CONFIGPROTO config; - USERS * users; - ADMINS * admins; - TARIFFS * tariffs; - STORE * store; - MODULE_SETTINGS settings; - const SETTINGS * stgSettings; - - std::list connections; - - int sd; -}; -//-----------------------------------------------------------------------------