X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/f3555eaeee988c834b068f96bcc1ef7130b886de..5ac9b6c2949b075cbb8d8c91dd9f603f3f8ad0a3:/projects/stargazer/settings_impl.h diff --git a/projects/stargazer/settings_impl.h b/projects/stargazer/settings_impl.h index 7dc742f5..20d82869 100644 --- a/projects/stargazer/settings_impl.h +++ b/projects/stargazer/settings_impl.h @@ -42,7 +42,6 @@ #include "stg/settings.h" #include "stg/common.h" -#include "stg/logger.h" #include "stg/module_settings.h" //----------------------------------------------------------------------------- @@ -58,10 +57,11 @@ class DOTCONFDocumentNode; //----------------------------------------------------------------------------- class SETTINGS_IMPL : public SETTINGS { public: - SETTINGS_IMPL(); SETTINGS_IMPL(const std::string &); SETTINGS_IMPL(const SETTINGS_IMPL &); virtual ~SETTINGS_IMPL() {} + SETTINGS_IMPL & operator=(const SETTINGS_IMPL &); + int Reload() { return ReadSettings(); } int ReadSettings(); @@ -84,6 +84,7 @@ public: bool GetSpreadFee() const { return spreadFee; } bool GetFreeMbAllowInet() const { return freeMbAllowInet; } bool GetDayFeeIsLastDay() const { return dayFeeIsLastDay; } + bool GetStopOnError() const { return stopOnError; } bool GetWriteFreeMbTraffCost() const { return writeFreeMbTraffCost; } bool GetShowFeeInCash() const { return showFeeInCash; } @@ -97,7 +98,7 @@ public: const MODULE_SETTINGS & GetStoreModuleSettings() const { return storeModuleSettings; } const std::vector & GetModulesSettings() const - { return modulesSettings; } + { return modulesSettings; } const std::vector & GetScriptParams() const { return scriptParams; } private: @@ -117,7 +118,7 @@ private: std::string rules; std::string logFile; std::string pidFile; - std::string monitorDir; + std::string monitorDir; std::vector scriptParams; bool monitoring; unsigned detailStatWritePeriod; @@ -130,6 +131,7 @@ private: bool spreadFee; bool freeMbAllowInet; bool dayFeeIsLastDay; + bool stopOnError; bool writeFreeMbTraffCost; bool showFeeInCash; unsigned messageTimeout; @@ -137,7 +139,7 @@ private: bool reconnectOnTariffChange; std::vector modulesSettings; - MODULE_SETTINGS storeModuleSettings; + MODULE_SETTINGS storeModuleSettings; STG_LOGGER & logger; }; //-----------------------------------------------------------------------------