X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/65eef741908a8005f8a1e11f1fa0f6c19afd3d0c..0907aa4037b12b6b88ee24495d4577a064d4f8db:/projects/stargazer/settings_impl.h diff --git a/projects/stargazer/settings_impl.h b/projects/stargazer/settings_impl.h index bab818c6..4b73dcd7 100644 --- a/projects/stargazer/settings_impl.h +++ b/projects/stargazer/settings_impl.h @@ -18,15 +18,19 @@ * Author : Boris Mikhailenko */ -#ifndef SETTINGS_IMPL_H -#define SETTINGS_IMPL_H +#pragma once + +#include "stg/settings.h" +#include "stg/common.h" +#include "stg/module_settings.h" #include #include -#include "stg/settings.h" -#include "stg/module_settings.h" -#include "stg/ref.h" +class DOTCONFDocumentNode; + +namespace STG +{ //----------------------------------------------------------------------------- enum DETAIL_STAT_PERIOD { @@ -36,88 +40,92 @@ enum DETAIL_STAT_PERIOD { dsPeriod_1_6 }; //----------------------------------------------------------------------------- -class STG_LOGGER; -class DOTCONFDocumentNode; -//----------------------------------------------------------------------------- -class SETTINGS_IMPL : public SETTINGS { -public: - SETTINGS_IMPL(const std::string &); - virtual ~SETTINGS_IMPL() {} - int Reload() { return ReadSettings(); } - int ReadSettings(); - - std::string GetStrError() const { return strError; } - - int GetExecMsgKey() const { return stgExecMsgKey; } - unsigned GetExecutersNum() const { return executersNum; } - const std::string & GetDirName(size_t num) const { return dirName[num]; } - const std::string & GetConfDir() const { return confDir; } - const std::string & GetScriptsDir() const { return scriptsDir; } - const std::string & GetRulesFileName() const { return rules; } - const std::string & GetLogFileName() const { return logFile; } - const std::string & GetPIDFileName() const { return pidFile; } - unsigned GetDetailStatWritePeriod() const - { return detailStatWritePeriod; } - unsigned GetStatWritePeriod() const { return statWritePeriod * 60; } - unsigned GetDayFee() const { return dayFee; } - bool GetFullFee() const { return fullFee; } - unsigned GetDayResetTraff() const { return dayResetTraff; } - bool GetSpreadFee() const { return spreadFee; } - bool GetFreeMbAllowInet() const { return freeMbAllowInet; } - bool GetDayFeeIsLastDay() const { return dayFeeIsLastDay; } - bool GetWriteFreeMbTraffCost() const - { return writeFreeMbTraffCost; } - bool GetShowFeeInCash() const { return showFeeInCash; } - const std::string & GetMonitorDir() const { return monitorDir; } - bool GetMonitoring() const { return monitoring; } - unsigned GetMessageTimeout() const { return messageTimeout * 3600 * 24; } - unsigned GetFeeChargeType() const { return feeChargeType; } - bool GetReconnectOnTariffChange() const { return reconnectOnTariffChange; } - - const std::string & GetModulesPath() const { return modulesPath; } - const MODULE_SETTINGS & GetStoreModuleSettings() const +class SettingsImpl : public Settings { + public: + explicit SettingsImpl(const std::string &); + + SettingsImpl(const SettingsImpl&) = default; + SettingsImpl& operator=(const SettingsImpl&) = default; + SettingsImpl(SettingsImpl&&) = default; + SettingsImpl& operator=(SettingsImpl&&) = default; + + int Reload() { return ReadSettings(); } + int ReadSettings(); + + std::string GetStrError() const { return strError; } + + int GetExecMsgKey() const { return stgExecMsgKey; } + unsigned GetExecutersNum() const { return executersNum; } + const std::string & GetDirName(size_t num) const { return dirName[num]; } + const std::string & GetConfDir() const { return confDir; } + const std::string & GetScriptsDir() const { return scriptsDir; } + const std::string & GetRulesFileName() const { return rules; } + const std::string & GetLogFileName() const { return logFile; } + const std::string & GetPIDFileName() const { return pidFile; } + unsigned GetDetailStatWritePeriod() const + { return detailStatWritePeriod; } + unsigned GetStatWritePeriod() const { return statWritePeriod * 60; } + unsigned GetDayFee() const { return dayFee; } + bool GetFullFee() const { return fullFee; } + unsigned GetDayResetTraff() const { return dayResetTraff; } + 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; } + const std::string & GetMonitorDir() const { return monitorDir; } + bool GetMonitoring() const { return monitoring; } + unsigned GetMessageTimeout() const { return messageTimeout * 3600 * 24; } + unsigned GetFeeChargeType() const { return feeChargeType; } + bool GetReconnectOnTariffChange() const { return reconnectOnTariffChange; } + bool GetDisableSessionLog() const { return disableSessionLog; } + const std::vector & GetFilterParamsLog() const { return filterParamsLog; } + + const std::string & GetModulesPath() const { return modulesPath; } + const ModuleSettings & GetStoreModuleSettings() const { return storeModuleSettings; } - const std::vector & GetModulesSettings() const + const std::vector & GetModulesSettings() const { return modulesSettings; } - const std::vector & GetScriptParams() const { return scriptParams; } - -private: - - static void ErrorCallback(void * data, const char * buf); - - std::string strError; - - //////////settings - std::string modulesPath; - std::vector dirName; - std::string confDir; - std::string scriptsDir; - std::string rules; - std::string logFile; - std::string pidFile; - std::string monitorDir; - std::vector scriptParams; - bool monitoring; - unsigned detailStatWritePeriod; - unsigned statWritePeriod; - int stgExecMsgKey; - unsigned executersNum; - bool fullFee; - unsigned dayFee; - unsigned dayResetTraff; - bool spreadFee; - bool freeMbAllowInet; - bool dayFeeIsLastDay; - bool writeFreeMbTraffCost; - bool showFeeInCash; - unsigned messageTimeout; - unsigned feeChargeType; - bool reconnectOnTariffChange; - - std::vector modulesSettings; - MODULE_SETTINGS storeModuleSettings; - STG::RefWrapper logger; + const std::vector & GetScriptParams() const { return scriptParams; } + + private: + std::string strError; + + //////////settings + std::string modulesPath; + std::vector dirName; + std::string confDir; + std::string scriptsDir; + std::string rules; + std::string logFile; + std::string pidFile; + std::string monitorDir; + std::vector scriptParams; + bool monitoring; + unsigned detailStatWritePeriod; + unsigned statWritePeriod; + int stgExecMsgKey; + unsigned executersNum; + bool fullFee; + unsigned dayFee; + unsigned dayResetTraff; + bool spreadFee; + bool freeMbAllowInet; + bool dayFeeIsLastDay; + bool stopOnError; + bool writeFreeMbTraffCost; + bool showFeeInCash; + unsigned messageTimeout; + unsigned feeChargeType; + bool reconnectOnTariffChange; + bool disableSessionLog; + std::vector filterParamsLog; + + std::vector modulesSettings; + ModuleSettings storeModuleSettings; }; //----------------------------------------------------------------------------- -#endif +}