]> git.stg.codes - stg.git/blob - projects/stargazer/plugins/configuration/sgconfig/stgconfig.h
Make some methods inline
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / stgconfig.h
1 #ifndef STGCONFIG_H
2 #define STGCONFIG_H
3
4 #include <pthread.h>
5
6 #include <string>
7
8 #include "stg/plugin.h"
9 #include "stg/store.h"
10 #include "configproto.h"
11
12 extern "C" PLUGIN * GetPlugin();
13
14 class STG_CONFIG;
15
16 class STG_CONFIG_SETTINGS {
17 public:
18                     STG_CONFIG_SETTINGS() : port(0) {}
19     virtual         ~STG_CONFIG_SETTINGS() {}
20     const std::string & GetStrError() const { return errorStr; }
21     int             ParseSettings(const MODULE_SETTINGS & s);
22     uint16_t        GetPort() const { return port; }
23 private:
24     std::string errorStr;
25     int     port;
26 };
27 //-----------------------------------------------------------------------------
28 class STG_CONFIG :public PLUGIN {
29 public:
30     STG_CONFIG();
31     virtual ~STG_CONFIG(){};
32
33     void                SetUsers(USERS * u) { users = u; }
34     void                SetTariffs(TARIFFS * t) { tariffs = t; }
35     void                SetAdmins(ADMINS * a) { admins = a; }
36     void                SetStore(STORE * s) { store = s; }
37     void                SetTraffcounter(TRAFFCOUNTER *) {}
38     void                SetStgSettings(const SETTINGS * s) { stgSettings = s; }
39     void                SetSettings(const MODULE_SETTINGS & s) { settings = s; }
40     int                 ParseSettings();
41
42     int                 Start();
43     int                 Stop();
44     int                 Reload() { return 0; }
45     bool                IsRunning() { return isRunning; }
46
47     const std::string & GetStrError() const { return errorStr; }
48     const std::string   GetVersion() const;
49     uint16_t            GetStartPosition() const { return 220; }
50     uint16_t            GetStopPosition() const { return 220; }
51
52 private:
53     static void *       Run(void *);
54     mutable std::string errorStr;
55     STG_CONFIG_SETTINGS stgConfigSettings;
56     pthread_t           thread;
57     bool                nonstop;
58     bool                isRunning;
59     CONFIGPROTO         config;
60     USERS *             users;
61     ADMINS *            admins;
62     TARIFFS *           tariffs;
63     STORE *             store;
64     MODULE_SETTINGS     settings;
65     const SETTINGS *    stgSettings;
66 };
67 //-----------------------------------------------------------------------------
68
69 #endif