]> git.stg.codes - stg.git/blob - projects/stargazer/settings_impl.h
Split SETTINGS to interface and implementation
[stg.git] / projects / stargazer / settings_impl.h
1  /*
2  $Revision: 1.27 $
3  $Date: 2010/08/19 13:42:30 $
4  $Author: faust $
5  */
6
7 /*
8  *    This program is free software; you can redistribute it and/or modify
9  *    it under the terms of the GNU General Public License as published by
10  *    the Free Software Foundation; either version 2 of the License, or
11  *    (at your option) any later version.
12  *
13  *    This program is distributed in the hope that it will be useful,
14  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *    GNU General Public License for more details.
17  *
18  *    You should have received a copy of the GNU General Public License
19  *    along with this program; if not, write to the Free Software
20  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /*
24  *    Date: 27.10.2002
25  */
26
27 /*
28  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
29  */
30
31  /*
32  $Revision: 1.27 $
33  $Date: 2010/08/19 13:42:30 $
34  */
35
36
37 #ifndef SETTINGS_H
38 #define SETTINGS_H
39
40 #include <string>
41 #include <vector>
42
43 #include "common.h"
44 #include "stg_logger.h"
45 #include "module_settings.h"
46
47 //-----------------------------------------------------------------------------
48 enum DETAIL_STAT_PERIOD {
49 dsPeriod_1,
50 dsPeriod_1_2,
51 dsPeriod_1_4,
52 dsPeriod_1_6,
53 };
54 //-----------------------------------------------------------------------------
55 class STG_LOGGER;
56 class DOTCONFDocumentNode;
57 //-----------------------------------------------------------------------------
58 class SETTINGS {
59 public:
60     SETTINGS();
61     SETTINGS(const std::string &);
62     SETTINGS(const SETTINGS &);
63     virtual ~SETTINGS();
64     int Reload() { return ReadSettings(); }
65     int ReadSettings();
66
67     std::string GetStrError() const { return strError; }
68
69     int                 GetExecMsgKey() const { return stgExecMsgKey; }
70     unsigned            GetExecutersNum() const { return executersNum; }
71     const std::string & GetDirName(int num) const { return dirName[num]; };
72     const std::string & GetConfDir() const { return confDir; }
73     const std::string & GetScriptsDir() const { return scriptsDir; }
74     const std::string & GetRulesFileName() const { return rules; }
75     const std::string & GetLogFileName() const { return logFile; }
76     const std::string & GetPIDFileName() const { return pidFile; }
77     unsigned            GetDetailStatWritePeriod() const 
78         { return detailStatWritePeriod; };
79     unsigned            GetStatWritePeriod() const { return statWritePeriod * 60; }
80     unsigned            GetDayFee() const { return dayFee; }
81     bool                GetFullFee() const { return fullFee; }
82     unsigned            GetDayResetTraff() const { return dayResetTraff; }
83     bool                GetSpreadFee() const { return spreadFee; }
84     bool                GetFreeMbAllowInet() const { return freeMbAllowInet; }
85     bool                GetDayFeeIsLastDay() const { return dayFeeIsLastDay; }
86     bool                GetWriteFreeMbTraffCost() const
87         { return writeFreeMbTraffCost; };
88     bool                GetShowFeeInCash() const { return showFeeInCash; }
89     const std::string & GetMonitorDir() const { return monitorDir; }
90     bool                GetMonitoring() const { return monitoring; }
91     unsigned            GetMessageTimeout() const { return messageTimeout * 3600 * 24; }
92
93     const std::string & GetModulesPath() const { return modulesPath; }
94     const MODULE_SETTINGS & GetStoreModuleSettings() const
95         { return storeModuleSettings; }
96     const std::vector<MODULE_SETTINGS> & GetModulesSettings() const
97         { return modulesSettings; }
98
99 private:
100
101     int ParseInt(const std::string & value, int * val);
102     int ParseUnsigned(const std::string & value, unsigned * val);
103     int ParseIntInRange(const std::string & value, int min, int max, int * val);
104     int ParseUnsignedInRange(const std::string & value, unsigned min, unsigned max, unsigned * val);
105     int ParseYesNo(const std::string & value, bool * val);
106     int ParseDetailStatWritePeriod(const std::string & detailStatPeriodStr);
107
108     int ParseModuleSettings(const DOTCONFDocumentNode * dirNameNode, std::vector<PARAM_VALUE> * params);
109
110     static void ErrorCallback(void * data, const char * buf);
111
112     std::string strError;
113
114     //////////settings
115     std::string modulesPath;
116     std::string dirName[DIR_NUM];
117     std::string confDir;
118     std::string scriptsDir;
119     std::string rules;
120     std::string logFile;
121     std::string pidFile;
122     std::string monitorDir;
123     bool        monitoring;
124     unsigned    detailStatWritePeriod;
125     unsigned    statWritePeriod;
126     int         stgExecMsgKey;
127     unsigned    executersNum;
128     bool        fullFee;
129     unsigned    dayFee;
130     unsigned    dayResetTraff;
131     bool        spreadFee;
132     bool        freeMbAllowInet;
133     bool        dayFeeIsLastDay;
134     bool        writeFreeMbTraffCost;
135     bool        showFeeInCash;
136     unsigned    messageTimeout;
137
138     std::vector<MODULE_SETTINGS> modulesSettings;
139     MODULE_SETTINGS storeModuleSettings;
140
141     STG_LOGGER & logger;
142 };
143 //-----------------------------------------------------------------------------
144
145 #endif